Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h209 ElementCount FixedVF; member
213 : FixedVF(ElementCount::getFixed(0)), in FixedScalableVFPair()
216 *(Max.isScalable() ? &ScalableVF : &FixedVF) = Max; in FixedScalableVFPair()
218 FixedScalableVFPair(const ElementCount &FixedVF, in FixedScalableVFPair()
220 : FixedVF(FixedVF), ScalableVF(ScalableVF) { in FixedScalableVFPair()
221 assert(!FixedVF.isScalable() && ScalableVF.isScalable() && in FixedScalableVFPair()
228 explicit operator bool() const { return FixedVF || ScalableVF; }
231 bool hasVector() const { return FixedVF.isVector() || ScalableVF.isVector(); } in hasVector()
H A DLoopVectorize.cpp5760 Result.FixedVF = MaxVF; in computeFeasibleMaxVF()
5856 if (MaxFactors.FixedVF.isVector() && !MaxFactors.ScalableVF) { in computeMaxVF()
5857 ElementCount MaxFixedVF = MaxFactors.FixedVF; in computeMaxVF()
7966 UserVF.isScalable() ? MaxFactors.ScalableVF : MaxFactors.FixedVF; in plan()
7982 ElementCount MaxVF = MaxFactors.FixedVF; in plan()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h194 void getWidestVF(StringRef ScalarF, ElementCount &FixedVF,
407 void getWidestVF(StringRef ScalarF, ElementCount &FixedVF, in getWidestVF() argument
409 Impl->getWidestVF(ScalarF, FixedVF, ScalableVF); in getWidestVF()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DTargetLibraryInfo.cpp1735 ElementCount &FixedVF, in getWidestVF() argument
1741 FixedVF = ElementCount::getFixed(1); in getWidestVF()
1749 I->VectorizationFactor.isScalable() ? &ScalableVF : &FixedVF; in getWidestVF()