Home
last modified time | relevance | path

Searched refs:LoBound (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2779 APInt LoBound, HiBound; in foldICmpDivConstant() local
2783 LoBound = Prod; in foldICmpDivConstant()
2788 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false); in foldICmpDivConstant()
2793 LoBound = -(RangeSize - 1); in foldICmpDivConstant()
2796 LoBound = Prod; // e.g. X/5 op 3 --> [15, 20) in foldICmpDivConstant()
2806 LoOverflow = addWithOverflow(LoBound, HiBound, DivNeg, true) ? -1 : 0; in foldICmpDivConstant()
2814 LoBound = RangeSize + 1; in foldICmpDivConstant()
2826 addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1 : 0; in foldICmpDivConstant()
2828 LoBound = Prod; // e.g. X/-5 op -3 --> [15, 20) in foldICmpDivConstant()
2846 X, ConstantInt::get(Ty, LoBound)); in foldICmpDivConstant()
[all …]