Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h412 selectEpilogueVectorizationFactor(const ElementCount MaxVF, unsigned IC);
418 void buildVPlans(ElementCount MinVF, ElementCount MaxVF);
437 void buildVPlansWithVPRecipes(ElementCount MinVF, ElementCount MaxVF);
H A DLoopVectorize.cpp2324 uint64_t MaxVF = VF.getKnownMinValue(); in isIndvarOverflowCheckKnownFalse() local
2330 MaxVF *= *MaxVScale; in isIndvarOverflowCheckKnownFalse()
2333 return (MaxUIntTripCount - TC).ugt(MaxVF * MaxUF); in isIndvarOverflowCheckKnownFalse()
3981 if (auto MaxVF = in computeFeasibleMaxVF() local
3984 Result.FixedVF = MaxVF; in computeFeasibleMaxVF()
3986 if (auto MaxVF = in computeFeasibleMaxVF() local
3989 if (MaxVF.isScalable()) { in computeFeasibleMaxVF()
3990 Result.ScalableVF = MaxVF; in computeFeasibleMaxVF()
3991 LLVM_DEBUG(dbgs() << "LV: Found feasible scalable VF = " << MaxVF in computeFeasibleMaxVF()
4230 ElementCount MaxVF = MaxVectorElementCount; in getMaximizedVFForTarget() local
[all …]
H A DSLPVectorizer.cpp1318 unsigned MaxVF = MaxVFOption.getNumOccurrences() ? in getMaximumVF() local
1320 return MaxVF ? MaxVF : UINT_MAX; in getMaximumVF()
4657 unsigned MaxVF = std::max<unsigned>(bit_floor(VL.size() / 2), MinVF); in canVectorizeLoads() local
4658 MaxVF = std::min(getMaximumVF(Sz, Instruction::Load), MaxVF); in canVectorizeLoads()
4659 for (unsigned VF = MaxVF; VF >= MinVF; VF /= 2) { in canVectorizeLoads()
16074 unsigned MaxVF = in vectorizeStores() local
16076 unsigned MaxRegVF = MaxVF; in vectorizeStores()
16084 MaxVF in vectorizeStores()
16480 unsigned MaxVF = std::max<unsigned>(llvm::bit_floor(VL.size()), MinVF); tryToVectorizeList() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp2231 uint64_t MaxVF = MinDepDistBytes / (TypeByteSize * *CommonStride); in isDependent() local
2233 << " with max VF = " << MaxVF << '\n'); in isDependent()
2235 uint64_t MaxVFInBits = MaxVF * TypeByteSize * 8; in isDependent()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp1556 unsigned MaxVF = (RISCV::RVVBitsPerBlock / 8) * 8; in shouldExpandGetVectorLength()
1557 return VF > MaxVF || !isPowerOf2_32(VF); in shouldExpandGetVectorLength()
1555 unsigned MaxVF = (RISCV::RVVBitsPerBlock / 8) * 8; shouldExpandGetVectorLength() local