Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h271 ElementCount FixedVF; member
275 : FixedVF(ElementCount::getFixed(0)), in FixedScalableVFPair()
278 *(Max.isScalable() ? &ScalableVF : &FixedVF) = Max; in FixedScalableVFPair()
280 FixedScalableVFPair(const ElementCount &FixedVF, in FixedScalableVFPair()
282 : FixedVF(FixedVF), ScalableVF(ScalableVF) { in FixedScalableVFPair()
283 assert(!FixedVF.isScalable() && ScalableVF.isScalable() && in FixedScalableVFPair()
290 explicit operator bool() const { return FixedVF || ScalableVF; }
293 bool hasVector() const { return FixedVF.isVector() || ScalableVF.isVector(); } in hasVector()
H A DLoopVectorizationLegality.cpp585 unsigned FixedVF = VF.getKnownMinValue(); in isUniform() local
587 SCEVAddRecForUniformityRewriter::rewrite(S, *SE, FixedVF, 0, TheLoop); in isUniform()
594 return all_of(reverse(seq<unsigned>(1, FixedVF)), [&](unsigned I) { in isUniform()
596 SCEVAddRecForUniformityRewriter::rewrite(S, *SE, FixedVF, I, TheLoop); in isUniform()
H A DLoopVectorize.cpp3984 Result.FixedVF = MaxVF; in computeFeasibleMaxVF()
4082 MaxFactors.FixedVF.getFixedValue(); in computeMaxVF()
4130 MaxFactors.FixedVF = ElementCount::getFixed(1); in computeMaxVF()
6884 UserVF.isScalable() ? MaxFactors.ScalableVF : MaxFactors.FixedVF; in plan()
6911 ElementCount::isKnownLE(VF, MaxFactors.FixedVF); VF *= 2) in plan()
6928 buildVPlansWithVPRecipes(ElementCount::getFixed(1), MaxFactors.FixedVF); in plan()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h267 void getWidestVF(StringRef ScalarF, ElementCount &FixedVF,
580 void getWidestVF(StringRef ScalarF, ElementCount &FixedVF, in getWidestVF() argument
582 Impl->getWidestVF(ScalarF, FixedVF, ScalableVF); in getWidestVF()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetLibraryInfo.cpp1427 ElementCount &FixedVF, in getWidestVF() argument
1433 FixedVF = ElementCount::getFixed(1); in getWidestVF()
1441 I->getVectorizationFactor().isScalable() ? &ScalableVF : &FixedVF; in getWidestVF()