Home | History | Annotate | Download | only in compiler

Lines Matching refs:NewNode

52   Node* start = t.NewNode(t.common()->Start(0));
67 Node* param_context = t.NewNode(t.common()->Parameter(0), start);
72 Node* load = t.NewNode(t.javascript()->LoadContext(0, 0, false),
80 Node* load = t.NewNode(t.javascript()->LoadContext(0, 0, false),
88 Node* load = t.NewNode(
105 Node* load = t.NewNode(t.javascript()->LoadContext(0, slot, true),
124 Node* start = t.NewNode(t.common()->Start(0));
139 Node* param_context = t.NewNode(t.common()->Parameter(0), start);
144 Node* load = t.NewNode(t.javascript()->StoreContext(0, 0), const_context,
152 Node* load = t.NewNode(t.javascript()->StoreContext(0, 0), param_context,
160 Node* load = t.NewNode(t.javascript()->StoreContext(0, slot), const_context,
168 Node* load = t.NewNode(
194 Node* start = t.NewNode(t.common()->Start(0));
205 Node* param_context = t.NewNode(t.common()->Parameter(0), start);
212 Node* load = t.NewNode(t.javascript()->LoadContext(0, slot, true),
216 Node* value_use = t.NewNode(t.simplified()->ChangeTaggedToInt32(), load);
217 Node* other_load = t.NewNode(t.javascript()->LoadContext(0, slot, true),
221 t.NewNode(t.simplified()->ChangeTaggedToInt32(), other_load);
223 Node* add = t.NewNode(t.javascript()->Add(), value_use, other_use,
226 Node* ret = t.NewNode(t.common()->Return(), add, effect_use, start);
227 Node* end = t.NewNode(t.common()->End(), ret);