Lines Matching refs:upper

415   ValueRange(ArenaAllocator* allocator, ValueBound lower, ValueBound upper)  in ValueRange()  argument
416 : allocator_(allocator), lower_(lower), upper_(upper) {} in ValueRange()
468 ValueBound upper = upper_.Add(constant, &overflow, &underflow); in Add() local
474 return new (allocator_) ValueRange(allocator_, lower, upper); in Add()
572 int32_t upper = INT_MAX; in Narrow() local
576 upper = upper_bound.GetConstant(); in Narrow()
579 upper = max_array_len + upper_bound.GetConstant(); in Narrow()
588 int32_t last_num_in_sequence = upper; in Narrow()
591 if (upper <= initial_constant) { in Narrow()
592 last_num_in_sequence = upper; in Narrow()
596 ((int64_t)upper - (int64_t)initial_constant) / increment_ * increment_; in Narrow()
609 ValueBound upper = ValueBound::NarrowUpperBound(bound_, range->GetUpper()); in Narrow() local
610 if ((!upper.IsConstant() || upper.GetConstant() == INT_MAX) && in Narrow()
611 !upper.IsRelatedToArrayLength()) { in Narrow()
621 return new (GetAllocator()) ValueRange(GetAllocator(), range->GetLower(), upper); in Narrow()
724 ValueBound upper = ValueBound(finder.GetFoundArrayLength(), -1 - finder.GetOffsetHigh()); in NarrowWithDeoptimization() local
726 return new (GetAllocator()) ValueRange(GetAllocator(), lower, upper); in NarrowWithDeoptimization()
1284 ValueBound upper = bound; in HandleIf() local
1299 upper = right_range->GetUpper(); in HandleIf()
1302 upper = ValueBound::Max(); in HandleIf()
1319 if (!upper.Equals(ValueBound::Max())) { in HandleIf()
1321 ValueBound new_upper = upper.Add(compensation, &overflow, &underflow); in HandleIf()
1365 if (!upper.Equals(ValueBound::Max())) { in HandleIf()
1367 ValueBound new_upper = upper.Add(compensation, &overflow, &underflow); in HandleIf()
1397 ValueBound upper = ValueBound(array_length, -1); // array_length - 1 in VisitBoundsCheck() local
1399 ValueRange(GetGraph()->GetArena(), lower, upper); in VisitBoundsCheck()
1454 ValueBound upper = ValueBound::Max(); in VisitBoundsCheck() local
1456 ValueRange(GetGraph()->GetArena(), lower, upper); in VisitBoundsCheck()
1619 ValueBound upper = right_range->GetUpper(); in VisitSub() local
1620 if (lower.IsConstant() && upper.IsRelatedToArrayLength()) { in VisitSub()
1621 HInstruction* upper_inst = upper.GetInstruction(); in VisitSub()
1626 int32_t c2 = upper.GetConstant(); in VisitSub()
1635 ValueBound(nullptr, right_const - upper.GetConstant()), in VisitSub()
1728 ValueBound upper = ValueBound(new_array, -right_const); in VisitNewArray() local
1730 ValueRange(GetGraph()->GetArena(), lower, upper); in VisitNewArray()