Home | History | Annotate | Download | only in Utils

Lines Matching refs:UpperBound

83                               ConstantInt *LowerBound, ConstantInt *UpperBound,
201 /// The function recursively builds this tree. LowerBound and UpperBound are
207 ConstantInt *UpperBound, Value *Val,
218 if (Begin->Low == LowerBound && Begin->High == UpperBound) {
220 if (LowerBound && UpperBound)
222 UpperBound->getSExtValue() - LowerBound->getSExtValue();
269 if (UpperBound) {
270 dbgs() << UpperBound->getSExtValue() << "\n";
287 UpperBound, Val, NewNode, OrigBlock,
331 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High);
332 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound,
428 ConstantInt *UpperBound = nullptr;
437 UpperBound = Cases.back().High;
516 switchConvert(Cases.begin(), Cases.end(), LowerBound, UpperBound, Val,