Searched refs:a_constant (Results 1 – 4 of 4) sorted by relevance
/art/compiler/optimizing/ |
D | induction_var_range.cc | 89 if (v.is_known && v.a_constant == 1 && v.b_constant <= 0) { in SimplifyMin() 101 if (v.is_known && v.a_constant >= 1) { in SimplifyMax() 107 IsInt64AndGet(v.instruction->InputAt(1), &value) && v.a_constant == value) { in SimplifyMax() 112 if (v.a_constant == 1 && IsMaxAtHint(v.instruction, hint, &suitable)) { in SimplifyMax() 121 return v.is_known && v.a_constant == 0; in IsConstantValue() 985 if (v1.a_constant == 0) { in AddValue() 986 return Value(v2.instruction, v2.a_constant, b); in AddValue() 987 } else if (v2.a_constant == 0) { in AddValue() 988 return Value(v1.instruction, v1.a_constant, b); in AddValue() 989 } else if (v1.instruction == v2.instruction && IsSafeAdd(v1.a_constant, v2.a_constant)) { in AddValue() [all …]
|
D | induction_var_range.h | 47 Value() : instruction(nullptr), a_constant(0), b_constant(0), is_known(false) {} in Value() 49 : instruction(a != 0 ? i : nullptr), a_constant(a), b_constant(b), is_known(true) {} in Value() 53 int32_t a_constant; member
|
D | bounds_check_elimination.cc | 1512 if (v1.is_known && (v1.a_constant == 0 || v1.a_constant == 1) && in InductionRangeFitsIn() 1513 v2.is_known && (v2.a_constant == 0 || v2.a_constant == 1)) { in InductionRangeFitsIn() 1514 DCHECK(v1.a_constant == 1 || v1.instruction == nullptr); in InductionRangeFitsIn() 1515 DCHECK(v2.a_constant == 1 || v2.instruction == nullptr); in InductionRangeFitsIn()
|
D | induction_var_range_test.cc | 46 EXPECT_EQ(v1.a_constant, v2.a_constant); in ExpectEqual()
|