Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dbounds_check_elimination.cc830 ValueRange* index_range = LookupValueRange(index, block); in VisitBoundsCheck() local
831 if (index_range != nullptr && index_range->FitsIn(&array_range)) { in VisitBoundsCheck()
1319 ValueRange index_range(GetGraph()->GetArena(), in InductionRangeFitsIn() local
1324 if (index_range.GetLower().LessThan(array_range->GetLower()) || in InductionRangeFitsIn()
1325 index_range.GetUpper().GreaterThan(array_range->GetUpper())) { in InductionRangeFitsIn()
1327 } else if (!needs_finite_test && index_range.FitsIn(array_range)) { in InductionRangeFitsIn()