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