Lines Matching defs:inputs
40 for (Node* input : node->inputs()) {
89 Node::Inputs inputs = node->inputs();
90 DCHECK_LE(1, inputs.count());
92 for (int i = 0; i < inputs.count(); ++i) {
93 Node* const input = inputs[i];
94 // Skip dead inputs.
96 // Compact live inputs.
102 } else if (live_input_count < inputs.count()) {
107 DCHECK_EQ(inputs.count(), live_input_count);
113 Node::Inputs inputs = node->inputs();
114 DCHECK_LE(1, inputs.count());
115 // Count the number of live inputs to {node} and compact them on the fly, also
116 // compacting the inputs of the associated {Phi} and {EffectPhi} uses at the
122 for (int i = 0; i < inputs.count(); ++i) {
123 Node* const input = inputs[i];
124 // Skip dead inputs.
126 // Compact live inputs.
131 DCHECK_EQ(inputs.count() + 1, use->InputCount());
165 DCHECK_LE(live_input_count, inputs.count());
167 if (live_input_count < inputs.count()) {
247 // to the graph end and delete the corresponding inputs from the merge and