Lines Matching refs:input_count
701 int input_count, Node* const* inputs) {
704 DCHECK_EQ(input_count, call_descriptor->ParameterCount() + 1);
705 return AddNode(common()->Call(call_descriptor), input_count, inputs);
709 int input_count,
713 DCHECK_EQ(input_count, call_descriptor->ParameterCount() + 2);
714 return AddNode(common()->Call(call_descriptor), input_count, inputs);
718 int input_count, Node* const* inputs) {
720 DCHECK_EQ(input_count, call_descriptor->ParameterCount() + 1);
722 MakeNode(common()->TailCall(call_descriptor), input_count, inputs);
840 Node* RawMachineAssembler::Phi(MachineRepresentation rep, int input_count,
842 Node** buffer = zone()->NewArray<Node*>(input_count + 1);
843 std::copy(inputs, inputs + input_count, buffer);
844 buffer[input_count] = graph()->start();
845 return AddNode(common()->Phi(rep, input_count), input_count + 1, buffer);
855 Node* RawMachineAssembler::AddNode(const Operator* op, int input_count,
859 Node* node = MakeNode(op, input_count, inputs);
864 Node* RawMachineAssembler::MakeNode(const Operator* op, int input_count,
868 return graph()->NewNodeUnchecked(op, input_count, inputs);