Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp5445 unsigned KnownTC = PSE.getSE()->getSmallConstantTripCount(TheLoop); in selectInterleaveCount() local
5446 if (KnownTC) { in selectInterleaveCount()
5456 std::max(1u, std::min(KnownTC / EstimatedVF, MaxInterleaveCount))); in selectInterleaveCount()
5458 1u, std::min(KnownTC / (EstimatedVF * 2), MaxInterleaveCount))); in selectInterleaveCount()
5462 unsigned TailTripCountUB = (KnownTC % (EstimatedVF * InterleaveCountUB)); in selectInterleaveCount()
5463 unsigned TailTripCountLB = (KnownTC % (EstimatedVF * InterleaveCountLB)); in selectInterleaveCount()