Lines Matching refs:HiBound
2779 APInt LoBound, HiBound; in foldICmpDivConstant() local
2788 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false); in foldICmpDivConstant()
2794 HiBound = RangeSize; in foldICmpDivConstant()
2799 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true); in foldICmpDivConstant()
2802 HiBound = Prod + 1; in foldICmpDivConstant()
2806 LoOverflow = addWithOverflow(LoBound, HiBound, DivNeg, true) ? -1 : 0; in foldICmpDivConstant()
2815 HiBound = -RangeSize; in foldICmpDivConstant()
2816 if (HiBound == *C2) { // -INTMIN = INTMIN in foldICmpDivConstant()
2818 HiBound = APInt(); // e.g. X/INTMIN = 0 --> X > INTMIN in foldICmpDivConstant()
2822 HiBound = Prod + 1; in foldICmpDivConstant()
2826 addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1 : 0; in foldICmpDivConstant()
2831 HiOverflow = subWithOverflow(HiBound, Prod, RangeSize, true); in foldICmpDivConstant()
2849 X, ConstantInt::get(Ty, HiBound)); in foldICmpDivConstant()
2851 Cmp, insertRangeTest(X, LoBound, HiBound, DivIsSigned, true)); in foldICmpDivConstant()
2860 X, ConstantInt::get(Ty, HiBound)); in foldICmpDivConstant()
2862 Cmp, insertRangeTest(X, LoBound, HiBound, DivIsSigned, false)); in foldICmpDivConstant()
2877 return new ICmpInst(ICmpInst::ICMP_UGE, X, ConstantInt::get(Ty, HiBound)); in foldICmpDivConstant()
2878 return new ICmpInst(ICmpInst::ICMP_SGE, X, ConstantInt::get(Ty, HiBound)); in foldICmpDivConstant()