162#define LV_NAME "loop-vectorize"
163#define DEBUG_TYPE LV_NAME
169STATISTIC(LoopsVectorized,
"Number of loops vectorized");
170STATISTIC(LoopsAnalyzed,
"Number of loops analyzed for vectorization");
171STATISTIC(LoopsEpilogueVectorized,
"Number of epilogues vectorized");
172STATISTIC(LoopsEarlyExitVectorized,
"Number of early exit loops vectorized");
176 cl::desc(
"Enable vectorization of epilogue loops."));
180 cl::desc(
"When epilogue vectorization is enabled, and a value greater than "
181 "1 is specified, forces the given VF for all applicable epilogue "
185 "epilogue-vectorization-minimum-VF",
cl::Hidden,
186 cl::desc(
"Only loops with vectorization factor equal to or larger than "
187 "the specified value are considered for epilogue vectorization."));
193 cl::desc(
"Loops with a constant trip count that is smaller than this "
194 "value are vectorized only if no scalar iteration overheads "
199 cl::desc(
"The maximum allowed number of runtime memory checks"));
205 cl::desc(
"Assume the target supports masked memory operations (used for "
222 "prefer-predicate-over-epilogue",
225 cl::desc(
"Tail-folding and predication preferences over creating a scalar "
229 "Don't tail-predicate loops, create scalar epilogue"),
231 "predicate-else-scalar-epilogue",
232 "prefer tail-folding, create scalar epilogue if tail "
235 "predicate-dont-vectorize",
236 "prefers tail-folding, don't attempt vectorization if "
237 "tail-folding fails.")));
240 "force-tail-folding-style",
cl::desc(
"Force the tail folding style"),
246 "Create lane mask for data only, using active.lane.mask intrinsic"),
248 "data-without-lane-mask",
249 "Create lane mask with compare/stepvector"),
251 "Create lane mask using active.lane.mask intrinsic, and use "
252 "it for both data and control flow"),
254 "Use predicated EVL instructions for tail folding. If EVL "
255 "is unsupported, fallback to data-without-lane-mask.")));
259 cl::desc(
"Enable use of wide lane masks when used for control flow in "
260 "tail-folded loops"));
264 cl::desc(
"Maximize bandwidth when selecting vectorization factor which "
265 "will be determined by the smallest type in loop."));
269 cl::desc(
"Enable vectorization on interleaved memory accesses in a loop"));
275 cl::desc(
"Enable vectorization on masked interleaved memory accesses in a loop"));
279 cl::desc(
"A flag that overrides the target's number of scalar registers."));
283 cl::desc(
"A flag that overrides the target's number of vector registers."));
287 cl::desc(
"A flag that overrides the target's max interleave factor for "
292 cl::desc(
"A flag that overrides the target's max interleave factor for "
293 "vectorized loops."));
297 cl::desc(
"A flag that overrides the target's expected cost for "
298 "an instruction to a single constant value. Mostly "
299 "useful for getting consistent testing."));
304 "Pretend that scalable vectors are supported, even if the target does "
305 "not support them. This flag should only be used for testing."));
310 "The cost of a loop that is considered 'small' by the interleaver."));
314 cl::desc(
"Enable the use of the block frequency analysis to access PGO "
315 "heuristics minimizing code growth in cold regions and being more "
316 "aggressive in hot regions."));
322 "Enable runtime interleaving until load/store ports are saturated"));
327 cl::desc(
"Max number of stores to be predicated behind an if."));
331 cl::desc(
"Count the induction variable only once when interleaving"));
335 cl::desc(
"Enable if predication of stores during vectorization."));
339 cl::desc(
"The maximum interleave count to use when interleaving a scalar "
340 "reduction in a nested loop."));
345 cl::desc(
"Prefer in-loop vector reductions, "
346 "overriding the targets preference."));
350 cl::desc(
"Enable the vectorisation of loops with in-order (strict) "
356 "Prefer predicating a reduction operation over an after loop select."));
360 cl::desc(
"Enable VPlan-native vectorization path with "
361 "support for outer loop vectorization."));
365#ifdef EXPENSIVE_CHECKS
371 cl::desc(
"Verify VPlans after VPlan transforms."));
373#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
376 cl::desc(
"Print VPlans after all VPlan transformations."));
380 cl::desc(
"Print VPlans after specified VPlan transformations (regexp)."));
384 cl::desc(
"Limit VPlan printing to vector loop region in "
385 "`-vplan-print-after*` if the plan has one."));
395 "Build VPlan for every supported loop nest in the function and bail "
396 "out right after the build (stress test the VPlan H-CFG construction "
397 "in the VPlan-native vectorization path)."));
401 cl::desc(
"Enable loop interleaving in Loop vectorization passes"));
404 cl::desc(
"Run the Loop vectorization passes"));
407 "force-widen-divrem-via-safe-divisor",
cl::Hidden,
409 "Override cost based safe divisor widening for div/rem instructions"));
412 "vectorizer-maximize-bandwidth-for-vector-calls",
cl::init(
true),
414 cl::desc(
"Try wider VFs if they enable the use of vector variants"));
419 "Enable vectorization of early exit loops with uncountable exits."));
423 cl::desc(
"Discard VFs if their register pressure is too high."));
436 return DL.getTypeAllocSizeInBits(Ty) !=
DL.getTypeSizeInBits(Ty);
491static std::optional<ElementCount>
493 bool CanUseConstantMax =
true,
494 bool CanExcludeZeroTrips =
false) {
504 if (!CanUseConstantMax)
514 if (CanUseConstantMax && CanExcludeZeroTrips)
523class GeneratedRTChecks;
555 VF(VecWidth),
UF(UnrollFactor),
Builder(
PSE.getSE()->getContext()),
558 Plan.getVectorLoopRegion()->getSinglePredecessor())) {}
664 "A high UF for the epilogue loop is likely not beneficial.");
684 UnrollFactor, CM, Checks,
Plan),
713 EPI.MainLoopVF,
EPI.MainLoopUF) {}
751 EPI.EpilogueVF,
EPI.EpilogueUF) {}
768 if (
I->getDebugLoc() !=
Empty)
769 return I->getDebugLoc();
772 if (Instruction *OpInst = dyn_cast<Instruction>(Op))
773 if (OpInst->getDebugLoc() != Empty)
774 return OpInst->getDebugLoc();
777 return I->getDebugLoc();
786 dbgs() <<
"LV: " << Prefix << DebugMsg;
802static OptimizationRemarkAnalysis
808 if (
I &&
I->getDebugLoc())
809 DL =
I->getDebugLoc();
813 return OptimizationRemarkAnalysis(
PassName, RemarkName,
DL, CodeRegion);
821 assert(Ty->isIntegerTy() &&
"Expected an integer step");
829 return B.CreateElementCount(Ty, VFxStep);
834 return B.CreateElementCount(Ty, VF);
845 <<
"loop not vectorized: " << OREMsg);
868 "Vectorizing: ", TheLoop->
isInnermost() ?
"innermost loop" :
"outer loop",
874 <<
"vectorized " << LoopType <<
"loop (vectorization width: "
876 <<
", interleaved count: " <<
ore::NV(
"InterleaveCount", IC) <<
")";
933 initializeVScaleForTuning();
944 bool runtimeChecksRequired();
963 std::pair<unsigned, unsigned> getSmallestAndWidestTypes();
982 void collectValuesToIgnore();
985 void collectElementTypesForWidening();
989 void collectInLoopReductions();
1010 "Profitable to scalarize relevant only for VF > 1.");
1013 "cost-model should not be used for outer loops (in VPlan-native path)");
1015 auto Scalars = InstsToScalarize.find(VF);
1016 assert(Scalars != InstsToScalarize.end() &&
1017 "VF not yet analyzed for scalarization profitability");
1018 return Scalars->second.contains(
I);
1025 "cost-model should not be used for outer loops (in VPlan-native path)");
1035 auto UniformsPerVF = Uniforms.find(VF);
1036 assert(UniformsPerVF != Uniforms.end() &&
1037 "VF not yet analyzed for uniformity");
1038 return UniformsPerVF->second.count(
I);
1045 "cost-model should not be used for outer loops (in VPlan-native path)");
1049 auto ScalarsPerVF = Scalars.find(VF);
1050 assert(ScalarsPerVF != Scalars.end() &&
1051 "Scalar values are not calculated for VF");
1052 return ScalarsPerVF->second.count(
I);
1060 I->getType()->getScalarSizeInBits() < MinBWs.lookup(
I))
1062 return VF.
isVector() && MinBWs.contains(
I) &&
1084 WideningDecisions[{
I, VF}] = {W,
Cost};
1103 for (
unsigned Idx = 0; Idx < Grp->
getFactor(); ++Idx) {
1106 WideningDecisions[{
I, VF}] = {W, InsertPosCost};
1108 WideningDecisions[{
I, VF}] = {W, OtherMemberCost};
1120 "cost-model should not be used for outer loops (in VPlan-native path)");
1122 std::pair<Instruction *, ElementCount> InstOnVF(
I, VF);
1123 auto Itr = WideningDecisions.find(InstOnVF);
1124 if (Itr == WideningDecisions.end())
1126 return Itr->second.first;
1133 std::pair<Instruction *, ElementCount> InstOnVF(
I, VF);
1134 assert(WideningDecisions.contains(InstOnVF) &&
1135 "The cost is not calculated");
1136 return WideningDecisions[InstOnVF].second;
1149 std::optional<unsigned> MaskPos,
1152 CallWideningDecisions[{CI, VF}] = {Kind, Variant, IID, MaskPos,
Cost};
1158 auto I = CallWideningDecisions.find({CI, VF});
1159 if (
I == CallWideningDecisions.end())
1182 Value *
Op = Trunc->getOperand(0);
1183 if (
Op !=
Legal->getPrimaryInduction() &&
TTI.isTruncateFree(SrcTy, DestTy))
1187 return Legal->isInductionPhi(
Op);
1203 if (VF.
isScalar() || Uniforms.contains(VF))
1206 collectLoopUniforms(VF);
1208 collectLoopScalars(VF);
1216 return Legal->isConsecutivePtr(DataType, Ptr) &&
1225 return Legal->isConsecutivePtr(DataType, Ptr) &&
1241 return (
LI &&
TTI.isLegalMaskedGather(Ty,
Align)) ||
1248 return (
all_of(
Legal->getReductionVars(), [&](
auto &Reduction) ->
bool {
1249 const RecurrenceDescriptor &RdxDesc = Reduction.second;
1250 return TTI.isLegalToVectorizeReduction(RdxDesc, VF);
1261 return ScalarCost < SafeDivisorCost;
1308 std::pair<InstructionCost, InstructionCost>
1335 LLVM_DEBUG(
dbgs() <<
"LV: Loop does not require scalar epilogue\n");
1342 LLVM_DEBUG(
dbgs() <<
"LV: Loop requires scalar epilogue: not exiting "
1343 "from latch block\n");
1348 "interleaved group requires scalar epilogue\n");
1351 LLVM_DEBUG(
dbgs() <<
"LV: Loop does not require scalar epilogue\n");
1369 return ChosenTailFoldingStyle;
1377 "Tail folding must not be selected yet.");
1378 if (!
Legal->canFoldTailByMasking()) {
1384 ChosenTailFoldingStyle =
TTI.getPreferredTailFoldingStyle();
1392 bool EVLIsLegal = UserIC <= 1 && IsScalableVF &&
1405 dbgs() <<
"LV: Preference for VP intrinsics indicated. Will "
1406 "not try to generate VP Intrinsics "
1408 ?
"since interleave count specified is greater than 1.\n"
1409 :
"due to non-interleaving reasons.\n"));
1450 return InLoopReductions.contains(Phi);
1455 return InLoopReductions;
1473 TTI.preferPredicatedReductionSelect();
1488 WideningDecisions.clear();
1489 CallWideningDecisions.clear();
1507 bool isEpilogueVectorizationProfitable(
const ElementCount VF,
1508 const unsigned IC)
const;
1516 std::optional<InstructionCost> getReductionPatternCost(
Instruction *
I,
1518 Type *VectorTy)
const;
1522 bool shouldConsiderInvariant(
Value *
Op);
1528 unsigned NumPredStores = 0;
1532 std::optional<unsigned> VScaleForTuning;
1537 void initializeVScaleForTuning() {
1542 auto Max = Attr.getVScaleRangeMax();
1543 if (Max && Min == Max) {
1544 VScaleForTuning = Max;
1557 FixedScalableVFPair computeFeasibleMaxVF(
unsigned MaxTripCount,
1558 ElementCount UserVF,
unsigned UserIC,
1559 bool FoldTailByMasking);
1563 ElementCount clampVFByMaxTripCount(ElementCount VF,
unsigned MaxTripCount,
1565 bool FoldTailByMasking)
const;
1570 ElementCount getMaximizedVFForTarget(
unsigned MaxTripCount,
1571 unsigned SmallestType,
1572 unsigned WidestType,
1573 ElementCount MaxSafeVF,
unsigned UserIC,
1574 bool FoldTailByMasking);
1578 bool isScalableVectorizationAllowed();
1582 ElementCount getMaxLegalScalableVF(
unsigned MaxSafeElements);
1588 InstructionCost getMemInstScalarizationCost(Instruction *
I, ElementCount VF);
1609 ElementCount VF)
const;
1614 MapVector<Instruction *, uint64_t> MinBWs;
1619 using ScalarCostsTy = MapVector<Instruction *, InstructionCost>;
1623 DenseMap<ElementCount, SmallPtrSet<BasicBlock *, 4>>
1624 PredicatedBBsAfterVectorization;
1639 std::optional<bool> IsScalableVectorizationAllowed;
1645 std::optional<unsigned> MaxSafeElements;
1651 MapVector<ElementCount, ScalarCostsTy> InstsToScalarize;
1655 DenseMap<ElementCount, SmallPtrSet<Instruction *, 4>> Uniforms;
1659 DenseMap<ElementCount, SmallPtrSet<Instruction *, 4>> Scalars;
1663 DenseMap<ElementCount, SmallPtrSet<Instruction *, 4>> ForcedScalars;
1666 SmallPtrSet<PHINode *, 4> InLoopReductions;
1671 DenseMap<Instruction *, Instruction *> InLoopReductionImmediateChains;
1679 ScalarCostsTy &ScalarCosts,
1691 void collectLoopUniforms(ElementCount VF);
1700 void collectLoopScalars(ElementCount VF);
1704 using DecisionList = DenseMap<std::pair<Instruction *, ElementCount>,
1705 std::pair<InstWidening, InstructionCost>>;
1707 DecisionList WideningDecisions;
1709 using CallDecisionList =
1710 DenseMap<std::pair<CallInst *, ElementCount>, CallWideningDecision>;
1712 CallDecisionList CallWideningDecisions;
1716 bool needsExtract(
Value *V, ElementCount VF)
const {
1720 getWideningDecision(
I, VF) == CM_Scalarize ||
1731 return !Scalars.
contains(VF) || !isScalarAfterVectorization(
I, VF);
1735 SmallVector<Value *, 4> filterExtractingOperands(Instruction::op_range
Ops,
1736 ElementCount VF)
const {
1738 SmallPtrSet<const Value *, 4> UniqueOperands;
1739 SmallVector<Value *, 4> Res;
1742 !needsExtract(
Op, VF))
1828class GeneratedRTChecks {
1834 Value *SCEVCheckCond =
nullptr;
1841 Value *MemRuntimeCheckCond =
nullptr;
1850 bool CostTooHigh =
false;
1852 Loop *OuterLoop =
nullptr;
1863 : DT(DT), LI(LI),
TTI(
TTI),
1864 SCEVExp(*PSE.
getSE(),
"scev.check",
false),
1865 MemCheckExp(*PSE.
getSE(),
"scev.check",
false),
1873 void create(Loop *L,
const LoopAccessInfo &LAI,
1874 const SCEVPredicate &UnionPred, ElementCount VF,
unsigned IC,
1875 OptimizationRemarkEmitter &ORE) {
1888 return OptimizationRemarkAnalysisAliasing(
1889 DEBUG_TYPE,
"TooManyMemoryRuntimeChecks",
L->getStartLoc(),
1891 <<
"loop not vectorized: too many memory checks needed";
1906 nullptr,
"vector.scevcheck");
1913 SCEVExpanderCleaner SCEVCleaner(SCEVExp);
1914 SCEVCleaner.cleanup();
1919 if (RtPtrChecking.Need) {
1920 auto *Pred = SCEVCheckBlock ? SCEVCheckBlock : Preheader;
1921 MemCheckBlock =
SplitBlock(Pred, Pred->getTerminator(), DT, LI,
nullptr,
1924 auto DiffChecks = RtPtrChecking.getDiffChecks();
1926 Value *RuntimeVF =
nullptr;
1929 [VF, &RuntimeVF](IRBuilderBase &
B,
unsigned Bits) {
1931 RuntimeVF = getRuntimeVF(B, B.getIntNTy(Bits), VF);
1937 MemCheckBlock->
getTerminator(), L, RtPtrChecking.getChecks(),
1940 assert(MemRuntimeCheckCond &&
1941 "no RT checks generated although RtPtrChecking "
1942 "claimed checks are required");
1947 if (!MemCheckBlock && !SCEVCheckBlock)
1957 if (SCEVCheckBlock) {
1960 auto *UI =
new UnreachableInst(Preheader->
getContext(), SCEVCheckBlock);
1964 if (MemCheckBlock) {
1967 auto *UI =
new UnreachableInst(Preheader->
getContext(), MemCheckBlock);
1973 if (MemCheckBlock) {
1977 if (SCEVCheckBlock) {
1983 OuterLoop =
L->getParentLoop();
1987 if (SCEVCheckBlock || MemCheckBlock)
1999 for (Instruction &
I : *SCEVCheckBlock) {
2000 if (SCEVCheckBlock->getTerminator() == &
I)
2006 if (MemCheckBlock) {
2008 for (Instruction &
I : *MemCheckBlock) {
2009 if (MemCheckBlock->getTerminator() == &
I)
2021 ScalarEvolution *SE = MemCheckExp.
getSE();
2026 const SCEV *
Cond = SE->
getSCEV(MemRuntimeCheckCond);
2031 unsigned BestTripCount = 2;
2035 PSE, OuterLoop,
false))
2036 if (EstimatedTC->isFixed())
2037 BestTripCount = EstimatedTC->getFixedValue();
2042 NewMemCheckCost = std::max(NewMemCheckCost.
getValue(),
2043 (InstructionCost::CostType)1);
2045 if (BestTripCount > 1)
2047 <<
"We expect runtime memory checks to be hoisted "
2048 <<
"out of the outer loop. Cost reduced from "
2049 << MemCheckCost <<
" to " << NewMemCheckCost <<
'\n');
2051 MemCheckCost = NewMemCheckCost;
2055 RTCheckCost += MemCheckCost;
2058 if (SCEVCheckBlock || MemCheckBlock)
2059 LLVM_DEBUG(
dbgs() <<
"Total cost of runtime checks: " << RTCheckCost
2067 ~GeneratedRTChecks() {
2068 SCEVExpanderCleaner SCEVCleaner(SCEVExp);
2069 SCEVExpanderCleaner MemCheckCleaner(MemCheckExp);
2070 bool SCEVChecksUsed = !SCEVCheckBlock || !
pred_empty(SCEVCheckBlock);
2071 bool MemChecksUsed = !MemCheckBlock || !
pred_empty(MemCheckBlock);
2073 SCEVCleaner.markResultUsed();
2075 if (MemChecksUsed) {
2076 MemCheckCleaner.markResultUsed();
2078 auto &SE = *MemCheckExp.
getSE();
2085 I.eraseFromParent();
2088 MemCheckCleaner.cleanup();
2089 SCEVCleaner.cleanup();
2091 if (!SCEVChecksUsed)
2092 SCEVCheckBlock->eraseFromParent();
2094 MemCheckBlock->eraseFromParent();
2099 std::pair<Value *, BasicBlock *> getSCEVChecks()
const {
2100 using namespace llvm::PatternMatch;
2102 return {
nullptr,
nullptr};
2104 return {SCEVCheckCond, SCEVCheckBlock};
2109 std::pair<Value *, BasicBlock *> getMemRuntimeChecks()
const {
2110 using namespace llvm::PatternMatch;
2111 if (MemRuntimeCheckCond &&
match(MemRuntimeCheckCond,
m_ZeroInt()))
2112 return {
nullptr,
nullptr};
2113 return {MemRuntimeCheckCond, MemCheckBlock};
2117 bool hasChecks()
const {
2118 return getSCEVChecks().first || getMemRuntimeChecks().first;
2159 LLVM_DEBUG(
dbgs() <<
"LV: Loop hints prevent outer loop vectorization.\n");
2165 LLVM_DEBUG(
dbgs() <<
"LV: Not vectorizing: Interleave is not supported for "
2195 for (
Loop *InnerL : L)
2214 ?
B.CreateSExtOrTrunc(Index, StepTy)
2215 :
B.CreateCast(Instruction::SIToFP, Index, StepTy);
2216 if (CastedIndex != Index) {
2218 Index = CastedIndex;
2228 assert(
X->getType() ==
Y->getType() &&
"Types don't match!");
2233 return B.CreateAdd(
X,
Y);
2239 assert(
X->getType()->getScalarType() ==
Y->getType() &&
2240 "Types don't match!");
2248 return B.CreateMul(
X,
Y);
2251 switch (InductionKind) {
2254 "Vector indices not supported for integer inductions yet");
2256 "Index type does not match StartValue type");
2258 return B.CreateSub(StartValue, Index);
2263 return B.CreatePtrAdd(StartValue,
CreateMul(Index, Step));
2266 "Vector indices not supported for FP inductions yet");
2269 (InductionBinOp->
getOpcode() == Instruction::FAdd ||
2270 InductionBinOp->
getOpcode() == Instruction::FSub) &&
2271 "Original bin op should be defined for FP induction");
2273 Value *MulExp =
B.CreateFMul(Step, Index);
2274 return B.CreateBinOp(InductionBinOp->
getOpcode(), StartValue, MulExp,
2285 if (std::optional<unsigned> MaxVScale =
TTI.getMaxVScale())
2288 if (
F.hasFnAttribute(Attribute::VScaleRange))
2289 return F.getFnAttribute(Attribute::VScaleRange).getVScaleRangeMax();
2291 return std::nullopt;
2300 ElementCount VF, std::optional<unsigned> UF = std::nullopt) {
2302 unsigned MaxUF = UF ? *UF : Cost->TTI.getMaxInterleaveFactor(VF);
2304 IntegerType *IdxTy = Cost->Legal->getWidestInductionType();
2310 if (
unsigned TC = Cost->PSE.getSmallConstantMaxTripCount()) {
2313 std::optional<unsigned> MaxVScale =
2317 MaxVF *= *MaxVScale;
2320 return (MaxUIntTripCount - TC).ugt(MaxVF * MaxUF);
2334 return TTI.enableMaskedInterleavedAccessVectorization();
2347 PreVectorPH = CheckVPIRBB;
2357 "must have incoming values for all operands");
2358 R.addOperand(R.getOperand(NumPredecessors - 2));
2384 auto CreateStep = [&]() ->
Value * {
2391 if (!
VF.isScalable())
2393 return Builder.CreateBinaryIntrinsic(
2399 Value *Step = CreateStep();
2408 CheckMinIters =
Builder.getTrue();
2410 TripCountSCEV, SE.
getSCEV(Step))) {
2413 CheckMinIters =
Builder.CreateICmp(
P,
Count, Step,
"min.iters.check");
2417 return CheckMinIters;
2426 VPlan *Plan =
nullptr) {
2430 auto IP = IRVPBB->
begin();
2432 R.moveBefore(*IRVPBB, IP);
2436 R.moveBefore(*IRVPBB, IRVPBB->
end());
2445 assert(VectorPH &&
"Invalid loop structure");
2447 Cost->requiresScalarEpilogue(
VF.isVector())) &&
2448 "loops not exiting via the latch without required epilogue?");
2455 Twine(Prefix) +
"scalar.ph");
2464 auto *Cmp = L->getLatchCmpInst();
2466 InstsToIgnore.
insert(Cmp);
2467 for (
const auto &KV : IL) {
2476 [&](
const User *U) { return U == IV || U == Cmp; }))
2477 InstsToIgnore.
insert(IVInst);
2489struct CSEDenseMapInfo {
2500 return DenseMapInfo<Instruction *>::getTombstoneKey();
2503 static unsigned getHashValue(
const Instruction *
I) {
2504 assert(canHandle(
I) &&
"Unknown instruction!");
2509 static bool isEqual(
const Instruction *
LHS,
const Instruction *
RHS) {
2510 if (
LHS == getEmptyKey() ||
RHS == getEmptyKey() ||
2511 LHS == getTombstoneKey() ||
RHS == getTombstoneKey())
2513 return LHS->isIdenticalTo(
RHS);
2525 if (!CSEDenseMapInfo::canHandle(&In))
2531 In.replaceAllUsesWith(V);
2532 In.eraseFromParent();
2545 std::optional<unsigned> VScale) {
2549 EstimatedVF *= *VScale;
2550 assert(EstimatedVF >= 1 &&
"Estimated VF shouldn't be less than 1");
2568 for (
auto &ArgOp : CI->
args())
2579 return ScalarCallCost;
2592 assert(
ID &&
"Expected intrinsic call!");
2596 FMF = FPMO->getFastMathFlags();
2602 std::back_inserter(ParamTys),
2603 [&](
Type *Ty) { return maybeVectorizeType(Ty, VF); });
2608 return TTI.getIntrinsicInstrCost(CostAttrs,
CostKind);
2622 BasicBlock *HeaderBB = State.CFG.VPBB2IRBB[HeaderVPBB];
2637 Builder.SetInsertPoint(NewPhi);
2639 NewPhi->
addIncoming(State.get(Inc), State.CFG.VPBB2IRBB[VPBB]);
2644void LoopVectorizationCostModel::collectLoopScalars(
ElementCount VF) {
2649 "This function should not be visited twice for the same VF");
2672 InstWidening WideningDecision = getWideningDecision(MemAccess, VF);
2673 assert(WideningDecision != CM_Unknown &&
2674 "Widening decision should be ready at this moment");
2676 if (Ptr == Store->getValueOperand())
2677 return WideningDecision == CM_Scalarize;
2679 "Ptr is neither a value or pointer operand");
2680 return WideningDecision != CM_GatherScatter;
2685 auto IsLoopVaryingGEP = [&](
Value *
V) {
2696 if (!IsLoopVaryingGEP(Ptr))
2708 if (IsScalarUse(MemAccess, Ptr) &&
2712 PossibleNonScalarPtrs.
insert(
I);
2728 for (
auto *BB : TheLoop->
blocks())
2729 for (
auto &
I : *BB) {
2731 EvaluatePtrUse(Load,
Load->getPointerOperand());
2733 EvaluatePtrUse(Store,
Store->getPointerOperand());
2734 EvaluatePtrUse(Store,
Store->getValueOperand());
2737 for (
auto *
I : ScalarPtrs)
2738 if (!PossibleNonScalarPtrs.
count(
I)) {
2746 auto ForcedScalar = ForcedScalars.
find(VF);
2747 if (ForcedScalar != ForcedScalars.
end())
2748 for (
auto *
I : ForcedScalar->second) {
2749 LLVM_DEBUG(
dbgs() <<
"LV: Found (forced) scalar instruction: " << *
I <<
"\n");
2758 while (Idx != Worklist.
size()) {
2760 if (!IsLoopVaryingGEP(Dst->getOperand(0)))
2764 auto *J = cast<Instruction>(U);
2765 return !TheLoop->contains(J) || Worklist.count(J) ||
2766 ((isa<LoadInst>(J) || isa<StoreInst>(J)) &&
2767 IsScalarUse(J, Src));
2770 LLVM_DEBUG(
dbgs() <<
"LV: Found scalar instruction: " << *Src <<
"\n");
2776 for (
const auto &Induction :
Legal->getInductionVars()) {
2777 auto *Ind = Induction.first;
2782 if (Ind ==
Legal->getPrimaryInduction() && foldTailByMasking())
2787 auto IsDirectLoadStoreFromPtrIndvar = [&](
Instruction *Indvar,
2789 return Induction.second.getKind() ==
2797 bool ScalarInd =
all_of(Ind->users(), [&](User *U) ->
bool {
2798 auto *I = cast<Instruction>(U);
2799 return I == IndUpdate || !TheLoop->contains(I) || Worklist.count(I) ||
2800 IsDirectLoadStoreFromPtrIndvar(Ind, I);
2809 if (IndUpdatePhi &&
Legal->isFixedOrderRecurrence(IndUpdatePhi))
2814 bool ScalarIndUpdate =
all_of(IndUpdate->users(), [&](User *U) ->
bool {
2815 auto *I = cast<Instruction>(U);
2816 return I == Ind || !TheLoop->contains(I) || Worklist.count(I) ||
2817 IsDirectLoadStoreFromPtrIndvar(IndUpdate, I);
2819 if (!ScalarIndUpdate)
2824 Worklist.
insert(IndUpdate);
2825 LLVM_DEBUG(
dbgs() <<
"LV: Found scalar instruction: " << *Ind <<
"\n");
2826 LLVM_DEBUG(
dbgs() <<
"LV: Found scalar instruction: " << *IndUpdate
2840 switch(
I->getOpcode()) {
2843 case Instruction::Call:
2847 case Instruction::Load:
2848 case Instruction::Store: {
2857 TTI.isLegalMaskedGather(VTy, Alignment))
2859 TTI.isLegalMaskedScatter(VTy, Alignment));
2861 case Instruction::UDiv:
2862 case Instruction::SDiv:
2863 case Instruction::SRem:
2864 case Instruction::URem: {
2889 if (
Legal->blockNeedsPredication(
I->getParent()))
2901 switch(
I->getOpcode()) {
2904 "instruction should have been considered by earlier checks");
2905 case Instruction::Call:
2909 "should have returned earlier for calls not needing a mask");
2911 case Instruction::Load:
2914 case Instruction::Store: {
2922 case Instruction::UDiv:
2923 case Instruction::URem:
2925 return !
Legal->isInvariant(
I->getOperand(1));
2926 case Instruction::SDiv:
2927 case Instruction::SRem:
2940 if (!
Legal->blockNeedsPredication(BB))
2947 "Header has smaller block freq than dominated BB?");
2948 return std::round((
double)HeaderFreq /
BBFreq);
2951std::pair<InstructionCost, InstructionCost>
2954 assert(
I->getOpcode() == Instruction::UDiv ||
2955 I->getOpcode() == Instruction::SDiv ||
2956 I->getOpcode() == Instruction::SRem ||
2957 I->getOpcode() == Instruction::URem);
2966 ScalarizationCost = 0;
2972 ScalarizationCost +=
2976 ScalarizationCost +=
2978 TTI.getArithmeticInstrCost(
I->getOpcode(),
I->getType(),
CostKind);
2996 TTI.getCmpSelInstrCost(Instruction::Select, VecTy,
3001 SafeDivisorCost +=
TTI.getArithmeticInstrCost(
3003 {TargetTransformInfo::OK_AnyValue, TargetTransformInfo::OP_None},
3004 {TargetTransformInfo::OK_AnyValue, TargetTransformInfo::OP_None},
3006 return {ScalarizationCost, SafeDivisorCost};
3013 "Decision should not be set yet.");
3015 assert(Group &&
"Must have a group.");
3016 unsigned InterleaveFactor = Group->getFactor();
3020 auto &
DL =
I->getDataLayout();
3032 bool ScalarNI =
DL.isNonIntegralPointerType(ScalarTy);
3033 for (
unsigned Idx = 0; Idx < InterleaveFactor; Idx++) {
3038 bool MemberNI =
DL.isNonIntegralPointerType(MemberTy);
3040 if (MemberNI != ScalarNI)
3043 if (MemberNI && ScalarNI &&
3044 ScalarTy->getPointerAddressSpace() !=
3045 MemberTy->getPointerAddressSpace())
3054 bool PredicatedAccessRequiresMasking =
3056 bool LoadAccessWithGapsRequiresEpilogMasking =
3059 bool StoreAccessWithGapsRequiresMasking =
3061 if (!PredicatedAccessRequiresMasking &&
3062 !LoadAccessWithGapsRequiresEpilogMasking &&
3063 !StoreAccessWithGapsRequiresMasking)
3070 "Masked interleave-groups for predicated accesses are not enabled.");
3072 if (Group->isReverse())
3076 bool NeedsMaskForGaps = LoadAccessWithGapsRequiresEpilogMasking ||
3077 StoreAccessWithGapsRequiresMasking;
3085 :
TTI.isLegalMaskedStore(Ty, Alignment, AS);
3097 if (!
Legal->isConsecutivePtr(ScalarTy, Ptr))
3107 auto &
DL =
I->getDataLayout();
3114void LoopVectorizationCostModel::collectLoopUniforms(
ElementCount VF) {
3121 "This function should not be visited twice for the same VF");
3125 Uniforms[VF].
clear();
3133 auto IsOutOfScope = [&](
Value *V) ->
bool {
3145 auto AddToWorklistIfAllowed = [&](
Instruction *
I) ->
void {
3146 if (IsOutOfScope(
I)) {
3151 if (isPredicatedInst(
I)) {
3153 dbgs() <<
"LV: Found not uniform due to requiring predication: " << *
I
3157 LLVM_DEBUG(
dbgs() <<
"LV: Found uniform instruction: " << *
I <<
"\n");
3167 for (BasicBlock *
E : Exiting) {
3171 if (Cmp && TheLoop->
contains(Cmp) &&
Cmp->hasOneUse())
3172 AddToWorklistIfAllowed(Cmp);
3181 if (PrevVF.isVector()) {
3182 auto Iter = Uniforms.
find(PrevVF);
3183 if (Iter != Uniforms.
end() && !Iter->second.contains(
I))
3186 if (!
Legal->isUniformMemOp(*
I, VF))
3196 auto IsUniformDecision = [&](
Instruction *
I, ElementCount VF) {
3197 InstWidening WideningDecision = getWideningDecision(
I, VF);
3198 assert(WideningDecision != CM_Unknown &&
3199 "Widening decision should be ready at this moment");
3201 if (IsUniformMemOpUse(
I))
3204 return (WideningDecision == CM_Widen ||
3205 WideningDecision == CM_Widen_Reverse ||
3206 WideningDecision == CM_Interleave);
3216 (IsUniformDecision(
I, VF) ||
Legal->isInvariant(Ptr));
3224 SetVector<Value *> HasUniformUse;
3228 for (
auto *BB : TheLoop->
blocks())
3229 for (
auto &
I : *BB) {
3231 switch (
II->getIntrinsicID()) {
3232 case Intrinsic::sideeffect:
3233 case Intrinsic::experimental_noalias_scope_decl:
3234 case Intrinsic::assume:
3235 case Intrinsic::lifetime_start:
3236 case Intrinsic::lifetime_end:
3238 AddToWorklistIfAllowed(&
I);
3246 if (IsOutOfScope(EVI->getAggregateOperand())) {
3247 AddToWorklistIfAllowed(EVI);
3253 "Expected aggregate value to be call return value");
3266 if (IsUniformMemOpUse(&
I))
3267 AddToWorklistIfAllowed(&
I);
3269 if (IsVectorizedMemAccessUse(&
I, Ptr))
3270 HasUniformUse.
insert(Ptr);
3276 for (
auto *V : HasUniformUse) {
3277 if (IsOutOfScope(V))
3280 bool UsersAreMemAccesses =
all_of(
I->users(), [&](User *U) ->
bool {
3281 auto *UI = cast<Instruction>(U);
3282 return TheLoop->contains(UI) && IsVectorizedMemAccessUse(UI, V);
3284 if (UsersAreMemAccesses)
3285 AddToWorklistIfAllowed(
I);
3292 while (Idx != Worklist.
size()) {
3295 for (
auto *OV :
I->operand_values()) {
3297 if (IsOutOfScope(OV))
3302 if (
OP &&
Legal->isFixedOrderRecurrence(
OP))
3308 auto *J = cast<Instruction>(U);
3309 return Worklist.count(J) || IsVectorizedMemAccessUse(J, OI);
3311 AddToWorklistIfAllowed(OI);
3322 for (
const auto &Induction :
Legal->getInductionVars()) {
3323 auto *Ind = Induction.first;
3328 bool UniformInd =
all_of(Ind->users(), [&](User *U) ->
bool {
3329 auto *I = cast<Instruction>(U);
3330 return I == IndUpdate || !TheLoop->contains(I) || Worklist.count(I) ||
3331 IsVectorizedMemAccessUse(I, Ind);
3338 bool UniformIndUpdate =
all_of(IndUpdate->users(), [&](User *U) ->
bool {
3339 auto *I = cast<Instruction>(U);
3340 return I == Ind || Worklist.count(I) ||
3341 IsVectorizedMemAccessUse(I, IndUpdate);
3343 if (!UniformIndUpdate)
3347 AddToWorklistIfAllowed(Ind);
3348 AddToWorklistIfAllowed(IndUpdate);
3357 if (
Legal->getRuntimePointerChecking()->Need) {
3359 "runtime pointer checks needed. Enable vectorization of this "
3360 "loop with '#pragma clang loop vectorize(enable)' when "
3361 "compiling with -Os/-Oz",
3362 "CantVersionLoopWithOptForSize",
ORE,
TheLoop);
3366 if (!
PSE.getPredicate().isAlwaysTrue()) {
3368 "runtime SCEV checks needed. Enable vectorization of this "
3369 "loop with '#pragma clang loop vectorize(enable)' when "
3370 "compiling with -Os/-Oz",
3371 "CantVersionLoopWithOptForSize",
ORE,
TheLoop);
3376 if (!
Legal->getLAI()->getSymbolicStrides().empty()) {
3378 "runtime stride == 1 checks needed. Enable vectorization of "
3379 "this loop without such check by compiling with -Os/-Oz",
3380 "CantVersionLoopWithOptForSize",
ORE,
TheLoop);
3387bool LoopVectorizationCostModel::isScalableVectorizationAllowed() {
3388 if (IsScalableVectorizationAllowed)
3389 return *IsScalableVectorizationAllowed;
3391 IsScalableVectorizationAllowed =
false;
3395 if (Hints->isScalableVectorizationDisabled()) {
3397 "ScalableVectorizationDisabled", ORE, TheLoop);
3401 LLVM_DEBUG(
dbgs() <<
"LV: Scalable vectorization is available\n");
3404 std::numeric_limits<ElementCount::ScalarTy>::max());
3413 if (!canVectorizeReductions(MaxScalableVF)) {
3415 "Scalable vectorization not supported for the reduction "
3416 "operations found in this loop.",
3417 "ScalableVFUnfeasible", ORE, TheLoop);
3423 if (
any_of(ElementTypesInLoop, [&](
Type *Ty) {
3428 "for all element types found in this loop.",
3429 "ScalableVFUnfeasible", ORE, TheLoop);
3435 "for safe distance analysis.",
3436 "ScalableVFUnfeasible", ORE, TheLoop);
3440 IsScalableVectorizationAllowed =
true;
3445LoopVectorizationCostModel::getMaxLegalScalableVF(
unsigned MaxSafeElements) {
3446 if (!isScalableVectorizationAllowed())
3450 std::numeric_limits<ElementCount::ScalarTy>::max());
3451 if (
Legal->isSafeForAnyVectorWidth())
3452 return MaxScalableVF;
3460 "Max legal vector width too small, scalable vectorization "
3462 "ScalableVFUnfeasible", ORE, TheLoop);
3464 return MaxScalableVF;
3467FixedScalableVFPair LoopVectorizationCostModel::computeFeasibleMaxVF(
3468 unsigned MaxTripCount, ElementCount UserVF,
unsigned UserIC,
3469 bool FoldTailByMasking) {
3471 unsigned SmallestType, WidestType;
3472 std::tie(SmallestType, WidestType) = getSmallestAndWidestTypes();
3478 unsigned MaxSafeElementsPowerOf2 =
3480 if (!
Legal->isSafeForAnyStoreLoadForwardDistances()) {
3481 unsigned SLDist =
Legal->getMaxStoreLoadForwardSafeDistanceInBits();
3482 MaxSafeElementsPowerOf2 =
3483 std::min(MaxSafeElementsPowerOf2, SLDist / WidestType);
3486 auto MaxSafeScalableVF = getMaxLegalScalableVF(MaxSafeElementsPowerOf2);
3488 if (!
Legal->isSafeForAnyVectorWidth())
3489 this->MaxSafeElements = MaxSafeElementsPowerOf2;
3491 LLVM_DEBUG(
dbgs() <<
"LV: The max safe fixed VF is: " << MaxSafeFixedVF
3493 LLVM_DEBUG(
dbgs() <<
"LV: The max safe scalable VF is: " << MaxSafeScalableVF
3498 auto MaxSafeUserVF =
3499 UserVF.
isScalable() ? MaxSafeScalableVF : MaxSafeFixedVF;
3501 if (ElementCount::isKnownLE(UserVF, MaxSafeUserVF)) {
3504 return FixedScalableVFPair(
3510 assert(ElementCount::isKnownGT(UserVF, MaxSafeUserVF));
3516 <<
" is unsafe, clamping to max safe VF="
3517 << MaxSafeFixedVF <<
".\n");
3519 return OptimizationRemarkAnalysis(
DEBUG_TYPE,
"VectorizationFactor",
3522 <<
"User-specified vectorization factor "
3523 <<
ore::NV(
"UserVectorizationFactor", UserVF)
3524 <<
" is unsafe, clamping to maximum safe vectorization factor "
3525 <<
ore::NV(
"VectorizationFactor", MaxSafeFixedVF);
3527 return MaxSafeFixedVF;
3532 <<
" is ignored because scalable vectors are not "
3535 return OptimizationRemarkAnalysis(
DEBUG_TYPE,
"VectorizationFactor",
3538 <<
"User-specified vectorization factor "
3539 <<
ore::NV(
"UserVectorizationFactor", UserVF)
3540 <<
" is ignored because the target does not support scalable "
3541 "vectors. The compiler will pick a more suitable value.";
3545 <<
" is unsafe. Ignoring scalable UserVF.\n");
3547 return OptimizationRemarkAnalysis(
DEBUG_TYPE,
"VectorizationFactor",
3550 <<
"User-specified vectorization factor "
3551 <<
ore::NV(
"UserVectorizationFactor", UserVF)
3552 <<
" is unsafe. Ignoring the hint to let the compiler pick a "
3553 "more suitable value.";
3558 LLVM_DEBUG(
dbgs() <<
"LV: The Smallest and Widest types: " << SmallestType
3559 <<
" / " << WidestType <<
" bits.\n");
3564 getMaximizedVFForTarget(MaxTripCount, SmallestType, WidestType,
3565 MaxSafeFixedVF, UserIC, FoldTailByMasking))
3569 getMaximizedVFForTarget(MaxTripCount, SmallestType, WidestType,
3570 MaxSafeScalableVF, UserIC, FoldTailByMasking))
3571 if (MaxVF.isScalable()) {
3572 Result.ScalableVF = MaxVF;
3573 LLVM_DEBUG(
dbgs() <<
"LV: Found feasible scalable VF = " << MaxVF
3582 if (
Legal->getRuntimePointerChecking()->Need &&
TTI.hasBranchDivergence()) {
3586 "Not inserting runtime ptr check for divergent target",
3587 "runtime pointer checks needed. Not enabled for divergent target",
3588 "CantVersionLoopWithDivergentTarget",
ORE,
TheLoop);
3594 unsigned MaxTC =
PSE.getSmallConstantMaxTripCount();
3599 LLVM_DEBUG(
dbgs() <<
"LV: Found maximum trip count: " << MaxTC <<
'\n');
3602 "loop trip count is one, irrelevant for vectorization",
3613 Legal->getWidestInductionType()->getScalarSizeInBits() &&
3617 "Trip count computation wrapped",
3618 "backedge-taken count is -1, loop trip count wrapped to 0",
3623 switch (ScalarEpilogueStatus) {
3625 return computeFeasibleMaxVF(MaxTC, UserVF, UserIC,
false);
3630 dbgs() <<
"LV: vector predicate hint/switch found.\n"
3631 <<
"LV: Not allowing scalar epilogue, creating predicated "
3632 <<
"vector loop.\n");
3639 dbgs() <<
"LV: Not allowing scalar epilogue due to -Os/-Oz.\n");
3641 LLVM_DEBUG(
dbgs() <<
"LV: Not allowing scalar epilogue due to low trip "
3657 assert(WideningDecisions.empty() && Uniforms.empty() && Scalars.empty() &&
3658 "No decisions should have been taken at this point");
3665 computeFeasibleMaxVF(MaxTC, UserVF, UserIC,
true);
3669 std::optional<unsigned> MaxPowerOf2RuntimeVF =
3674 MaxPowerOf2RuntimeVF = std::max<unsigned>(
3675 *MaxPowerOf2RuntimeVF,
3678 MaxPowerOf2RuntimeVF = std::nullopt;
3681 auto NoScalarEpilogueNeeded = [
this, &UserIC](
unsigned MaxVF) {
3685 !
Legal->hasUncountableEarlyExit())
3687 unsigned MaxVFtimesIC = UserIC ? MaxVF * UserIC : MaxVF;
3692 const SCEV *BackedgeTakenCount =
PSE.getSymbolicMaxBackedgeTakenCount();
3694 BackedgeTakenCount ==
PSE.getBackedgeTakenCount()) &&
3695 "Invalid loop count");
3697 BackedgeTakenCount, SE->
getOne(BackedgeTakenCount->
getType()));
3704 if (MaxPowerOf2RuntimeVF > 0u) {
3706 "MaxFixedVF must be a power of 2");
3707 if (NoScalarEpilogueNeeded(*MaxPowerOf2RuntimeVF)) {
3709 LLVM_DEBUG(
dbgs() <<
"LV: No tail will remain for any chosen VF.\n");
3715 if (ExpectedTC && ExpectedTC->isFixed() &&
3716 ExpectedTC->getFixedValue() <=
3717 TTI.getMinTripCountTailFoldingThreshold()) {
3718 if (MaxPowerOf2RuntimeVF > 0u) {
3724 LLVM_DEBUG(
dbgs() <<
"LV: Picking a fixed-width so that no tail will "
3725 "remain for any chosen VF.\n");
3732 "The trip count is below the minial threshold value.",
3733 "loop trip count is too low, avoiding vectorization",
"LowTripCount",
3748 <<
"LV: tail is folded with EVL, forcing unroll factor to be 1. Will "
3749 "try to generate VP Intrinsics with scalable vector "
3754 assert(ContainsScalableVF &&
"Expected scalable vector factor.");
3764 LLVM_DEBUG(
dbgs() <<
"LV: Cannot fold tail by masking: vectorize with a "
3765 "scalar epilogue instead.\n");
3771 LLVM_DEBUG(
dbgs() <<
"LV: Can't fold tail by masking: don't vectorize\n");
3777 "unable to calculate the loop count due to complex control flow",
3783 "Cannot optimize for size and vectorize at the same time.",
3784 "cannot optimize for size and vectorize at the same time. "
3785 "Enable vectorization of this loop with '#pragma clang loop "
3786 "vectorize(enable)' when compiling with -Os/-Oz",
3798 if (
TTI.shouldConsiderVectorizationRegPressure())
3814 (
TTI.shouldMaximizeVectorBandwidth(RegKind) ||
3816 Legal->hasVectorCallVariants())));
3819ElementCount LoopVectorizationCostModel::clampVFByMaxTripCount(
3820 ElementCount VF,
unsigned MaxTripCount,
unsigned UserIC,
3821 bool FoldTailByMasking)
const {
3823 if (VF.
isScalable() && TheFunction->hasFnAttribute(Attribute::VScaleRange)) {
3824 auto Attr = TheFunction->getFnAttribute(Attribute::VScaleRange);
3825 auto Min = Attr.getVScaleRangeMin();
3832 if (MaxTripCount > 0 && requiresScalarEpilogue(
true))
3837 unsigned IC = UserIC > 0 ? UserIC : 1;
3838 unsigned EstimatedVFTimesIC = EstimatedVF * IC;
3840 if (MaxTripCount && MaxTripCount <= EstimatedVFTimesIC &&
3848 if (ClampedUpperTripCount == 0)
3849 ClampedUpperTripCount = 1;
3850 LLVM_DEBUG(
dbgs() <<
"LV: Clamping the MaxVF to maximum power of two not "
3851 "exceeding the constant trip count"
3852 << (UserIC > 0 ?
" divided by UserIC" :
"") <<
": "
3853 << ClampedUpperTripCount <<
"\n");
3855 FoldTailByMasking ? VF.
isScalable() :
false);
3860ElementCount LoopVectorizationCostModel::getMaximizedVFForTarget(
3861 unsigned MaxTripCount,
unsigned SmallestType,
unsigned WidestType,
3862 ElementCount MaxSafeVF,
unsigned UserIC,
bool FoldTailByMasking) {
3863 bool ComputeScalableMaxVF = MaxSafeVF.
isScalable();
3869 auto MinVF = [](
const ElementCount &
LHS,
const ElementCount &
RHS) {
3871 "Scalable flags must match");
3879 ComputeScalableMaxVF);
3880 MaxVectorElementCount = MinVF(MaxVectorElementCount, MaxSafeVF);
3882 << (MaxVectorElementCount * WidestType) <<
" bits.\n");
3884 if (!MaxVectorElementCount) {
3886 << (ComputeScalableMaxVF ?
"scalable" :
"fixed")
3887 <<
" vector registers.\n");
3891 ElementCount MaxVF = clampVFByMaxTripCount(
3892 MaxVectorElementCount, MaxTripCount, UserIC, FoldTailByMasking);
3895 if (MaxVF != MaxVectorElementCount)
3903 MaxPermissibleVFWithoutMaxBW.ScalableVF = MaxVF;
3905 MaxPermissibleVFWithoutMaxBW.FixedVF = MaxVF;
3907 if (useMaxBandwidth(RegKind)) {
3910 ComputeScalableMaxVF);
3911 MaxVF = MinVF(MaxVectorElementCountMaxBW, MaxSafeVF);
3913 if (ElementCount MinVF =
3915 if (ElementCount::isKnownLT(MaxVF, MinVF)) {
3917 <<
") with target's minimum: " << MinVF <<
'\n');
3923 clampVFByMaxTripCount(MaxVF, MaxTripCount, UserIC, FoldTailByMasking);
3925 if (MaxVectorElementCount != MaxVF) {
3929 invalidateCostModelingDecisions();
3937 const unsigned MaxTripCount,
3939 bool IsEpilogue)
const {
3945 unsigned EstimatedWidthB =
B.Width.getKnownMinValue();
3946 if (std::optional<unsigned> VScale = CM.getVScaleForTuning()) {
3947 if (
A.Width.isScalable())
3948 EstimatedWidthA *= *VScale;
3949 if (
B.Width.isScalable())
3950 EstimatedWidthB *= *VScale;
3957 return CostA < CostB ||
3958 (CostA == CostB && EstimatedWidthA > EstimatedWidthB);
3964 A.Width.isScalable() && !
B.Width.isScalable();
3974 bool LowerCostWithoutTC =
3975 CmpFn(CostA * EstimatedWidthB, CostB * EstimatedWidthA);
3977 return LowerCostWithoutTC;
3979 auto GetCostForTC = [MaxTripCount, HasTail](
unsigned VF,
3991 return VectorCost * (MaxTripCount / VF) +
3992 ScalarCost * (MaxTripCount % VF);
3993 return VectorCost *
divideCeil(MaxTripCount, VF);
3996 auto RTCostA = GetCostForTC(EstimatedWidthA, CostA,
A.ScalarCost);
3997 auto RTCostB = GetCostForTC(EstimatedWidthB, CostB,
B.ScalarCost);
3998 bool LowerCostWithTC = CmpFn(RTCostA, RTCostB);
3999 LLVM_DEBUG(
if (LowerCostWithTC != LowerCostWithoutTC) {
4000 dbgs() <<
"LV: VF " << (LowerCostWithTC ?
A.Width :
B.Width)
4001 <<
" has lower cost than VF "
4002 << (LowerCostWithTC ?
B.Width :
A.Width)
4003 <<
" when taking the cost of the remaining scalar loop iterations "
4004 "into consideration for a maximum trip count of "
4005 << MaxTripCount <<
".\n";
4007 return LowerCostWithTC;
4013 bool IsEpilogue)
const {
4015 return LoopVectorizationPlanner::isMoreProfitable(
A,
B, MaxTripCount, HasTail,
4021 using RecipeVFPair = std::pair<VPRecipeBase *, ElementCount>;
4023 for (
const auto &Plan : VPlans) {
4032 VPCostContext CostCtx(CM.TTI, *CM.TLI, *Plan, CM, CM.CostKind, CM.PSE,
4034 precomputeCosts(*Plan, VF, CostCtx);
4037 for (
auto &R : *VPBB) {
4038 if (!R.cost(VF, CostCtx).isValid())
4044 if (InvalidCosts.
empty())
4052 for (
auto &Pair : InvalidCosts)
4057 sort(InvalidCosts, [&Numbering](RecipeVFPair &
A, RecipeVFPair &
B) {
4058 unsigned NA = Numbering[
A.first];
4059 unsigned NB = Numbering[
B.first];
4074 Subset =
Tail.take_front(1);
4084 .Case<VPWidenCallRecipe, VPWidenIntrinsicRecipe>(
4085 [](
const auto *R) {
return Instruction::Call; })
4088 [](
const auto *R) {
return R->getOpcode(); })
4090 return R->getStoredValues().empty() ? Instruction::Load
4091 : Instruction::Store;
4102 if (Subset ==
Tail ||
Tail[Subset.size()].first != R) {
4103 std::string OutString;
4105 assert(!Subset.empty() &&
"Unexpected empty range");
4106 OS <<
"Recipe with invalid costs prevented vectorization at VF=(";
4107 for (
const auto &Pair : Subset)
4108 OS << (Pair.second == Subset.front().second ?
"" :
", ") << Pair.second;
4110 if (Opcode == Instruction::Call) {
4113 Name =
Int->getIntrinsicName();
4117 WidenCall ? WidenCall->getCalledScalarFunction()
4119 ->getLiveInIRValue());
4122 OS <<
" call to " << Name;
4127 Tail =
Tail.drop_front(Subset.size());
4131 Subset =
Tail.take_front(Subset.size() + 1);
4132 }
while (!
Tail.empty());
4154 switch (R.getVPRecipeID()) {
4155 case VPRecipeBase::VPDerivedIVSC:
4156 case VPRecipeBase::VPScalarIVStepsSC:
4157 case VPRecipeBase::VPReplicateSC:
4158 case VPRecipeBase::VPInstructionSC:
4159 case VPRecipeBase::VPCanonicalIVPHISC:
4160 case VPRecipeBase::VPCurrentIterationPHISC:
4161 case VPRecipeBase::VPVectorPointerSC:
4162 case VPRecipeBase::VPVectorEndPointerSC:
4163 case VPRecipeBase::VPExpandSCEVSC:
4164 case VPRecipeBase::VPPredInstPHISC:
4165 case VPRecipeBase::VPBranchOnMaskSC:
4167 case VPRecipeBase::VPReductionSC:
4168 case VPRecipeBase::VPActiveLaneMaskPHISC:
4169 case VPRecipeBase::VPWidenCallSC:
4170 case VPRecipeBase::VPWidenCanonicalIVSC:
4171 case VPRecipeBase::VPWidenCastSC:
4172 case VPRecipeBase::VPWidenGEPSC:
4173 case VPRecipeBase::VPWidenIntrinsicSC:
4174 case VPRecipeBase::VPWidenSC:
4175 case VPRecipeBase::VPBlendSC:
4176 case VPRecipeBase::VPFirstOrderRecurrencePHISC:
4177 case VPRecipeBase::VPHistogramSC:
4178 case VPRecipeBase::VPWidenPHISC:
4179 case VPRecipeBase::VPWidenIntOrFpInductionSC:
4180 case VPRecipeBase::VPWidenPointerInductionSC:
4181 case VPRecipeBase::VPReductionPHISC:
4182 case VPRecipeBase::VPInterleaveEVLSC:
4183 case VPRecipeBase::VPInterleaveSC:
4184 case VPRecipeBase::VPWidenLoadEVLSC:
4185 case VPRecipeBase::VPWidenLoadSC:
4186 case VPRecipeBase::VPWidenStoreEVLSC:
4187 case VPRecipeBase::VPWidenStoreSC:
4193 auto WillGenerateTargetVectors = [&
TTI, VF](
Type *VectorTy) {
4194 unsigned NumLegalParts =
TTI.getNumberOfParts(VectorTy);
4210 if (R.getNumDefinedValues() == 0 &&
4219 R.getNumDefinedValues() >= 1 ? R.getVPValue(0) : R.getOperand(1);
4221 if (!Visited.
insert({ScalarTy}).second)
4235 [](
auto *VPRB) { return VPRB->isReplicator(); });
4241 LLVM_DEBUG(
dbgs() <<
"LV: Scalar loop costs: " << ExpectedCost <<
".\n");
4242 assert(ExpectedCost.
isValid() &&
"Unexpected invalid cost for scalar loop");
4245 [](std::unique_ptr<VPlan> &
P) {
return P->hasScalarVFOnly(); }) &&
4246 "Expected Scalar VF to be a candidate");
4253 if (ForceVectorization &&
4254 (VPlans.size() > 1 || !VPlans[0]->hasScalarVFOnly())) {
4258 ChosenFactor.
Cost = InstructionCost::getMax();
4261 for (
auto &
P : VPlans) {
4263 P->vectorFactors().end());
4266 if (
any_of(VFs, [
this](ElementCount VF) {
4267 return CM.shouldConsiderRegPressureForVF(VF);
4271 for (
unsigned I = 0;
I < VFs.size();
I++) {
4272 ElementCount VF = VFs[
I];
4281 VPCostContext CostCtx(CM.TTI, *CM.TLI, *
P, CM, CM.CostKind, CM.PSE,
4283 VPRegionBlock *VectorRegion =
P->getVectorLoopRegion();
4284 assert(VectorRegion &&
"Expected to have a vector region!");
4287 for (VPRecipeBase &R : *VPBB) {
4291 switch (VPI->getOpcode()) {
4294 case Instruction::Select: {
4297 switch (WR->getOpcode()) {
4298 case Instruction::UDiv:
4299 case Instruction::SDiv:
4300 case Instruction::URem:
4301 case Instruction::SRem:
4307 C += VPI->cost(VF, CostCtx);
4311 unsigned Multiplier =
4313 C += VPI->cost(VF * Multiplier, CostCtx);
4318 C += VPI->cost(VF, CostCtx);
4327 if (CM.shouldConsiderRegPressureForVF(VF))
4334 <<
" costs: " << (Candidate.Cost / Width));
4337 << CM.getVScaleForTuning().value_or(1) <<
")");
4343 <<
"LV: Not considering vector loop of width " << VF
4344 <<
" because it will not generate any vector instructions.\n");
4351 <<
"LV: Not considering vector loop of width " << VF
4352 <<
" because it would cause replicated blocks to be generated,"
4353 <<
" which isn't allowed when optimizing for size.\n");
4357 if (isMoreProfitable(Candidate, ChosenFactor,
P->hasScalarTail()))
4358 ChosenFactor = Candidate;
4364 "There are conditional stores.",
4365 "store that is conditionally executed prevents vectorization",
4366 "ConditionalStore", ORE, OrigLoop);
4367 ChosenFactor = ScalarCost;
4371 !isMoreProfitable(ChosenFactor, ScalarCost,
4372 !CM.foldTailByMasking()))
dbgs()
4373 <<
"LV: Vectorization seems to be not beneficial, "
4374 <<
"but was forced by a user.\n");
4375 return ChosenFactor;
4384 auto *RedPhi = dyn_cast<VPReductionPHIRecipe>(&R);
4386 RecurrenceDescriptor::isFindLastRecurrenceKind(
4387 RedPhi->getRecurrenceKind());
4397 if (auto *WidenInd = dyn_cast<VPWidenIntOrFpInductionRecipe>(&R))
4398 return !WidenInd->getPHINode();
4399 auto *RedPhi = dyn_cast<VPReductionPHIRecipe>(&R);
4400 return RedPhi && (RecurrenceDescriptor::isFindLastRecurrenceKind(
4401 RedPhi->getRecurrenceKind()) ||
4402 !RedPhi->getUnderlyingValue());
4406bool LoopVectorizationPlanner::isCandidateForEpilogueVectorization(
4407 ElementCount VF)
const {
4410 if (
any_of(OrigLoop->getHeader()->phis(), [&](PHINode &Phi) {
4411 if (!Legal->isReductionVariable(&Phi))
4412 return Legal->isFixedOrderRecurrence(&Phi);
4414 Legal->getRecurrenceDescriptor(&Phi).getRecurrenceKind();
4415 return RecurrenceDescriptor::isFPMinMaxNumRecurrenceKind(Kind);
4426 for (
const auto &Entry :
Legal->getInductionVars()) {
4429 Entry.first->getIncomingValueForBlock(OrigLoop->getLoopLatch());
4430 for (User *U :
PostInc->users())
4434 for (User *U :
Entry.first->users())
4443 if (OrigLoop->getExitingBlock() != OrigLoop->getLoopLatch())
4457 if (!
TTI.preferEpilogueVectorization(VF * IC))
4462 :
TTI.getEpilogueVectorizationMinVF();
4470 LLVM_DEBUG(
dbgs() <<
"LEV: Epilogue vectorization is disabled.\n");
4474 if (!CM.isScalarEpilogueAllowed()) {
4475 LLVM_DEBUG(
dbgs() <<
"LEV: Unable to vectorize epilogue because no "
4476 "epilogue is allowed.\n");
4482 if (!isCandidateForEpilogueVectorization(MainLoopVF)) {
4483 LLVM_DEBUG(
dbgs() <<
"LEV: Unable to vectorize epilogue because the loop "
4484 "is not a supported candidate.\n");
4489 LLVM_DEBUG(
dbgs() <<
"LEV: Epilogue vectorization factor is forced.\n");
4492 return {ForcedEC, 0, 0};
4494 LLVM_DEBUG(
dbgs() <<
"LEV: Epilogue vectorization forced factor is not "
4499 if (OrigLoop->getHeader()->getParent()->hasOptSize()) {
4501 dbgs() <<
"LEV: Epilogue vectorization skipped due to opt for size.\n");
4505 if (!CM.isEpilogueVectorizationProfitable(MainLoopVF, IC)) {
4506 LLVM_DEBUG(
dbgs() <<
"LEV: Epilogue vectorization is not profitable for "
4517 if (
match(&Exiting->back(),
4528 MainLoopVF = GetEffectiveVF(MainPlan, MainLoopVF);
4536 Type *TCType = Legal->getWidestInductionType();
4537 const SCEV *RemainingIterations =
nullptr;
4538 unsigned MaxTripCount = 0;
4541 const SCEV *KnownMinTC;
4543 bool ScalableRemIter =
false;
4547 ScalableRemIter = ScalableTC;
4548 RemainingIterations =
4550 }
else if (ScalableTC) {
4553 SE.
getConstant(TCType, CM.getVScaleForTuning().value_or(1)));
4557 RemainingIterations =
4561 if (RemainingIterations->
isZero())
4571 << MaxTripCount <<
"\n");
4574 auto SkipVF = [&](
const SCEV *VF,
const SCEV *RemIter) ->
bool {
4577 for (
auto &NextVF : ProfitableVFs) {
4583 GetEffectiveVF(
getPlanFor(NextVF.Width), NextVF.Width);
4601 if (!ScalableRemIter) {
4607 if (SkipVF(SE.
getElementCount(TCType, EffectiveVF), RemainingIterations))
4611 if (Result.Width.isScalar() ||
4612 isMoreProfitable(NextVF, Result, MaxTripCount, !CM.foldTailByMasking(),
4619 << Result.Width <<
"\n");
4623std::pair<unsigned, unsigned>
4625 unsigned MinWidth = -1U;
4626 unsigned MaxWidth = 8;
4632 for (
const auto &PhiDescriptorPair :
Legal->getReductionVars()) {
4636 MinWidth = std::min(
4640 MaxWidth = std::max(MaxWidth,
4645 MinWidth = std::min<unsigned>(
4646 MinWidth,
DL.getTypeSizeInBits(
T->getScalarType()).getFixedValue());
4647 MaxWidth = std::max<unsigned>(
4648 MaxWidth,
DL.getTypeSizeInBits(
T->getScalarType()).getFixedValue());
4651 return {MinWidth, MaxWidth};
4673 if (!
Legal->isReductionVariable(PN))
4676 Legal->getRecurrenceDescriptor(PN);
4686 T = ST->getValueOperand()->getType();
4689 "Expected the load/store/recurrence type to be sized");
4717 if (!CM.isScalarEpilogueAllowed() &&
4718 !(CM.preferPredicatedLoop() && CM.useWideActiveLaneMask()))
4724 "Unroll factor forced to be 1.\n");
4729 if (!Legal->isSafeForAnyVectorWidth())
4738 const bool HasReductions =
4751 if (LoopCost == 0) {
4753 LoopCost = CM.expectedCost(VF);
4755 LoopCost = cost(Plan, VF, &R);
4756 assert(LoopCost.
isValid() &&
"Expected to have chosen a VF with valid cost");
4765 for (
auto &Pair : R.MaxLocalUsers) {
4766 Pair.second = std::max(Pair.second, 1U);
4780 unsigned IC = UINT_MAX;
4782 for (
const auto &Pair : R.MaxLocalUsers) {
4783 unsigned TargetNumRegisters = TTI.getNumberOfRegisters(Pair.first);
4786 << TTI.getRegisterClassName(Pair.first)
4787 <<
" register class\n");
4795 unsigned MaxLocalUsers = Pair.second;
4796 unsigned LoopInvariantRegs = 0;
4797 if (R.LoopInvariantRegs.contains(Pair.first))
4798 LoopInvariantRegs = R.LoopInvariantRegs[Pair.first];
4800 unsigned TmpIC =
llvm::bit_floor((TargetNumRegisters - LoopInvariantRegs) /
4804 TmpIC =
llvm::bit_floor((TargetNumRegisters - LoopInvariantRegs - 1) /
4805 std::max(1U, (MaxLocalUsers - 1)));
4808 IC = std::min(IC, TmpIC);
4812 unsigned MaxInterleaveCount = TTI.getMaxInterleaveFactor(VF);
4813 LLVM_DEBUG(
dbgs() <<
"LV: MaxInterleaveFactor for the target is "
4814 << MaxInterleaveCount <<
"\n");
4830 CM.isScalarEpilogueAllowed());
4833 if (BestKnownTC && (BestKnownTC->isFixed() || VF.
isScalable())) {
4835 unsigned AvailableTC =
4841 if (CM.requiresScalarEpilogue(VF.
isVector()))
4844 unsigned InterleaveCountLB =
bit_floor(std::max(
4845 1u, std::min(AvailableTC / (EstimatedVF * 2), MaxInterleaveCount)));
4859 unsigned InterleaveCountUB =
bit_floor(std::max(
4860 1u, std::min(AvailableTC / EstimatedVF, MaxInterleaveCount)));
4861 MaxInterleaveCount = InterleaveCountLB;
4863 if (InterleaveCountUB != InterleaveCountLB) {
4864 unsigned TailTripCountUB =
4865 (AvailableTC % (EstimatedVF * InterleaveCountUB));
4866 unsigned TailTripCountLB =
4867 (AvailableTC % (EstimatedVF * InterleaveCountLB));
4870 if (TailTripCountUB == TailTripCountLB)
4871 MaxInterleaveCount = InterleaveCountUB;
4879 MaxInterleaveCount = InterleaveCountLB;
4883 assert(MaxInterleaveCount > 0 &&
4884 "Maximum interleave count must be greater than 0");
4888 if (IC > MaxInterleaveCount)
4889 IC = MaxInterleaveCount;
4892 IC = std::max(1u, IC);
4894 assert(IC > 0 &&
"Interleave count must be greater than 0.");
4898 if (VF.
isVector() && HasReductions) {
4899 LLVM_DEBUG(
dbgs() <<
"LV: Interleaving because of reductions.\n");
4907 bool ScalarInterleavingRequiresPredication =
4909 return Legal->blockNeedsPredication(BB);
4911 bool ScalarInterleavingRequiresRuntimePointerCheck =
4912 (VF.
isScalar() && Legal->getRuntimePointerChecking()->Need);
4917 <<
"LV: IC is " << IC <<
'\n'
4918 <<
"LV: VF is " << VF <<
'\n');
4919 const bool AggressivelyInterleave =
4920 TTI.enableAggressiveInterleaving(HasReductions);
4921 if (!ScalarInterleavingRequiresRuntimePointerCheck &&
4922 !ScalarInterleavingRequiresPredication && LoopCost <
SmallLoopCost) {
4931 unsigned NumStores = 0;
4932 unsigned NumLoads = 0;
4946 if (
unsigned StoreOps = InterleaveR->getNumStoreOperands())
4947 NumStores += StoreOps;
4949 NumLoads += InterleaveR->getNumDefinedValues();
4964 unsigned StoresIC = IC / (NumStores ? NumStores : 1);
4965 unsigned LoadsIC = IC / (NumLoads ? NumLoads : 1);
4971 bool HasSelectCmpReductions =
4975 auto *RedR = dyn_cast<VPReductionPHIRecipe>(&R);
4976 return RedR && (RecurrenceDescriptor::isAnyOfRecurrenceKind(
4977 RedR->getRecurrenceKind()) ||
4978 RecurrenceDescriptor::isFindIVRecurrenceKind(
4979 RedR->getRecurrenceKind()));
4981 if (HasSelectCmpReductions) {
4982 LLVM_DEBUG(
dbgs() <<
"LV: Not interleaving select-cmp reductions.\n");
4991 if (HasReductions && OrigLoop->getLoopDepth() > 1) {
4992 bool HasOrderedReductions =
4995 auto *RedR = dyn_cast<VPReductionPHIRecipe>(&R);
4997 return RedR && RedR->isOrdered();
4999 if (HasOrderedReductions) {
5001 dbgs() <<
"LV: Not interleaving scalar ordered reductions.\n");
5006 SmallIC = std::min(SmallIC,
F);
5007 StoresIC = std::min(StoresIC,
F);
5008 LoadsIC = std::min(LoadsIC,
F);
5012 std::max(StoresIC, LoadsIC) > SmallIC) {
5014 dbgs() <<
"LV: Interleaving to saturate store or load ports.\n");
5015 return std::max(StoresIC, LoadsIC);
5020 if (VF.
isScalar() && AggressivelyInterleave) {
5024 return std::max(IC / 2, SmallIC);
5027 LLVM_DEBUG(
dbgs() <<
"LV: Interleaving to reduce branch cost.\n");
5033 if (AggressivelyInterleave) {
5053 "Expecting a scalar emulated instruction");
5066 if (InstsToScalarize.contains(VF) ||
5067 PredicatedBBsAfterVectorization.contains(VF))
5073 ScalarCostsTy &ScalarCostsVF = InstsToScalarize[VF];
5083 ScalarCostsTy ScalarCosts;
5091 computePredInstDiscount(&
I, ScalarCosts, VF) >= 0) {
5092 for (
const auto &[
I, IC] : ScalarCosts)
5093 ScalarCostsVF.
insert({
I, IC});
5096 for (
const auto &[
I,
Cost] : ScalarCosts) {
5098 if (!CI || !CallWideningDecisions.contains({CI, VF}))
5101 CallWideningDecisions[{CI, VF}].Cost =
Cost;
5105 PredicatedBBsAfterVectorization[VF].insert(BB);
5107 if (Pred->getSingleSuccessor() == BB)
5108 PredicatedBBsAfterVectorization[VF].insert(Pred);
5116 assert(!isUniformAfterVectorization(PredInst, VF) &&
5117 "Instruction marked uniform-after-vectorization will be predicated");
5135 if (!
I->hasOneUse() || PredInst->
getParent() !=
I->getParent() ||
5136 isScalarAfterVectorization(
I, VF))
5141 if (isScalarWithPredication(
I, VF))
5154 for (
Use &U :
I->operands())
5156 if (isUniformAfterVectorization(J, VF))
5167 while (!Worklist.
empty()) {
5171 if (ScalarCosts.contains(
I))
5191 if (isScalarWithPredication(
I, VF) && !
I->getType()->isVoidTy()) {
5194 ScalarCost +=
TTI.getScalarizationOverhead(
5207 for (Use &U :
I->operands())
5210 "Instruction has non-scalar type");
5211 if (CanBeScalarized(J))
5213 else if (needsExtract(J, VF)) {
5225 ScalarCost /= getPredBlockCostDivisor(
CostKind,
I->getParent());
5229 Discount += VectorCost - ScalarCost;
5230 ScalarCosts[
I] = ScalarCost;
5246 ValuesToIgnoreForVF);
5276 LLVM_DEBUG(
dbgs() <<
"LV: Found an estimated cost of " <<
C <<
" for VF "
5277 << VF <<
" For instruction: " <<
I <<
'\n');
5305 const Loop *TheLoop) {
5312LoopVectorizationCostModel::getMemInstScalarizationCost(Instruction *
I,
5315 "Scalarization cost of instruction implies vectorization.");
5317 return InstructionCost::getInvalid();
5320 auto *SE = PSE.
getSE();
5351 if (isPredicatedInst(
I)) {
5356 VectorType::get(IntegerType::getInt1Ty(ValTy->
getContext()), VF);
5362 if (useEmulatedMaskMemRefHack(
I, VF))
5372LoopVectorizationCostModel::getConsecutiveMemOpCost(Instruction *
I,
5378 int ConsecutiveStride =
Legal->isConsecutivePtr(ValTy, Ptr);
5380 assert((ConsecutiveStride == 1 || ConsecutiveStride == -1) &&
5381 "Stride should be 1 or -1 for consecutive memory access");
5384 if (isMaskRequired(
I)) {
5385 unsigned IID =
I->getOpcode() == Instruction::Load
5386 ? Intrinsic::masked_load
5387 : Intrinsic::masked_store;
5389 MemIntrinsicCostAttributes(IID, VectorTy, Alignment, AS),
CostKind);
5396 bool Reverse = ConsecutiveStride < 0;
5404LoopVectorizationCostModel::getUniformMemOpCost(Instruction *
I,
5422 bool IsLoopInvariantStoreValue =
Legal->isInvariant(
SI->getValueOperand());
5430 if (!IsLoopInvariantStoreValue)
5437LoopVectorizationCostModel::getGatherScatterCost(Instruction *
I,
5445 if (!
Legal->isUniform(Ptr, VF))
5448 unsigned IID =
I->getOpcode() == Instruction::Load
5449 ? Intrinsic::masked_gather
5450 : Intrinsic::masked_scatter;
5453 MemIntrinsicCostAttributes(IID, VectorTy, Ptr, isMaskRequired(
I),
5459LoopVectorizationCostModel::getInterleaveGroupCost(Instruction *
I,
5461 const auto *Group = getInterleavedAccessGroup(
I);
5462 assert(Group &&
"Fail to get an interleaved access group.");
5469 unsigned InterleaveFactor = Group->getFactor();
5470 auto *WideVecTy = VectorType::get(ValTy, VF * InterleaveFactor);
5473 SmallVector<unsigned, 4> Indices;
5474 for (
unsigned IF = 0; IF < InterleaveFactor; IF++)
5475 if (Group->getMember(IF))
5479 bool UseMaskForGaps =
5480 (Group->requiresScalarEpilogue() && !isScalarEpilogueAllowed()) ||
5483 InsertPos->
getOpcode(), WideVecTy, Group->getFactor(), Indices,
5484 Group->getAlign(), AS,
CostKind, isMaskRequired(
I), UseMaskForGaps);
5486 if (Group->isReverse()) {
5489 "Reverse masked interleaved access not supported.");
5490 Cost += Group->getNumMembers() *
5497std::optional<InstructionCost>
5504 return std::nullopt;
5522 return std::nullopt;
5533 Instruction *LastChain = InLoopReductionImmediateChains.lookup(RetI);
5535 return std::nullopt;
5541 ReductionPhi = InLoopReductionImmediateChains.at(ReductionPhi);
5550 BaseCost =
TTI.getMinMaxReductionCost(MinMaxID, VectorTy,
5553 BaseCost =
TTI.getArithmeticReductionCost(
5561 TTI.getArithmeticInstrCost(Instruction::FMul, VectorTy,
CostKind);
5578 if (RedOp && RdxDesc.
getOpcode() == Instruction::Add &&
5584 !
TheLoop->isLoopInvariant(Op0) && !
TheLoop->isLoopInvariant(Op1) &&
5596 TTI.getCastInstrCost(Op0->
getOpcode(), MulType, ExtType,
5599 TTI.getArithmeticInstrCost(Instruction::Mul, MulType,
CostKind);
5601 TTI.getCastInstrCost(RedOp->
getOpcode(), VectorTy, MulType,
5609 RedCost < ExtCost * 2 + MulCost + Ext2Cost + BaseCost)
5610 return I == RetI ? RedCost : 0;
5612 !
TheLoop->isLoopInvariant(RedOp)) {
5621 TTI.getCastInstrCost(RedOp->
getOpcode(), VectorTy, ExtType,
5623 if (RedCost.
isValid() && RedCost < BaseCost + ExtCost)
5624 return I == RetI ? RedCost : 0;
5625 }
else if (RedOp && RdxDesc.
getOpcode() == Instruction::Add &&
5629 !
TheLoop->isLoopInvariant(Op0) && !
TheLoop->isLoopInvariant(Op1)) {
5648 TTI.getArithmeticInstrCost(Instruction::Mul, VectorTy,
CostKind);
5654 if (Op0Ty != LargestOpTy || Op1Ty != LargestOpTy) {
5655 Instruction *ExtraExtOp = (Op0Ty != LargestOpTy) ? Op0 : Op1;
5656 ExtraExtCost =
TTI.getCastInstrCost(
5663 (RedCost + ExtraExtCost) < (ExtCost0 + ExtCost1 + MulCost + BaseCost))
5664 return I == RetI ? RedCost : 0;
5668 TTI.getArithmeticInstrCost(Instruction::Mul, VectorTy,
CostKind);
5674 if (RedCost.
isValid() && RedCost < MulCost + BaseCost)
5675 return I == RetI ? RedCost : 0;
5679 return I == RetI ? std::optional<InstructionCost>(BaseCost) : std::nullopt;
5683LoopVectorizationCostModel::getMemoryInstructionCost(
Instruction *
I,
5694 return TTI.getAddressComputationCost(PtrTy,
nullptr,
nullptr,
CostKind) +
5695 TTI.getMemoryOpCost(
I->getOpcode(), ValTy, Alignment, AS,
CostKind,
5698 return getWideningCost(
I, VF);
5702LoopVectorizationCostModel::getScalarizationOverhead(Instruction *
I,
5703 ElementCount VF)
const {
5708 return InstructionCost::getInvalid();
5742 Instruction::op_range
Ops = CI ? CI->
args() :
I->operands();
5747 for (
auto *V : filterExtractingOperands(
Ops, VF))
5774 if (
Legal->isUniformMemOp(
I, VF)) {
5775 auto IsLegalToScalarize = [&]() {
5795 return TheLoop->isLoopInvariant(
SI.getValueOperand());
5807 IsLegalToScalarize() ? getUniformMemOpCost(&
I, VF)
5813 if (GatherScatterCost < ScalarizationCost)
5823 int ConsecutiveStride =
Legal->isConsecutivePtr(
5825 assert((ConsecutiveStride == 1 || ConsecutiveStride == -1) &&
5826 "Expected consecutive stride.");
5835 unsigned NumAccesses = 1;
5838 assert(Group &&
"Fail to get an interleaved access group.");
5844 NumAccesses = Group->getNumMembers();
5846 InterleaveCost = getInterleaveGroupCost(&
I, VF);
5851 ? getGatherScatterCost(&
I, VF) * NumAccesses
5855 getMemInstScalarizationCost(&
I, VF) * NumAccesses;
5861 if (InterleaveCost <= GatherScatterCost &&
5862 InterleaveCost < ScalarizationCost) {
5864 Cost = InterleaveCost;
5865 }
else if (GatherScatterCost < ScalarizationCost) {
5867 Cost = GatherScatterCost;
5870 Cost = ScalarizationCost;
5877 for (
unsigned Idx = 0; Idx < Group->getFactor(); ++Idx) {
5878 if (
auto *
I = Group->getMember(Idx)) {
5880 getMemInstScalarizationCost(
I, VF));
5896 if (
TTI.prefersVectorizedAddressing())
5905 if (PtrDef &&
TheLoop->contains(PtrDef) &&
5913 while (!Worklist.
empty()) {
5915 for (
auto &
Op :
I->operands())
5918 AddrDefs.
insert(InstOp).second)
5922 auto UpdateMemOpUserCost = [
this, VF](
LoadInst *
LI) {
5926 for (
User *U :
LI->users()) {
5936 for (
auto *
I : AddrDefs) {
5957 for (
unsigned Idx = 0; Idx < Group->getFactor(); ++Idx) {
5958 if (
Instruction *Member = Group->getMember(Idx)) {
5962 getMemoryInstructionCost(Member,
5964 : getMemInstScalarizationCost(Member, VF);
5977 ForcedScalars[VF].insert(
I);
5984 "Trying to set a vectorization decision for a scalar VF");
5986 auto ForcedScalar = ForcedScalars.find(VF);
6001 for (
auto &ArgOp : CI->
args())
6010 TTI.getCallInstrCost(ScalarFunc, ScalarRetTy, ScalarTys,
CostKind);
6020 "Unexpected valid cost for scalarizing scalable vectors");
6027 if (VF.
isVector() && ((ForcedScalar != ForcedScalars.end() &&
6028 ForcedScalar->second.contains(CI)) ||
6039 for (
Type *ScalarTy : ScalarTys)
6048 std::nullopt, *RedCost);
6059 if (Info.Shape.VF != VF)
6063 if (MaskRequired && !Info.isMasked())
6067 bool ParamsOk =
true;
6069 switch (Param.ParamKind) {
6075 if (!
PSE.getSE()->isLoopInvariant(
PSE.getSCEV(ScalarParam),
6112 VectorCost =
TTI.getCallInstrCost(
nullptr, RetTy, Tys,
CostKind);
6145 return !OpI || !
TheLoop->contains(OpI) ||
6149 [
this](
Value *
Op) { return shouldConsiderInvariant(Op); }));
6161 return InstsToScalarize[VF][
I];
6164 auto ForcedScalar = ForcedScalars.find(VF);
6165 if (VF.
isVector() && ForcedScalar != ForcedScalars.end()) {
6166 auto InstSet = ForcedScalar->second;
6167 if (InstSet.count(
I))
6172 Type *RetTy =
I->getType();
6175 auto *SE =
PSE.getSE();
6179 [[maybe_unused]]
auto HasSingleCopyAfterVectorization =
6184 auto Scalarized = InstsToScalarize.find(VF);
6185 assert(Scalarized != InstsToScalarize.end() &&
6186 "VF not yet analyzed for scalarization profitability");
6187 return !Scalarized->second.count(
I) &&
6189 auto *UI = cast<Instruction>(U);
6190 return !Scalarized->second.count(UI);
6199 assert(
I->getOpcode() == Instruction::GetElementPtr ||
6200 I->getOpcode() == Instruction::PHI ||
6201 (
I->getOpcode() == Instruction::BitCast &&
6202 I->getType()->isPointerTy()) ||
6203 HasSingleCopyAfterVectorization(
I, VF));
6209 !
TTI.getNumberOfParts(VectorTy))
6213 switch (
I->getOpcode()) {
6214 case Instruction::GetElementPtr:
6220 case Instruction::UncondBr:
6221 case Instruction::CondBr: {
6228 bool ScalarPredicatedBB =
false;
6231 (PredicatedBBsAfterVectorization[VF].count(BI->
getSuccessor(0)) ||
6232 PredicatedBBsAfterVectorization[VF].count(BI->
getSuccessor(1))) &&
6233 BI->getParent() !=
TheLoop->getLoopLatch())
6234 ScalarPredicatedBB =
true;
6236 if (ScalarPredicatedBB) {
6243 return (
TTI.getScalarizationOverhead(
6246 (
TTI.getCFInstrCost(Instruction::CondBr,
CostKind) *
6252 return TTI.getCFInstrCost(Instruction::UncondBr,
CostKind);
6260 case Instruction::Switch: {
6262 return TTI.getCFInstrCost(Instruction::Switch,
CostKind);
6264 return Switch->getNumCases() *
6265 TTI.getCmpSelInstrCost(
6267 toVectorTy(Switch->getCondition()->getType(), VF),
6271 case Instruction::PHI: {
6288 Type *ResultTy = Phi->getType();
6294 auto *Phi = dyn_cast<PHINode>(U);
6295 if (Phi && Phi->getParent() == TheLoop->getHeader())
6300 auto &ReductionVars =
Legal->getReductionVars();
6301 auto Iter = ReductionVars.find(HeaderUser);
6302 if (Iter != ReductionVars.end() &&
6304 Iter->second.getRecurrenceKind()))
6307 return (Phi->getNumIncomingValues() - 1) *
6308 TTI.getCmpSelInstrCost(
6309 Instruction::Select,
toVectorTy(ResultTy, VF),
6319 Intrinsic::vp_merge,
toVectorTy(Phi->getType(), VF),
6320 {toVectorTy(Type::getInt1Ty(Phi->getContext()), VF)});
6324 return TTI.getCFInstrCost(Instruction::PHI,
CostKind);
6326 case Instruction::UDiv:
6327 case Instruction::SDiv:
6328 case Instruction::URem:
6329 case Instruction::SRem:
6333 ScalarCost : SafeDivisorCost;
6337 case Instruction::Add:
6338 case Instruction::Sub: {
6339 auto Info =
Legal->getHistogramInfo(
I);
6346 if (!RHS || RHS->getZExtValue() != 1)
6348 TTI.getArithmeticInstrCost(Instruction::Mul, VectorTy,
CostKind);
6352 Type *ScalarTy =
I->getType();
6356 {PtrTy, ScalarTy, MaskTy});
6359 return TTI.getIntrinsicInstrCost(ICA,
CostKind) + MulCost +
6360 TTI.getArithmeticInstrCost(
I->getOpcode(), VectorTy,
CostKind);
6364 case Instruction::FAdd:
6365 case Instruction::FSub:
6366 case Instruction::Mul:
6367 case Instruction::FMul:
6368 case Instruction::FDiv:
6369 case Instruction::FRem:
6370 case Instruction::Shl:
6371 case Instruction::LShr:
6372 case Instruction::AShr:
6373 case Instruction::And:
6374 case Instruction::Or:
6375 case Instruction::Xor: {
6379 if (
I->getOpcode() == Instruction::Mul &&
6380 ((
TheLoop->isLoopInvariant(
I->getOperand(0)) &&
6381 PSE.getSCEV(
I->getOperand(0))->isOne()) ||
6382 (
TheLoop->isLoopInvariant(
I->getOperand(1)) &&
6383 PSE.getSCEV(
I->getOperand(1))->isOne())))
6392 Value *Op2 =
I->getOperand(1);
6398 auto Op2Info =
TTI.getOperandInfo(Op2);
6404 return TTI.getArithmeticInstrCost(
6406 {TargetTransformInfo::OK_AnyValue, TargetTransformInfo::OP_None},
6407 Op2Info, Operands,
I,
TLI);
6409 case Instruction::FNeg: {
6410 return TTI.getArithmeticInstrCost(
6412 {TargetTransformInfo::OK_AnyValue, TargetTransformInfo::OP_None},
6413 {TargetTransformInfo::OK_AnyValue, TargetTransformInfo::OP_None},
6414 I->getOperand(0),
I);
6416 case Instruction::Select: {
6421 const Value *Op0, *Op1;
6432 return TTI.getArithmeticInstrCost(
6434 VectorTy,
CostKind, {Op1VK, Op1VP}, {Op2VK, Op2VP}, {Op0, Op1},
I);
6437 Type *CondTy =
SI->getCondition()->getType();
6443 Pred = Cmp->getPredicate();
6444 return TTI.getCmpSelInstrCost(
I->getOpcode(), VectorTy, CondTy, Pred,
6445 CostKind, {TTI::OK_AnyValue, TTI::OP_None},
6446 {TTI::OK_AnyValue, TTI::OP_None},
I);
6448 case Instruction::ICmp:
6449 case Instruction::FCmp: {
6450 Type *ValTy =
I->getOperand(0)->getType();
6456 MinBWs[
I] == MinBWs[Op0AsInstruction]) &&
6457 "if both the operand and the compare are marked for "
6458 "truncation, they must have the same bitwidth");
6463 return TTI.getCmpSelInstrCost(
6466 {TTI::OK_AnyValue, TTI::OP_None}, {TTI::OK_AnyValue, TTI::OP_None},
I);
6468 case Instruction::Store:
6469 case Instruction::Load: {
6474 "CM decision should be taken at this point");
6481 return getMemoryInstructionCost(
I, VF);
6483 case Instruction::BitCast:
6484 if (
I->getType()->isPointerTy())
6487 case Instruction::ZExt:
6488 case Instruction::SExt:
6489 case Instruction::FPToUI:
6490 case Instruction::FPToSI:
6491 case Instruction::FPExt:
6492 case Instruction::PtrToInt:
6493 case Instruction::IntToPtr:
6494 case Instruction::SIToFP:
6495 case Instruction::UIToFP:
6496 case Instruction::Trunc:
6497 case Instruction::FPTrunc: {
6501 "Expected a load or a store!");
6527 unsigned Opcode =
I->getOpcode();
6530 if (Opcode == Instruction::Trunc || Opcode == Instruction::FPTrunc) {
6533 CCH = ComputeCCH(Store);
6536 else if (Opcode == Instruction::ZExt || Opcode == Instruction::SExt ||
6537 Opcode == Instruction::FPExt) {
6539 CCH = ComputeCCH(Load);
6547 return TTI.getCastInstrCost(Instruction::Trunc, Trunc->getDestTy(),
6548 Trunc->getSrcTy(), CCH,
CostKind, Trunc);
6555 Type *SrcScalarTy =
I->getOperand(0)->getType();
6567 (
I->getOpcode() == Instruction::ZExt ||
6568 I->getOpcode() == Instruction::SExt))
6572 return TTI.getCastInstrCost(Opcode, VectorTy, SrcVecTy, CCH,
CostKind,
I);
6574 case Instruction::Call:
6576 case Instruction::ExtractValue:
6578 case Instruction::Alloca:
6583 return TTI.getArithmeticInstrCost(Instruction::Mul, RetTy,
CostKind);
6586 return TTI.getArithmeticInstrCost(Instruction::Mul, VectorTy,
CostKind);
6601 auto IsLiveOutDead = [
this, RequiresScalarEpilogue](
User *U) {
6602 return RequiresScalarEpilogue &&
6616 all_of(
I.users(), [
this, IsLiveOutDead](
User *U) {
6617 return VecValuesToIgnore.contains(U) ||
6618 ValuesToIgnore.contains(U) || IsLiveOutDead(U);
6627 if (Group->getInsertPos() == &
I)
6630 DeadInterleavePointerOps.
push_back(PointerOp);
6641 for (
unsigned I = 0;
I != DeadInterleavePointerOps.
size(); ++
I) {
6644 Instruction *UI = cast<Instruction>(U);
6645 return !VecValuesToIgnore.contains(U) &&
6646 (!isAccessInterleaved(UI) ||
6647 getInterleavedAccessGroup(UI)->getInsertPos() == UI);
6667 for (
unsigned I = 0;
I != DeadOps.
size(); ++
I) {
6679 if ((ThenEmpty && ElseEmpty) ||
6681 ElseBB->
phis().empty()) ||
6683 ThenBB->
phis().empty())) {
6695 return !VecValuesToIgnore.contains(U) &&
6696 !ValuesToIgnore.contains(U) && !IsLiveOutDead(U);
6704 [
this](
User *U) { return ValuesToIgnore.contains(U); }))
6713 for (
const auto &Reduction :
Legal->getReductionVars()) {
6720 for (
const auto &Induction :
Legal->getInductionVars()) {
6728 if (!InLoopReductions.empty())
6731 for (
const auto &Reduction :
Legal->getReductionVars()) {
6732 PHINode *Phi = Reduction.first;
6754 !
TTI.preferInLoopReduction(Kind, Phi->getType()))
6762 bool InLoop = !ReductionOperations.
empty();
6765 InLoopReductions.insert(Phi);
6768 for (
auto *
I : ReductionOperations) {
6769 InLoopReductionImmediateChains[
I] = LastChain;
6773 LLVM_DEBUG(
dbgs() <<
"LV: Using " << (InLoop ?
"inloop" :
"out of loop")
6774 <<
" reduction for phi: " << *Phi <<
"\n");
6787 unsigned WidestType;
6791 TTI.enableScalableVectorization()
6796 unsigned N =
RegSize.getKnownMinValue() / WidestType;
6807 if (!OrigLoop->isInnermost()) {
6817 <<
"overriding computed VF.\n");
6820 }
else if (UserVF.
isScalable() && !TTI.supportsScalableVectors() &&
6822 LLVM_DEBUG(
dbgs() <<
"LV: Not vectorizing. Scalable VF requested, but "
6823 <<
"not supported by the target.\n");
6825 "Scalable vectorization requested but not supported by the target",
6826 "the scalable user-specified vectorization width for outer-loop "
6827 "vectorization cannot be used because the target does not support "
6828 "scalable vectors.",
6829 "ScalableVFUnfeasible", ORE, OrigLoop);
6834 "VF needs to be a power of two");
6836 <<
"VF " << VF <<
" to build VPlans.\n");
6846 return {VF, 0 , 0 };
6850 dbgs() <<
"LV: Not vectorizing. Inner loops aren't supported in the "
6851 "VPlan-native path.\n");
6856 assert(OrigLoop->isInnermost() &&
"Inner loop expected.");
6857 CM.collectValuesToIgnore();
6858 CM.collectElementTypesForWidening();
6865 if (CM.blockNeedsPredicationForAnyReason(OrigLoop->getHeader()) &&
6869 <<
"LV: Invalidate all interleaved groups due to fold-tail by masking "
6870 "which requires masked-interleaved support.\n");
6871 if (CM.InterleaveInfo.invalidateGroups())
6875 CM.invalidateCostModelingDecisions();
6878 if (CM.foldTailByMasking())
6879 Legal->prepareToFoldTailByMasking();
6886 "UserVF ignored because it may be larger than the maximal safe VF",
6887 "InvalidUserVF", ORE, OrigLoop);
6890 "VF needs to be a power of two");
6893 CM.collectInLoopReductions();
6894 if (CM.selectUserVectorizationFactor(UserVF)) {
6896 buildVPlansWithVPRecipes(UserVF, UserVF);
6901 "InvalidCost", ORE, OrigLoop);
6914 CM.collectInLoopReductions();
6915 for (
const auto &VF : VFCandidates) {
6917 CM.collectNonVectorizedAndSetWideningDecisions(VF);
6936 return CM.isUniformAfterVectorization(
I, VF);
6940 return CM.ValuesToIgnore.contains(UI) ||
6941 (IsVector &&
CM.VecValuesToIgnore.contains(UI)) ||
6946 return CM.getPredBlockCostDivisor(
CostKind, BB);
6965 for (
const auto &[
IV, IndDesc] :
Legal->getInductionVars()) {
6967 IV->getIncomingValueForBlock(OrigLoop->getLoopLatch()));
6969 for (
unsigned I = 0;
I != IVInsts.
size();
I++) {
6970 for (
Value *
Op : IVInsts[
I]->operands()) {
6972 if (
Op ==
IV || !OpI || !OrigLoop->contains(OpI) || !
Op->hasOneUse())
6978 for (User *U :
IV->users()) {
6991 if (TC == VF && !CM.foldTailByMasking())
6995 for (Instruction *IVInst : IVInsts) {
7000 dbgs() <<
"Cost of " << InductionCost <<
" for VF " << VF
7001 <<
": induction instruction " << *IVInst <<
"\n";
7003 Cost += InductionCost;
7013 CM.TheLoop->getExitingBlocks(Exiting);
7014 SetVector<Instruction *> ExitInstrs;
7016 for (BasicBlock *EB : Exiting) {
7021 ExitInstrs.
insert(CondI);
7025 for (
unsigned I = 0;
I != ExitInstrs.
size(); ++
I) {
7027 if (!OrigLoop->contains(CondI) ||
7032 dbgs() <<
"Cost of " << CondICost <<
" for VF " << VF
7033 <<
": exit condition instruction " << *CondI <<
"\n";
7039 any_of(OpI->users(), [&ExitInstrs](User *U) {
7040 return !ExitInstrs.contains(cast<Instruction>(U));
7052 for (BasicBlock *BB : OrigLoop->blocks()) {
7056 if (BB == OrigLoop->getLoopLatch())
7058 auto BranchCost = CostCtx.
getLegacyCost(BB->getTerminator(), VF);
7070 for (Instruction *ForcedScalar : CM.ForcedScalars[VF]) {
7076 dbgs() <<
"Cost of " << ForcedCost <<
" for VF " << VF
7077 <<
": forced scalar " << *ForcedScalar <<
"\n";
7081 for (
const auto &[Scalarized, ScalarCost] : CM.InstsToScalarize[VF]) {
7086 dbgs() <<
"Cost of " << ScalarCost <<
" for VF " << VF
7087 <<
": profitable to scalarize " << *Scalarized <<
"\n";
7095InstructionCost LoopVectorizationPlanner::cost(VPlan &Plan, ElementCount VF,
7096 VPRegisterUsage *RU)
const {
7097 VPCostContext CostCtx(CM.TTI, *CM.TLI, Plan, CM, CM.CostKind, PSE, OrigLoop);
7104 if (CM.shouldConsiderRegPressureForVF(VF))
7110 <<
" (Estimated cost per lane: ");
7112 double CostPerLane = double(
Cost.
getValue()) / EstimatedWidth;
7136 return &WidenMem->getIngredient();
7145 if (!VPI || VPI->getOpcode() != Instruction::Select)
7149 switch (WR->getOpcode()) {
7150 case Instruction::UDiv:
7151 case Instruction::SDiv:
7152 case Instruction::URem:
7153 case Instruction::SRem:
7166 auto *IG =
IR->getInterleaveGroup();
7167 unsigned NumMembers = IG->getNumMembers();
7168 for (
unsigned I = 0;
I != NumMembers; ++
I) {
7185 if (VPR->isPartialReduction())
7197 if (WidenMemR->isReverse()) {
7203 if (StoreR->getStoredValue()->isDefinedOutsideLoopRegions())
7207 if (StoreR->getStoredValue()->isDefinedOutsideLoopRegions())
7227 if (RepR->isSingleScalar() &&
7229 RepR->getUnderlyingInstr(), VF))
7232 if (
Instruction *UI = GetInstructionForCost(&R)) {
7236 if (
match(&R,
m_Cmp(Pred, m_VPValue(), m_VPValue())) &&
7244 if (!VPBB->getEnclosingLoopRegion())
7256 return match(&R, m_VPInstruction<VPInstruction::Reverse>());
7263 return any_of(TheLoop->
blocks(), [&SeenInstrs, &CostCtx,
7265 return any_of(*BB, [&SeenInstrs, &CostCtx, TheLoop, BB](Instruction &I) {
7268 if (isa<PHINode>(&I) && BB == TheLoop->getHeader() &&
7269 CostCtx.CM.Legal->isInductionPhi(cast<PHINode>(&I)))
7271 return !SeenInstrs.contains(&I) && !CostCtx.skipCostComputation(&I, true);
7281 VPlan &FirstPlan = *VPlans[0];
7287 ?
"Reciprocal Throughput\n"
7289 ?
"Instruction Latency\n"
7292 ?
"Code Size and Latency\n"
7297 "More than a single plan/VF w/o any plan having scalar VF");
7301 LLVM_DEBUG(
dbgs() <<
"LV: Scalar loop costs: " << ScalarCost <<
".\n");
7306 if (ForceVectorization) {
7313 for (
auto &
P : VPlans) {
7315 P->vectorFactors().end());
7319 return CM.shouldConsiderRegPressureForVF(VF);
7324 for (
unsigned I = 0;
I < VFs.
size();
I++) {
7331 <<
"LV: Not considering vector loop of width " << VF
7332 <<
" because it will not generate any vector instructions.\n");
7338 <<
"LV: Not considering vector loop of width " << VF
7339 <<
" because it would cause replicated blocks to be generated,"
7340 <<
" which isn't allowed when optimizing for size.\n");
7348 if (isMoreProfitable(CurrentFactor, BestFactor,
P->hasScalarTail()))
7349 BestFactor = CurrentFactor;
7352 if (isMoreProfitable(CurrentFactor, ScalarFactor,
P->hasScalarTail()))
7353 ProfitableVFs.push_back(CurrentFactor);
7369 VPCostContext CostCtx(CM.TTI, *CM.TLI, BestPlan, CM, CM.CostKind, CM.PSE,
7371 precomputeCosts(BestPlan, BestFactor.
Width, CostCtx);
7378 bool UsesEVLGatherScatter =
7382 return any_of(*VPBB, [](VPRecipeBase &R) {
7383 return isa<VPWidenLoadEVLRecipe, VPWidenStoreEVLRecipe>(&R) &&
7384 !cast<VPWidenMemoryRecipe>(&R)->isConsecutive();
7388 (BestFactor.Width == LegacyVF.Width || BestPlan.hasEarlyExit() ||
7389 !
Legal->getLAI()->getSymbolicStrides().empty() || UsesEVLGatherScatter ||
7391 getPlanFor(BestFactor.Width), CostCtx, OrigLoop, BestFactor.Width) ||
7393 getPlanFor(LegacyVF.Width), CostCtx, OrigLoop, LegacyVF.Width)) &&
7394 " VPlan cost model and legacy cost model disagreed");
7395 assert((BestFactor.Width.isScalar() || BestFactor.ScalarCost > 0) &&
7396 "when vectorizing, the scalar cost must be computed.");
7399 LLVM_DEBUG(
dbgs() <<
"LV: Selecting VF: " << BestFactor.Width <<
".\n");
7407 "Trying to execute plan with unsupported VF");
7409 "Trying to execute plan with unsupported UF");
7411 ++LoopsEarlyExitVectorized;
7418 bool HasBranchWeights =
7420 if (HasBranchWeights) {
7421 std::optional<unsigned> VScale = CM.getVScaleForTuning();
7423 BestVPlan, BestVF, VScale);
7428 attachRuntimeChecks(BestVPlan, ILV.
RTChecks, HasBranchWeights);
7435 if (!VectorizingEpilogue)
7442 OrigLoop->getStartLoc(),
7443 OrigLoop->getHeader())
7444 <<
"Created vector loop never executes due to insufficient trip "
7469 BestVPlan, VectorPH, CM.foldTailByMasking(),
7483 assert(VectorizingEpilogue &&
"should only re-use the existing trip "
7484 "count during epilogue vectorization");
7489 OrigLoop->getParentLoop(),
7490 Legal->getWidestInductionType());
7492#ifdef EXPENSIVE_CHECKS
7493 assert(DT->verify(DominatorTree::VerificationLevel::Fast));
7510 if (!Exit->hasPredecessors())
7532 MDNode *LID = OrigLoop->getLoopID();
7533 unsigned OrigLoopInvocationWeight = 0;
7534 std::optional<unsigned> OrigAverageTripCount =
7546 bool DisableRuntimeUnroll = !ILV.
RTChecks.hasChecks() && !BestVF.
isScalar();
7548 HeaderVPBB ? LI->getLoopFor(State.CFG.VPBB2IRBB.lookup(HeaderVPBB))
7550 HeaderVPBB, BestVPlan, VectorizingEpilogue, LID, OrigAverageTripCount,
7551 OrigLoopInvocationWeight,
7553 DisableRuntimeUnroll);
7561 return ExpandedSCEVs;
7576 EPI.EpilogueIterationCountCheck =
7578 EPI.EpilogueIterationCountCheck->setName(
"iter.check");
7588 EPI.MainLoopIterationCountCheck =
7597 dbgs() <<
"Create Skeleton for epilogue vectorized loop (first pass)\n"
7598 <<
"Main Loop VF:" <<
EPI.MainLoopVF
7599 <<
", Main Loop UF:" <<
EPI.MainLoopUF
7600 <<
", Epilogue Loop VF:" <<
EPI.EpilogueVF
7601 <<
", Epilogue Loop UF:" <<
EPI.EpilogueUF <<
"\n";
7607 dbgs() <<
"intermediate fn:\n"
7608 << *
OrigLoop->getHeader()->getParent() <<
"\n";
7614 assert(Bypass &&
"Expected valid bypass basic block.");
7618 VectorPH, ForEpilogue ?
EPI.EpilogueVF :
EPI.MainLoopVF,
7619 ForEpilogue ?
EPI.EpilogueUF :
EPI.MainLoopUF);
7623 TCCheckBlock->
setName(
"vector.main.loop.iter.check");
7649 return TCCheckBlock;
7662 OriginalScalarPH->
setName(
"vec.epilog.iter.check");
7670 R.moveBefore(*NewEntry, NewEntry->
end());
7674 Plan.setEntry(NewEntry);
7677 return OriginalScalarPH;
7682 dbgs() <<
"Create Skeleton for epilogue vectorized loop (second pass)\n"
7683 <<
"Epilogue Loop VF:" <<
EPI.EpilogueVF
7684 <<
", Epilogue Loop UF:" <<
EPI.EpilogueUF <<
"\n";
7690 dbgs() <<
"final fn:\n" << *
OrigLoop->getHeader()->getParent() <<
"\n";
7697 VPI->
getOpcode() == Instruction::Store) &&
7698 "Must be called with either a load or store");
7705 "CM decision should be taken at this point.");
7743 :
GEP->getNoWrapFlags().withoutNoUnsignedWrap();
7749 GEP ?
GEP->getNoWrapFlags()
7753 Builder.insert(VectorPtr);
7757 if (VPI->
getOpcode() == Instruction::Load) {
7759 auto *LoadR =
new VPWidenLoadRecipe(*Load, Ptr, Mask, Consecutive,
Reverse,
7760 *VPI,
Load->getDebugLoc());
7762 Builder.insert(LoadR);
7764 LoadR->getDebugLoc());
7773 Store->getDebugLoc());
7774 return new VPWidenStoreRecipe(*Store, Ptr, StoredVal, Mask, Consecutive,
7779VPRecipeBuilder::tryToOptimizeInductionTruncate(
VPInstruction *VPI,
7789 auto IsOptimizableIVTruncate =
7790 [&](
Instruction *
K) -> std::function<
bool(ElementCount)> {
7791 return [=](ElementCount VF) ->
bool {
7792 return CM.isOptimizableIVTruncate(K, VF);
7797 IsOptimizableIVTruncate(
I),
Range))
7804 const InductionDescriptor &IndDesc =
WidenIV->getInductionDescriptor();
7808 VPIRFlags
Flags = VPIRFlags::WrapFlagsTy(
false,
false);
7811 return new VPWidenIntOrFpInductionRecipe(
7812 Phi, Start, Step, &Plan.getVF(), IndDesc,
I, Flags, VPI->
getDebugLoc());
7819 [
this, CI](ElementCount VF) {
7820 return CM.isScalarWithPredication(CI, VF);
7828 if (
ID && (
ID == Intrinsic::assume ||
ID == Intrinsic::lifetime_end ||
7829 ID == Intrinsic::lifetime_start ||
ID == Intrinsic::sideeffect ||
7830 ID == Intrinsic::pseudoprobe ||
7831 ID == Intrinsic::experimental_noalias_scope_decl))
7838 bool ShouldUseVectorIntrinsic =
7840 [&](ElementCount VF) ->
bool {
7841 return CM.getCallWideningDecision(CI, VF).Kind ==
7845 if (ShouldUseVectorIntrinsic)
7846 return new VPWidenIntrinsicRecipe(*CI,
ID,
Ops, CI->
getType(), *VPI, *VPI,
7850 std::optional<unsigned> MaskPos;
7854 [&](ElementCount VF) ->
bool {
7869 LoopVectorizationCostModel::CallWideningDecision Decision =
7870 CM.getCallWideningDecision(CI, VF);
7880 if (ShouldUseVectorCall) {
7881 if (MaskPos.has_value()) {
7891 Ops.insert(
Ops.begin() + *MaskPos, Mask);
7895 return new VPWidenCallRecipe(CI, Variant,
Ops, *VPI, *VPI,
7904 "Instruction should have been handled earlier");
7907 auto WillScalarize = [
this,
I](ElementCount VF) ->
bool {
7908 return CM.isScalarAfterVectorization(
I, VF) ||
7909 CM.isProfitableToScalarize(
I, VF) ||
7910 CM.isScalarWithPredication(
I, VF);
7921 case Instruction::SDiv:
7922 case Instruction::UDiv:
7923 case Instruction::SRem:
7924 case Instruction::URem: {
7927 if (CM.isPredicatedInst(
I)) {
7930 VPValue *One = Plan.getConstantInt(
I->getType(), 1u);
7938 case Instruction::Add:
7939 case Instruction::And:
7940 case Instruction::AShr:
7941 case Instruction::FAdd:
7942 case Instruction::FCmp:
7943 case Instruction::FDiv:
7944 case Instruction::FMul:
7945 case Instruction::FNeg:
7946 case Instruction::FRem:
7947 case Instruction::FSub:
7948 case Instruction::ICmp:
7949 case Instruction::LShr:
7950 case Instruction::Mul:
7951 case Instruction::Or:
7952 case Instruction::Select:
7953 case Instruction::Shl:
7954 case Instruction::Sub:
7955 case Instruction::Xor:
7956 case Instruction::Freeze:
7959 case Instruction::ExtractValue: {
7962 assert(EVI->getNumIndices() == 1 &&
"Expected one extractvalue index");
7963 unsigned Idx = EVI->getIndices()[0];
7964 NewOps.push_back(Plan.getConstantInt(32, Idx));
7965 return new VPWidenRecipe(*
I, NewOps, *VPI, *VPI, VPI->
getDebugLoc());
7973 unsigned Opcode =
HI->Update->getOpcode();
7974 assert((Opcode == Instruction::Add || Opcode == Instruction::Sub) &&
7975 "Histogram update operation must be an Add or Sub");
7985 if (CM.isMaskRequired(
HI->Store))
7988 return new VPHistogramRecipe(Opcode, HGramOps, VPI->
getDebugLoc());
7995 [&](
ElementCount VF) {
return CM.isUniformAfterVectorization(
I, VF); },
7998 bool IsPredicated = CM.isPredicatedInst(
I);
8006 case Intrinsic::assume:
8007 case Intrinsic::lifetime_start:
8008 case Intrinsic::lifetime_end:
8030 VPValue *BlockInMask =
nullptr;
8031 if (!IsPredicated) {
8035 LLVM_DEBUG(
dbgs() <<
"LV: Scalarizing and predicating:" << *
I <<
"\n");
8046 assert((
Range.Start.isScalar() || !IsUniform || !IsPredicated ||
8048 "Should not predicate a uniform recipe");
8058 assert(!R->isPhi() &&
"phis must be handled earlier");
8064 if (VPI->
getOpcode() == Instruction::Trunc &&
8065 (Recipe = tryToOptimizeInductionTruncate(VPI,
Range)))
8073 if (VPI->
getOpcode() == Instruction::Call)
8074 return tryToWidenCall(VPI,
Range);
8077 if (VPI->
getOpcode() == Instruction::Store)
8079 return tryToWidenHistogram(*HistInfo, VPI);
8081 if (VPI->
getOpcode() == Instruction::Load ||
8083 return tryToWidenMemory(VPI,
Range);
8085 if (!shouldWiden(Instr,
Range))
8088 if (VPI->
getOpcode() == Instruction::GetElementPtr)
8097 CastR->getResultType(), CI, *VPI, *VPI,
8101 return tryToWiden(VPI);
8104void LoopVectorizationPlanner::buildVPlansWithVPRecipes(
ElementCount MinVF,
8113 OrigLoop, LI, DT, PSE.
getSE());
8118 LVer.prepareNoAliasMetadata();
8124 OrigLoop, *LI,
Legal->getWidestInductionType(),
8129 *VPlan0, PSE, *OrigLoop,
Legal->getInductionVars(),
8130 Legal->getReductionVars(),
Legal->getFixedOrderRecurrences(),
8140 if (
Legal->hasUncountableEarlyExit())
8141 EEStyle =
Legal->hasUncountableExitWithSideEffects()
8146 Legal->getAssumptionCache()))
8155 auto MaxVFTimes2 = MaxVF * 2;
8157 VFRange SubRange = {VF, MaxVFTimes2};
8158 if (
auto Plan = tryToBuildVPlanWithVPRecipes(
8159 std::unique_ptr<VPlan>(VPlan0->duplicate()), SubRange, &LVer)) {
8164 CM.getMinimalBitwidths());
8167 if (CM.foldTailWithEVL()) {
8169 CM.getMaxSafeElements());
8174 VPlans.push_back(std::move(
P));
8177 VPlans.push_back(std::move(Plan));
8183VPlanPtr LoopVectorizationPlanner::tryToBuildVPlanWithVPRecipes(
8186 using namespace llvm::VPlanPatternMatch;
8187 SmallPtrSet<const InterleaveGroup<Instruction> *, 1> InterleaveGroups;
8194 bool RequiresScalarEpilogueCheck =
8196 [
this](ElementCount VF) {
8197 return !CM.requiresScalarEpilogue(VF.
isVector());
8201 VPBasicBlock *MiddleVPBB = Plan->getMiddleBlock();
8202 if (!RequiresScalarEpilogueCheck && MiddleVPBB->getNumSuccessors() == 2) {
8204 assert(MiddleVPBB->getSuccessors()[1] == Plan->getScalarPreheader() &&
8205 "second successor must be scalar preheader");
8206 BranchOnCond->setOperand(0, Plan->getFalse());
8213 bool IVUpdateMayOverflow =
false;
8214 for (ElementCount VF :
Range)
8222 VPRegionBlock *LoopRegion = Plan->getVectorLoopRegion();
8228 m_VPInstruction<Instruction::Add>(
8230 "Did not find the canonical IV increment");
8243 for (InterleaveGroup<Instruction> *IG : IAI.getInterleaveGroups()) {
8244 auto ApplyIG = [IG,
this](ElementCount VF) ->
bool {
8246 CM.getWideningDecision(IG->getInsertPos(), VF) ==
8251 "Unsupported interleave factor for scalable vectors");
8256 InterleaveGroups.
insert(IG);
8263 VPRecipeBuilder RecipeBuilder(*Plan, TLI, Legal, CM, Builder);
8268 ReversePostOrderTraversal<VPBlockShallowTraversalWrapper<VPBlockBase *>> RPOT(
8274 DenseSet<BasicBlock *> BlocksNeedingPredication;
8275 for (BasicBlock *BB : OrigLoop->blocks())
8276 if (CM.blockNeedsPredicationForAnyReason(BB))
8277 BlocksNeedingPredication.
insert(BB);
8286 make_range(VPBB->getFirstNonPhi(), VPBB->end()))) {
8298 Builder.setInsertPoint(VPI);
8305 Legal->isInvariantAddressOfReduction(
SI->getPointerOperand())) {
8307 if (Legal->isInvariantStoreOfReduction(SI)) {
8308 auto *Recipe =
new VPReplicateRecipe(
8311 Recipe->insertBefore(*MiddleVPBB, MBIP);
8313 R.eraseFromParent();
8317 VPRecipeBase *Recipe =
8318 RecipeBuilder.tryToCreateWidenNonPhiRecipe(VPI,
Range);
8323 RecipeBuilder.setRecipe(Instr, Recipe);
8329 Builder.insert(Recipe);
8335 "Unexpected multidef recipe");
8337 R.eraseFromParent();
8343 "entry block must be set to a VPRegionBlock having a non-empty entry "
8355 addReductionResultComputation(Plan, RecipeBuilder,
Range.Start);
8361 CM.foldTailByMasking());
8382 if (!CM.foldTailWithEVL()) {
8383 VPCostContext CostCtx(CM.TTI, *CM.TLI, *Plan, CM, CM.CostKind, CM.PSE,
8391 for (ElementCount VF :
Range)
8393 Plan->setName(
"Initial VPlan");
8399 InterleaveGroups, RecipeBuilder, CM.isScalarEpilogueAllowed());
8403 Legal->getLAI()->getSymbolicStrides());
8405 auto BlockNeedsPredication = [
this](
BasicBlock *BB) {
8406 return Legal->blockNeedsPredication(BB);
8409 BlockNeedsPredication);
8433 assert(!OrigLoop->isInnermost());
8437 OrigLoop, *LI, Legal->getWidestInductionType(),
8441 *Plan, PSE, *OrigLoop, Legal->getInductionVars(),
8442 MapVector<PHINode *, RecurrenceDescriptor>(),
8443 SmallPtrSet<const PHINode *, 1>(), SmallPtrSet<PHINode *, 1>(),
8447 Legal->getAssumptionCache());
8449 "early-exits are not supported in VPlan-native path");
8454 for (ElementCount VF :
Range)
8468void LoopVectorizationPlanner::addReductionResultComputation(
8470 using namespace VPlanPatternMatch;
8471 VPTypeAnalysis TypeInfo(*Plan);
8472 VPRegionBlock *VectorLoopRegion = Plan->getVectorLoopRegion();
8473 VPBasicBlock *MiddleVPBB = Plan->getMiddleBlock();
8476 Builder.setInsertPoint(&*std::prev(std::prev(LatchVPBB->
end())));
8478 for (VPRecipeBase &R :
8479 Plan->getVectorLoopRegion()->getEntryBasicBlock()->phis()) {
8487 const RecurrenceDescriptor &RdxDesc = Legal->getRecurrenceDescriptor(
8489 Type *PhiTy = TypeInfo.inferScalarType(PhiR);
8499 if (!PhiR->
isInLoop() && CM.foldTailByMasking() &&
8500 (!RR || !RR->isPartialReduction())) {
8503 Builder.createSelect(
Cond, OrigExitingVPV, PhiR, {},
"", *PhiR);
8504 OrigExitingVPV->replaceUsesWithIf(NewExitingVPV, [](VPUser &U,
unsigned) {
8505 using namespace VPlanPatternMatch;
8508 m_VPInstruction<VPInstruction::ComputeAnyOfResult>(),
8509 m_VPInstruction<VPInstruction::ComputeReductionResult>()));
8512 if (CM.usePredicatedReductionSelect(RecurrenceKind))
8523 DebugLoc ExitDL = OrigLoop->getLoopLatch()->getTerminator()->getDebugLoc();
8529 VPInstruction *FinalReductionResult;
8530 VPBuilder::InsertPointGuard Guard(Builder);
8531 Builder.setInsertPoint(MiddleVPBB, IP);
8534 VPRecipeBase *AnyOfSelect =
nullptr;
8537 return match(U, m_Select(m_VPValue(), m_VPValue(), m_VPValue()));
8543 VPValue *NewVal = AnyOfSelect->
getOperand(1) == PhiR
8546 FinalReductionResult =
8548 {
Start, NewVal, NewExitingVPV}, ExitDL);
8552 FinalReductionResult =
8554 {NewExitingVPV},
Flags, ExitDL);
8561 assert(!PhiR->
isInLoop() &&
"Unexpected truncated inloop reduction!");
8563 "Unexpected truncated min-max recurrence!");
8565 VPWidenCastRecipe *Trunc;
8567 RdxDesc.
isSigned() ? Instruction::SExt : Instruction::ZExt;
8568 VPWidenCastRecipe *Extnd;
8570 VPBuilder::InsertPointGuard Guard(Builder);
8571 Builder.setInsertPoint(
8572 NewExitingVPV->getDefiningRecipe()->getParent(),
8573 std::next(NewExitingVPV->getDefiningRecipe()->getIterator()));
8575 Builder.createWidenCast(Instruction::Trunc, NewExitingVPV, RdxTy);
8576 Extnd = Builder.createWidenCast(ExtendOpc, Trunc, PhiTy);
8584 FinalReductionResult =
8585 Builder.createScalarCast(ExtendOpc, FinalReductionResult, PhiTy, {});
8590 for (
auto *U :
to_vector(OrigExitingVPV->users())) {
8592 if (FinalReductionResult == U || Parent->getParent())
8597 m_VPInstruction<VPInstruction::ComputeReductionResult>(),
8598 m_VPInstruction<Instruction::ICmp>())))
8600 U->replaceUsesOfWith(OrigExitingVPV, FinalReductionResult);
8619 if (VPRecipeBase *CmpR =
Cmp->getDefiningRecipe())
8621 Builder.setInsertPoint(AnyOfSelect);
8626 Cmp = Builder.createNot(Cmp);
8627 VPValue *
Or = Builder.createOr(PhiR, Cmp);
8642 VPBuilder PHBuilder(Plan->getVectorPreheader());
8643 VPValue *Iden = Plan->getOrAddLiveIn(
8645 auto *ScaleFactorVPV = Plan->getConstantInt(32, 1);
8646 VPValue *StartV = PHBuilder.createNaryOp(
8652 for (VPRecipeBase *R : ToDelete)
8653 R->eraseFromParent();
8658void LoopVectorizationPlanner::attachRuntimeChecks(
8659 VPlan &Plan, GeneratedRTChecks &RTChecks,
bool HasBranchWeights)
const {
8660 const auto &[SCEVCheckCond, SCEVCheckBlock] = RTChecks.getSCEVChecks();
8661 if (SCEVCheckBlock && SCEVCheckBlock->hasNPredecessors(0)) {
8662 assert((!CM.OptForSize ||
8664 "Cannot SCEV check stride or overflow when optimizing for size");
8668 const auto &[MemCheckCond, MemCheckBlock] = RTChecks.getMemRuntimeChecks();
8669 if (MemCheckBlock && MemCheckBlock->hasNPredecessors(0)) {
8673 "Runtime checks are not supported for outer loops yet");
8675 if (CM.OptForSize) {
8678 "Cannot emit memory checks when optimizing for size, unless forced "
8681 return OptimizationRemarkAnalysis(
DEBUG_TYPE,
"VectorizationCodeSize",
8682 OrigLoop->getStartLoc(),
8683 OrigLoop->getHeader())
8684 <<
"Code-size may be reduced by not forcing "
8685 "vectorization, or by source-code modifications "
8686 "eliminating the need for runtime checks "
8687 "(e.g., adding 'restrict').";
8703 Plan, VF, UF, MinProfitableTripCount,
8704 CM.requiresScalarEpilogue(VF.
isVector()), CM.foldTailByMasking(),
8705 OrigLoop, BranchWeights,
8706 OrigLoop->getLoopPredecessor()->getTerminator()->getDebugLoc(), PSE);
8719 if (
F->hasOptSize() ||
8745 if (
TTI->preferPredicateOverEpilogue(&TFI))
8764 LLVM_DEBUG(
dbgs() <<
"LV: cannot compute the outer-loop trip count\n");
8768 Function *
F = L->getHeader()->getParent();
8774 LoopVectorizationCostModel CM(
SEL, L, PSE, LI, LVL, *
TTI, TLI, DB, AC, ORE,
8775 GetBFI,
F, &Hints, IAI, OptForSize);
8779 LoopVectorizationPlanner LVP(L, LI, DT, TLI, *
TTI, LVL, CM, IAI, PSE, Hints,
8799 GeneratedRTChecks Checks(PSE, DT, LI,
TTI, CM.
CostKind);
8803 << L->getHeader()->getParent()->getName() <<
"\"\n");
8825 if (S->getValueOperand()->getType()->isFloatTy())
8835 while (!Worklist.
empty()) {
8837 if (!L->contains(
I))
8839 if (!Visited.
insert(
I).second)
8849 I->getDebugLoc(), L->getHeader())
8850 <<
"floating point conversion changes vector width. "
8851 <<
"Mixed floating point precision requires an up/down "
8852 <<
"cast that will negatively impact performance.";
8855 for (
Use &
Op :
I->operands())
8871 for (
auto *PredVPBB : ExitVPBB->getPredecessors()) {
8877 << PredVPBB->getName() <<
":\n");
8878 Cost += PredVPBB->cost(VF, CostCtx);
8898 std::optional<unsigned> VScale) {
8910 <<
"LV: Interleaving only is not profitable due to runtime checks\n");
8977 uint64_t MinTC = std::max(MinTC1, MinTC2);
8979 MinTC =
alignTo(MinTC, IntVF);
8983 dbgs() <<
"LV: Minimum required TC for runtime checks to be profitable:"
8990 LLVM_DEBUG(
dbgs() <<
"LV: Vectorization is not beneficial: expected "
8991 "trip count < minimum profitable VF ("
9002 : InterleaveOnlyWhenForced(Opts.InterleaveOnlyWhenForced ||
9004 VectorizeOnlyWhenForced(Opts.VectorizeOnlyWhenForced ||
9018 auto AddFreezeForFindLastIVReductions = [](
VPlan &Plan,
9019 bool UpdateResumePhis) {
9031 Builder.createNaryOp(Instruction::Freeze, {OrigStart}, {},
"fr");
9033 if (UpdateResumePhis)
9039 AddFreezeForFindLastIVReductions(MainPlan,
true);
9040 AddFreezeForFindLastIVReductions(EpiPlan,
false);
9045 [[maybe_unused]]
bool MatchedTC =
9047 assert(MatchedTC &&
"must match vector trip count");
9053 auto ResumePhiIter =
9055 return match(&R, m_VPInstruction<Instruction::PHI>(m_Specific(VectorTC),
9058 VPPhi *ResumePhi =
nullptr;
9059 if (ResumePhiIter == MainScalarPH->
phis().
end()) {
9064 "canonical IV must start at 0");
9068 {VectorTC, MainPlan.
getZero(Ty)}, {},
"vec.epilog.resume.val");
9071 ResumePhi->
setName(
"vec.epilog.resume.val");
9072 if (&MainScalarPH->
front() != ResumePhi)
9086 assert(isa<VPIRPhi>(R) &&
9087 "only VPIRPhis expected in the scalar header");
9088 return ResumeBuilder.createNaryOp(VPInstruction::ResumeForEpilogue,
9100 VPlan &Plan,
Loop *L,
const SCEV2ValueTy &ExpandedSCEVs,
9105 Header->
setName(
"vec.epilog.vector.body");
9114 PHINode *EPResumeVal = &*L->getLoopPreheader()->phis().begin();
9119 "Must only have a single non-zero incoming value");
9130 [](
Value *Inc) { return match(Inc, m_SpecificInt(0)); }) &&
9131 "all incoming values must be 0");
9137 return isa<VPScalarIVStepsRecipe>(U) ||
9138 isa<VPDerivedIVRecipe>(U) ||
9139 cast<VPRecipeBase>(U)->isScalarCast() ||
9140 cast<VPInstruction>(U)->getOpcode() ==
9143 "the canonical IV should only be used by its increment or "
9144 "ScalarIVSteps when resetting the start value");
9145 VPBuilder Builder(Header, Header->getFirstNonPhi());
9155 Increment->replaceUsesWithIf(OffsetIVInc,
9156 [
IV](
VPUser &U,
unsigned) {
return &U !=
IV; });
9165 Value *ResumeV =
nullptr;
9179 assert(RdxResult &&
"expected to find reduction result");
9182 ->getIncomingValueForBlock(L->getLoopPreheader());
9187 VPValue *SentinelVPV =
nullptr;
9188 bool IsFindIV =
any_of(RdxResult->users(), [&](
VPUser *U) {
9189 return match(U, VPlanPatternMatch::m_SpecificICmp(
9190 ICmpInst::ICMP_NE, m_Specific(RdxResult),
9191 m_VPValue(SentinelVPV)));
9201 ResumeV = Builder.CreateICmpNE(ResumeV, StartV);
9204 }
else if (IsFindIV) {
9205 assert(SentinelVPV &&
"expected to find icmp using RdxResult");
9211 ToFrozen[FreezeI->getOperand(0)] = FrozenStartV;
9217 Value *Cmp = Builder.CreateICmpEQ(ResumeV, FrozenStartV);
9229 "unexpected start value");
9236 assert(
Sub->getOpcode() == Instruction::Sub &&
"Unexpected opcode");
9238 "Expected operand to match the original start value of the "
9242 "Expected start value for partial sub-reduction to start at "
9244 Sub->setOperand(0, StartVal);
9258 assert(ResumeV &&
"Must have a resume value");
9272 if (VPI && VPI->
getOpcode() == Instruction::Freeze) {
9289 ExpandR->eraseFromParent();
9293 unsigned MainLoopStep =
9295 unsigned EpilogueLoopStep =
9300 EPI.
EpilogueUF, MainLoopStep, EpilogueLoopStep, SE);
9313 if (Phi.getBasicBlockIndex(Pred) != -1)
9315 Phi.addIncoming(Phi.getIncomingValueForBlock(BypassBlock), Pred);
9319 if (ScalarPH->hasPredecessors()) {
9323 for (
auto [ResumeV, HeaderPhi] :
9326 auto *EpiResumePhi =
9327 cast<PHINode>(HeaderPhiR->getIRPhi().getIncomingValueForBlock(PH));
9328 if (EpiResumePhi->getBasicBlockIndex(BypassBlock) == -1)
9330 auto *MainResumePhi =
cast<PHINode>(ResumeV->getUnderlyingValue());
9331 EpiResumePhi->setIncomingValueForBlock(
9332 BypassBlock, MainResumePhi->getIncomingValueForBlock(BypassBlock));
9345 GeneratedRTChecks &Checks,
9357 "expected this to be saved from the previous pass.");
9360 VecEpilogueIterationCountCheck, VecEpiloguePreHeader);
9363 VecEpilogueIterationCountCheck},
9365 VecEpiloguePreHeader}});
9370 VecEpilogueIterationCountCheck, ScalarPH);
9373 VecEpilogueIterationCountCheck},
9377 BasicBlock *SCEVCheckBlock = Checks.getSCEVChecks().second;
9378 BasicBlock *MemCheckBlock = Checks.getMemRuntimeChecks().second;
9379 if (SCEVCheckBlock) {
9381 VecEpilogueIterationCountCheck, ScalarPH);
9383 VecEpilogueIterationCountCheck},
9386 if (MemCheckBlock) {
9388 VecEpilogueIterationCountCheck, ScalarPH);
9401 for (
PHINode *Phi : PhisInBlock) {
9403 Phi->replaceIncomingBlockWith(
9405 VecEpilogueIterationCountCheck);
9412 return EPI.EpilogueIterationCountCheck == IncB;
9417 Phi->removeIncomingValue(SCEVCheckBlock);
9419 Phi->removeIncomingValue(MemCheckBlock);
9423 for (
auto *
I : InstsToMove)
9435 if (Phi.use_empty())
9436 Phi.eraseFromParent();
9441 "VPlan-native path is not enabled. Only process inner loops.");
9444 << L->getHeader()->getParent()->getName() <<
"' from "
9445 << L->getLocStr() <<
"\n");
9450 dbgs() <<
"LV: Loop hints:"
9461 Function *
F = L->getHeader()->getParent();
9481 L->getHeader(),
PSI,
9488 &Requirements, &Hints,
DB,
AC,
9491 LLVM_DEBUG(
dbgs() <<
"LV: Not vectorizing: Cannot prove legality.\n");
9499 "early exit is not enabled",
9500 "UncountableEarlyExitLoopsDisabled",
ORE, L);
9510 if (!L->isInnermost())
9515 assert(L->isInnermost() &&
"Inner loop expected.");
9518 bool UseInterleaved =
TTI->enableInterleavedAccessVectorization();
9532 [LoopLatch](
BasicBlock *BB) { return BB != LoopLatch; })) {
9534 "requiring a scalar epilogue is unsupported",
9535 "UncountableEarlyExitUnsupported",
ORE, L);
9548 if (ExpectedTC && ExpectedTC->isFixed() &&
9550 LLVM_DEBUG(
dbgs() <<
"LV: Found a loop with a very small trip count. "
9551 <<
"This loop is worth vectorizing only if no scalar "
9552 <<
"iteration overheads are incurred.");
9554 LLVM_DEBUG(
dbgs() <<
" But vectorizing was explicitly forced.\n");
9570 if (
F->hasFnAttribute(Attribute::NoImplicitFloat)) {
9572 "Can't vectorize when the NoImplicitFloat attribute is used",
9573 "loop not vectorized due to NoImplicitFloat attribute",
9574 "NoImplicitFloat",
ORE, L);
9584 TTI->isFPVectorizationPotentiallyUnsafe()) {
9586 "Potentially unsafe FP op prevents vectorization",
9587 "loop not vectorized due to unsafe FP support.",
9588 "UnsafeFP",
ORE, L);
9593 bool AllowOrderedReductions;
9598 AllowOrderedReductions =
TTI->enableOrderedReductions();
9603 ExactFPMathInst->getDebugLoc(),
9604 ExactFPMathInst->getParent())
9605 <<
"loop not vectorized: cannot prove it is safe to reorder "
9606 "floating-point operations";
9608 LLVM_DEBUG(
dbgs() <<
"LV: loop not vectorized: cannot prove it is safe to "
9609 "reorder floating-point operations\n");
9615 LoopVectorizationCostModel CM(
SEL, L, PSE,
LI, &LVL, *
TTI,
TLI,
DB,
AC,
ORE,
9616 GetBFI,
F, &Hints, IAI, OptForSize);
9618 LoopVectorizationPlanner LVP(L,
LI,
DT,
TLI, *
TTI, &LVL, CM, IAI, PSE, Hints,
9628 LVP.
plan(UserVF, UserIC);
9640 unsigned SelectedIC = std::max(IC, UserIC);
9650 if (Checks.getSCEVChecks().first &&
9651 match(Checks.getSCEVChecks().first,
m_One()))
9653 if (Checks.getMemRuntimeChecks().first &&
9654 match(Checks.getMemRuntimeChecks().first,
m_One()))
9659 bool ForceVectorization =
9663 if (!ForceVectorization &&
9669 DEBUG_TYPE,
"CantReorderMemOps", L->getStartLoc(),
9671 <<
"loop not vectorized: cannot prove it is safe to reorder "
9672 "memory operations";
9681 std::pair<StringRef, std::string> VecDiagMsg, IntDiagMsg;
9682 bool VectorizeLoop =
true, InterleaveLoop =
true;
9684 LLVM_DEBUG(
dbgs() <<
"LV: Vectorization is possible but not beneficial.\n");
9686 "VectorizationNotBeneficial",
9687 "the cost-model indicates that vectorization is not beneficial"};
9688 VectorizeLoop =
false;
9693 "UserIC should only be ignored due to unsafe dependencies");
9694 LLVM_DEBUG(
dbgs() <<
"LV: Ignoring user-specified interleave count.\n");
9695 IntDiagMsg = {
"InterleavingUnsafe",
9696 "Ignoring user-specified interleave count due to possibly "
9697 "unsafe dependencies in the loop."};
9698 InterleaveLoop =
false;
9702 LLVM_DEBUG(
dbgs() <<
"LV: Ignoring UserIC, because vectorization and "
9703 "interleaving should be avoided up front\n");
9704 IntDiagMsg = {
"InterleavingAvoided",
9705 "Ignoring UserIC, because interleaving was avoided up front"};
9706 InterleaveLoop =
false;
9707 }
else if (IC == 1 && UserIC <= 1) {
9711 "InterleavingNotBeneficial",
9712 "the cost-model indicates that interleaving is not beneficial"};
9713 InterleaveLoop =
false;
9715 IntDiagMsg.first =
"InterleavingNotBeneficialAndDisabled";
9716 IntDiagMsg.second +=
9717 " and is explicitly disabled or interleave count is set to 1";
9719 }
else if (IC > 1 && UserIC == 1) {
9721 LLVM_DEBUG(
dbgs() <<
"LV: Interleaving is beneficial but is explicitly "
9723 IntDiagMsg = {
"InterleavingBeneficialButDisabled",
9724 "the cost-model indicates that interleaving is beneficial "
9725 "but is explicitly disabled or interleave count is set to 1"};
9726 InterleaveLoop =
false;
9732 if (!VectorizeLoop && InterleaveLoop && LVL.
hasHistograms()) {
9733 LLVM_DEBUG(
dbgs() <<
"LV: Not interleaving without vectorization due "
9734 <<
"to histogram operations.\n");
9736 "HistogramPreventsScalarInterleaving",
9737 "Unable to interleave without vectorization due to constraints on "
9738 "the order of histogram operations"};
9739 InterleaveLoop =
false;
9743 IC = UserIC > 0 ? UserIC : IC;
9747 if (!VectorizeLoop && !InterleaveLoop) {
9751 L->getStartLoc(), L->getHeader())
9752 << VecDiagMsg.second;
9756 L->getStartLoc(), L->getHeader())
9757 << IntDiagMsg.second;
9762 if (!VectorizeLoop && InterleaveLoop) {
9766 L->getStartLoc(), L->getHeader())
9767 << VecDiagMsg.second;
9769 }
else if (VectorizeLoop && !InterleaveLoop) {
9771 <<
") in " << L->getLocStr() <<
'\n');
9774 L->getStartLoc(), L->getHeader())
9775 << IntDiagMsg.second;
9777 }
else if (VectorizeLoop && InterleaveLoop) {
9779 <<
") in " << L->getLocStr() <<
'\n');
9785 using namespace ore;
9790 <<
"interleaved loop (interleaved count: "
9791 << NV(
"InterleaveCount", IC) <<
")";
9808 std::unique_ptr<VPlan> BestMainPlan(BestPlan.
duplicate());
9821 Checks, *BestMainPlan);
9823 *BestMainPlan, MainILV,
DT,
false);
9829 Checks, BestEpiPlan);
9831 BestEpiPlan, L, ExpandedSCEVs, EPI, CM, *PSE.
getSE());
9836 ++LoopsEpilogueVectorized;
9838 InnerLoopVectorizer LB(L, PSE,
LI,
DT,
TTI,
AC, VF.
Width, IC, &CM, Checks,
9843 BestPlan, VF.
Width, IC, PSE);
9851 assert(
DT->verify(DominatorTree::VerificationLevel::Fast) &&
9852 "DT not preserved correctly");
9867 if (!
TTI->getNumberOfRegisters(
TTI->getRegisterClassForType(
true)) &&
9871 bool Changed =
false, CFGChanged =
false;
9878 for (
const auto &L : *
LI)
9890 LoopsAnalyzed += Worklist.
size();
9893 while (!Worklist.
empty()) {
9939 if (!Result.MadeAnyChange)
9953 if (Result.MadeCFGChange) {
9969 OS, MapClassName2PassName);
9972 OS << (InterleaveOnlyWhenForced ?
"" :
"no-") <<
"interleave-forced-only;";
9973 OS << (VectorizeOnlyWhenForced ?
"" :
"no-") <<
"vectorize-forced-only;";
for(const MachineOperand &MO :llvm::drop_begin(OldMI.operands(), Desc.getNumOperands()))
static unsigned getIntrinsicID(const SDNode *N)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Lower Kernel Arguments
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static bool isEqual(const Function &Caller, const Function &Callee)
This file contains the simple types necessary to represent the attributes associated with functions a...
static const Function * getParent(const Value *V)
This is the interface for LLVM's primary stateless and local alias analysis.
static bool IsEmptyBlock(MachineBasicBlock *MBB)
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
This file contains the declarations for the subclasses of Constant, which represent the different fla...
static cl::opt< OutputCostKind > CostKind("cost-kind", cl::desc("Target cost kind"), cl::init(OutputCostKind::RecipThroughput), cl::values(clEnumValN(OutputCostKind::RecipThroughput, "throughput", "Reciprocal throughput"), clEnumValN(OutputCostKind::Latency, "latency", "Instruction latency"), clEnumValN(OutputCostKind::CodeSize, "code-size", "Code size"), clEnumValN(OutputCostKind::SizeAndLatency, "size-latency", "Code size and latency"), clEnumValN(OutputCostKind::All, "all", "Print all cost kinds")))
static cl::opt< IntrinsicCostStrategy > IntrinsicCost("intrinsic-cost-strategy", cl::desc("Costing strategy for intrinsic instructions"), cl::init(IntrinsicCostStrategy::InstructionCost), cl::values(clEnumValN(IntrinsicCostStrategy::InstructionCost, "instruction-cost", "Use TargetTransformInfo::getInstructionCost"), clEnumValN(IntrinsicCostStrategy::IntrinsicCost, "intrinsic-cost", "Use TargetTransformInfo::getIntrinsicInstrCost"), clEnumValN(IntrinsicCostStrategy::TypeBasedIntrinsicCost, "type-based-intrinsic-cost", "Calculate the intrinsic cost based only on argument types")))
static InstructionCost getCost(Instruction &Inst, TTI::TargetCostKind CostKind, TargetTransformInfo &TTI)
This file defines DenseMapInfo traits for DenseMap.
This file defines the DenseMap class.
This is the interface for a simple mod/ref and alias analysis over globals.
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
Module.h This file contains the declarations for the Module class.
This defines the Use class.
static bool hasNoUnsignedWrap(BinaryOperator &I)
This file defines an InstructionCost class that is used when calculating the cost of an instruction,...
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
Legalize the Machine IR a function s Machine IR
static cl::opt< unsigned, true > VectorizationFactor("force-vector-width", cl::Hidden, cl::desc("Sets the SIMD width. Zero is autoselect."), cl::location(VectorizerParams::VectorizationFactor))
This header provides classes for managing per-loop analyses.
static cl::opt< bool > WidenIV("loop-flatten-widen-iv", cl::Hidden, cl::init(true), cl::desc("Widen the loop induction variables, if possible, so " "overflow checks won't reject flattening"))
static const char * VerboseDebug
This file defines the LoopVectorizationLegality class.
This file provides a LoopVectorizationPlanner class.
static void collectSupportedLoops(Loop &L, LoopInfo *LI, OptimizationRemarkEmitter *ORE, SmallVectorImpl< Loop * > &V)
static cl::opt< unsigned > EpilogueVectorizationMinVF("epilogue-vectorization-minimum-VF", cl::Hidden, cl::desc("Only loops with vectorization factor equal to or larger than " "the specified value are considered for epilogue vectorization."))
static cl::opt< unsigned > EpilogueVectorizationForceVF("epilogue-vectorization-force-VF", cl::init(1), cl::Hidden, cl::desc("When epilogue vectorization is enabled, and a value greater than " "1 is specified, forces the given VF for all applicable epilogue " "loops."))
static unsigned getMaxTCFromNonZeroRange(PredicatedScalarEvolution &PSE, Loop *L)
Get the maximum trip count for L from the SCEV unsigned range, excluding zero from the range.
static Type * maybeVectorizeType(Type *Ty, ElementCount VF)
static ElementCount determineVPlanVF(const TargetTransformInfo &TTI, LoopVectorizationCostModel &CM)
static ElementCount getSmallConstantTripCount(ScalarEvolution *SE, const Loop *L)
A version of ScalarEvolution::getSmallConstantTripCount that returns an ElementCount to include loops...
static bool hasUnsupportedHeaderPhiRecipe(VPlan &Plan)
Returns true if the VPlan contains header phi recipes that are not currently supported for epilogue v...
static cl::opt< unsigned > VectorizeMemoryCheckThreshold("vectorize-memory-check-threshold", cl::init(128), cl::Hidden, cl::desc("The maximum allowed number of runtime memory checks"))
static void connectEpilogueVectorLoop(VPlan &EpiPlan, Loop *L, EpilogueLoopVectorizationInfo &EPI, DominatorTree *DT, GeneratedRTChecks &Checks, ArrayRef< Instruction * > InstsToMove, ArrayRef< VPInstruction * > ResumeValues)
Connect the epilogue vector loop generated for EpiPlan to the main vector loop, after both plans have...
static cl::opt< unsigned > TinyTripCountVectorThreshold("vectorizer-min-trip-count", cl::init(16), cl::Hidden, cl::desc("Loops with a constant trip count that is smaller than this " "value are vectorized only if no scalar iteration overheads " "are incurred."))
Loops with a known constant trip count below this number are vectorized only if no scalar iteration o...
static void debugVectorizationMessage(const StringRef Prefix, const StringRef DebugMsg, Instruction *I)
Write a DebugMsg about vectorization to the debug output stream.
static cl::opt< bool > EnableCondStoresVectorization("enable-cond-stores-vec", cl::init(true), cl::Hidden, cl::desc("Enable if predication of stores during vectorization."))
static void legacyCSE(BasicBlock *BB)
FIXME: This legacy common-subexpression-elimination routine is scheduled for removal,...
static VPIRBasicBlock * replaceVPBBWithIRVPBB(VPBasicBlock *VPBB, BasicBlock *IRBB, VPlan *Plan=nullptr)
Replace VPBB with a VPIRBasicBlock wrapping IRBB.
static DebugLoc getDebugLocFromInstOrOperands(Instruction *I)
Look for a meaningful debug location on the instruction or its operands.
static cl::opt< bool > ForceTargetSupportsScalableVectors("force-target-supports-scalable-vectors", cl::init(false), cl::Hidden, cl::desc("Pretend that scalable vectors are supported, even if the target does " "not support them. This flag should only be used for testing."))
static bool useActiveLaneMaskForControlFlow(TailFoldingStyle Style)
static cl::opt< bool > EnableEarlyExitVectorization("enable-early-exit-vectorization", cl::init(true), cl::Hidden, cl::desc("Enable vectorization of early exit loops with uncountable exits."))
static bool processLoopInVPlanNativePath(Loop *L, PredicatedScalarEvolution &PSE, LoopInfo *LI, DominatorTree *DT, LoopVectorizationLegality *LVL, TargetTransformInfo *TTI, TargetLibraryInfo *TLI, DemandedBits *DB, AssumptionCache *AC, OptimizationRemarkEmitter *ORE, std::function< BlockFrequencyInfo &()> GetBFI, bool OptForSize, LoopVectorizeHints &Hints, LoopVectorizationRequirements &Requirements)
static cl::opt< bool > ConsiderRegPressure("vectorizer-consider-reg-pressure", cl::init(false), cl::Hidden, cl::desc("Discard VFs if their register pressure is too high."))
static unsigned estimateElementCount(ElementCount VF, std::optional< unsigned > VScale)
This function attempts to return a value that represents the ElementCount at runtime.
static constexpr uint32_t MinItersBypassWeights[]
static cl::opt< unsigned > ForceTargetNumScalarRegs("force-target-num-scalar-regs", cl::init(0), cl::Hidden, cl::desc("A flag that overrides the target's number of scalar registers."))
static cl::opt< bool > UseWiderVFIfCallVariantsPresent("vectorizer-maximize-bandwidth-for-vector-calls", cl::init(true), cl::Hidden, cl::desc("Try wider VFs if they enable the use of vector variants"))
static std::optional< unsigned > getMaxVScale(const Function &F, const TargetTransformInfo &TTI)
static SmallVector< VPInstruction * > preparePlanForMainVectorLoop(VPlan &MainPlan, VPlan &EpiPlan)
Prepare MainPlan for vectorizing the main vector loop during epilogue vectorization.
static cl::opt< unsigned > SmallLoopCost("small-loop-cost", cl::init(20), cl::Hidden, cl::desc("The cost of a loop that is considered 'small' by the interleaver."))
static bool planContainsAdditionalSimplifications(VPlan &Plan, VPCostContext &CostCtx, Loop *TheLoop, ElementCount VF)
Return true if the original loop \ TheLoop contains any instructions that do not have corresponding r...
static cl::opt< unsigned > ForceTargetNumVectorRegs("force-target-num-vector-regs", cl::init(0), cl::Hidden, cl::desc("A flag that overrides the target's number of vector registers."))
static bool isExplicitVecOuterLoop(Loop *OuterLp, OptimizationRemarkEmitter *ORE)
static cl::opt< bool > EnableIndVarRegisterHeur("enable-ind-var-reg-heur", cl::init(true), cl::Hidden, cl::desc("Count the induction variable only once when interleaving"))
static cl::opt< TailFoldingStyle > ForceTailFoldingStyle("force-tail-folding-style", cl::desc("Force the tail folding style"), cl::init(TailFoldingStyle::None), cl::values(clEnumValN(TailFoldingStyle::None, "none", "Disable tail folding"), clEnumValN(TailFoldingStyle::Data, "data", "Create lane mask for data only, using active.lane.mask intrinsic"), clEnumValN(TailFoldingStyle::DataWithoutLaneMask, "data-without-lane-mask", "Create lane mask with compare/stepvector"), clEnumValN(TailFoldingStyle::DataAndControlFlow, "data-and-control", "Create lane mask using active.lane.mask intrinsic, and use " "it for both data and control flow"), clEnumValN(TailFoldingStyle::DataWithEVL, "data-with-evl", "Use predicated EVL instructions for tail folding. If EVL " "is unsupported, fallback to data-without-lane-mask.")))
static ScalarEpilogueLowering getScalarEpilogueLowering(Function *F, Loop *L, LoopVectorizeHints &Hints, bool OptForSize, TargetTransformInfo *TTI, TargetLibraryInfo *TLI, LoopVectorizationLegality &LVL, InterleavedAccessInfo *IAI)
static cl::opt< bool > EnableEpilogueVectorization("enable-epilogue-vectorization", cl::init(true), cl::Hidden, cl::desc("Enable vectorization of epilogue loops."))
static cl::opt< bool > PreferPredicatedReductionSelect("prefer-predicated-reduction-select", cl::init(false), cl::Hidden, cl::desc("Prefer predicating a reduction operation over an after loop select."))
static cl::opt< bool > PreferInLoopReductions("prefer-inloop-reductions", cl::init(false), cl::Hidden, cl::desc("Prefer in-loop vector reductions, " "overriding the targets preference."))
static std::optional< ElementCount > getSmallBestKnownTC(PredicatedScalarEvolution &PSE, Loop *L, bool CanUseConstantMax=true, bool CanExcludeZeroTrips=false)
Returns "best known" trip count, which is either a valid positive trip count or std::nullopt when an ...
static SmallVector< Instruction * > preparePlanForEpilogueVectorLoop(VPlan &Plan, Loop *L, const SCEV2ValueTy &ExpandedSCEVs, EpilogueLoopVectorizationInfo &EPI, LoopVectorizationCostModel &CM, ScalarEvolution &SE)
Prepare Plan for vectorizing the epilogue loop.
static const SCEV * getAddressAccessSCEV(Value *Ptr, PredicatedScalarEvolution &PSE, const Loop *TheLoop)
Gets the address access SCEV for Ptr, if it should be used for cost modeling according to isAddressSC...
static cl::opt< bool > EnableLoadStoreRuntimeInterleave("enable-loadstore-runtime-interleave", cl::init(true), cl::Hidden, cl::desc("Enable runtime interleaving until load/store ports are saturated"))
static cl::opt< bool > VPlanBuildStressTest("vplan-build-stress-test", cl::init(false), cl::Hidden, cl::desc("Build VPlan for every supported loop nest in the function and bail " "out right after the build (stress test the VPlan H-CFG construction " "in the VPlan-native vectorization path)."))
static bool hasIrregularType(Type *Ty, const DataLayout &DL)
A helper function that returns true if the given type is irregular.
static cl::opt< bool > LoopVectorizeWithBlockFrequency("loop-vectorize-with-block-frequency", cl::init(true), cl::Hidden, cl::desc("Enable the use of the block frequency analysis to access PGO " "heuristics minimizing code growth in cold regions and being more " "aggressive in hot regions."))
static bool useActiveLaneMask(TailFoldingStyle Style)
static bool hasReplicatorRegion(VPlan &Plan)
static bool isIndvarOverflowCheckKnownFalse(const LoopVectorizationCostModel *Cost, ElementCount VF, std::optional< unsigned > UF=std::nullopt)
For the given VF and UF and maximum trip count computed for the loop, return whether the induction va...
static void addFullyUnrolledInstructionsToIgnore(Loop *L, const LoopVectorizationLegality::InductionList &IL, SmallPtrSetImpl< Instruction * > &InstsToIgnore)
Knowing that loop L executes a single vector iteration, add instructions that will get simplified and...
static cl::opt< PreferPredicateTy::Option > PreferPredicateOverEpilogue("prefer-predicate-over-epilogue", cl::init(PreferPredicateTy::ScalarEpilogue), cl::Hidden, cl::desc("Tail-folding and predication preferences over creating a scalar " "epilogue loop."), cl::values(clEnumValN(PreferPredicateTy::ScalarEpilogue, "scalar-epilogue", "Don't tail-predicate loops, create scalar epilogue"), clEnumValN(PreferPredicateTy::PredicateElseScalarEpilogue, "predicate-else-scalar-epilogue", "prefer tail-folding, create scalar epilogue if tail " "folding fails."), clEnumValN(PreferPredicateTy::PredicateOrDontVectorize, "predicate-dont-vectorize", "prefers tail-folding, don't attempt vectorization if " "tail-folding fails.")))
static bool hasFindLastReductionPhi(VPlan &Plan)
Returns true if the VPlan contains a VPReductionPHIRecipe with FindLast recurrence kind.
static cl::opt< bool > EnableInterleavedMemAccesses("enable-interleaved-mem-accesses", cl::init(false), cl::Hidden, cl::desc("Enable vectorization on interleaved memory accesses in a loop"))
static cl::opt< bool > EnableMaskedInterleavedMemAccesses("enable-masked-interleaved-mem-accesses", cl::init(false), cl::Hidden, cl::desc("Enable vectorization on masked interleaved memory accesses in a loop"))
An interleave-group may need masking if it resides in a block that needs predication,...
static cl::opt< bool > ForceOrderedReductions("force-ordered-reductions", cl::init(false), cl::Hidden, cl::desc("Enable the vectorisation of loops with in-order (strict) " "FP reductions"))
static cl::opt< cl::boolOrDefault > ForceSafeDivisor("force-widen-divrem-via-safe-divisor", cl::Hidden, cl::desc("Override cost based safe divisor widening for div/rem instructions"))
static InstructionCost calculateEarlyExitCost(VPCostContext &CostCtx, VPlan &Plan, ElementCount VF)
For loops with uncountable early exits, find the cost of doing work when exiting the loop early,...
static cl::opt< unsigned > ForceTargetMaxVectorInterleaveFactor("force-target-max-vector-interleave", cl::init(0), cl::Hidden, cl::desc("A flag that overrides the target's max interleave factor for " "vectorized loops."))
static bool useMaskedInterleavedAccesses(const TargetTransformInfo &TTI)
cl::opt< unsigned > NumberOfStoresToPredicate("vectorize-num-stores-pred", cl::init(1), cl::Hidden, cl::desc("Max number of stores to be predicated behind an if."))
The number of stores in a loop that are allowed to need predication.
static void fixScalarResumeValuesFromBypass(BasicBlock *BypassBlock, Loop *L, VPlan &BestEpiPlan, ArrayRef< VPInstruction * > ResumeValues)
static cl::opt< unsigned > MaxNestedScalarReductionIC("max-nested-scalar-reduction-interleave", cl::init(2), cl::Hidden, cl::desc("The maximum interleave count to use when interleaving a scalar " "reduction in a nested loop."))
static cl::opt< unsigned > ForceTargetMaxScalarInterleaveFactor("force-target-max-scalar-interleave", cl::init(0), cl::Hidden, cl::desc("A flag that overrides the target's max interleave factor for " "scalar loops."))
static void checkMixedPrecision(Loop *L, OptimizationRemarkEmitter *ORE)
static bool willGenerateVectors(VPlan &Plan, ElementCount VF, const TargetTransformInfo &TTI)
Check if any recipe of Plan will generate a vector value, which will be assigned a vector register.
static cl::opt< bool > ForceTargetSupportsMaskedMemoryOps("force-target-supports-masked-memory-ops", cl::init(false), cl::Hidden, cl::desc("Assume the target supports masked memory operations (used for " "testing)."))
Note: This currently only applies to llvm.masked.load and llvm.masked.store.
static bool isOutsideLoopWorkProfitable(GeneratedRTChecks &Checks, VectorizationFactor &VF, Loop *L, PredicatedScalarEvolution &PSE, VPCostContext &CostCtx, VPlan &Plan, ScalarEpilogueLowering SEL, std::optional< unsigned > VScale)
This function determines whether or not it's still profitable to vectorize the loop given the extra w...
static cl::opt< bool > MaximizeBandwidth("vectorizer-maximize-bandwidth", cl::init(false), cl::Hidden, cl::desc("Maximize bandwidth when selecting vectorization factor which " "will be determined by the smallest type in loop."))
static OptimizationRemarkAnalysis createLVAnalysis(const char *PassName, StringRef RemarkName, Loop *TheLoop, Instruction *I, DebugLoc DL={})
Create an analysis remark that explains why vectorization failed.
This file implements a map that provides insertion order iteration.
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
This file contains the declarations for profiling metadata utility functions.
const SmallVectorImpl< MachineOperand > & Cond
static BinaryOperator * CreateMul(Value *S1, Value *S2, const Twine &Name, BasicBlock::iterator InsertBefore, Value *FlagsOp)
static BinaryOperator * CreateAdd(Value *S1, Value *S2, const Twine &Name, BasicBlock::iterator InsertBefore, Value *FlagsOp)
static bool isValid(const char C)
Returns true if C is a valid mangled character: <0-9a-zA-Z_>.
static InstructionCost getScalarizationOverhead(const TargetTransformInfo &TTI, Type *ScalarTy, VectorType *Ty, const APInt &DemandedElts, bool Insert, bool Extract, TTI::TargetCostKind CostKind, bool ForPoisonSrc=true, ArrayRef< Value * > VL={})
This is similar to TargetTransformInfo::getScalarizationOverhead, but if ScalarTy is a FixedVectorTyp...
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
#define DEBUG_WITH_TYPE(TYPE,...)
DEBUG_WITH_TYPE macro - This macro should be used by passes to emit debug information.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
LocallyHashedType DenseMapInfo< LocallyHashedType >::Empty
This file implements the TypeSwitch template, which mimics a switch() statement whose cases are type ...
This file contains the declarations of different VPlan-related auxiliary helpers.
This file declares the class VPlanVerifier, which contains utility functions to check the consistency...
This file contains the declarations of the Vectorization Plan base classes:
static const char PassName[]
static const uint32_t IV[8]
A manager for alias analyses.
Class for arbitrary precision integers.
static APInt getAllOnes(unsigned numBits)
Return an APInt of a specified width with all bits set.
uint64_t getZExtValue() const
Get zero extended value.
unsigned getActiveBits() const
Compute the number of active bits in the value.
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
A function analysis which provides an AssumptionCache.
A cache of @llvm.assume calls within a function.
LLVM_ABI unsigned getVScaleRangeMin() const
Returns the minimum value for the vscale_range attribute.
LLVM Basic Block Representation.
iterator_range< const_phi_iterator > phis() const
Returns a range that iterates over the phis in the basic block.
const Function * getParent() const
Return the enclosing method, or null if none.
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
LLVM_ABI const BasicBlock * getSinglePredecessor() const
Return the predecessor of this block if it has a single predecessor block.
LLVM_ABI const BasicBlock * getSingleSuccessor() const
Return the successor of this block if it has a single successor.
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this basic block belongs to.
LLVM_ABI LLVMContext & getContext() const
Get the context in which this basic block lives.
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
BinaryOps getOpcode() const
Analysis pass which computes BlockFrequencyInfo.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
Represents analyses that only rely on functions' control flow.
bool isNoBuiltin() const
Return true if the call should not be treated as a call to a builtin.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
Value * getArgOperand(unsigned i) const
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
unsigned arg_size() const
This class represents a function call, abstracting a target machine's calling convention.
static Type * makeCmpResultType(Type *opnd_type)
Create a result type for fcmp/icmp.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
@ ICMP_UGT
unsigned greater than
@ ICMP_ULT
unsigned less than
@ ICMP_ULE
unsigned less or equal
Predicate getInversePredicate() const
For example, EQ -> NE, UGT -> ULE, SLT -> SGE, OEQ -> UNE, UGT -> OLE, OLT -> UGE,...
An abstraction over a floating-point predicate, and a pack of an integer predicate with samesign info...
Conditional Branch instruction.
static CondBrInst * Create(Value *Cond, BasicBlock *IfTrue, BasicBlock *IfFalse, InsertPosition InsertBefore=nullptr)
BasicBlock * getSuccessor(unsigned i) const
This is the shared class of boolean and integer constants.
static LLVM_ABI ConstantInt * getTrue(LLVMContext &Context)
This class represents a range of values.
LLVM_ABI APInt getUnsignedMax() const
Return the largest unsigned value contained in the ConstantRange.
A parsed version of the target data layout string in and methods for querying it.
static DebugLoc getTemporary()
static DebugLoc getUnknown()
An analysis that produces DemandedBits for a function.
ValueT lookup(const_arg_type_t< KeyT > Val) const
lookup - Return the entry for the specified key, or a default constructed value if no such entry exis...
iterator find(const_arg_type_t< KeyT > Val)
std::pair< iterator, bool > try_emplace(KeyT &&Key, Ts &&...Args)
bool contains(const_arg_type_t< KeyT > Val) const
Return true if the specified key is in the map, false otherwise.
void insert_range(Range &&R)
Inserts range of 'std::pair<KeyT, ValueT>' values into the map.
Implements a dense probed hash-table based set.
Analysis pass which computes a DominatorTree.
void changeImmediateDominator(DomTreeNodeBase< NodeT > *N, DomTreeNodeBase< NodeT > *NewIDom)
changeImmediateDominator - This method is used to update the dominator tree information when a node's...
static constexpr UpdateKind Delete
static constexpr UpdateKind Insert
void eraseNode(NodeT *BB)
eraseNode - Removes a node from the dominator tree.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
constexpr bool isVector() const
One or more elements.
static constexpr ElementCount getScalable(ScalarTy MinVal)
static constexpr ElementCount getFixed(ScalarTy MinVal)
static constexpr ElementCount get(ScalarTy MinVal, bool Scalable)
constexpr bool isScalar() const
Exactly one element.
void printDebugTracesAtEnd() override
EpilogueVectorizerEpilogueLoop(Loop *OrigLoop, PredicatedScalarEvolution &PSE, LoopInfo *LI, DominatorTree *DT, const TargetTransformInfo *TTI, AssumptionCache *AC, EpilogueLoopVectorizationInfo &EPI, LoopVectorizationCostModel *CM, GeneratedRTChecks &Checks, VPlan &Plan)
BasicBlock * createVectorizedLoopSkeleton() final
Implements the interface for creating a vectorized skeleton using the epilogue loop strategy (i....
void printDebugTracesAtStart() override
Allow subclasses to override and print debug traces before/after vplan execution, when trace informat...
A specialized derived class of inner loop vectorizer that performs vectorization of main loops in the...
void introduceCheckBlockInVPlan(BasicBlock *CheckIRBB)
Introduces a new VPIRBasicBlock for CheckIRBB to Plan between the vector preheader and its predecesso...
BasicBlock * emitIterationCountCheck(BasicBlock *VectorPH, BasicBlock *Bypass, bool ForEpilogue)
Emits an iteration count bypass check once for the main loop (when ForEpilogue is false) and once for...
void printDebugTracesAtEnd() override
Value * createIterationCountCheck(BasicBlock *VectorPH, ElementCount VF, unsigned UF) const
void printDebugTracesAtStart() override
Allow subclasses to override and print debug traces before/after vplan execution, when trace informat...
EpilogueVectorizerMainLoop(Loop *OrigLoop, PredicatedScalarEvolution &PSE, LoopInfo *LI, DominatorTree *DT, const TargetTransformInfo *TTI, AssumptionCache *AC, EpilogueLoopVectorizationInfo &EPI, LoopVectorizationCostModel *CM, GeneratedRTChecks &Check, VPlan &Plan)
BasicBlock * createVectorizedLoopSkeleton() final
Implements the interface for creating a vectorized skeleton using the main loop strategy (i....
Convenience struct for specifying and reasoning about fast-math flags.
Class to represent function types.
param_iterator param_begin() const
param_iterator param_end() const
FunctionType * getFunctionType() const
Returns the FunctionType for me.
Attribute getFnAttribute(Attribute::AttrKind Kind) const
Return the attribute for the given attribute kind.
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
Represents flags for the getelementptr instruction/expression.
static GEPNoWrapFlags none()
void applyUpdates(ArrayRef< UpdateT > Updates)
Submit updates to all available trees.
Common base class shared among various IRBuilders.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
A struct for saving information about induction variables.
const SCEV * getStep() const
ArrayRef< Instruction * > getCastInsts() const
Returns an ArrayRef to the type cast instructions in the induction update chain, that are redundant w...
InductionKind
This enum represents the kinds of inductions that we support.
@ IK_NoInduction
Not an induction variable.
@ IK_FpInduction
Floating point induction variable.
@ IK_PtrInduction
Pointer induction var. Step = C.
@ IK_IntInduction
Integer induction variable. Step = C.
ElementCount MinProfitableTripCount
InnerLoopAndEpilogueVectorizer(Loop *OrigLoop, PredicatedScalarEvolution &PSE, LoopInfo *LI, DominatorTree *DT, const TargetTransformInfo *TTI, AssumptionCache *AC, EpilogueLoopVectorizationInfo &EPI, LoopVectorizationCostModel *CM, GeneratedRTChecks &Checks, VPlan &Plan, ElementCount VecWidth, ElementCount MinProfitableTripCount, unsigned UnrollFactor)
EpilogueLoopVectorizationInfo & EPI
Holds and updates state information required to vectorize the main loop and its epilogue in two separ...
InnerLoopVectorizer vectorizes loops which contain only one basic block to a specified vectorization ...
virtual void printDebugTracesAtStart()
Allow subclasses to override and print debug traces before/after vplan execution, when trace informat...
Value * TripCount
Trip count of the original loop.
const TargetTransformInfo * TTI
Target Transform Info.
LoopVectorizationCostModel * Cost
The profitablity analysis.
Value * getTripCount() const
Returns the original loop trip count.
friend class LoopVectorizationPlanner
InnerLoopVectorizer(Loop *OrigLoop, PredicatedScalarEvolution &PSE, LoopInfo *LI, DominatorTree *DT, const TargetTransformInfo *TTI, AssumptionCache *AC, ElementCount VecWidth, unsigned UnrollFactor, LoopVectorizationCostModel *CM, GeneratedRTChecks &RTChecks, VPlan &Plan)
PredicatedScalarEvolution & PSE
A wrapper around ScalarEvolution used to add runtime SCEV checks.
DominatorTree * DT
Dominator Tree.
void setTripCount(Value *TC)
Used to set the trip count after ILV's construction and after the preheader block has been executed.
void fixVectorizedLoop(VPTransformState &State)
Fix the vectorized code, taking care of header phi's, and more.
virtual BasicBlock * createVectorizedLoopSkeleton()
Creates a basic block for the scalar preheader.
virtual void printDebugTracesAtEnd()
AssumptionCache * AC
Assumption Cache.
IRBuilder Builder
The builder that we use.
void fixNonInductionPHIs(VPTransformState &State)
Fix the non-induction PHIs in Plan.
VPBasicBlock * VectorPHVPBB
The vector preheader block of Plan, used as target for check blocks introduced during skeleton creati...
unsigned UF
The vectorization unroll factor to use.
GeneratedRTChecks & RTChecks
Structure to hold information about generated runtime checks, responsible for cleaning the checks,...
virtual ~InnerLoopVectorizer()=default
ElementCount VF
The vectorization SIMD factor to use.
Loop * OrigLoop
The original loop.
BasicBlock * createScalarPreheader(StringRef Prefix)
Create and return a new IR basic block for the scalar preheader whose name is prefixed with Prefix.
InstSimplifyFolder - Use InstructionSimplify to fold operations to existing values.
static InstructionCost getInvalid(CostType Val=0)
static InstructionCost getMax()
CostType getValue() const
This function is intended to be used as sparingly as possible, since the class provides the full rang...
LLVM_ABI const Module * getModule() const
Return the module owning the function this instruction belongs to or nullptr it the function does not...
LLVM_ABI void moveBefore(InstListType::iterator InsertPos)
Unlink this instruction from its current basic block and insert it into the basic block that MovePos ...
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
Instruction * user_back()
Specialize the methods defined in Value, as we know that an instruction can only be used by other ins...
const char * getOpcodeName() const
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
Class to represent integer types.
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
LLVM_ABI APInt getMask() const
For example, this is 0xFF for an 8 bit integer, 0xFFFF for i16, etc.
The group of interleaved loads/stores sharing the same stride and close to each other.
uint32_t getFactor() const
InstTy * getMember(uint32_t Index) const
Get the member with the given index Index.
InstTy * getInsertPos() const
uint32_t getNumMembers() const
Drive the analysis of interleaved memory accesses in the loop.
bool requiresScalarEpilogue() const
Returns true if an interleaved group that may access memory out-of-bounds requires a scalar epilogue ...
LLVM_ABI void analyzeInterleaving(bool EnableMaskedInterleavedGroup)
Analyze the interleaved accesses and collect them in interleave groups.
An instruction for reading from memory.
Type * getPointerOperandType() const
This analysis provides dependence information for the memory accesses of a loop.
Drive the analysis of memory accesses in the loop.
const RuntimePointerChecking * getRuntimePointerChecking() const
unsigned getNumRuntimePointerChecks() const
Number of memchecks required to prove independence of otherwise may-alias pointers.
Analysis pass that exposes the LoopInfo for a function.
bool contains(const LoopT *L) const
Return true if the specified loop is contained within in this loop.
BlockT * getLoopLatch() const
If there is a single latch block for this loop, return it.
bool isInnermost() const
Return true if the loop does not contain any (natural) loops.
void getExitingBlocks(SmallVectorImpl< BlockT * > &ExitingBlocks) const
Return all blocks inside the loop that have successors outside of the loop.
BlockT * getHeader() const
iterator_range< block_iterator > blocks() const
ArrayRef< BlockT * > getBlocks() const
Get a list of the basic blocks which make up this loop.
Store the result of a depth first search within basic blocks contained by a single loop.
RPOIterator beginRPO() const
Reverse iterate over the cached postorder blocks.
void perform(const LoopInfo *LI)
Traverse the loop blocks and store the DFS result.
RPOIterator endRPO() const
Wrapper class to LoopBlocksDFS that provides a standard begin()/end() interface for the DFS reverse p...
void perform(const LoopInfo *LI)
Traverse the loop blocks and store the DFS result.
void removeBlock(BlockT *BB)
This method completely removes BB from all data structures, including all of the Loop objects it is n...
LoopVectorizationCostModel - estimates the expected speedups due to vectorization.
SmallPtrSet< Type *, 16 > ElementTypesInLoop
All element types found in the loop.
bool isLegalMaskedLoad(Type *DataType, Value *Ptr, Align Alignment, unsigned AddressSpace) const
Returns true if the target machine supports masked load operation for the given DataType and kind of ...
void collectElementTypesForWidening()
Collect all element types in the loop for which widening is needed.
bool canVectorizeReductions(ElementCount VF) const
Returns true if the target machine supports all of the reduction variables found for the given VF.
bool isLegalMaskedStore(Type *DataType, Value *Ptr, Align Alignment, unsigned AddressSpace) const
Returns true if the target machine supports masked store operation for the given DataType and kind of...
bool isEpilogueVectorizationProfitable(const ElementCount VF, const unsigned IC) const
Returns true if epilogue vectorization is considered profitable, and false otherwise.
bool useWideActiveLaneMask() const
Returns true if the use of wide lane masks is requested and the loop is using tail-folding with a lan...
bool isPredicatedInst(Instruction *I) const
Returns true if I is an instruction that needs to be predicated at runtime.
bool hasPredStores() const
void collectValuesToIgnore()
Collect values we want to ignore in the cost model.
BlockFrequencyInfo * BFI
The BlockFrequencyInfo returned from GetBFI.
void collectInLoopReductions()
Split reductions into those that happen in the loop, and those that happen outside.
BlockFrequencyInfo & getBFI()
Returns the BlockFrequencyInfo for the function if cached, otherwise fetches it via GetBFI.
std::pair< unsigned, unsigned > getSmallestAndWidestTypes()
bool isUniformAfterVectorization(Instruction *I, ElementCount VF) const
Returns true if I is known to be uniform after vectorization.
bool useEmulatedMaskMemRefHack(Instruction *I, ElementCount VF)
Returns true if an artificially high cost for emulated masked memrefs should be used.
void collectNonVectorizedAndSetWideningDecisions(ElementCount VF)
Collect values that will not be widened, including Uniforms, Scalars, and Instructions to Scalarize f...
bool isMaskRequired(Instruction *I) const
Wrapper function for LoopVectorizationLegality::isMaskRequired, that passes the Instruction I and if ...
PredicatedScalarEvolution & PSE
Predicated scalar evolution analysis.
const LoopVectorizeHints * Hints
Loop Vectorize Hint.
std::optional< unsigned > getMaxSafeElements() const
Return maximum safe number of elements to be processed per vector iteration, which do not prevent sto...
const TargetTransformInfo & TTI
Vector target information.
friend class LoopVectorizationPlanner
const Function * TheFunction
LoopVectorizationLegality * Legal
Vectorization legality.
uint64_t getPredBlockCostDivisor(TargetTransformInfo::TargetCostKind CostKind, const BasicBlock *BB)
A helper function that returns how much we should divide the cost of a predicated block by.
std::optional< InstructionCost > getReductionPatternCost(Instruction *I, ElementCount VF, Type *VectorTy) const
Return the cost of instructions in an inloop reduction pattern, if I is part of that pattern.
InstructionCost getInstructionCost(Instruction *I, ElementCount VF)
Returns the execution time cost of an instruction for a given vector width.
DemandedBits * DB
Demanded bits analysis.
bool interleavedAccessCanBeWidened(Instruction *I, ElementCount VF) const
Returns true if I is a memory instruction in an interleaved-group of memory accesses that can be vect...
const TargetLibraryInfo * TLI
Target Library Info.
bool memoryInstructionCanBeWidened(Instruction *I, ElementCount VF)
Returns true if I is a memory instruction with consecutive memory access that can be widened.
const InterleaveGroup< Instruction > * getInterleavedAccessGroup(Instruction *Instr) const
Get the interleaved access group that Instr belongs to.
InstructionCost getVectorIntrinsicCost(CallInst *CI, ElementCount VF) const
Estimate cost of an intrinsic call instruction CI if it were vectorized with factor VF.
bool OptForSize
Whether this loop should be optimized for size based on function attribute or profile information.
bool useMaxBandwidth(TargetTransformInfo::RegisterKind RegKind)
bool isScalarAfterVectorization(Instruction *I, ElementCount VF) const
Returns true if I is known to be scalar after vectorization.
bool isOptimizableIVTruncate(Instruction *I, ElementCount VF)
Return True if instruction I is an optimizable truncate whose operand is an induction variable.
FixedScalableVFPair computeMaxVF(ElementCount UserVF, unsigned UserIC)
bool shouldConsiderRegPressureForVF(ElementCount VF)
Loop * TheLoop
The loop that we evaluate.
TTI::TargetCostKind CostKind
The kind of cost that we are calculating.
InterleavedAccessInfo & InterleaveInfo
The interleave access information contains groups of interleaved accesses with the same stride and cl...
SmallPtrSet< const Value *, 16 > ValuesToIgnore
Values to ignore in the cost model.
void setVectorizedCallDecision(ElementCount VF)
A call may be vectorized in different ways depending on whether we have vectorized variants available...
void invalidateCostModelingDecisions()
Invalidates decisions already taken by the cost model.
bool isAccessInterleaved(Instruction *Instr) const
Check if Instr belongs to any interleaved access group.
bool selectUserVectorizationFactor(ElementCount UserVF)
Setup cost-based decisions for user vectorization factor.
std::optional< unsigned > getVScaleForTuning() const
Return the value of vscale used for tuning the cost model.
void setTailFoldingStyle(bool IsScalableVF, unsigned UserIC)
Selects and saves TailFoldingStyle.
OptimizationRemarkEmitter * ORE
Interface to emit optimization remarks.
bool preferPredicatedLoop() const
Returns true if tail-folding is preferred over a scalar epilogue.
LoopInfo * LI
Loop Info analysis.
bool requiresScalarEpilogue(bool IsVectorizing) const
Returns true if we're required to use a scalar epilogue for at least the final iteration of the origi...
SmallPtrSet< const Value *, 16 > VecValuesToIgnore
Values to ignore in the cost model when VF > 1.
bool isInLoopReduction(PHINode *Phi) const
Returns true if the Phi is part of an inloop reduction.
bool isProfitableToScalarize(Instruction *I, ElementCount VF) const
void setWideningDecision(const InterleaveGroup< Instruction > *Grp, ElementCount VF, InstWidening W, InstructionCost Cost)
Save vectorization decision W and Cost taken by the cost model for interleaving group Grp and vector ...
const MapVector< Instruction *, uint64_t > & getMinimalBitwidths() const
CallWideningDecision getCallWideningDecision(CallInst *CI, ElementCount VF) const
bool isLegalGatherOrScatter(Value *V, ElementCount VF)
Returns true if the target machine can represent V as a masked gather or scatter operation.
bool canTruncateToMinimalBitwidth(Instruction *I, ElementCount VF) const
bool runtimeChecksRequired()
bool shouldConsiderInvariant(Value *Op)
Returns true if Op should be considered invariant and if it is trivially hoistable.
bool foldTailByMasking() const
Returns true if all loop blocks should be masked to fold tail loop.
bool foldTailWithEVL() const
Returns true if VP intrinsics with explicit vector length support should be generated in the tail fol...
bool blockNeedsPredicationForAnyReason(BasicBlock *BB) const
Returns true if the instructions in this block requires predication for any reason,...
void setCallWideningDecision(CallInst *CI, ElementCount VF, InstWidening Kind, Function *Variant, Intrinsic::ID IID, std::optional< unsigned > MaskPos, InstructionCost Cost)
AssumptionCache * AC
Assumption cache.
void setWideningDecision(Instruction *I, ElementCount VF, InstWidening W, InstructionCost Cost)
Save vectorization decision W and Cost taken by the cost model for instruction I and vector width VF.
InstWidening
Decision that was taken during cost calculation for memory instruction.
bool usePredicatedReductionSelect(RecurKind RecurrenceKind) const
Returns true if the predicated reduction select should be used to set the incoming value for the redu...
std::pair< InstructionCost, InstructionCost > getDivRemSpeculationCost(Instruction *I, ElementCount VF)
Return the costs for our two available strategies for lowering a div/rem operation which requires spe...
InstructionCost getVectorCallCost(CallInst *CI, ElementCount VF) const
Estimate cost of a call instruction CI if it were vectorized with factor VF.
bool isScalarWithPredication(Instruction *I, ElementCount VF)
Returns true if I is an instruction which requires predication and for which our chosen predication s...
bool useOrderedReductions(const RecurrenceDescriptor &RdxDesc) const
Returns true if we should use strict in-order reductions for the given RdxDesc.
bool isDivRemScalarWithPredication(InstructionCost ScalarCost, InstructionCost SafeDivisorCost) const
Given costs for both strategies, return true if the scalar predication lowering should be used for di...
std::function< BlockFrequencyInfo &()> GetBFI
A function to lazily fetch BlockFrequencyInfo.
LoopVectorizationCostModel(ScalarEpilogueLowering SEL, Loop *L, PredicatedScalarEvolution &PSE, LoopInfo *LI, LoopVectorizationLegality *Legal, const TargetTransformInfo &TTI, const TargetLibraryInfo *TLI, DemandedBits *DB, AssumptionCache *AC, OptimizationRemarkEmitter *ORE, std::function< BlockFrequencyInfo &()> GetBFI, const Function *F, const LoopVectorizeHints *Hints, InterleavedAccessInfo &IAI, bool OptForSize)
InstructionCost expectedCost(ElementCount VF)
Returns the expected execution cost.
void setCostBasedWideningDecision(ElementCount VF)
Memory access instruction may be vectorized in more than one way.
InstWidening getWideningDecision(Instruction *I, ElementCount VF) const
Return the cost model decision for the given instruction I and vector width VF.
FixedScalableVFPair MaxPermissibleVFWithoutMaxBW
The highest VF possible for this loop, without using MaxBandwidth.
const SmallPtrSetImpl< PHINode * > & getInLoopReductions() const
Returns the set of in-loop reduction PHIs.
bool isScalarEpilogueAllowed() const
Returns true if a scalar epilogue is not allowed due to optsize or a loop hint annotation.
InstructionCost getWideningCost(Instruction *I, ElementCount VF)
Return the vectorization cost for the given instruction I and vector width VF.
TailFoldingStyle getTailFoldingStyle() const
Returns the TailFoldingStyle that is best for the current loop.
void collectInstsToScalarize(ElementCount VF)
Collects the instructions to scalarize for each predicated instruction in the loop.
LoopVectorizationLegality checks if it is legal to vectorize a loop, and to what vectorization factor...
MapVector< PHINode *, InductionDescriptor > InductionList
InductionList saves induction variables and maps them to the induction descriptor.
bool canVectorize(bool UseVPlanNativePath)
Returns true if it is legal to vectorize this loop.
bool canVectorizeFPMath(bool EnableStrictReductions)
Returns true if it is legal to vectorize the FP math operations in this loop.
const SmallVector< BasicBlock *, 4 > & getCountableExitingBlocks() const
Returns all exiting blocks with a countable exit, i.e.
bool isSafeForAnyVectorWidth() const
bool hasUncountableEarlyExit() const
Returns true if the loop has uncountable early exits, i.e.
bool hasHistograms() const
Returns a list of all known histogram operations in the loop.
const LoopAccessInfo * getLAI() const
Planner drives the vectorization process after having passed Legality checks.
VPlan & getPlanFor(ElementCount VF) const
Return the VPlan for VF.
VectorizationFactor planInVPlanNativePath(ElementCount UserVF)
Use the VPlan-native path to plan how to best vectorize, return the best VF and its cost.
void updateLoopMetadataAndProfileInfo(Loop *VectorLoop, VPBasicBlock *HeaderVPBB, const VPlan &Plan, bool VectorizingEpilogue, MDNode *OrigLoopID, std::optional< unsigned > OrigAverageTripCount, unsigned OrigLoopInvocationWeight, unsigned EstimatedVFxUF, bool DisableRuntimeUnroll)
Update loop metadata and profile info for both the scalar remainder loop and VectorLoop,...
void buildVPlans(ElementCount MinVF, ElementCount MaxVF)
Build VPlans for power-of-2 VF's between MinVF and MaxVF inclusive, according to the information gath...
VectorizationFactor computeBestVF()
Compute and return the most profitable vectorization factor.
DenseMap< const SCEV *, Value * > executePlan(ElementCount VF, unsigned UF, VPlan &BestPlan, InnerLoopVectorizer &LB, DominatorTree *DT, bool VectorizingEpilogue)
Generate the IR code for the vectorized loop captured in VPlan BestPlan according to the best selecte...
unsigned selectInterleaveCount(VPlan &Plan, ElementCount VF, InstructionCost LoopCost)
void emitInvalidCostRemarks(OptimizationRemarkEmitter *ORE)
Emit remarks for recipes with invalid costs in the available VPlans.
static bool getDecisionAndClampRange(const std::function< bool(ElementCount)> &Predicate, VFRange &Range)
Test a Predicate on a Range of VF's.
VectorizationFactor selectEpilogueVectorizationFactor(ElementCount MainLoopVF, unsigned IC)
void printPlans(raw_ostream &O)
void plan(ElementCount UserVF, unsigned UserIC)
Build VPlans for the specified UserVF and UserIC if they are non-zero or all applicable candidate VFs...
void addMinimumIterationCheck(VPlan &Plan, ElementCount VF, unsigned UF, ElementCount MinProfitableTripCount) const
Create a check to Plan to see if the vector loop should be executed based on its trip count.
bool hasPlanWithVF(ElementCount VF) const
Look through the existing plans and return true if we have one with vectorization factor VF.
This holds vectorization requirements that must be verified late in the process.
Instruction * getExactFPInst()
Utility class for getting and setting loop vectorizer hints in the form of loop metadata.
enum ForceKind getForce() const
bool allowVectorization(Function *F, Loop *L, bool VectorizeOnlyWhenForced) const
bool allowReordering() const
When enabling loop hints are provided we allow the vectorizer to change the order of operations that ...
void emitRemarkWithHints() const
Dumps all the hint information.
bool isPotentiallyUnsafe() const
ElementCount getWidth() const
@ FK_Enabled
Forcing enabled.
@ FK_Undefined
Not selected.
@ FK_Disabled
Forcing disabled.
unsigned getPredicate() const
const char * vectorizeAnalysisPassName() const
If hints are provided that force vectorization, use the AlwaysPrint pass name to force the frontend t...
unsigned getInterleave() const
This class emits a version of the loop where run-time checks ensure that may-alias pointers can't ove...
Represents a single loop in the control flow graph.
bool hasLoopInvariantOperands(const Instruction *I) const
Return true if all the operands of the specified instruction are loop invariant.
DebugLoc getStartLoc() const
Return the debug location of the start of this loop.
bool isLoopInvariant(const Value *V) const
Return true if the specified value is loop invariant.
This class implements a map that also provides access to all stored values in a deterministic order.
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Function * getFunction(StringRef Name) const
Look up the specified function in the module symbol table.
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
op_range incoming_values()
Value * getIncomingValueForBlock(const BasicBlock *BB) const
unsigned getNumIncomingValues() const
Return the number of incoming edges.
An interface layer with SCEV used to manage how we see SCEV expressions for values in the context of ...
ScalarEvolution * getSE() const
Returns the ScalarEvolution analysis used.
LLVM_ABI const SCEVPredicate & getPredicate() const
LLVM_ABI unsigned getSmallConstantMaxTripCount()
Returns the upper bound of the loop trip count as a normal unsigned value, or 0 if the trip count is ...
LLVM_ABI const SCEV * getBackedgeTakenCount()
Get the (predicated) backedge count for the analyzed loop.
LLVM_ABI const SCEV * getSCEV(Value *V)
Returns the SCEV expression of V, in the context of the current SCEV predicate.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalyses & preserveSet()
Mark an analysis set as preserved.
PreservedAnalyses & preserve()
Mark an analysis as preserved.
An analysis pass based on the new PM to deliver ProfileSummaryInfo.
The RecurrenceDescriptor is used to identify recurrences variables in a loop.
static bool isFMulAddIntrinsic(Instruction *I)
Returns true if the instruction is a call to the llvm.fmuladd intrinsic.
FastMathFlags getFastMathFlags() const
static LLVM_ABI unsigned getOpcode(RecurKind Kind)
Returns the opcode corresponding to the RecurrenceKind.
unsigned getOpcode() const
Type * getRecurrenceType() const
Returns the type of the recurrence.
bool hasUsesOutsideReductionChain() const
Returns true if the reduction PHI has any uses outside the reduction chain.
const SmallPtrSet< Instruction *, 8 > & getCastInsts() const
Returns a reference to the instructions used for type-promoting the recurrence.
static bool isFindLastRecurrenceKind(RecurKind Kind)
Returns true if the recurrence kind is of the form select(cmp(),x,y) where one of (x,...
unsigned getMinWidthCastToRecurrenceTypeInBits() const
Returns the minimum width used by the recurrence in bits.
LLVM_ABI SmallVector< Instruction *, 4 > getReductionOpChain(PHINode *Phi, Loop *L) const
Attempts to find a chain of operations from Phi to LoopExitInst that can be treated as a set of reduc...
static bool isAnyOfRecurrenceKind(RecurKind Kind)
Returns true if the recurrence kind is of the form select(cmp(),x,y) where one of (x,...
bool isSigned() const
Returns true if all source operands of the recurrence are SExtInsts.
RecurKind getRecurrenceKind() const
bool isOrdered() const
Expose an ordered FP reduction to the instance users.
static bool isFindIVRecurrenceKind(RecurKind Kind)
Returns true if the recurrence kind is of the form select(cmp(),x,y) where one of (x,...
static bool isMinMaxRecurrenceKind(RecurKind Kind)
Returns true if the recurrence kind is any min/max kind.
std::optional< ArrayRef< PointerDiffInfo > > getDiffChecks() const
const SmallVectorImpl< RuntimePointerCheck > & getChecks() const
Returns the checks that generateChecks created.
This class uses information about analyze scalars to rewrite expressions in canonical form.
ScalarEvolution * getSE()
bool isInsertedInstruction(Instruction *I) const
Return true if the specified instruction was inserted by the code rewriter.
LLVM_ABI Value * expandCodeForPredicate(const SCEVPredicate *Pred, Instruction *Loc)
Generates a code sequence that evaluates this predicate.
void eraseDeadInstructions(Value *Root)
Remove inserted instructions that are dead, e.g.
virtual bool isAlwaysTrue() const =0
Returns true if the predicate is always true.
This class represents an analyzed expression in the program.
LLVM_ABI bool isZero() const
Return true if the expression is a constant zero.
LLVM_ABI Type * getType() const
Return the LLVM type of this SCEV expression.
Analysis pass that exposes the ScalarEvolution for a function.
The main scalar evolution driver.
LLVM_ABI const SCEV * getURemExpr(SCEVUse LHS, SCEVUse RHS)
Represents an unsigned remainder expression based on unsigned division.
LLVM_ABI const SCEV * getBackedgeTakenCount(const Loop *L, ExitCountKind Kind=Exact)
If the specified loop has a predictable backedge-taken count, return it, otherwise return a SCEVCould...
LLVM_ABI const SCEV * getConstant(ConstantInt *V)
LLVM_ABI const SCEV * getSCEV(Value *V)
Return a SCEV expression for the full generality of the specified expression.
LLVM_ABI const SCEV * getTripCountFromExitCount(const SCEV *ExitCount)
A version of getTripCountFromExitCount below which always picks an evaluation type which can not resu...
const SCEV * getOne(Type *Ty)
Return a SCEV for the constant 1 of a specific type.
LLVM_ABI void forgetLoop(const Loop *L)
This method should be called by the client when it has changed a loop in a way that may effect Scalar...
LLVM_ABI bool isLoopInvariant(const SCEV *S, const Loop *L)
Return true if the value of the given SCEV is unchanging in the specified loop.
LLVM_ABI const SCEV * getElementCount(Type *Ty, ElementCount EC, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap)
ConstantRange getUnsignedRange(const SCEV *S)
Determine the unsigned range for a particular SCEV.
LLVM_ABI void forgetValue(Value *V)
This method should be called by the client when it has changed a value in a way that may effect its v...
LLVM_ABI void forgetBlockAndLoopDispositions(Value *V=nullptr)
Called when the client has changed the disposition of values in a loop or block.
const SCEV * getMinusOne(Type *Ty)
Return a SCEV for the constant -1 of a specific type.
LLVM_ABI void forgetLcssaPhiWithNewPredecessor(Loop *L, PHINode *V)
Forget LCSSA phi node V of loop L to which a new predecessor was added, such that it may no longer be...
LLVM_ABI const SCEV * getMulExpr(SmallVectorImpl< SCEVUse > &Ops, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Get a canonical multiply expression, or something simpler if possible.
LLVM_ABI unsigned getSmallConstantTripCount(const Loop *L)
Returns the exact trip count of the loop if we can compute it, and the result is a small constant.
APInt getUnsignedRangeMax(const SCEV *S)
Determine the max of the unsigned range for a particular SCEV.
LLVM_ABI const SCEV * getAddExpr(SmallVectorImpl< SCEVUse > &Ops, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Get a canonical add expression, or something simpler if possible.
LLVM_ABI bool isKnownPredicate(CmpPredicate Pred, SCEVUse LHS, SCEVUse RHS)
Test if the given expression is known to satisfy the condition described by Pred, LHS,...
LLVM_ABI const SCEV * applyLoopGuards(const SCEV *Expr, const Loop *L)
Try to apply information from loop guards for L to Expr.
This class represents the LLVM 'select' instruction.
A vector that has set insertion semantics.
size_type size() const
Determine the number of elements in the SetVector.
void insert_range(Range &&R)
size_type count(const_arg_type key) const
Count the number of elements of a given key in the SetVector.
bool insert(const value_type &X)
Insert a new element into the SetVector.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
bool contains(ConstPtrType Ptr) const
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
A SetVector that performs no allocations if smaller than a certain size.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
StringRef - Represent a constant reference to a string, i.e.
Analysis pass providing the TargetTransformInfo.
Analysis pass providing the TargetLibraryInfo.
Provides information about what library functions are available for the current target.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
This class implements a switch-like dispatch statement for a value of 'T' using dyn_cast functionalit...
TypeSwitch< T, ResultT > & Case(CallableT &&caseFn)
Add a case on the given type.
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM_ABI unsigned getIntegerBitWidth() const
bool isVectorTy() const
True if this is an instance of VectorType.
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
bool isIntegerTy() const
True if this is an instance of IntegerType.
bool isVoidTy() const
Return true if this is 'void'.
A Use represents the edge between a Value definition and its users.
LLVM_ABI bool replaceUsesOfWith(Value *From, Value *To)
Replace uses of one Value with another.
Value * getOperand(unsigned i) const
static SmallVector< VFInfo, 8 > getMappings(const CallInst &CI)
Retrieve all the VFInfo instances associated to the CallInst CI.
VPBasicBlock serves as the leaf of the Hierarchical Control-Flow Graph.
RecipeListTy::iterator iterator
Instruction iterators...
iterator begin()
Recipe iterator methods.
iterator_range< iterator > phis()
Returns an iterator range over the PHI-like recipes in the block.
InstructionCost cost(ElementCount VF, VPCostContext &Ctx) override
Return the cost of this VPBasicBlock.
iterator getFirstNonPhi()
Return the position of the first non-phi node recipe in the block.
const VPRecipeBase & front() const
VPRecipeBase * getTerminator()
If the block has multiple successors, return the branch recipe terminating the block.
VPBlockBase is the building block of the Hierarchical Control-Flow Graph.
const VPBasicBlock * getExitingBasicBlock() const
void setName(const Twine &newName)
size_t getNumSuccessors() const
void swapSuccessors()
Swap successors of the block. The block must have exactly 2 successors.
size_t getNumPredecessors() const
const VPBasicBlock * getEntryBasicBlock() const
VPBlockBase * getSingleSuccessor() const
const VPBlocksTy & getSuccessors() const
static auto blocksOnly(const T &Range)
Return an iterator range over Range which only includes BlockTy blocks.
static void insertOnEdge(VPBlockBase *From, VPBlockBase *To, VPBlockBase *BlockPtr)
Inserts BlockPtr on the edge between From and To.
static void connectBlocks(VPBlockBase *From, VPBlockBase *To, unsigned PredIdx=-1u, unsigned SuccIdx=-1u)
Connect VPBlockBases From and To bi-directionally.
static void reassociateBlocks(VPBlockBase *Old, VPBlockBase *New)
Reassociate all the blocks connected to Old so that they now point to New.
VPlan-based builder utility analogous to IRBuilder.
VPInstruction * createAdd(VPValue *LHS, VPValue *RHS, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="", VPRecipeWithIRFlags::WrapFlagsTy WrapFlags={false, false})
static VPBuilder getToInsertAfter(VPRecipeBase *R)
Create a VPBuilder to insert after R.
VPPhi * createScalarPhi(ArrayRef< VPValue * > IncomingValues, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="", const VPIRFlags &Flags={})
VPInstruction * createNaryOp(unsigned Opcode, ArrayRef< VPValue * > Operands, Instruction *Inst=nullptr, const VPIRFlags &Flags={}, const VPIRMetadata &MD={}, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="")
Create an N-ary operation with Opcode, Operands and set Inst as its underlying Instruction.
Canonical scalar induction phi of the vector loop.
VPIRValue * getStartValue() const
Returns the start value of the canonical induction.
unsigned getNumDefinedValues() const
Returns the number of values defined by the VPDef.
VPValue * getVPSingleValue()
Returns the only VPValue defined by the VPDef.
A recipe representing a sequence of load -> update -> store as part of a histogram operation.
A special type of VPBasicBlock that wraps an existing IR basic block.
LLVM_ABI_FOR_TEST FastMathFlags getFastMathFlags() const
This is a concrete Recipe that models a single VPlan-level instruction.
unsigned getNumOperandsWithoutMask() const
Returns the number of operands, excluding the mask if the VPInstruction is masked.
iterator_range< operand_iterator > operandsWithoutMask()
Returns an iterator range over the operands excluding the mask operand if present.
@ ComputeAnyOfResult
Compute the final result of a AnyOf reduction with select(cmp(),x,y), where one of (x,...
@ ResumeForEpilogue
Explicit user for the resume phi of the canonical induction in the main VPlan, used by the epilogue v...
@ FirstOrderRecurrenceSplice
@ ReductionStartVector
Start vector for reductions with 3 operands: the original start value, the identity value for the red...
unsigned getOpcode() const
void setName(StringRef NewName)
Set the symbolic name for the VPInstruction.
VPValue * getMask() const
Returns the mask for the VPInstruction.
bool isMasked() const
Returns true if the VPInstruction has a mask operand.
VPInterleaveRecipe is a recipe for transforming an interleave group of load or stores into one wide l...
detail::zippy< llvm::detail::zip_first, VPUser::const_operand_range, const_incoming_blocks_range > incoming_values_and_blocks() const
Returns an iterator range over pairs of incoming values and corresponding incoming blocks.
VPRecipeBase is a base class modeling a sequence of one or more output IR instructions.
DebugLoc getDebugLoc() const
Returns the debug location of the recipe.
void moveBefore(VPBasicBlock &BB, iplist< VPRecipeBase >::iterator I)
Unlink this recipe and insert into BB before I.
void insertBefore(VPRecipeBase *InsertPos)
Insert an unlinked recipe into a basic block immediately before the specified recipe.
Helper class to create VPRecipies from IR instructions.
VPRecipeBase * tryToCreateWidenNonPhiRecipe(VPSingleDefRecipe *R, VFRange &Range)
Create and return a widened recipe for a non-phi recipe R if one can be created within the given VF R...
VPValue * getVPValueOrAddLiveIn(Value *V)
VPReplicateRecipe * handleReplication(VPInstruction *VPI, VFRange &Range)
Build a VPReplicationRecipe for VPI.
bool isOrdered() const
Returns true, if the phi is part of an ordered reduction.
unsigned getVFScaleFactor() const
Get the factor that the VF of this recipe's output should be scaled by, or 1 if it isn't scaled.
bool isInLoop() const
Returns true if the phi is part of an in-loop reduction.
RecurKind getRecurrenceKind() const
Returns the recurrence kind of the reduction.
A recipe to represent inloop, ordered or partial reduction operations.
VPRegionBlock represents a collection of VPBasicBlocks and VPRegionBlocks which form a Single-Entry-S...
const VPBlockBase * getEntry() const
VPCanonicalIVPHIRecipe * getCanonicalIV()
Returns the canonical induction recipe of the region.
VPReplicateRecipe replicates a given instruction producing multiple scalar copies of the original sca...
VPSingleDef is a base class for recipes for modeling a sequence of one or more output IR that define ...
Instruction * getUnderlyingInstr()
Returns the underlying instruction.
An analysis for type-inference for VPValues.
Type * inferScalarType(const VPValue *V)
Infer the type of V. Returns the scalar type of V.
This class augments VPValue with operands which provide the inverse def-use edges from VPValue's user...
void setOperand(unsigned I, VPValue *New)
operand_iterator op_begin()
VPValue * getOperand(unsigned N) const
This is the base class of the VPlan Def/Use graph, used for modeling the data flow into,...
Value * getLiveInIRValue() const
Return the underlying IR value for a VPIRValue.
VPRecipeBase * getDefiningRecipe()
Returns the recipe defining this VPValue or nullptr if it is not defined by a recipe,...
Value * getUnderlyingValue() const
Return the underlying Value attached to this VPValue.
void replaceAllUsesWith(VPValue *New)
void replaceUsesWithIf(VPValue *New, llvm::function_ref< bool(VPUser &U, unsigned Idx)> ShouldReplace)
Go through the uses list for this VPValue and make each use point to New if the callback ShouldReplac...
A recipe to compute a pointer to the last element of each part of a widened memory access for widened...
VPWidenCastRecipe is a recipe to create vector cast instructions.
A recipe for handling GEP instructions.
A recipe for handling phi nodes of integer and floating-point inductions, producing their vector valu...
A recipe for widened phis.
VPWidenRecipe is a recipe for producing a widened instruction using the opcode and operands of the re...
VPlan models a candidate for vectorization, encoding various decisions take to produce efficient outp...
bool hasVF(ElementCount VF) const
VPBasicBlock * getEntry()
VPValue * getTripCount() const
The trip count of the original loop.
iterator_range< SmallSetVector< ElementCount, 2 >::iterator > vectorFactors() const
Returns an iterator range over all VFs of the plan.
VPSymbolicValue & getVFxUF()
Returns VF * UF of the vector loop region.
bool hasUF(unsigned UF) const
ArrayRef< VPIRBasicBlock * > getExitBlocks() const
Return an ArrayRef containing VPIRBasicBlocks wrapping the exit blocks of the original scalar loop.
VPIRValue * getOrAddLiveIn(Value *V)
Gets the live-in VPIRValue for V or adds a new live-in (if none exists yet) for V.
VPIRValue * getZero(Type *Ty)
Return a VPIRValue wrapping the null value of type Ty.
LLVM_ABI_FOR_TEST VPRegionBlock * getVectorLoopRegion()
Returns the VPRegionBlock of the vector loop.
bool hasEarlyExit() const
Returns true if the VPlan is based on a loop with an early exit.
InstructionCost cost(ElementCount VF, VPCostContext &Ctx)
Return the cost of this plan.
void resetTripCount(VPValue *NewTripCount)
Resets the trip count for the VPlan.
VPBasicBlock * getMiddleBlock()
Returns the 'middle' block of the plan, that is the block that selects whether to execute the scalar ...
VPSymbolicValue & getUF()
Returns the UF of the vector loop region.
VPBasicBlock * getScalarPreheader() const
Return the VPBasicBlock for the preheader of the scalar loop.
void execute(VPTransformState *State)
Generate the IR code for this VPlan.
VPIRBasicBlock * getScalarHeader() const
Return the VPIRBasicBlock wrapping the header of the scalar loop.
VPBasicBlock * getVectorPreheader()
Returns the preheader of the vector loop region, if one exists, or null otherwise.
VPSymbolicValue & getVF()
Returns the VF of the vector loop region.
LLVM_ABI_FOR_TEST VPlan * duplicate()
Clone the current VPlan, update all VPValues of the new VPlan and cloned recipes to refer to the clon...
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI bool hasOneUser() const
Return true if there is exactly one user of this value.
LLVM_ABI void setName(const Twine &Name)
Change the name of the value.
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
iterator_range< user_iterator > users()
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Base class of all SIMD vector types.
ElementCount getElementCount() const
Return an ElementCount instance to represent the (possibly scalable) number of elements in the vector...
static LLVM_ABI VectorType * get(Type *ElementType, ElementCount EC)
This static method is the primary way to construct an VectorType.
std::pair< iterator, bool > insert(const ValueT &V)
bool contains(const_arg_type_t< ValueT > V) const
Check if the set contains the given element.
constexpr ScalarTy getFixedValue() const
static constexpr bool isKnownLE(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
constexpr bool isNonZero() const
static constexpr bool isKnownLT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr LeafTy multiplyCoefficientBy(ScalarTy RHS) const
constexpr bool isFixed() const
Returns true if the quantity is not scaled by vscale.
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
constexpr bool isZero() const
static constexpr bool isKnownGT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
constexpr LeafTy divideCoefficientBy(ScalarTy RHS) const
We do not provide the '/' operator here because division for polynomial types does not work in the sa...
static constexpr bool isKnownGE(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
self_iterator getIterator()
This class implements an extremely fast bulk output stream that can only output to a stream.
A raw_ostream that writes to an std::string.
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ PredicateElseScalarEpilogue
@ PredicateOrDontVectorize
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ Tail
Attemps to make calls as fast as possible while guaranteeing that tail call optimization can always b...
@ C
The default llvm calling convention, compatible with C.
@ BasicBlock
Various leaf nodes.
std::variant< std::monostate, Loc::Single, Loc::Multi, Loc::MMI, Loc::EntryValue > Variant
Alias for the std::variant specialization base class of DbgVariable.
SpecificConstantMatch m_ZeroInt()
Convenience matchers for specific integer values.
OneUse_match< SubPat > m_OneUse(const SubPat &SP)
BinaryOp_match< LHS, RHS, Instruction::Add > m_Add(const LHS &L, const RHS &R)
specific_intval< false > m_SpecificInt(const APInt &V)
Match a specific integer value or vector with all elements equal to the value.
bool match(Val *V, const Pattern &P)
bind_ty< Instruction > m_Instruction(Instruction *&I)
Match an instruction, capturing it if we match.
specificval_ty m_Specific(const Value *V)
Match if we have a specific specified value.
auto match_fn(const Pattern &P)
A match functor that can be used as a UnaryPredicate in functional algorithms like all_of.
cst_pred_ty< is_one > m_One()
Match an integer 1 or a vector with all elements equal to 1.
IntrinsicID_match m_Intrinsic()
Match intrinsic calls like this: m_Intrinsic<Intrinsic::fabs>(m_Value(X))
BinaryOp_match< LHS, RHS, Instruction::Mul > m_Mul(const LHS &L, const RHS &R)
auto m_LogicalOr()
Matches L || R where L and R are arbitrary values.
class_match< CmpInst > m_Cmp()
Matches any compare instruction and ignore it.
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
match_combine_or< CastInst_match< OpTy, ZExtInst >, CastInst_match< OpTy, SExtInst > > m_ZExtOrSExt(const OpTy &Op)
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
match_combine_or< LTy, RTy > m_CombineOr(const LTy &L, const RTy &R)
Combine two pattern matchers matching L || R.
class_match< const SCEVVScale > m_SCEVVScale()
bind_cst_ty m_scev_APInt(const APInt *&C)
Match an SCEV constant and bind it to an APInt.
specificloop_ty m_SpecificLoop(const Loop *L)
cst_pred_ty< is_specific_signed_cst > m_scev_SpecificSInt(int64_t V)
Match an SCEV constant with a plain signed integer (sign-extended value will be matched)
SCEVAffineAddRec_match< Op0_t, Op1_t, class_match< const Loop > > m_scev_AffineAddRec(const Op0_t &Op0, const Op1_t &Op1)
bind_ty< const SCEVMulExpr > m_scev_Mul(const SCEVMulExpr *&V)
bool match(const SCEV *S, const Pattern &P)
SCEVBinaryExpr_match< SCEVMulExpr, Op0_t, Op1_t, SCEV::FlagAnyWrap, true > m_scev_c_Mul(const Op0_t &Op0, const Op1_t &Op1)
class_match< const SCEV > m_SCEV()
int_pred_ty< is_zero_int > m_ZeroInt()
Match an integer 0 or a vector with all elements equal to 0.
bool matchFindIVResult(VPInstruction *VPI, Op0_t ReducedIV, Op1_t Start)
Match FindIV result pattern: select(icmp ne ComputeReductionResult(ReducedIV), Sentinel),...
VPInstruction_match< VPInstruction::ExtractLastLane, Op0_t > m_ExtractLastLane(const Op0_t &Op0)
VPInstruction_match< VPInstruction::BranchOnCount > m_BranchOnCount()
VPInstruction_match< VPInstruction::ExtractLastPart, Op0_t > m_ExtractLastPart(const Op0_t &Op0)
bool match(Val *V, const Pattern &P)
class_match< VPValue > m_VPValue()
Match an arbitrary VPValue and ignore it.
VPInstruction_match< VPInstruction::ExtractLane, Op0_t, Op1_t > m_ExtractLane(const Op0_t &Op0, const Op1_t &Op1)
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
initializer< Ty > init(const Ty &Val)
Add a small namespace to avoid name clashes with the classes used in the streaming interface.
DiagnosticInfoOptimizationBase::Argument NV
NodeAddr< InstrNode * > Instr
NodeAddr< PhiNode * > Phi
friend class Instruction
Iterator for Instructions in a `BasicBlock.
bool isSingleScalar(const VPValue *VPV)
Returns true if VPV is a single scalar, either because it produces the same value for all lanes or on...
VPValue * getOrCreateVPValueForSCEVExpr(VPlan &Plan, const SCEV *Expr)
Get or create a VPValue that corresponds to the expansion of Expr.
VPBasicBlock * getFirstLoopHeader(VPlan &Plan, VPDominatorTree &VPDT)
Returns the header block of the first, top-level loop, or null if none exist.
bool isAddressSCEVForCost(const SCEV *Addr, ScalarEvolution &SE, const Loop *L)
Returns true if Addr is an address SCEV that can be passed to TTI::getAddressComputationCost,...
bool onlyFirstLaneUsed(const VPValue *Def)
Returns true if only the first lane of Def is used.
VPRecipeBase * findRecipe(VPValue *Start, PredT Pred)
Search Start's users for a recipe satisfying Pred, looking through recipes with definitions.
VPSingleDefRecipe * findHeaderMask(VPlan &Plan)
Collect the header mask with the pattern: (ICMP_ULE, WideCanonicalIV, backedge-taken-count) TODO: Int...
const SCEV * getSCEVExprForVPValue(const VPValue *V, PredicatedScalarEvolution &PSE, const Loop *L=nullptr)
Return the SCEV expression for V.
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI bool simplifyLoop(Loop *L, DominatorTree *DT, LoopInfo *LI, ScalarEvolution *SE, AssumptionCache *AC, MemorySSAUpdater *MSSAU, bool PreserveLCSSA)
Simplify each loop in a loop nest recursively.
LLVM_ABI void ReplaceInstWithInst(BasicBlock *BB, BasicBlock::iterator &BI, Instruction *I)
Replace the instruction specified by BI with the instruction specified by I.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
detail::zippy< detail::zip_shortest, T, U, Args... > zip(T &&t, U &&u, Args &&...args)
zip iterator for two or more iteratable types.
FunctionAddr VTableAddr Value
LLVM_ABI Value * addRuntimeChecks(Instruction *Loc, Loop *TheLoop, const SmallVectorImpl< RuntimePointerCheck > &PointerChecks, SCEVExpander &Expander, bool HoistRuntimeChecks=false)
Add code that checks at runtime if the accessed arrays in PointerChecks overlap.
auto cast_if_present(const Y &Val)
cast_if_present<X> - Functionally identical to cast, except that a null value is accepted.
LLVM_ABI bool RemoveRedundantDbgInstrs(BasicBlock *BB)
Try to remove redundant dbg.value instructions from given basic block.
LLVM_ABI_FOR_TEST cl::opt< bool > VerifyEachVPlan
LLVM_ABI std::optional< unsigned > getLoopEstimatedTripCount(Loop *L, unsigned *EstimatedLoopInvocationWeight=nullptr)
Return either:
static void reportVectorization(OptimizationRemarkEmitter *ORE, Loop *TheLoop, VectorizationFactor VF, unsigned IC)
Report successful vectorization of the loop.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
unsigned getLoadStoreAddressSpace(const Value *I)
A helper function that returns the address space of the pointer operand of load or store instruction.
LLVM_ABI Intrinsic::ID getMinMaxReductionIntrinsicOp(Intrinsic::ID RdxID)
Returns the min/max intrinsic used when expanding a min/max reduction.
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
LLVM_ABI Intrinsic::ID getVectorIntrinsicIDForCall(const CallInst *CI, const TargetLibraryInfo *TLI)
Returns intrinsic ID for call.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool verifyFunction(const Function &F, raw_ostream *OS=nullptr)
Check a function for errors, useful for use when debugging a pass.
const Value * getLoadStorePointerOperand(const Value *V)
A helper function that returns the pointer operand of a load or store instruction.
OuterAnalysisManagerProxy< ModuleAnalysisManager, Function > ModuleAnalysisManagerFunctionProxy
Provide the ModuleAnalysisManager to Function proxy.
Value * getRuntimeVF(IRBuilderBase &B, Type *Ty, ElementCount VF)
Return the runtime value for VF.
LLVM_ABI bool formLCSSARecursively(Loop &L, const DominatorTree &DT, const LoopInfo *LI, ScalarEvolution *SE)
Put a loop nest into LCSSA form.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
LLVM_ABI bool shouldOptimizeForSize(const MachineFunction *MF, ProfileSummaryInfo *PSI, const MachineBlockFrequencyInfo *BFI, PGSOQueryType QueryType=PGSOQueryType::Other)
Returns true if machine function MF is suggested to be size-optimized based on the profile.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
Align getLoadStoreAlignment(const Value *I)
A helper function that returns the alignment of load or store instruction.
iterator_range< df_iterator< VPBlockShallowTraversalWrapper< VPBlockBase * > > > vp_depth_first_shallow(VPBlockBase *G)
Returns an iterator range to traverse the graph starting at G in depth-first order.
LLVM_ABI_FOR_TEST cl::opt< bool > VPlanPrintAfterAll
LLVM_ABI bool isSafeToSpeculativelyExecute(const Instruction *I, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr, bool UseVariableInfo=true, bool IgnoreUBImplyingAttrs=true)
Return true if the instruction does not have any effects besides calculating the result and does not ...
bool isa_and_nonnull(const Y &Val)
iterator_range< df_iterator< VPBlockDeepTraversalWrapper< VPBlockBase * > > > vp_depth_first_deep(VPBlockBase *G)
Returns an iterator range to traverse the graph starting at G in depth-first order while traversing t...
SmallVector< VPRegisterUsage, 8 > calculateRegisterUsageForPlan(VPlan &Plan, ArrayRef< ElementCount > VFs, const TargetTransformInfo &TTI, const SmallPtrSetImpl< const Value * > &ValuesToIgnore)
Estimate the register usage for Plan and vectorization factors in VFs by calculating the highest numb...
unsigned Log2_64(uint64_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
auto map_range(ContainerTy &&C, FuncTy F)
Return a range that applies F to the elements of C.
LLVM_ABI void setBranchWeights(Instruction &I, ArrayRef< uint32_t > Weights, bool IsExpected, bool ElideAllZero=false)
Create a new branch_weights metadata node and add or overwrite a prof metadata reference to instructi...
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
void collectEphemeralRecipesForVPlan(VPlan &Plan, DenseSet< VPRecipeBase * > &EphRecipes)
auto reverse(ContainerTy &&C)
bool containsIrreducibleCFG(RPOTraversalT &RPOTraversal, const LoopInfoT &LI)
Return true if the control flow in RPOTraversal is irreducible.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI_FOR_TEST cl::opt< bool > EnableWideActiveLaneMask
UncountableExitStyle
Different methods of handling early exits.
@ ReadOnly
No side effects to worry about, so we can process any uncountable exits in the loop and branch either...
@ MaskedHandleExitInScalarLoop
All memory operations other than the load(s) required to determine whether an uncountable exit occurr...
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI cl::opt< bool > EnableLoopVectorization
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
LLVM_ABI_FOR_TEST cl::list< std::string > VPlanPrintAfterPasses
LLVM_ABI bool wouldInstructionBeTriviallyDead(const Instruction *I, const TargetLibraryInfo *TLI=nullptr)
Return true if the result produced by the instruction would have no side effects if it was not used.
FunctionAddr VTableAddr Count
SmallVector< ValueTypeFromRangeType< R >, Size > to_vector(R &&Range)
Given a range of type R, iterate the entire range and return a SmallVector with elements of the vecto...
Type * toVectorizedTy(Type *Ty, ElementCount EC)
A helper for converting to vectorized types.
LLVM_ABI void llvm_unreachable_internal(const char *msg=nullptr, const char *file=nullptr, unsigned line=0)
This function calls abort(), and prints the optional message to stderr.
T * find_singleton(R &&Range, Predicate P, bool AllowRepeats=false)
Return the single value in Range that satisfies P(<member of Range> *, AllowRepeats)->T * returning n...
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
cl::opt< unsigned > ForceTargetInstructionCost
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
constexpr T divideCeil(U Numerator, V Denominator)
Returns the integer ceil(Numerator / Denominator).
bool canVectorizeTy(Type *Ty)
Returns true if Ty is a valid vector element type, void, or an unpacked literal struct where all elem...
static void reportVectorizationInfo(const StringRef Msg, const StringRef ORETag, OptimizationRemarkEmitter *ORE, Loop *TheLoop, Instruction *I=nullptr, DebugLoc DL={})
Reports an informative message: print Msg for debugging purposes as well as an optimization remark.
LLVM_ABI bool isAssignmentTrackingEnabled(const Module &M)
Return true if assignment tracking is enabled for module M.
RecurKind
These are the kinds of recurrences that we support.
@ Or
Bitwise or logical OR of integers.
@ FMulAdd
Sum of float products with llvm.fmuladd(a * b + sum).
@ Sub
Subtraction of integers.
LLVM_ABI Value * getRecurrenceIdentity(RecurKind K, Type *Tp, FastMathFlags FMF)
Given information about an recurrence kind, return the identity for the @llvm.vector....
LLVM_ABI BasicBlock * SplitBlock(BasicBlock *Old, BasicBlock::iterator SplitPt, DominatorTree *DT, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, const Twine &BBName="")
Split the specified block at the specified instruction.
LLVM_ABI void reportVectorizationFailure(const StringRef DebugMsg, const StringRef OREMsg, const StringRef ORETag, OptimizationRemarkEmitter *ORE, Loop *TheLoop, Instruction *I=nullptr)
Reports a vectorization failure: print DebugMsg for debugging purposes along with the corresponding o...
DWARFExpression::Operation Op
@ CM_ScalarEpilogueNotAllowedLowTripLoop
@ CM_ScalarEpilogueNotNeededUsePredicate
@ CM_ScalarEpilogueNotAllowedOptSize
@ CM_ScalarEpilogueAllowed
@ CM_ScalarEpilogueNotAllowedUsePredicate
LLVM_ABI bool isGuaranteedNotToBeUndefOrPoison(const Value *V, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Return true if this function can prove that V does not have undef bits and is never poison.
ArrayRef(const T &OneElt) -> ArrayRef< T >
Value * createStepForVF(IRBuilderBase &B, Type *Ty, ElementCount VF, int64_t Step)
Return a value for Step multiplied by VF.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
Value * emitTransformedIndex(IRBuilderBase &B, Value *Index, Value *StartValue, Value *Step, InductionDescriptor::InductionKind InductionKind, const BinaryOperator *InductionBinOp)
Compute the transformed value of Index at offset StartValue using step StepValue.
auto predecessors(const MachineBasicBlock *BB)
iterator_range< pointer_iterator< WrappedIteratorT > > make_pointer_range(RangeT &&Range)
cl::opt< bool > EnableVPlanNativePath
Type * getLoadStoreType(const Value *I)
A helper function that returns the type of a load or store instruction.
ArrayRef< Type * > getContainedTypes(Type *const &Ty)
Returns the types contained in Ty.
LLVM_ABI Value * addDiffRuntimeChecks(Instruction *Loc, ArrayRef< PointerDiffInfo > Checks, SCEVExpander &Expander, function_ref< Value *(IRBuilderBase &, unsigned)> GetVF, unsigned IC)
bool pred_empty(const BasicBlock *BB)
@ None
Don't use tail folding.
@ DataWithEVL
Use predicated EVL instructions for tail-folding.
@ DataAndControlFlow
Use predicate to control both data and control flow.
@ DataWithoutLaneMask
Same as Data, but avoids using the get.active.lane.mask intrinsic to calculate the mask and instead i...
@ Data
Use predicate only to mask operations on data in the loop.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
LLVM_ABI bool hasBranchWeightMD(const Instruction &I)
Checks if an instructions has Branch Weight Metadata.
hash_code hash_combine(const Ts &...args)
Combine values into a single hash_code.
@ Increment
Incrementally increasing token ID.
T bit_floor(T Value)
Returns the largest integral power of two no greater than Value if Value is nonzero.
Type * toVectorTy(Type *Scalar, ElementCount EC)
A helper function for converting Scalar types to vector types.
std::unique_ptr< VPlan > VPlanPtr
constexpr detail::IsaCheckPredicate< Types... > IsaPred
Function object wrapper for the llvm::isa type check.
LLVM_ABI_FOR_TEST bool verifyVPlanIsValid(const VPlan &Plan)
Verify invariants for general VPlans.
LLVM_ABI MapVector< Instruction *, uint64_t > computeMinimumValueSizes(ArrayRef< BasicBlock * > Blocks, DemandedBits &DB, const TargetTransformInfo *TTI=nullptr)
Compute a map of integer instructions to their minimum legal type size.
hash_code hash_combine_range(InputIteratorT first, InputIteratorT last)
Compute a hash_code for a sequence of values.
LLVM_ABI_FOR_TEST cl::opt< bool > VPlanPrintVectorRegionScope
LLVM_ABI cl::opt< bool > EnableLoopInterleaving
This struct is a compact representation of a valid (non-zero power of two) alignment.
A special type used by analysis passes to provide an address that identifies that particular analysis...
static LLVM_ABI void collectEphemeralValues(const Loop *L, AssumptionCache *AC, SmallPtrSetImpl< const Value * > &EphValues)
Collect a loop's ephemeral values (those used only by an assume or similar intrinsics in the loop).
An information struct used to provide DenseMap with the various necessary components for a given valu...
Encapsulate information regarding vectorization of a loop and its epilogue.
EpilogueLoopVectorizationInfo(ElementCount MVF, unsigned MUF, ElementCount EVF, unsigned EUF, VPlan &EpiloguePlan)
BasicBlock * MainLoopIterationCountCheck
BasicBlock * EpilogueIterationCountCheck
A class that represents two vectorization factors (initialized with 0 by default).
static FixedScalableVFPair getNone()
This holds details about a histogram operation – a load -> update -> store sequence where each lane i...
std::optional< unsigned > MaskPos
LLVM_ABI LoopVectorizeResult runImpl(Function &F)
LLVM_ABI bool processLoop(Loop *L)
LoopAccessInfoManager * LAIs
LLVM_ABI void printPipeline(raw_ostream &OS, function_ref< StringRef(StringRef)> MapClassName2PassName)
LLVM_ABI LoopVectorizePass(LoopVectorizeOptions Opts={})
LLVM_ABI PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
OptimizationRemarkEmitter * ORE
std::function< BlockFrequencyInfo &()> GetBFI
TargetTransformInfo * TTI
Storage for information about made changes.
A CRTP mix-in to automatically provide informational APIs needed for passes.
Holds the VFShape for a specific scalar to vector function mapping.
std::optional< unsigned > getParamIndexForOptionalMask() const
Instruction Set Architecture.
Encapsulates information needed to describe a parameter.
A range of powers-of-2 vectorization factors with fixed start and adjustable end.
Struct to hold various analysis needed for cost computations.
LoopVectorizationCostModel & CM
bool isLegacyUniformAfterVectorization(Instruction *I, ElementCount VF) const
Return true if I is considered uniform-after-vectorization in the legacy cost model for VF.
bool skipCostComputation(Instruction *UI, bool IsVector) const
Return true if the cost for UI shouldn't be computed, e.g.
InstructionCost getLegacyCost(Instruction *UI, ElementCount VF) const
Return the cost for UI with VF using the legacy cost model as fallback until computing the cost of al...
uint64_t getPredBlockCostDivisor(BasicBlock *BB) const
TargetTransformInfo::TargetCostKind CostKind
SmallPtrSet< Instruction *, 8 > SkipCostComputation
A struct that represents some properties of the register usage of a loop.
InstructionCost spillCost(VPCostContext &Ctx, unsigned OverrideMaxNumRegs=0) const
Calculate the estimated cost of any spills due to using more registers than the number available for ...
A recipe for widening load operations, using the address to load from and an optional mask.
A recipe for widening store operations, using the stored value, the address to store to and an option...
TODO: The following VectorizationFactor was pulled out of LoopVectorizationCostModel class.
InstructionCost Cost
Cost of the loop with that width.
ElementCount MinProfitableTripCount
The minimum trip count required to make vectorization profitable, e.g.
ElementCount Width
Vector width with best cost.
InstructionCost ScalarCost
Cost of the scalar loop.
static VectorizationFactor Disabled()
Width 1 means no vectorization, cost 0 means uncomputed cost.
static LLVM_ABI bool HoistRuntimeChecks