Searched refs:effect_input_count (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/compiler/ |
D | common-operator-reducer.cc | 199 int const effect_input_count = inputs.count() - 1; in ReduceEffectPhi() local 200 DCHECK_LE(1, effect_input_count); in ReduceEffectPhi() 201 Node* const merge = inputs[effect_input_count]; in ReduceEffectPhi() 203 DCHECK_EQ(effect_input_count, merge->InputCount()); in ReduceEffectPhi() 206 for (int i = 1; i < effect_input_count; ++i) { in ReduceEffectPhi()
|
D | common-operator.cc | 499 #define CACHED(Name, properties, value_input_count, effect_input_count, \ argument 505 effect_input_count, control_input_count, \ 770 #define CACHED(Name, properties, value_input_count, effect_input_count, \ argument 1146 const Operator* CommonOperatorBuilder::EffectPhi(int effect_input_count) { in EffectPhi() argument 1147 DCHECK(effect_input_count > 0); // Disallow empty effect phis. in EffectPhi() 1148 switch (effect_input_count) { in EffectPhi() 1161 0, effect_input_count, 1, 0, 1, 0); // counts in EffectPhi()
|
D | common-operator.h | 354 const Operator* EffectPhi(int effect_input_count); in NON_EXPORTED_BASE()
|