Searched refs:FixedVF (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorizationPlanner.h | 271 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 D | LoopVectorizationLegality.cpp | 585 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 D | LoopVectorize.cpp | 3984 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 D | TargetLibraryInfo.h | 267 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 D | TargetLibraryInfo.cpp | 1427 ElementCount &FixedVF, in getWidestVF() argument 1433 FixedVF = ElementCount::getFixed(1); in getWidestVF() 1441 I->getVectorizationFactor().isScalable() ? &ScalableVF : &FixedVF; in getWidestVF()
|