Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h225 ElementCount FixedVF; member
229 : FixedVF(ElementCount::getFixed(0)), in FixedScalableVFPair()
232 *(Max.isScalable() ? &ScalableVF : &FixedVF) = Max; in FixedScalableVFPair()
234 FixedScalableVFPair(const ElementCount &FixedVF, 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.cpp4955 Result.FixedVF = MaxVF; in computeFeasibleMaxVF()
5052 if (MaxFactors.FixedVF.isVector() && !MaxFactors.ScalableVF) { in computeMaxVF()
5053 ElementCount MaxFixedVF = MaxFactors.FixedVF; in computeMaxVF()
7450 UserVF.isScalable() ? MaxFactors.ScalableVF : MaxFactors.FixedVF; in plan()
7471 ElementCount::isKnownLE(VF, MaxFactors.FixedVF); VF *= 2) in plan()
7488 buildVPlansWithVPRecipes(ElementCount::getFixed(1), MaxFactors.FixedVF); in plan()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h208 void getWidestVF(StringRef ScalarF, ElementCount &FixedVF,
428 void getWidestVF(StringRef ScalarF, ElementCount &FixedVF, in getWidestVF() argument
430 Impl->getWidestVF(ScalarF, FixedVF, ScalableVF); in getWidestVF()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DTargetLibraryInfo.cpp1959 ElementCount &FixedVF, in getWidestVF() argument
1965 FixedVF = ElementCount::getFixed(1); in getWidestVF()
1973 I->VectorizationFactor.isScalable() ? &ScalableVF : &FixedVF; in getWidestVF()