Lines Matching defs:TripCount

3959     DebugLoc DL, Value *TripCount, Function *F, BasicBlock *PreInsertBefore,
3963 Type *IndVarTy = TripCount->getType();
3994 Builder.CreateICmpULT(IndVarPHI, TripCount, "omp_" + Name + ".cmp");
4027 Value *TripCount, const Twine &Name) {
4031 CanonicalLoopInfo *CL = createLoopSkeleton(Loc.DL, TripCount, BB->getParent(),
4113 Value *TripCount = Builder.CreateSelect(ZeroCmp, Zero, CountIfLooping,
4123 return createCanonicalLoop(LoopLoc, BodyGen, TripCount, Name);
4199 Value *TripCount = Builder.CreateAdd(TripCountMinusOne, One);
4200 CLI->setTripCount(TripCount);
4436 Type *ParallelTaskPtr, Value *TripCount, Function &LoopBodyFn) {
4437 Type *TripCountTy = TripCount->getType();
4446 RealArgs.push_back(TripCount);
4475 Value *TripCount = CLI->getTripCount();
4519 LoopBodyArg, ParallelTaskPtr, TripCount,
5110 Value *TripCount, const Twine &Name) -> CanonicalLoopInfo * {
5112 DL, TripCount, F, InnerEnter, OutroInsertBefore, Name);
5594 int TripCount = 0;
5600 computeUnrollCount(L, TTI, DT, &LI, &AC, SE, EphValues, &ORE, TripCount,
7538 Value *TripCount = RuntimeAttrs.LoopTripCount
7547 KArgs = OpenMPIRBuilder::TargetKernelArgs(NumTargetItems, RTArgs, TripCount,
9847 void CanonicalLoopInfo::setTripCount(Value *TripCount) {
9851 assert(isa<CmpInst>(CmpI) && "First inst must compare IV with TripCount");
9852 CmpI->setOperand(1, TripCount);
9971 Value *TripCount = getTripCount();
9972 assert(TripCount && "Loop trip count not found?");
9973 assert(IndVar->getType() == TripCount->getType() &&
9981 assert(CmpI->getOperand(1) == TripCount &&