Searched refs:LoBound (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCompares.cpp | 2860 APInt LoBound, HiBound; in foldICmpDivConstant() local 2864 LoBound = Prod; in foldICmpDivConstant() 2869 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false); in foldICmpDivConstant() 2874 LoBound = -(RangeSize - 1); in foldICmpDivConstant() 2877 LoBound = Prod; // e.g. X/5 op 3 --> [15, 20) in foldICmpDivConstant() 2887 LoOverflow = addWithOverflow(LoBound, HiBound, DivNeg, true) ? -1 : 0; in foldICmpDivConstant() 2895 LoBound = RangeSize + 1; in foldICmpDivConstant() 2907 addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1 : 0; in foldICmpDivConstant() 2909 LoBound = Prod; // e.g. X/-5 op -3 --> [15, 20) in foldICmpDivConstant() 2927 X, ConstantInt::get(Ty, LoBound)); in foldICmpDivConstant() [all …]
|