Lines Matching refs:NodeProperties
56 Node* target = NodeProperties::GetValueInput(node, 0); in ReduceArrayConstructor()
72 NodeProperties::ReplaceValueInput(node, target, 0); in ReduceArrayConstructor()
73 NodeProperties::ReplaceValueInput(node, target, 1); in ReduceArrayConstructor()
77 NodeProperties::ChangeOp(node, javascript()->CreateArray(arity, site)); in ReduceArrayConstructor()
90 : NodeProperties::GetValueInput(node, 2); in ReduceNumberConstructor()
91 NodeProperties::ReplaceValueInputs(node, value); in ReduceNumberConstructor()
92 NodeProperties::ChangeOp(node, javascript()->ToNumber()); in ReduceNumberConstructor()
100 Node* target = NodeProperties::GetValueInput(node, 0); in ReduceFunctionPrototypeApply()
119 Node* arg_array = NodeProperties::GetValueInput(node, 3); in ReduceFunctionPrototypeApply()
123 if (!NodeProperties::IsValueEdge(edge)) continue; in ReduceFunctionPrototypeApply()
131 Node* frame_state = NodeProperties::GetFrameStateInput(arg_array, 0); in ReduceFunctionPrototypeApply()
167 NodeProperties::ChangeOp( in ReduceFunctionPrototypeApply()
172 NodeProperties::ReplaceContextInput( in ReduceFunctionPrototypeApply()
185 HeapObjectMatcher(NodeProperties::GetValueInput(node, 0)).Value()); in ReduceFunctionPrototypeCall()
188 NodeProperties::ReplaceContextInput( in ReduceFunctionPrototypeCall()
207 NodeProperties::ChangeOp( in ReduceFunctionPrototypeCall()
219 Node* target = NodeProperties::GetValueInput(node, 0); in ReduceJSCallFunction()
220 Node* context = NodeProperties::GetContextInput(node); in ReduceJSCallFunction()
221 Node* control = NodeProperties::GetControlInput(node); in ReduceJSCallFunction()
222 Node* effect = NodeProperties::GetEffectInput(node); in ReduceJSCallFunction()
223 Node* frame_state = NodeProperties::FindFrameStateBefore(node); in ReduceJSCallFunction()
234 NodeProperties::ReplaceValueInputs(node, target); in ReduceJSCallFunction()
235 NodeProperties::ChangeOp( in ReduceJSCallFunction()
278 NodeProperties::ReplaceValueInput( in ReduceJSCallFunction()
280 NodeProperties::ReplaceValueInput(node, jsgraph()->Constant(bound_this), in ReduceJSCallFunction()
289 NodeProperties::ChangeOp(node, javascript()->CallFunction( in ReduceJSCallFunction()
333 NodeProperties::ReplaceValueInput(node, array_function, 0); in ReduceJSCallFunction()
334 NodeProperties::ReplaceEffectInput(node, effect); in ReduceJSCallFunction()
335 NodeProperties::ReplaceControlInput(node, control); in ReduceJSCallFunction()
351 NodeProperties::ReplaceValueInput(node, target_function, 0); in ReduceJSCallFunction()
352 NodeProperties::ReplaceEffectInput(node, effect); in ReduceJSCallFunction()
353 NodeProperties::ReplaceControlInput(node, control); in ReduceJSCallFunction()
369 Node* target = NodeProperties::GetValueInput(node, 0); in ReduceJSCallConstruct()
370 Node* new_target = NodeProperties::GetValueInput(node, arity + 1); in ReduceJSCallConstruct()
371 Node* context = NodeProperties::GetContextInput(node); in ReduceJSCallConstruct()
372 Node* effect = NodeProperties::GetEffectInput(node); in ReduceJSCallConstruct()
373 Node* control = NodeProperties::GetControlInput(node); in ReduceJSCallConstruct()
374 Node* frame_state = NodeProperties::FindFrameStateBefore(node); in ReduceJSCallConstruct()
384 NodeProperties::ReplaceValueInputs(node, target); in ReduceJSCallConstruct()
385 NodeProperties::ChangeOp( in ReduceJSCallConstruct()
404 NodeProperties::ReplaceValueInput( in ReduceJSCallConstruct()
405 node, NodeProperties::GetValueInput(node, i), i + 1); in ReduceJSCallConstruct()
407 NodeProperties::ReplaceValueInput(node, new_target, 1); in ReduceJSCallConstruct()
408 NodeProperties::ChangeOp(node, javascript()->CreateArray(arity, site)); in ReduceJSCallConstruct()
455 NodeProperties::ReplaceEffectInput(node, effect); in ReduceJSCallConstruct()
456 NodeProperties::ReplaceControlInput(node, control); in ReduceJSCallConstruct()
458 NodeProperties::ReplaceValueInput( in ReduceJSCallConstruct()
459 node, NodeProperties::GetValueInput(node, i), i + 1); in ReduceJSCallConstruct()
461 NodeProperties::ReplaceValueInput(node, new_target, 1); in ReduceJSCallConstruct()
462 NodeProperties::ChangeOp(node, javascript()->CreateArray(arity, site)); in ReduceJSCallConstruct()
478 NodeProperties::ReplaceValueInput(node, target_function, 0); in ReduceJSCallConstruct()
479 NodeProperties::ReplaceEffectInput(node, effect); in ReduceJSCallConstruct()
480 NodeProperties::ReplaceControlInput(node, control); in ReduceJSCallConstruct()
482 NodeProperties::ReplaceValueInput(node, target_function, arity + 1); in ReduceJSCallConstruct()
496 Node* const context = NodeProperties::GetContextInput(node); in GetNativeContext()
497 return NodeProperties::GetSpecializationNativeContext(context, in GetNativeContext()