Home
last modified time | relevance | path

Searched refs:ArithmeticType (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/compiler/
Dloop-variable-optimizer.h29 enum ArithmeticType { kAddition, kSubtraction }; enum
40 ArithmeticType Type() { return arithmeticType_; } in Type()
46 Node* init_value, Zone* zone, ArithmeticType arithmeticType) in InductionVariable()
66 ArithmeticType arithmeticType_;
Dloop-variable-optimizer.cc227 InductionVariable::ArithmeticType arithmeticType; in TryGetInductionVariable()
231 arithmeticType = InductionVariable::ArithmeticType::kAddition; in TryGetInductionVariable()
235 arithmeticType = InductionVariable::ArithmeticType::kSubtraction; in TryGetInductionVariable()
Dtyper.cc776 InductionVariable::ArithmeticType arithmetic_type = induction_var->Type(); in TypeInductionVariablePhi()
783 if (arithmetic_type == InductionVariable::ArithmeticType::kAddition) { in TypeInductionVariablePhi()
787 DCHECK_EQ(InductionVariable::ArithmeticType::kSubtraction, arithmetic_type); in TypeInductionVariablePhi()
842 InductionVariable::ArithmeticType::kAddition in TypeInductionVariablePhi()