Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp4466 for (auto &NextVF : ProfitableVFs) { in selectEpilogueVectorizationFactor() local
4468 if (!hasPlanWithVF(NextVF.Width)) in selectEpilogueVectorizationFactor()
4473 if ((!NextVF.Width.isScalable() && MainLoopVF.isScalable() && in selectEpilogueVectorizationFactor()
4474 ElementCount::isKnownGE(NextVF.Width, EstimatedRuntimeVF)) || in selectEpilogueVectorizationFactor()
4475 (NextVF.Width.isScalable() && in selectEpilogueVectorizationFactor()
4476 ElementCount::isKnownGE(NextVF.Width, MainLoopVF)) || in selectEpilogueVectorizationFactor()
4477 (!NextVF.Width.isScalable() && !MainLoopVF.isScalable() && in selectEpilogueVectorizationFactor()
4478 ElementCount::isKnownGT(NextVF.Width, MainLoopVF))) in selectEpilogueVectorizationFactor()
4483 if (!MainLoopVF.isScalable() && !NextVF.Width.isScalable()) { in selectEpilogueVectorizationFactor()
4487 getPlanFor(NextVF.Width).getTripCount(), SE); in selectEpilogueVectorizationFactor()
[all …]