Lines Matching refs:getMaxValue
27 APInt PossibleSumZero = LHS.getMaxValue() + RHS.getMaxValue() + !CarryZero; in computeForAddCarry()
134 if (LHS.getMinValue().uge(RHS.getMaxValue())) in umax()
136 if (RHS.getMinValue().uge(LHS.getMaxValue())) in umax()
223 APInt MaxValue = RHS.getMaxValue(); in shl()
294 APInt MaxValue = RHS.getMaxValue(); in lshr()
342 APInt MaxValue = RHS.getMaxValue(); in ashr()
381 if (LHS.getMaxValue().ule(RHS.getMinValue())) in ugt()
384 if (LHS.getMinValue().ugt(RHS.getMaxValue())) in ugt()
516 (void)LHS.getMaxValue().uadd_ov(RHS.getMaxValue(), 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()
602 C = APInt::getMaxValue(BitWidth); in computeForSatAddSub()
660 APInt UMaxLHS = LHS.getMaxValue(); in mul()
661 APInt UMaxRHS = RHS.getMaxValue(); in mul()
875 APInt MaxNum = LHS.getMaxValue(); in udiv()