Lines Matching defs:inputs
213 Node** inputs, Node* target,
389 // Update all inputs to an effect phi with the effects from the given
414 // Update all inputs to the given control node with the correct control.
420 return; // We already re-wired the control inputs of this node.
464 // branch folding optimizations (i.e. because one or more inputs to the Phi is
547 Node** const inputs = graph->zone()->NewArray<Node*>(2 * input_count);
548 Node** const merge_true_inputs = &inputs[0];
549 Node** const merge_false_inputs = &inputs[input_count];
576 inputs[index] = phi->InputAt(index);
578 inputs[input_count] = merge_true;
579 Node* phi_true = graph->NewNode(phi->op(), input_count + 1, inputs);
580 inputs[input_count] = merge_false;
581 Node* phi_false = graph->NewNode(phi->op(), input_count + 1, inputs);
638 // Update the control inputs.
673 // Make sure we update the inputs to the incoming blocks' effects.
826 // Rewire control inputs.
838 // and control inputs to mark it as dead, but don't process further.
5084 const CallDescriptor* call_descriptor, int inputs_size, Node** inputs,
5114 inputs[c_arg_count + 1] = stack_slot;
5115 inputs[c_arg_count + 2] = __ effect();
5116 inputs[c_arg_count + 3] = __ control();
5118 inputs[c_arg_count + 1] = __ effect();
5119 inputs[c_arg_count + 2] = __ control();
5123 Node* call = __ Call(call_descriptor, inputs_size, inputs);
5263 Node** const inputs = graph()->zone()->NewArray<Node*>(
5268 // The inputs to {Call} node for the fast call look like:
5277 inputs[kFastTargetAddressInputIndex] =
5291 inputs[i + kFastTargetAddressInputCount] = nodes.argument;
5295 inputs[kFastTargetAddressInputIndex] = nodes.target_address;
5298 inputs[i + kFastTargetAddressInputCount] =
5302 DCHECK_NOT_NULL(inputs[0]);
5305 call_descriptor, c_arg_count + n.FastCallExtraInputCount() + 1, inputs,
5306 inputs[0], c_signature, c_arg_count, stack_slot);