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

  /art/compiler/optimizing/
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) {}
55 bool is_known; member in struct:art::InductionVarRange::Value
induction_var_range.cc 122 if (v.is_known && v.a_constant == 1 && v.b_constant <= 0) {
134 if (v.is_known && v.a_constant >= 1) {
154 return v.is_known && v.a_constant == 0;
234 if (!min_val->is_known && info->induction_class == HInductionVarAnalysis::kWrapAround) {
    [all...]
bounds_check_elimination.cc     [all...]
induction_var_range_test.cc 48 EXPECT_EQ(v1.is_known, v2.is_known);
    [all...]

Completed in 61 milliseconds