Lines Matching refs:getMinValue
28 APInt PossibleSumOne = LHS.getMinValue() + RHS.getMinValue() + CarryOne; in computeForAddCarry()
134 if (LHS.getMinValue().uge(RHS.getMaxValue())) in umax()
136 if (RHS.getMinValue().uge(LHS.getMaxValue())) in umax()
142 KnownBits L = LHS.makeGE(RHS.getMinValue()); in umax()
143 KnownBits R = RHS.makeGE(LHS.getMinValue()); in umax()
212 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(BitWidth); in shl()
285 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(BitWidth); in lshr()
329 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(BitWidth); in ashr()
381 if (LHS.getMaxValue().ule(RHS.getMinValue())) in ugt()
384 if (LHS.getMinValue().ugt(RHS.getMaxValue())) in ugt()
520 (void)LHS.getMinValue().uadd_ov(RHS.getMinValue(), Of); in computeForSatAddSub()
527 (void)LHS.getMinValue().usub_ov(RHS.getMaxValue(), Of); in computeForSatAddSub()
531 (void)LHS.getMaxValue().usub_ov(RHS.getMinValue(), Of); in computeForSatAddSub()
605 C = APInt::getMinValue(BitWidth); in computeForSatAddSub()
874 APInt MinDenom = RHS.getMinValue(); in udiv()