Lines Matching refs:inputs
32 // inputs to nodes representing the value being bound. This is done because
354 Node::Inputs inputs = (*state_values)->inputs();
355 if (inputs.count() != count) return true;
357 if (inputs[i] != values[i]) {
568 Node** const inputs = &exit_controls_.front();
569 Node* end = graph()->NewNode(common()->End(input_count), input_count, inputs);
2061 // Store a copy of the environment so we can connect merged back edge inputs
2351 int inputs = control->op()->ControlInputCount() + 1;
2354 const Operator* op = common()->Loop(inputs);
2359 const Operator* op = common()->Merge(inputs);
2364 const Operator* op = common()->Merge(inputs);
2374 int inputs = control->op()->ControlInputCount();
2378 value->InsertInput(graph_zone(), inputs - 1, other);
2379 NodeProperties::ChangeOp(value, common()->EffectPhi(inputs));
2382 value = NewEffectPhi(inputs, value, control);
2383 value->ReplaceInput(inputs - 1, other);
2391 int inputs = control->op()->ControlInputCount();
2395 value->InsertInput(graph_zone(), inputs - 1, other);
2397 value, common()->Phi(MachineRepresentation::kTagged, inputs));
2400 value = NewPhi(inputs, value, control);
2401 value->ReplaceInput(inputs - 1, other);