Lines Matching defs:MaxValue
298 APInt MaxValue = APInt::getSignedMaxValue(BitWidth);
301 return ConstantRange(-MaxValue, MinValue);
305 Lower = APIntOps::RoundingSDiv(MaxValue, V, APInt::Rounding::UP);
309 Upper = APIntOps::RoundingSDiv(MaxValue, V, APInt::Rounding::DOWN);
874 // Analyze wrapped sets in their two parts: [0, Upper) \/ [Lower, MaxValue]
875 // We use the non-wrapped set code to analyze the [Lower, MaxValue) part, and
876 // then we do the union with [MaxValue, Upper)
878 // If Upper is greater than or equal to MaxValue(DstTy), it covers the whole
886 // Union covers the MaxValue case, so return if the remaining range is just
887 // MaxValue(DstTy).