Lines Matching refs:bound
153 bool Equals(ValueBound bound) const { in Equals()
154 return instruction_ == bound.instruction_ && constant_ == bound.constant_; in Equals()
170 bool GreaterThanOrEqualTo(ValueBound bound) const { in GreaterThanOrEqualTo()
171 if (Equal(instruction_, bound.instruction_)) { in GreaterThanOrEqualTo()
172 return constant_ >= bound.constant_; in GreaterThanOrEqualTo()
179 bool LessThanOrEqualTo(ValueBound bound) const { in LessThanOrEqualTo()
180 if (Equal(instruction_, bound.instruction_)) { in LessThanOrEqualTo()
181 return constant_ <= bound.constant_; in LessThanOrEqualTo()
188 bool GreaterThan(ValueBound bound) const { in GreaterThan()
189 if (Equal(instruction_, bound.instruction_)) { in GreaterThan()
190 return constant_ > bound.constant_; in GreaterThan()
197 bool LessThan(ValueBound bound) const { in LessThan()
198 if (Equal(instruction_, bound.instruction_)) { in LessThan()
199 return constant_ < bound.constant_; in LessThan()
373 ValueBound bound) in MonotonicValueRange() argument
380 bound_(bound) {} in MonotonicValueRange()
718 ValueBound bound = ValueBound::DetectValueBoundFromValue(right, &found); in HandleIf() local
721 ValueBound lower = bound; in HandleIf()
722 ValueBound upper = bound; in HandleIf()
970 ValueBound bound = ValueBound::DetectValueBoundFromValue( in VisitPhi() local
978 bound = increment > 0 ? initial_range->GetLower() : in VisitPhi()
981 bound = increment > 0 ? ValueBound::Min() : ValueBound::Max(); in VisitPhi()
989 bound); in VisitPhi()