HomeSort by relevance Sort by last modified time
    Searched refs:b_constant (Results 1 - 4 of 4) sorted by null

  /art/compiler/optimizing/
induction_var_range.cc 122 if (v.is_known && v.a_constant == 1 && v.b_constant <= 0) {
126 return InductionVarRange::Value(v.b_constant);
141 return InductionVarRange::Value(v.instruction->InputAt(0), 1, v.b_constant);
146 return InductionVarRange::Value(suitable, 1, v.b_constant);
167 return (IsConstantValue(v) && min <= v.b_constant && v.b_constant <= max)
446 IsConstantValue(max_val) && min_val.b_constant <= max_val.b_constant) {
447 if ((request == kExact && min_val.b_constant == max_val.b_constant) || request == kAtMost)
    [all...]
induction_var_range.h 46 Value() : instruction(nullptr), a_constant(0), b_constant(0), is_known(false) {}
48 : instruction(a != 0 ? i : nullptr), a_constant(a), b_constant(b), is_known(true) {}
50 // Representation as: a_constant x instruction + b_constant.
53 int32_t b_constant; member in struct:art::InductionVarRange::Value
bounds_check_elimination.cc     [all...]
induction_var_range_test.cc 47 EXPECT_EQ(v1.b_constant, v2.b_constant);
    [all...]

Completed in 531 milliseconds