Lines Matching defs:state
11 #include "src/maglev/maglev-interpreter-frame-state.h"
22 // the inferred corresponding InterpreterFrameState and (optionally) the state
41 // void Process(FooNode* node, const ProcessingState& state) {}
118 void ProcessNodeBase(NodeBase* node, const ProcessingState& state) {
122 PreProcess(node->Cast<OPCODE>(), state); \
123 node_processor_.Process(node->Cast<OPCODE>(), state); \
130 void PreProcess(NodeBase* node, const ProcessingState& state) {}
155 void Process(NodeBase* node, const ProcessingState& state) {}
165 void Process(Node* node, const ProcessingState& state) {
166 processor_.Process(node, state);
167 Base::Process(node, state);