Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dssa_liveness_analysis.h446 LiveRange* other_range = current->first_range_; in FirstIntersectionWith() local
447 LiveRange* my_range = FindRangeAtOrAfter(other_range->GetStart(), range_search_start_); in FirstIntersectionWith()
455 if (my_range->IsBefore(*other_range)) { in FirstIntersectionWith()
460 } else if (other_range->IsBefore(*my_range)) { in FirstIntersectionWith()
461 other_range = other_range->GetNext(); in FirstIntersectionWith()
462 if (other_range == nullptr) { in FirstIntersectionWith()
466 DCHECK(my_range->IntersectsWith(*other_range)); in FirstIntersectionWith()
467 return std::max(my_range->GetStart(), other_range->GetStart()); in FirstIntersectionWith()
Dbounds_check_elimination.cc432 virtual bool FitsIn(ValueRange* other_range) const { in FitsIn()
433 if (other_range == nullptr) { in FitsIn()
436 DCHECK(!other_range->IsMonotonicValueRange()); in FitsIn()
437 return lower_.GreaterThanOrEqualTo(other_range->lower_) && in FitsIn()
438 upper_.LessThanOrEqualTo(other_range->upper_); in FitsIn()
540 bool FitsIn(ValueRange* other_range) const OVERRIDE { in FitsIn()
541 if (other_range == nullptr) { in FitsIn()
544 DCHECK(!other_range->IsMonotonicValueRange()); in FitsIn()