Home | History | Annotate | Download | only in compiler

Lines Matching defs:target

56   Node* target = NodeProperties::GetValueInput(node, 0);
72 NodeProperties::ReplaceValueInput(node, target, 0);
73 NodeProperties::ReplaceValueInput(node, target, 1);
102 Node* target = NodeProperties::GetValueInput(node, 0);
105 Handle<JSFunction>::cast(HeapObjectMatcher(target).Value());
115 // The argArray was not provided, just remove the {target}.
158 // Drop the {target} from the {node}.
189 // Remove the target from {node} and use the receiver as target instead, and
190 // the thisArg becomes the new target. If thisArg was not provided, insert
201 // Just remove the target, which is the first value input.
219 Node* target = NodeProperties::GetValueInput(node, 0);
225 // Try to specialize JSCallFunction {node}s with constant {target}s.
226 HeapObjectMatcher m(target);
232 // Raise a TypeError if the {target} is a "classConstructor".
235 NodeProperties::ReplaceValueInputs(node, target);
299 // Don't mess with other {node}s that have a constant {target}.
327 // Check that the {target} is still the {array_function}.
329 graph()->NewNode(javascript()->StrictEqual(), target, array_function,
352 // Check that the {target} is still the {target_function}.
354 graph()->NewNode(javascript()->StrictEqual(), target, target_function,
385 Node* target = NodeProperties::GetValueInput(node, 0);
392 // Try to specialize JSCallConstruct {node}s with constant {target}s.
393 HeapObjectMatcher m(target);
398 // Raise a TypeError if the {target} is not a constructor.
405 NodeProperties::ReplaceValueInputs(node, target);
436 // Don't mess with other {node}s that have a constant {target}.
470 // Check that the {target} is still the {array_function}.
472 graph()->NewNode(javascript()->StrictEqual(), target, array_function,
501 // Check that the {target} is still the {target_function}.
503 graph()->NewNode(javascript()->StrictEqual(), target, target_function,
519 if (target == new_target) {