Lines Matching defs:TripCount
243 Value *TripCount = F->getArg(0);
247 Builder.CreateZExtOrTrunc(TripCount, IVType, "tripcount");
1392 Value *TripCount = F->getArg(0);
1400 Value *Cmp = Builder.CreateICmpEQ(LC, TripCount);
1409 OMPBuilder.createCanonicalLoop(Loc, LoopBodyGenCB, TripCount));
1426 EXPECT_EQ(IndVar->getType(), TripCount->getType());
1429 EXPECT_EQ(Loop->getTripCount(), TripCount);
1471 Value *TripCount = Loop->getTripCount();
1472 return cast<ConstantInt>(TripCount)->getValue().getZExtValue();
1600 auto *TripCount = cast<MulOperator>(Collapsed->getTripCount());
1601 EXPECT_EQ(TripCount->getOperand(0), OuterTripCount);
1602 EXPECT_EQ(TripCount->getOperand(1), InnerTripCount);
1673 Value *TripCount = F->getArg(0);
1674 Type *LCTy = TripCount->getType();
1692 TripCount, "inner"));
1698 Loc, LOOP_BODYGENCB_WRAPPER(OuterLoopBodyGenCB), TripCount, "outer"));
1761 Value *TripCount = F->getArg(0);
1762 Type *LCTy = TripCount->getType();
1765 Value *OuterStopVal = TripCount;
1768 Value *InnerStopVal = TripCount;
2383 Value *TripCount = CLI->getTripCount();
2421 EXPECT_EQ(ArgFunction->getArg(0)->getType(), TripCount->getType());
2426 EXPECT_EQ(TripCount, WorkshareLoopRuntimeCall->getArgOperand(3));
2463 Value *TripCount = Cmp->getOperand(1);
2507 auto *AddOne = dyn_cast<Instruction>(TripCount);