Lines Matching defs:inputs
415 Node** inputs, int input_count) {
465 // calls and states directly to the inputs of the ex-phi, ex-effect-phi and
543 // the entire subgraph reachable by inputs from the call (terminating
628 inputs[0] = target;
629 inputs[input_count - 3] = new_lazy_frame_state;
630 inputs[input_count - 2] = effect_phi_effect;
631 inputs[input_count - 1] = control;
633 graph()->NewNode(node->op(), input_count, inputs);
636 // Mark the control inputs dead, so that we can kill the merge.
651 Node** calls, Node** inputs,
655 if (TryReuseDispatch(node, callee, if_successes, calls, inputs,
690 if (inputs[n.TargetIndex()] == inputs[n.NewTargetIndex()]) {
691 inputs[n.NewTargetIndex()] = target;
694 inputs[JSCallOrConstructNode::TargetIndex()] = target;
695 inputs[input_count - 1] = if_successes[i];
697 graph()->NewNode(node->op(), input_count, inputs);
723 // Setup the inputs for the cloned call nodes.
725 Node** inputs = graph()->zone()->NewArray<Node*>(input_count);
727 inputs[i] = node->InputAt(i);
731 CreateOrReuseDispatch(node, callee, candidate, if_successes, calls, inputs,