Home | History | Annotate | Download | only in compiler

Lines Matching refs:Node

8 #include "src/compiler/node-matchers.h"
9 #include "src/compiler/node-properties.h"
55 Node* start = t.graph()->NewNode(t.common()->Start(0));
68 Node* const_context = t.jsgraph()->Constant(native);
69 Node* deep_const_context = t.jsgraph()->Constant(subcontext2);
70 Node* param_context = t.graph()->NewNode(t.common()->Parameter(0), start);
74 Node* load = t.graph()->NewNode(t.javascript()->LoadContext(0, 0, false),
82 Node* load = t.graph()->NewNode(t.javascript()->LoadContext(0, 0, false),
90 Node* load = t.graph()->NewNode(
95 Node* new_context_input = NodeProperties::GetValueInput(r.replacement(), 0);
107 Node* load = t.graph()->NewNode(t.javascript()->LoadContext(0, slot, true),
126 Node* start = t.graph()->NewNode(t.common()->Start(0));
139 Node* const_context = t.jsgraph()->Constant(native);
140 Node* deep_const_context = t.jsgraph()->Constant(subcontext2);
141 Node* param_context = t.graph()->NewNode(t.common()->Parameter(0), start);
145 Node* load =
154 Node* load =
163 Node* load =
172 Node* load = t.graph()->NewNode(
177 Node* new_context_input = NodeProperties::GetValueInput(r.replacement(), 0);
190 static void CheckEffectInput(Node* effect, Node* use) {
198 Node* start = t.graph()->NewNode(t.common()->Start(0));
207 Node* const_context = t.jsgraph()->Constant(native);
208 Node* param_context = t.graph()->NewNode(t.common()->Parameter(0), start);
213 Node* effect_in = start;
214 Node* load = t.graph()->NewNode(t.javascript()->LoadContext(0, slot, true),
218 Node* value_use =
220 Node* other_load =
223 Node* effect_use = other_load;
224 Node* other_use =
227 Node* add = t.graph()->NewNode(
232 Node* ret =
234 Node* end = t.graph()->NewNode(t.common()->End(1), ret);
255 Node* replacement = value_use->InputAt(0);