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