• Home
  • Raw
  • Download

Lines Matching refs:getSignedMin

116     APInt SMin(CR.getSignedMin());  in makeAllowedICmpRegion()
124 return getNonEmpty(CR.getSignedMin(), APInt::getSignedMinValue(W)); in makeAllowedICmpRegion()
250 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion()
261 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion()
271 return makeExactMulNSWRegion(Other.getSignedMin()) in makeGuaranteedNoWrapRegion()
383 APInt ConstantRange::getSignedMin() const { in getSignedMin() function in ConstantRange
427 return std::max(getSignedMin().getMinSignedBits(), in getMinSignedBits()
1039 this_min = getSignedMin().sext(getBitWidth() * 2); in multiply()
1041 Other_min = Other.getSignedMin().sext(getBitWidth() * 2); in multiply()
1059 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin()); in smax()
1081 APInt NewL = APIntOps::smin(getSignedMin(), Other.getSignedMin()); in smin()
1231 APInt MinLHS = getSignedMin(), MaxLHS = getSignedMax(); in srem()
1369 APInt PosMin = getSignedMin().ashr(Other.getUnsignedMax()); in ashr()
1383 APInt NegMin = getSignedMin().ashr(Other.getUnsignedMin()); in ashr()
1386 if (getSignedMin().isNonNegative()) { in ashr()
1415 APInt NewL = getSignedMin().sadd_sat(Other.getSignedMin()); in sadd_sat()
1433 APInt NewL = getSignedMin().ssub_sat(Other.getSignedMax()); in ssub_sat()
1434 APInt NewU = getSignedMax().ssub_sat(Other.getSignedMin()) + 1; in ssub_sat()
1457 APInt this_min = getSignedMin().sext(getBitWidth() * 2); in smul_sat()
1459 APInt Other_min = Other.getSignedMin().sext(getBitWidth() * 2); in smul_sat()
1486 APInt Min = getSignedMin(), Max = getSignedMax(); in sshl_sat()
1520 APInt SMin = getSignedMin(), SMax = getSignedMax(); in abs()
1564 APInt Min = getSignedMin(), Max = getSignedMax(); in signedAddMayOverflow()
1565 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow()
1610 APInt Min = getSignedMin(), Max = getSignedMax(); in signedSubMayOverflow()
1611 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedSubMayOverflow()