Lines Matching refs:getMaxValue
24 APInt PossibleSumZero = LHS.getMaxValue() + RHS.getMaxValue() + !CarryZero; in computeForAddCarry()
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()
231 if (LHS.getMinValue().uge(RHS.getMaxValue())) in abdu()
234 if (RHS.getMinValue().uge(LHS.getMaxValue())) in abdu()
322 APInt MaxValue = RHS.getMaxValue(); in shl()
393 APInt MaxValue = RHS.getMaxValue(); in lshr()
453 APInt MaxValue = RHS.getMaxValue(); in ashr()
504 if (LHS.getMaxValue().ule(RHS.getMinValue())) in ugt()
507 if (LHS.getMinValue().ugt(RHS.getMaxValue())) in ugt()
638 (void)LHS.getMaxValue().uadd_ov(RHS.getMaxValue(), 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()
723 C = APInt::getMaxValue(BitWidth); in computeForSatAddSub()
809 APInt UMaxLHS = LHS.getMaxValue(); in mul()
810 APInt UMaxRHS = RHS.getMaxValue(); in mul()
1018 APInt MaxNum = LHS.getMaxValue(); in udiv()