Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp4930 unsigned EstimatedVF = VF.getKnownMinValue(); in selectInterleaveCount() local
4933 EstimatedVF *= *VScale; in selectInterleaveCount()
4935 assert(EstimatedVF >= 1 && "Estimated VF shouldn't be less than 1"); in selectInterleaveCount()
4953 std::max(1u, std::min(AvailableTC / EstimatedVF, MaxInterleaveCount))); in selectInterleaveCount()
4955 1u, std::min(AvailableTC / (EstimatedVF * 2), MaxInterleaveCount))); in selectInterleaveCount()
4960 (AvailableTC % (EstimatedVF * InterleaveCountUB)); in selectInterleaveCount()
4962 (AvailableTC % (EstimatedVF * InterleaveCountLB)); in selectInterleaveCount()
4981 1u, std::min(AvailableTC / (EstimatedVF * 2), MaxInterleaveCount))); in selectInterleaveCount()