Searched refs:EstimatedTripCount (Results 1 – 3 of 3) sorted by relevance
572 std::optional<unsigned> EstimatedTripCount = getLoopEstimatedTripCount(L); in computePeelCount() local573 if (!EstimatedTripCount) in computePeelCount()577 << *EstimatedTripCount << "\n"); in computePeelCount()579 if (*EstimatedTripCount) { in computePeelCount()580 if (*EstimatedTripCount + AlreadyPeeled <= MaxPeelCount) { in computePeelCount()581 unsigned PeelCount = *EstimatedTripCount; in computePeelCount()
829 bool llvm::setLoopEstimatedTripCount(Loop *L, unsigned EstimatedTripCount, in setLoopEstimatedTripCount() argument842 if (EstimatedTripCount > 0) { in setLoopEstimatedTripCount()844 BackedgeTakenWeight = (EstimatedTripCount - 1) * LatchExitWeight; in setLoopEstimatedTripCount()
322 bool setLoopEstimatedTripCount(Loop *L, unsigned EstimatedTripCount,