Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h335 void buildVPlans(ElementCount MinVF, ElementCount MaxVF);
352 void buildVPlansWithVPRecipes(ElementCount MinVF, ElementCount MaxVF);
H A DLoopVectorize.cpp1247 VectorizationFactor selectVectorizationFactor(ElementCount MaxVF);
1249 selectEpilogueVectorizationFactor(const ElementCount MaxVF,
5758 if (auto MaxVF = getMaximizedVFForTarget(ConstTripCount, SmallestType, in computeFeasibleMaxVF() local
5760 Result.FixedVF = MaxVF; in computeFeasibleMaxVF()
5762 if (auto MaxVF = getMaximizedVFForTarget(ConstTripCount, SmallestType, in computeFeasibleMaxVF() local
5764 if (MaxVF.isScalable()) { in computeFeasibleMaxVF()
5765 Result.ScalableVF = MaxVF; in computeFeasibleMaxVF()
5766 LLVM_DEBUG(dbgs() << "LV: Found feasible scalable VF = " << MaxVF in computeFeasibleMaxVF()
5958 ElementCount MaxVF = MaxVectorElementCount; in getMaximizedVFForTarget() local
5986 MaxVF = VFs[i]; in getMaximizedVFForTarget()
[all …]
H A DSLPVectorizer.cpp793 unsigned MaxVF = MaxVFOption.getNumOccurrences() ? in getMaximumVF() local
795 return MaxVF ? MaxVF : UINT_MAX; in getMaximumVF()
6706 unsigned MaxVF = std::min(R.getMaximumVF(EltSize, Instruction::Store), in vectorizeStores() local
6712 for (unsigned Size = MaxVF; Size >= MinVF; Size /= 2) { in vectorizeStores()
6817 unsigned MaxVF = std::max<unsigned>(PowerOf2Floor(VL.size()), MinVF); in tryToVectorizeList() local
6818 MaxVF = std::min(R.getMaximumVF(Sz, S.getOpcode()), MaxVF); in tryToVectorizeList()
6819 if (MaxVF < 2) { in tryToVectorizeList()
6836 for (unsigned VF = MaxVF; NextInst + 1 < MaxInst && VF >= MinVF; VF /= 2) { in tryToVectorizeList()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp1637 uint64_t MaxVF = MaxSafeDepDistBytes / (TypeByteSize * Stride); in isDependent() local
1639 << " with max VF = " << MaxVF << '\n'); in isDependent()
1640 uint64_t MaxVFInBits = MaxVF * TypeByteSize * 8; in isDependent()