Lines Matching refs:lower

415   ValueRange(ArenaAllocator* allocator, ValueBound lower, ValueBound upper)  in ValueRange()  argument
416 : allocator_(allocator), lower_(lower), upper_(upper) {} in ValueRange()
462 ValueBound lower = lower_.Add(constant, &overflow, &underflow); in Add() local
474 return new (allocator_) ValueRange(allocator_, lower, upper); in Add()
559 ValueBound lower = ValueBound::NarrowLowerBound(bound_, range->GetLower()); in Narrow() local
560 if (!lower.IsConstant() || lower.GetConstant() == INT_MIN) { in Narrow()
601 return new (GetAllocator()) ValueRange(GetAllocator(), lower, range->GetUpper()); in Narrow()
723 ValueBound lower = ValueBound(0, -finder.GetOffsetLow()); in NarrowWithDeoptimization() local
726 return new (GetAllocator()) ValueRange(GetAllocator(), lower, upper); in NarrowWithDeoptimization()
1283 ValueBound lower = bound; in HandleIf() local
1298 lower = right_range->GetLower(); in HandleIf()
1301 lower = ValueBound::Min(); in HandleIf()
1331 if (!lower.Equals(ValueBound::Min()) && !lower.IsRelatedToArrayLength()) { in HandleIf()
1333 ValueBound new_lower = lower.Add(compensation, &overflow, &underflow); in HandleIf()
1354 if (!lower.Equals(ValueBound::Min()) && !lower.IsRelatedToArrayLength()) { in HandleIf()
1356 ValueBound new_lower = lower.Add(compensation, &overflow, &underflow); in HandleIf()
1396 ValueBound lower = ValueBound(nullptr, 0); // constant 0 in VisitBoundsCheck() local
1399 ValueRange(GetGraph()->GetArena(), lower, upper); in VisitBoundsCheck()
1421 ValueBound lower = existing_range->GetLower(); in VisitBoundsCheck() local
1422 DCHECK(lower.IsConstant()); in VisitBoundsCheck()
1423 if (constant < lower.GetConstant()) { in VisitBoundsCheck()
1453 ValueBound lower = ValueBound(nullptr, constant + 1); in VisitBoundsCheck() local
1456 ValueRange(GetGraph()->GetArena(), lower, upper); in VisitBoundsCheck()
1618 ValueBound lower = right_range->GetLower(); in VisitSub() local
1620 if (lower.IsConstant() && upper.IsRelatedToArrayLength()) { in VisitSub()
1625 int32_t c1 = lower.GetConstant(); in VisitSub()
1636 ValueBound(array_length, right_const - lower.GetConstant())); in VisitSub()
1724 ValueBound lower = ValueBound(nullptr, -right_const); in VisitNewArray() local
1730 ValueRange(GetGraph()->GetArena(), lower, upper); in VisitNewArray()
1749 ValueBound lower = ValueBound(nullptr, constant->AsIntConstant()->GetValue() + 1); in VisitDeoptimize() local
1751 ValueRange(GetGraph()->GetArena(), lower, ValueBound::Max()); in VisitDeoptimize()