Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h226 ElementCount ScalableVF; member
230 ScalableVF(ElementCount::getScalable(0)) {} in FixedScalableVFPair()
232 *(Max.isScalable() ? &ScalableVF : &FixedVF) = Max; in FixedScalableVFPair()
235 const ElementCount &ScalableVF) in FixedScalableVFPair()
236 : FixedVF(FixedVF), ScalableVF(ScalableVF) { in FixedScalableVFPair()
237 assert(!FixedVF.isScalable() && ScalableVF.isScalable() && in FixedScalableVFPair()
244 explicit operator bool() const { return FixedVF || ScalableVF; }
247 bool hasVector() const { return FixedVF.isVector() || ScalableVF.isVector(); } in hasVector()
H A DLoopVectorize.cpp4961 Result.ScalableVF = MaxVF; in computeFeasibleMaxVF()
5052 if (MaxFactors.FixedVF.isVector() && !MaxFactors.ScalableVF) { in computeMaxVF()
7450 UserVF.isScalable() ? MaxFactors.ScalableVF : MaxFactors.FixedVF; in plan()
7474 ElementCount::isKnownLE(VF, MaxFactors.ScalableVF); VF *= 2) in plan()
7489 buildVPlansWithVPRecipes(ElementCount::getScalable(1), MaxFactors.ScalableVF); in plan()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h429 ElementCount &ScalableVF) const { in getWidestVF() argument
430 Impl->getWidestVF(ScalarF, FixedVF, ScalableVF); in getWidestVF()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DTargetLibraryInfo.cpp1960 ElementCount &ScalableVF) const { in getWidestVF()
1964 ScalableVF = ElementCount::getScalable(0); in getWidestVF()
1973 I->VectorizationFactor.isScalable() ? &ScalableVF : &FixedVF; in getWidestVF()