Home | History | Annotate | Download | only in compiler

Lines Matching defs:inputs

560   Node** const inputs = &exit_controls_.front();
561 Node* end = graph()->NewNode(common()->End(input_count), input_count, inputs);
4170 Node* inputs[] = {other_control};
4172 graph()->NewNode(common()->Merge(1), arraysize(inputs), inputs, true);
4256 // Merge OSR values as inputs to the phis of the loop.
4311 int inputs = control->op()->ControlInputCount() + 1;
4314 const Operator* op = common()->Loop(inputs);
4319 const Operator* op = common()->Merge(inputs);
4324 const Operator* op = common()->Merge(inputs);
4325 Node* inputs[] = {control, other};
4326 control = graph()->NewNode(op, arraysize(inputs), inputs, true);
4333 int inputs = control->op()->ControlInputCount();
4337 value->InsertInput(graph_zone(), inputs - 1, other);
4338 NodeProperties::ChangeOp(value, common()->EffectPhi(inputs));
4341 value = NewEffectPhi(inputs, value, control);
4342 value->ReplaceInput(inputs - 1, other);
4349 int inputs = control->op()->ControlInputCount();
4353 value->InsertInput(graph_zone(), inputs - 1, other);
4355 value, common()->Phi(MachineRepresentation::kTagged, inputs));
4358 value = NewPhi(inputs, value, control);
4359 value->ReplaceInput(inputs - 1, other);