Home
last modified time | relevance | path

Searched refs:ExpectedTC (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp436 if (auto ExpectedTC = getSmallConstantTripCount(PSE.getSE(), L)) in getSmallBestKnownTC() local
437 return ExpectedTC; in getSmallBestKnownTC()
448 if (unsigned ExpectedTC = PSE.getSmallConstantMaxTripCount()) in getSmallBestKnownTC() local
449 return ElementCount::getFixed(ExpectedTC); in getSmallBestKnownTC()
3758 auto ExpectedTC = getSmallBestKnownTC(PSE, TheLoop); in computeMaxVF() local
3759 if (ExpectedTC && ExpectedTC->isFixed() && in computeMaxVF()
3760 ExpectedTC->getFixedValue() <= in computeMaxVF()
9643 if (auto ExpectedTC = getSmallBestKnownTC(PSE, L)) { in isOutsideLoopWorkProfitable() local
9644 if (ElementCount::isKnownLT(*ExpectedTC, VF.MinProfitableTripCount)) { in isOutsideLoopWorkProfitable()
9647 << *ExpectedTC << " < " << VF.MinProfitableTripCount in isOutsideLoopWorkProfitable()
[all …]