Lines Matching defs:input
79 Node* input = NodeProperties::GetValueInput(node, i);
80 if (typing == TYPED && !NodeProperties::GetType(input).Is(type)) {
83 << "(input @" << i << " = " << input->opcode() << ":"
84 << input->op()->mnemonic() << ") type "
85 << NodeProperties::GetType(input) << " is not " << type;
155 // consumed as an effect input somewhere else.
182 // Verify that only parameters and projections can have input nodes with
284 for (const Node* input : node->inputs()) {
285 CHECK(IrOpcode::IsGraphTerminator(input->opcode()));
332 Node* input = NodeProperties::GetControlInput(node, 0);
333 CHECK(!input->op()->HasProperty(Operator::kNoThrow));
339 Node* input = NodeProperties::GetControlInput(node, 0);
340 CHECK(!input->op()->HasProperty(Operator::kNoThrow));
412 // Parameter has an input that produces enough values.
450 // OSR values have a value and a control input.
457 // Projection has an input that produces enough values.
459 Node* input = NodeProperties::GetValueInput(node, 0);
460 CHECK_GT(input->op()->ValueOutputCount(), index);
474 // Phi input count matches parent control node.
480 // Type must be subsumed by all input types.
494 // EffectPhi input count matches parent control node.
500 // If the control input is a Merge, then make sure that at least one of
540 // Type must be subsumed by input type.
560 // Checks that the state input is empty for all but kInterpretedFunction
783 // We don't check the input for Type::Function because this_function can
1941 Node* input = node->InputAt(j);
1944 FATAL("Node #%d:%s in B%d is not dominated by input@%d #%d:%s",
1946 input->id(), input->op()->mnemonic());
1956 FATAL("Node #%d:%s in B%d is not dominated by control input #%d:%s",
2094 // Verify phis are placed in the block of their control input.
2157 // Frame state input should be a frame state (or sentinel).
2159 Node* input = NodeProperties::GetFrameStateInput(node);
2160 DCHECK(input->opcode() == IrOpcode::kFrameState ||
2161 input->opcode() == IrOpcode::kStart ||
2162 input->opcode() == IrOpcode::kDead ||
2163 input->opcode() == IrOpcode::kDeadValue);
2167 Node* input = NodeProperties::GetEffectInput(node, i);
2168 DCHECK(input->op()->EffectOutputCount() > 0 ||
2169 input->opcode() == IrOpcode::kDead);
2173 Node* input = NodeProperties::GetControlInput(node, i);
2174 DCHECK(input->op()->ControlOutputCount() > 0 ||
2175 input->opcode() == IrOpcode::kDead);