Searched refs:effect_input_count (Results 1 - 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
H A D | common-operator-reducer.cc | 217 int const effect_input_count = inputs.count() - 1; in ReduceEffectPhi() local 218 DCHECK_LE(1, effect_input_count); in ReduceEffectPhi() 219 Node* const merge = inputs[effect_input_count]; in ReduceEffectPhi() 221 DCHECK_EQ(effect_input_count, merge->InputCount()); in ReduceEffectPhi() 224 for (int i = 1; i < effect_input_count; ++i) { in ReduceEffectPhi()
|
H A D | dead-code-elimination.cc | 197 int const effect_input_count = node->op()->EffectInputCount(); in ReduceNode() local 204 if (effect_input_count == 0 && in ReduceNode() 208 if (effect_input_count > 0) { in ReduceNode()
|
H A D | common-operator.cc | 595 #define CACHED(Name, properties, value_input_count, effect_input_count, \ 601 effect_input_count, control_input_count, \ 875 #define CACHED(Name, properties, value_input_count, effect_input_count, \ 1323 const Operator* CommonOperatorBuilder::EffectPhi(int effect_input_count) { in EffectPhi() argument 1324 DCHECK_LT(0, effect_input_count); // Disallow empty effect phis. in EffectPhi() 1325 switch (effect_input_count) { in EffectPhi() 1338 0, effect_input_count, 1, 0, 1, 0); // counts in EffectPhi()
|
H A D | common-operator.h | 527 const Operator* EffectPhi(int effect_input_count);
|
Completed in 7 milliseconds