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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp858 Constant *LoBound = 0, *HiBound = 0; local
862 LoBound = Prod;
867 HiOverflow = AddWithOverflow(HiBound, LoBound, RangeSize, false);
873 LoBound = ConstantExpr::getNeg(SubOne(RangeSize));
876 LoBound = Prod; // e.g. X/5 op 3 --> [15, 20)
886 LoOverflow = AddWithOverflow(LoBound, HiBound, DivNeg, true) ? -1 : 0;
894 LoBound = AddOne(RangeSize);
905 LoOverflow = AddWithOverflow(LoBound, HiBound, RangeSize, true) ? -1:0;
907 LoBound = Prod; // e.g. X/-5 op -3 --> [15, 20)
925 ICmpInst::ICMP_UGE, X, LoBound);
[all...]

Completed in 114 milliseconds