Searched defs:RangeSize (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp816 ConstantInt *RangeSize = DivI->isExact() ? getOne(Prod) : DivRHS; local
835 HiOverflow = AddWithOverflow(HiBound, LoBound, RangeSize, false);
841 LoBound = ConstantExpr::getNeg(SubOne(RangeSize));
842 HiBound = RangeSize;
847 HiOverflow = AddWithOverflow(HiBound, Prod, RangeSize, true);
853 ConstantInt *DivNeg =cast<ConstantInt>(ConstantExpr::getNeg(RangeSize));
859 RangeSize = cast<ConstantInt>(ConstantExpr::getNeg(RangeSize));
862 LoBound = AddOne(RangeSize);
863 HiBound = cast<ConstantInt>(ConstantExpr::getNeg(RangeSize));
[all...]

Completed in 56 milliseconds