Home | History | Annotate | Download | only in Scalar

Lines Matching defs:ExitCnt

1637   Value *ExitCnt = genLoopLimit(IndVar, IVCount, L, Rewriter, SE);
1638 assert(ExitCnt->getType()->isPointerTy() == IndVar->getType()->isPointerTy()
1653 << " RHS:\t" << *ExitCnt << "\n"
1661 unsigned ExitCntSize = SE->getTypeSizeInBits(ExitCnt->getType());
1683 ExitCnt = ConstantInt::get(CmpIndVar->getType(), NewLimit);
1685 DEBUG(dbgs() << " Widen RHS:\t" << *ExitCnt << "\n");
1687 CmpIndVar = Builder.CreateTrunc(CmpIndVar, ExitCnt->getType(),
1691 Value *Cond = Builder.CreateICmp(P, CmpIndVar, ExitCnt, "exitcond");