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

  /art/compiler/optimizing/
induction_var_range.cc 67 v.a_constant >= 1 &&
70 IsIntAndGet(v.instruction->InputAt(1), &value) && v.a_constant == value) {
88 return (v.is_known && v.a_constant == 0 && min <= v.b_constant && v.b_constant <= max)
100 return v.is_known && v.a_constant == 0;
258 if (v_min.a_constant == 1 && v_min.b_constant <= 0 && v_min.instruction->IsArrayLength()) {
523 if (v1.a_constant == 0) {
524 return Value(v2.instruction, v2.a_constant, b);
525 } else if (v2.a_constant == 0) {
526 return Value(v1.instruction, v1.a_constant, b);
527 } else if (v1.instruction == v2.instruction && IsSafeAdd(v1.a_constant, v2.a_constant))
    [all...]
induction_var_range.h 45 Value() : instruction(nullptr), a_constant(0), b_constant(0), is_known(false) {}
47 : instruction(a != 0 ? i : nullptr), a_constant(a), b_constant(b), is_known(true) {}
49 // Representation as: a_constant x instruction + b_constant.
51 int32_t a_constant; member in struct:art::InductionVarRange::Value
bounds_check_elimination.cc     [all...]
induction_var_range_test.cc 46 EXPECT_EQ(v1.a_constant, v2.a_constant);
    [all...]

Completed in 49 milliseconds