Lines Matching defs:target
57 Node* target() const {
119 // {inliner_inputs} counts the target, receiver/new_target, and arguments; but
136 // The projection is requesting the new target value.
291 // Determines whether the call target of the given call {node} is statically
293 // the call target is provided (the exact closure might be unknown).
297 Node* target = node->InputAt(JSCallOrConstructNode::TargetIndex());
298 HeapObjectMatcher match(target);
301 // calls whenever the target is a constant function object, as follows:
302 // - JSCall(target:constant, receiver, args..., vector)
303 // - JSConstruct(target:constant, new.target, args..., vector)
327 // This reducer can also handle calls where the target is statically known to
331 // new.target, args..., vector)
333 JSCreateClosureNode n(target);
344 // Determines statically known information about the call target (assuming that
345 // the call target is known according to {DetermineCallTarget} above). The
347 // - context : The context (as SSA value) bound by the call target.
348 // - feedback_vector : The target is guaranteed to use this feedback vector.
352 Node* target = node->InputAt(JSCallOrConstructNode::TargetIndex());
353 HeapObjectMatcher match(target);
366 // Load the feedback vector of the target by looking up its vector cell at
368 JSCreateClosureNode n(target);
472 // Determine the call target.
550 // Determine the target's feedback vector and its context.
642 graph()->NewNode(javascript()->Create(), call.target(), new_target,