Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dbounds_check_elimination.cc606 ValueRange* existing_range = LookupValueRange(instruction, basic_block); in ApplyRangeFromComparison() local
607 if (existing_range == nullptr) { in ApplyRangeFromComparison()
613 if (existing_range->IsMonotonicValueRange()) { in ApplyRangeFromComparison()
621 AssignRange(successor, instruction, existing_range->Narrow(range)); in ApplyRangeFromComparison()
846 ValueRange* existing_range = LookupValueRange(array_length, block); in VisitBoundsCheck() local
847 if (existing_range != nullptr && in VisitBoundsCheck()
848 existing_range->IsConstantValueRange() && in VisitBoundsCheck()
849 existing_range->GetLower().GetConstant() > 0) { in VisitBoundsCheck()
850 ValueBound constant_upper(nullptr, existing_range->GetLower().GetConstant() - 1); in VisitBoundsCheck()
879 ValueRange* existing_range = LookupValueRange(array_length, block); in VisitBoundsCheck() local
[all …]