Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dloop-variable-optimizer.h26 enum ArithmeticType { kAddition, kSubtraction }; enum
37 ArithmeticType Type() { return arithmeticType_; } in Type()
43 Zone* zone, ArithmeticType arithmeticType) in InductionVariable()
61 ArithmeticType arithmeticType_;
Dloop-variable-optimizer.cc305 InductionVariable::ArithmeticType arithmeticType; in TryGetInductionVariable()
308 arithmeticType = InductionVariable::ArithmeticType::kAddition; in TryGetInductionVariable()
311 arithmeticType = InductionVariable::ArithmeticType::kSubtraction; in TryGetInductionVariable()
Dtyper.cc708 InductionVariable::ArithmeticType arithmetic_type = induction_var->Type(); in TypeInductionVariablePhi()
715 if (arithmetic_type == InductionVariable::ArithmeticType::kAddition) { in TypeInductionVariablePhi()
719 DCHECK(arithmetic_type == InductionVariable::ArithmeticType::kSubtraction); in TypeInductionVariablePhi()
774 << (arithmetic_type == InductionVariable::ArithmeticType::kAddition in TypeInductionVariablePhi()