Lines Matching refs:getMinValue
25 APInt PossibleSumOne = LHS.getMinValue() + RHS.getMinValue() + CarryOne; in computeForAddCarry()
79 APInt MinVal = LHS.getMinValue().uadd_sat(RHS.getMinValue()); in computeForAddSub()
91 APInt MaxVal = LHS.getMaxValue().usub_sat(RHS.getMinValue()); in computeForAddSub()
183 if (LHS.getMinValue().uge(RHS.getMaxValue())) in umax()
185 if (RHS.getMinValue().uge(LHS.getMaxValue())) in umax()
191 KnownBits L = LHS.makeGE(RHS.getMinValue()); in umax()
192 KnownBits R = RHS.makeGE(LHS.getMinValue()); in umax()
231 if (LHS.getMinValue().uge(RHS.getMaxValue())) in abdu()
234 if (RHS.getMinValue().uge(LHS.getMaxValue())) in abdu()
311 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(BitWidth); in shl()
384 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(BitWidth); in lshr()
440 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(BitWidth); in ashr()
504 if (LHS.getMaxValue().ule(RHS.getMinValue())) in ugt()
507 if (LHS.getMinValue().ugt(RHS.getMaxValue())) in ugt()
642 (void)LHS.getMinValue().uadd_ov(RHS.getMinValue(), Of); in computeForSatAddSub()
649 (void)LHS.getMinValue().usub_ov(RHS.getMaxValue(), Of); in computeForSatAddSub()
653 (void)LHS.getMaxValue().usub_ov(RHS.getMinValue(), Of); in computeForSatAddSub()
726 C = APInt::getMinValue(BitWidth); in computeForSatAddSub()
1017 APInt MinDenom = RHS.getMinValue(); in udiv()