Lines Matching defs:TripCount
532 Value *getTripCount() const { return TripCount; }
537 void setTripCount(Value *TC) { TripCount = TC; }
653 Value *TripCount = nullptr;
655 /// Trip count of the widened loop (TripCount - TripCount % (VF*UF))
708 Value *TripCount = nullptr;
810 TripCount = EPI.TripCount;
4315 // VecCost*ceil(TripCount/VF). When not folding the tail, the total
7678 // 0. Generate SCEV-dependent code in the entry, including TripCount, before
7796 unsigned TripCount = BestVPlan.getUF() * State.VF.getKnownMinValue();
7797 assert(TripCount > 0 && "trip count should not be zero");
7798 const uint32_t Weights[] = {1, TripCount - 1};
7903 EPI.TripCount = Count;
8004 assert(EPI.TripCount &&
8007 (!isa<Instruction>(EPI.TripCount) ||
8008 DT->dominates(cast<Instruction>(EPI.TripCount)->getParent(), Insert)) &&
8010 Value *TC = EPI.TripCount;