Lines Matching defs:UpperBound
613 const APInt &UpperBound = CUB->getAPInt();
614 LLVM_DEBUG(dbgs() << "\t\tupper bound = " << UpperBound << "\n");
615 if (Xq.sgt(UpperBound) || Yq.sgt(UpperBound)) {
1251 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) {
1252 LLVM_DEBUG(dbgs() << "\t UpperBound = " << *UpperBound);
1253 LLVM_DEBUG(dbgs() << ", " << *UpperBound->getType() << "\n");
1258 const SCEV *Product = SE->getMulExpr(UpperBound, AbsCoeff);
1429 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) {
1430 LLVM_DEBUG(dbgs() << "\t UpperBound = " << *UpperBound << "\n");
1431 const SCEV *ConstantTwo = SE->getConstant(UpperBound->getType(), 2);
1432 const SCEV *ML = SE->getMulExpr(SE->getMulExpr(ConstCoeff, UpperBound),
1800 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) {
1801 LLVM_DEBUG(dbgs() << "\t UpperBound = " << *UpperBound << "\n");
1802 const SCEV *Product = SE->getMulExpr(AbsCoeff, UpperBound);
1909 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) {
1910 LLVM_DEBUG(dbgs() << "\t UpperBound = " << *UpperBound << "\n");
1911 const SCEV *Product = SE->getMulExpr(AbsCoeff, UpperBound);
1992 if (const SCEVConstant *UpperBound =
1994 SrcUM = UpperBound->getAPInt();
2002 if (const SCEVConstant *UpperBound =
2004 DstUM = UpperBound->getAPInt();
2809 if (const SCEV *UpperBound = getUpperBound(Bound))
2810 if (isKnownPredicate(CmpInst::ICMP_SGT, Delta, UpperBound))