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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp857 Constant *LoBound = nullptr, *HiBound = nullptr; local
861 LoBound = Prod;
866 HiOverflow = AddWithOverflow(HiBound, LoBound, RangeSize, false);
872 LoBound = ConstantExpr::getNeg(SubOne(RangeSize));
875 LoBound = Prod; // e.g. X/5 op 3 --> [15, 20)
885 LoOverflow = AddWithOverflow(LoBound, HiBound, DivNeg, true) ? -1 : 0;
893 LoBound = AddOne(RangeSize);
904 LoOverflow = AddWithOverflow(LoBound, HiBound, RangeSize, true) ? -1:0;
906 LoBound = Prod; // e.g. X/-5 op -3 --> [15, 20)
924 ICmpInst::ICMP_UGE, X, LoBound);
[all...]

Completed in 2458 milliseconds