57 if (!VPBB->getParent())
60 auto EndIter = Term ? Term->getIterator() : VPBB->end();
65 VPValue *VPV = Ingredient.getVPSingleValue();
82 *Load, Ingredient.getOperand(0),
nullptr ,
84 Ingredient.getDebugLoc());
87 *Store, Ingredient.getOperand(1), Ingredient.getOperand(0),
88 nullptr ,
false ,
false , *VPI,
89 Ingredient.getDebugLoc());
92 Ingredient.getDebugLoc());
100 *VPI, CI->getDebugLoc());
103 CI->getOpcode(), Ingredient.getOperand(0), CI->getType(), CI,
107 *VPI, Ingredient.getDebugLoc());
111 "inductions must be created earlier");
120 "Only recpies with zero or one defined values expected");
121 Ingredient.eraseFromParent();
138 if (
A->getOpcode() != Instruction::Store ||
139 B->getOpcode() != Instruction::Store)
149 const APInt *Distance;
155 Type *TyA = TypeInfo.inferScalarType(
A->getOperand(0));
157 Type *TyB = TypeInfo.inferScalarType(
B->getOperand(0));
163 uint64_t MaxStoreSize = std::max(SizeA, SizeB);
165 auto VFs =
B->getParent()->getPlan()->vectorFactors();
169 return Distance->
abs().
uge(
177 : ExcludeRecipes(ExcludeRecipes), GroupLeader(GroupLeader), PSE(PSE),
178 L(L), TypeInfo(TypeInfo) {}
185 return ExcludeRecipes.contains(&R) ||
186 (Store && isNoAliasViaDistance(Store, &GroupLeader));
199 std::optional<SinkStoreInfo> SinkInfo = {}) {
200 bool CheckReads = SinkInfo.has_value();
207 "Expected at most one successor in block chain");
210 if (SinkInfo && SinkInfo->shouldSkip(R))
214 if (!
R.mayWriteToMemory() && !(CheckReads &&
R.mayReadFromMemory()))
234template <
unsigned Opcode>
239 static_assert(Opcode == Instruction::Load || Opcode == Instruction::Store,
240 "Only Load and Store opcodes supported");
241 constexpr bool IsLoad = (Opcode == Instruction::Load);
249 if (!RepR || RepR->getOpcode() != Opcode || !FilterFn(RepR))
253 VPValue *Addr = RepR->getOperand(IsLoad ? 0 : 1);
256 RecipesByAddress[AddrSCEV].push_back(RepR);
261 for (
auto &Group :
Groups) {
280 if (R.mayHaveSideEffects() || R.mayReadFromMemory() || R.isPhi())
285 return RepR && RepR->getOpcode() == Instruction::Alloca;
294 auto InsertIfValidSinkCandidate = [ScalarVFOnly, &WorkList](
310 if (!ScalarVFOnly && RepR->isSingleScalar())
313 WorkList.
insert({SinkTo, Candidate});
325 for (
auto &Recipe : *VPBB)
327 InsertIfValidSinkCandidate(VPBB,
Op);
331 for (
unsigned I = 0;
I != WorkList.
size(); ++
I) {
334 std::tie(SinkTo, SinkCandidate) = WorkList[
I];
339 auto UsersOutsideSinkTo =
341 return cast<VPRecipeBase>(U)->getParent() != SinkTo;
343 if (
any_of(UsersOutsideSinkTo, [SinkCandidate](
VPUser *U) {
344 return !U->usesFirstLaneOnly(SinkCandidate);
347 bool NeedsDuplicating = !UsersOutsideSinkTo.empty();
349 if (NeedsDuplicating) {
353 if (
auto *SinkCandidateRepR =
359 nullptr , *SinkCandidateRepR,
363 Clone = SinkCandidate->
clone();
373 InsertIfValidSinkCandidate(SinkTo,
Op);
383 if (!EntryBB || EntryBB->size() != 1 ||
393 if (EntryBB->getNumSuccessors() != 2)
398 if (!Succ0 || !Succ1)
401 if (Succ0->getNumSuccessors() + Succ1->getNumSuccessors() != 1)
403 if (Succ0->getSingleSuccessor() == Succ1)
405 if (Succ1->getSingleSuccessor() == Succ0)
422 if (!Region1->isReplicator())
424 auto *MiddleBasicBlock =
426 if (!MiddleBasicBlock || !MiddleBasicBlock->empty())
431 if (!Region2 || !Region2->isReplicator())
436 if (!Mask1 || Mask1 != Mask2)
439 assert(Mask1 && Mask2 &&
"both region must have conditions");
445 if (TransformedRegions.
contains(Region1))
452 if (!Then1 || !Then2)
472 VPValue *Phi1ToMoveV = Phi1ToMove.getVPSingleValue();
478 if (Phi1ToMove.getVPSingleValue()->getNumUsers() == 0) {
479 Phi1ToMove.eraseFromParent();
482 Phi1ToMove.moveBefore(*Merge2, Merge2->begin());
496 TransformedRegions.
insert(Region1);
499 return !TransformedRegions.
empty();
506 std::string RegionName = (
Twine(
"pred.") + Instr->getOpcodeName()).str();
507 assert(Instr->getParent() &&
"Predicated instruction not in any basic block");
508 auto *BlockInMask = PredRecipe->
getMask();
527 RecipeWithoutMask->getDebugLoc());
551 if (RepR->isPredicated())
570 if (ParentRegion && ParentRegion->
getExiting() == CurrentBlock)
584 if (!VPBB->getParent())
588 if (!PredVPBB || PredVPBB->getNumSuccessors() != 1 ||
597 R.moveBefore(*PredVPBB, PredVPBB->
end());
599 auto *ParentRegion = VPBB->getParent();
600 if (ParentRegion && ParentRegion->getExiting() == VPBB)
601 ParentRegion->setExiting(PredVPBB);
602 for (
auto *Succ :
to_vector(VPBB->successors())) {
608 return !WorkList.
empty();
615 bool ShouldSimplify =
true;
616 while (ShouldSimplify) {
632 if (!
IV ||
IV->getTruncInst())
647 for (
auto *U : FindMyCast->
users()) {
649 if (UserCast && UserCast->getUnderlyingValue() == IRCast) {
650 FoundUserCast = UserCast;
654 FindMyCast = FoundUserCast;
679 if (!WidenOriginalIV || !WidenOriginalIV->isCanonical())
693 WidenOriginalIV->dropPoisonGeneratingFlags();
706 bool IsConditionalAssume = RepR && RepR->isPredicated() &&
708 if (IsConditionalAssume)
711 if (R.mayHaveSideEffects())
715 return all_of(R.definedValues(),
716 [](
VPValue *V) { return V->getNumUsers() == 0; });
732 if (!PhiR || PhiR->getNumOperands() != 2)
734 VPUser *PhiUser = PhiR->getSingleUser();
738 if (PhiUser !=
Incoming->getDefiningRecipe() ||
741 PhiR->replaceAllUsesWith(PhiR->getOperand(0));
742 PhiR->eraseFromParent();
743 Incoming->getDefiningRecipe()->eraseFromParent();
758 Kind, FPBinOp, StartV, CanonicalIV, Step,
"offset.idx");
768 BaseIV = Builder.createScalarCast(Instruction::Trunc, BaseIV, TruncTy,
DL);
774 if (ResultTy != StepTy) {
781 Builder.setInsertPoint(VecPreheader);
782 Step = Builder.createScalarCast(Instruction::Trunc, Step, ResultTy,
DL);
784 return Builder.createScalarIVSteps(InductionOpcode, FPBinOp, BaseIV, Step,
790 for (
unsigned I = 0;
I !=
Users.size(); ++
I) {
795 Users.insert_range(V->users());
797 return Users.takeVector();
811 nullptr, StartV, StepV, PtrIV->
getDebugLoc(), Builder);
848 Def->getNumUsers() == 0 || !Def->getUnderlyingValue() ||
849 (RepR && (RepR->isSingleScalar() || RepR->isPredicated())))
857 Def->operands(),
true,
859 Clone->insertAfter(Def);
860 Def->replaceAllUsesWith(Clone);
871 PtrIV->replaceAllUsesWith(PtrAdd);
878 if (HasOnlyVectorVFs &&
none_of(WideIV->users(), [WideIV](
VPUser *U) {
879 return U->usesScalars(WideIV);
885 Plan,
ID.getKind(),
ID.getInductionOpcode(),
887 WideIV->getTruncInst(), WideIV->getStartValue(), WideIV->getStepValue(),
888 WideIV->getDebugLoc(), Builder);
891 if (!HasOnlyVectorVFs) {
893 "plans containing a scalar VF cannot also include scalable VFs");
894 WideIV->replaceAllUsesWith(Steps);
897 WideIV->replaceUsesWithIf(Steps,
898 [WideIV, HasScalableVF](
VPUser &U,
unsigned) {
900 return U.usesFirstLaneOnly(WideIV);
901 return U.usesScalars(WideIV);
917 return (IntOrFpIV && IntOrFpIV->getTruncInst()) ? nullptr : WideIV;
922 if (!Def || Def->getNumOperands() != 2)
930 auto IsWideIVInc = [&]() {
931 auto &
ID = WideIV->getInductionDescriptor();
934 VPValue *IVStep = WideIV->getStepValue();
935 switch (
ID.getInductionOpcode()) {
936 case Instruction::Add:
938 case Instruction::FAdd:
940 case Instruction::FSub:
943 case Instruction::Sub: {
963 return IsWideIVInc() ? WideIV :
nullptr;
983 if (WideIntOrFp && WideIntOrFp->getTruncInst())
996 FirstActiveLane =
B.createScalarZExtOrTrunc(FirstActiveLane, CanonicalIVType,
997 FirstActiveLaneType,
DL);
998 VPValue *EndValue =
B.createAdd(CanonicalIV, FirstActiveLane,
DL);
1005 EndValue =
B.createAdd(EndValue, One,
DL);
1008 if (!WideIntOrFp || !WideIntOrFp->isCanonical()) {
1010 VPIRValue *Start = WideIV->getStartValue();
1011 VPValue *Step = WideIV->getStepValue();
1012 EndValue =
B.createDerivedIV(
1014 Start, EndValue, Step);
1029 if (WideIntOrFp && WideIntOrFp->getTruncInst())
1036 if (!WideIntOrFp || !WideIntOrFp->isCanonical()) {
1039 Start, VectorTC, Step);
1068 assert(EndValue &&
"Must have computed the end value up front");
1084 auto *Zero = Plan.
getZero(StepTy);
1085 return B.createPtrAdd(EndValue,
B.createSub(Zero, Step),
1090 return B.createNaryOp(
1091 ID.getInductionBinOp()->getOpcode() == Instruction::FAdd
1093 : Instruction::FAdd,
1094 {EndValue, Step}, {ID.getInductionBinOp()->getFastMathFlags()});
1106 VPBuilder VectorPHBuilder(VectorPH, VectorPH->begin());
1115 WideIV, VectorPHBuilder, TypeInfo, ResumeTC))
1116 EndValues[WideIV] = EndValue;
1126 R.getVPSingleValue()->replaceAllUsesWith(EndValue);
1127 R.eraseFromParent();
1136 for (
auto [Idx, PredVPBB] :
enumerate(ExitVPBB->getPredecessors())) {
1138 if (PredVPBB == MiddleVPBB)
1140 ExitIRI->getOperand(Idx),
1144 Plan, TypeInfo, PredVPBB, ExitIRI->getOperand(Idx), PSE);
1146 ExitIRI->setOperand(Idx, Escape);
1163 const auto &[V, Inserted] = SCEV2VPV.
try_emplace(ExpR->getSCEV(), ExpR);
1166 ExpR->replaceAllUsesWith(V->second);
1167 ExpR->eraseFromParent();
1176 while (!WorkList.
empty()) {
1178 if (!Seen.
insert(Cur).second)
1186 R->eraseFromParent();
1193static std::optional<std::pair<bool, unsigned>>
1196 std::optional<std::pair<bool, unsigned>>>(R)
1199 [](
auto *
I) {
return std::make_pair(
false,
I->getOpcode()); })
1201 return std::make_pair(
true,
I->getVectorIntrinsicID());
1203 .Case<VPVectorPointerRecipe, VPPredInstPHIRecipe>([](
auto *
I) {
1207 return std::make_pair(
false,
1210 .
Default([](
auto *) {
return std::nullopt; });
1228 Value *V =
Op->getUnderlyingValue();
1234 auto FoldToIRValue = [&]() ->
Value * {
1236 if (OpcodeOrIID->first) {
1237 if (R.getNumOperands() != 2)
1239 unsigned ID = OpcodeOrIID->second;
1240 return Folder.FoldBinaryIntrinsic(
ID,
Ops[0],
Ops[1],
1243 unsigned Opcode = OpcodeOrIID->second;
1252 return Folder.FoldSelect(
Ops[0],
Ops[1],
1255 return Folder.FoldBinOp(Instruction::BinaryOps::Xor,
Ops[0],
1257 case Instruction::Select:
1258 return Folder.FoldSelect(
Ops[0],
Ops[1],
Ops[2]);
1259 case Instruction::ICmp:
1260 case Instruction::FCmp:
1263 case Instruction::GetElementPtr: {
1266 return Folder.FoldGEP(
GEP->getSourceElementType(),
Ops[0],
1276 case Instruction::ExtractElement:
1283 if (
Value *V = FoldToIRValue())
1284 return R.getParent()->getPlan()->getOrAddLiveIn(V);
1290 VPlan *Plan = Def->getParent()->getPlan();
1296 return Def->replaceAllUsesWith(V);
1302 PredPHI->replaceAllUsesWith(
Op);
1315 bool CanCreateNewRecipe =
1322 if (TruncTy == ATy) {
1323 Def->replaceAllUsesWith(
A);
1332 : Instruction::ZExt;
1335 if (
auto *UnderlyingExt = Def->getOperand(0)->getUnderlyingValue()) {
1337 Ext->setUnderlyingValue(UnderlyingExt);
1339 Def->replaceAllUsesWith(Ext);
1341 auto *Trunc = Builder.createWidenCast(Instruction::Trunc,
A, TruncTy);
1342 Def->replaceAllUsesWith(Trunc);
1350 for (
VPUser *U :
A->users()) {
1352 for (
VPValue *VPV : R->definedValues())
1366 Def->replaceAllUsesWith(
X);
1367 Def->eraseFromParent();
1373 return Def->replaceAllUsesWith(
1378 return Def->replaceAllUsesWith(
X);
1382 return Def->replaceAllUsesWith(
1387 return Def->replaceAllUsesWith(
1392 return Def->replaceAllUsesWith(
X);
1396 return Def->replaceAllUsesWith(Plan->
getFalse());
1400 return Def->replaceAllUsesWith(
X);
1403 if (CanCreateNewRecipe &&
1408 (!Def->getOperand(0)->hasMoreThanOneUniqueUser() ||
1409 !Def->getOperand(1)->hasMoreThanOneUniqueUser()))
1410 return Def->replaceAllUsesWith(
1411 Builder.createLogicalAnd(
X, Builder.createOr(
Y, Z)));
1416 return Def->replaceAllUsesWith(Def->getOperand(1));
1421 return Def->replaceAllUsesWith(Builder.createLogicalAnd(
X,
Y));
1425 return Def->replaceAllUsesWith(Plan->
getFalse());
1428 return Def->replaceAllUsesWith(
X);
1432 if (CanCreateNewRecipe &&
1434 return Def->replaceAllUsesWith(Builder.createNot(
C));
1438 Def->setOperand(0,
C);
1439 Def->setOperand(1,
Y);
1440 Def->setOperand(2,
X);
1445 return Def->replaceAllUsesWith(
A);
1448 return Def->replaceAllUsesWith(
A);
1451 return Def->replaceAllUsesWith(
1457 return Def->replaceAllUsesWith(Builder.createNaryOp(
1459 {A, Plan->getConstantInt(APC->getBitWidth(), APC->exactLogBase2())},
1464 const VPRegionBlock *ParentRegion = Def->getParent()->getParent();
1465 bool IsInReplicateRegion = ParentRegion && ParentRegion->
isReplicator();
1466 if (CanCreateNewRecipe && !IsInReplicateRegion &&
1468 return Def->replaceAllUsesWith(Builder.createNaryOp(
1470 {A, Plan->getConstantInt(APC->getBitWidth(), APC->exactLogBase2())},
1475 return Def->replaceAllUsesWith(
A);
1490 R->setOperand(1,
Y);
1491 R->setOperand(2,
X);
1495 R->replaceAllUsesWith(Cmp);
1500 if (!Cmp->getDebugLoc() && Def->getDebugLoc())
1501 Cmp->setDebugLoc(Def->getDebugLoc());
1513 if (
Op->getNumUsers() > 1 ||
1517 }
else if (!UnpairedCmp) {
1518 UnpairedCmp =
Op->getDefiningRecipe();
1522 UnpairedCmp =
nullptr;
1529 if (NewOps.
size() < Def->getNumOperands()) {
1531 return Def->replaceAllUsesWith(NewAnyOf);
1538 if (CanCreateNewRecipe &&
1544 return Def->replaceAllUsesWith(NewCmp);
1552 return Def->replaceAllUsesWith(Def->getOperand(1));
1558 X = Builder.createWidenCast(Instruction::Trunc,
X, WideStepTy);
1559 Def->replaceAllUsesWith(
X);
1569 Def->setOperand(1, Def->getOperand(0));
1570 Def->setOperand(0,
Y);
1575 if (Phi->getOperand(0) == Phi->getOperand(1))
1576 Phi->replaceAllUsesWith(Phi->getOperand(0));
1583 return Def->replaceAllUsesWith(Def->getOperand(0));
1589 Def->replaceAllUsesWith(
1590 BuildVector->getOperand(BuildVector->getNumOperands() - 1));
1594 return Def->replaceAllUsesWith(
A);
1600 Def->replaceAllUsesWith(
1601 BuildVector->getOperand(BuildVector->getNumOperands() - 2));
1608 Def->replaceAllUsesWith(BuildVector->getOperand(Idx));
1613 Def->replaceAllUsesWith(
1623 "broadcast operand must be single-scalar");
1624 Def->setOperand(0,
C);
1629 if (Def->getNumOperands() == 1)
1630 Def->replaceAllUsesWith(Def->getOperand(0));
1635 if (Def->getNumOperands() == 1 &&
1637 return Def->replaceAllUsesWith(IRV);
1650 return Def->replaceAllUsesWith(
A);
1653 Def->replaceAllUsesWith(Builder.createNaryOp(
1654 Instruction::ExtractElement, {A, LaneToExtract}, Def->getDebugLoc()));
1662 if (Phi->getOperand(1) != Def &&
match(Phi->getOperand(0),
m_ZeroInt()) &&
1663 Phi->getSingleUser() == Def) {
1664 Phi->setOperand(0,
Y);
1665 Def->replaceAllUsesWith(Phi);
1680 Steps->replaceAllUsesWith(Steps->getOperand(0));
1688 Def->replaceUsesWithIf(StartV, [](
const VPUser &U,
unsigned Idx) {
1690 return PhiR && PhiR->isInLoop();
1696 Def->replaceAllUsesWith(
A);
1705 [Def,
A](
VPUser *U) { return U->usesScalars(A) || Def == U; })) {
1706 return Def->replaceAllUsesWith(
A);
1710 return Def->replaceAllUsesWith(
A);
1737 while (!Worklist.
empty()) {
1746 R->replaceAllUsesWith(
1747 Builder.createLogicalAnd(HeaderMask, Builder.createLogicalAnd(
X,
Y)));
1766 if (RepR && (RepR->isSingleScalar() || RepR->isPredicated()))
1775 !WidenStoreR->isConsecutive()) {
1776 assert(!WidenStoreR->isReverse() &&
1777 "Not consecutive memory recipes shouldn't be reversed");
1778 VPValue *Mask = WidenStoreR->getMask();
1787 {WidenStoreR->getOperand(1)});
1792 &WidenStoreR->getIngredient(), {Extract, WidenStoreR->getAddr()},
1793 true ,
nullptr , {},
1795 ScalarStore->insertBefore(WidenStoreR);
1796 WidenStoreR->eraseFromParent();
1804 RepOrWidenR->getUnderlyingInstr(), RepOrWidenR->operands(),
1805 true ,
nullptr , *RepR ,
1806 *RepR , RepR->getDebugLoc());
1807 Clone->insertBefore(RepOrWidenR);
1809 VPValue *ExtractOp = Clone->getOperand(0);
1815 Clone->setOperand(0, ExtractOp);
1816 RepR->eraseFromParent();
1825 auto IntroducesBCastOf = [](
const VPValue *
Op) {
1834 return !U->usesScalars(
Op);
1838 if (
any_of(RepOrWidenR->users(), IntroducesBCastOf(RepOrWidenR)) &&
1841 make_filter_range(Op->users(), not_equal_to(RepOrWidenR)),
1842 IntroducesBCastOf(Op)))
1846 auto *IRV = dyn_cast<VPIRValue>(Op);
1847 bool LiveInNeedsBroadcast = IRV && !isa<Constant>(IRV->getValue());
1848 auto *OpR = dyn_cast<VPReplicateRecipe>(Op);
1849 return LiveInNeedsBroadcast || (OpR && OpR->isSingleScalar());
1854 RepOrWidenR->getUnderlyingInstr(), RepOrWidenR->operands(),
1855 true ,
nullptr, *RepOrWidenR);
1856 Clone->insertBefore(RepOrWidenR);
1857 RepOrWidenR->replaceAllUsesWith(Clone);
1859 RepOrWidenR->eraseFromParent();
1895 if (Blend->isNormalized() || !
match(Blend->getMask(0),
m_False()))
1896 UniqueValues.
insert(Blend->getIncomingValue(0));
1897 for (
unsigned I = 1;
I != Blend->getNumIncomingValues(); ++
I)
1899 UniqueValues.
insert(Blend->getIncomingValue(
I));
1901 if (UniqueValues.
size() == 1) {
1902 Blend->replaceAllUsesWith(*UniqueValues.
begin());
1903 Blend->eraseFromParent();
1907 if (Blend->isNormalized())
1913 unsigned StartIndex = 0;
1914 for (
unsigned I = 0;
I != Blend->getNumIncomingValues(); ++
I) {
1919 if (Mask->getNumUsers() == 1 && !
match(Mask,
m_False())) {
1926 OperandsWithMask.
push_back(Blend->getIncomingValue(StartIndex));
1928 for (
unsigned I = 0;
I != Blend->getNumIncomingValues(); ++
I) {
1929 if (
I == StartIndex)
1931 OperandsWithMask.
push_back(Blend->getIncomingValue(
I));
1932 OperandsWithMask.
push_back(Blend->getMask(
I));
1937 OperandsWithMask, *Blend, Blend->getDebugLoc());
1938 NewBlend->insertBefore(&R);
1940 VPValue *DeadMask = Blend->getMask(StartIndex);
1942 Blend->eraseFromParent();
1947 if (NewBlend->getNumOperands() == 3 &&
1949 VPValue *Inc0 = NewBlend->getOperand(0);
1950 VPValue *Inc1 = NewBlend->getOperand(1);
1951 VPValue *OldMask = NewBlend->getOperand(2);
1952 NewBlend->setOperand(0, Inc1);
1953 NewBlend->setOperand(1, Inc0);
1954 NewBlend->setOperand(2, NewMask);
1981 APInt MaxVal = AlignedTC - 1;
1984 unsigned NewBitWidth =
1990 bool MadeChange =
false;
1999 if (!WideIV || !WideIV->isCanonical() ||
2000 WideIV->hasMoreThanOneUniqueUser() ||
2001 NewIVTy == WideIV->getScalarType())
2006 VPUser *SingleUser = WideIV->getSingleUser();
2014 auto *NewStart = Plan.
getZero(NewIVTy);
2015 WideIV->setStartValue(NewStart);
2017 WideIV->setStepValue(NewStep);
2024 Cmp->setOperand(1, NewBTC);
2038 return any_of(
Cond->getDefiningRecipe()->operands(), [&Plan, BestVF, BestUF,
2040 return isConditionTrueViaVFAndUF(C, Plan, BestVF, BestUF, PSE);
2053 const SCEV *VectorTripCount =
2058 "Trip count SCEV must be computable");
2079 auto *Term = &ExitingVPBB->
back();
2092 for (
unsigned Part = 0; Part < UF; ++Part) {
2098 Extracts[Part] = Ext;
2110 match(Phi->getBackedgeValue(),
2112 assert(Index &&
"Expected index from ActiveLaneMask instruction");
2129 "Expected one VPActiveLaneMaskPHIRecipe for each unroll part");
2136 "Expected incoming values of Phi to be ActiveLaneMasks");
2141 EntryALM->setOperand(2, ALMMultiplier);
2142 LoopALM->setOperand(2, ALMMultiplier);
2146 ExtractFromALM(EntryALM, EntryExtracts);
2151 ExtractFromALM(LoopALM, LoopExtracts);
2153 Not->setOperand(0, LoopExtracts[0]);
2156 for (
unsigned Part = 0; Part < UF; ++Part) {
2157 Phis[Part]->setStartValue(EntryExtracts[Part]);
2158 Phis[Part]->setBackedgeValue(LoopExtracts[Part]);
2171 auto *Term = &ExitingVPBB->
back();
2180 const SCEV *VectorTripCount =
2186 "Trip count SCEV must be computable");
2211 if (auto *R = dyn_cast<VPWidenIntOrFpInductionRecipe>(&Phi))
2212 return R->isCanonical();
2213 return isa<VPCanonicalIVPHIRecipe, VPCurrentIterationPHIRecipe,
2214 VPFirstOrderRecurrencePHIRecipe, VPPhi>(&Phi);
2220 R->getScalarType());
2222 HeaderR.eraseFromParent();
2226 HeaderR.getVPSingleValue()->replaceAllUsesWith(Phi->getIncomingValue(0));
2227 HeaderR.eraseFromParent();
2237 B->setParent(
nullptr);
2246 if (Exits.
size() != 1) {
2248 "BranchOnTwoConds needs 2 remaining exits");
2250 Term->getOperand(0));
2259 Term->setOperand(1, Plan.
getTrue());
2264 {}, {}, Term->getDebugLoc());
2268 Term->eraseFromParent();
2303 R.getVPSingleValue()->replaceAllUsesWith(Trunc);
2313 assert(Plan.
hasVF(BestVF) &&
"BestVF is not available in Plan");
2314 assert(Plan.
hasUF(BestUF) &&
"BestUF is not available in Plan");
2343 auto TryToPushSinkCandidate = [&](
VPRecipeBase *SinkCandidate) {
2346 if (SinkCandidate == Previous)
2350 !Seen.
insert(SinkCandidate).second ||
2363 for (
unsigned I = 0;
I != WorkList.
size(); ++
I) {
2366 "only recipes with a single defined value expected");
2381 if (SinkCandidate == FOR)
2384 SinkCandidate->moveAfter(Previous);
2385 Previous = SinkCandidate;
2409 [&VPDT, HoistPoint](
VPUser *U) {
2410 auto *R = cast<VPRecipeBase>(U);
2411 return HoistPoint == R ||
2412 VPDT.properlyDominates(HoistPoint, R);
2414 "HoistPoint must dominate all users of FOR");
2416 auto NeedsHoisting = [HoistPoint, &VPDT,
2418 VPRecipeBase *HoistCandidate = HoistCandidateV->getDefiningRecipe();
2419 if (!HoistCandidate)
2424 HoistCandidate->
getRegion() == EnclosingLoopRegion) &&
2425 "CFG in VPlan should still be flat, without replicate regions");
2427 if (!Visited.
insert(HoistCandidate).second)
2439 return HoistCandidate;
2448 for (
unsigned I = 0;
I != HoistCandidates.
size(); ++
I) {
2451 "only recipes with a single defined value expected");
2463 if (
auto *R = NeedsHoisting(
Op)) {
2466 if (R->getNumDefinedValues() != 1)
2480 HoistCandidate->moveBefore(*HoistPoint->
getParent(),
2500 VPRecipeBase *Previous = FOR->getBackedgeValue()->getDefiningRecipe();
2503 while (
auto *PrevPhi =
2505 assert(PrevPhi->getParent() == FOR->getParent());
2507 Previous = PrevPhi->getBackedgeValue()->getDefiningRecipe();
2526 {FOR, FOR->getBackedgeValue()});
2531 RecurSplice->setOperand(0, FOR);
2537 for (
VPUser *U : RecurSplice->users()) {
2547 VPValue *PenultimateIndex =
B.createSub(LastActiveLane, One);
2548 VPValue *PenultimateLastIter =
2550 {PenultimateIndex, FOR->getBackedgeValue()});
2555 VPValue *Sel =
B.createSelect(Cmp, LastPrevIter, PenultimateLastIter);
2568 RecurKind RK = PhiR->getRecurrenceKind();
2575 RecWithFlags->dropPoisonGeneratingFlags();
2581struct VPCSEDenseMapInfo :
public DenseMapInfo<VPSingleDefRecipe *> {
2583 return Def == getEmptyKey() || Def == getTombstoneKey();
2594 return GEP->getSourceElementType();
2597 .Case<VPVectorPointerRecipe, VPWidenGEPRecipe>(
2598 [](
auto *
I) {
return I->getSourceElementType(); })
2599 .
Default([](
auto *) {
return nullptr; });
2603 static bool canHandle(
const VPSingleDefRecipe *Def) {
2612 if (!
C || (!
C->first && (
C->second == Instruction::InsertValue ||
2613 C->second == Instruction::ExtractValue)))
2619 return !
Def->mayReadFromMemory();
2623 static unsigned getHashValue(
const VPSingleDefRecipe *Def) {
2624 const VPlan *Plan =
Def->getParent()->getPlan();
2625 VPTypeAnalysis TypeInfo(*Plan);
2628 getGEPSourceElementType(Def), TypeInfo.inferScalarType(Def),
2631 if (RFlags->hasPredicate())
2637 static bool isEqual(
const VPSingleDefRecipe *L,
const VPSingleDefRecipe *R) {
2640 if (
L->getVPRecipeID() !=
R->getVPRecipeID() ||
2642 getGEPSourceElementType(L) != getGEPSourceElementType(R) ||
2644 !
equal(
L->operands(),
R->operands()))
2647 "must have valid opcode info for both recipes");
2649 if (LFlags->hasPredicate() &&
2650 LFlags->getPredicate() !=
2656 const VPRegionBlock *RegionL =
L->getRegion();
2657 const VPRegionBlock *RegionR =
R->getRegion();
2660 L->getParent() !=
R->getParent())
2662 const VPlan *Plan =
L->getParent()->getPlan();
2663 VPTypeAnalysis TypeInfo(*Plan);
2664 return TypeInfo.inferScalarType(L) == TypeInfo.inferScalarType(R);
2679 if (!Def || !VPCSEDenseMapInfo::canHandle(Def))
2683 if (!VPDT.
dominates(V->getParent(), VPBB))
2688 Def->replaceAllUsesWith(V);
2707 "Expected vector prehader's successor to be the vector loop region");
2714 return !Op->isDefinedOutsideLoopRegions();
2717 R.moveBefore(*Preheader, Preheader->
end());
2744 if (Def->getNumUsers() == 0)
2753 auto *UserR = cast<VPRecipeBase>(U);
2754 VPBasicBlock *Parent = UserR->getParent();
2757 if (UserR->isPhi() || Parent->getEnclosingLoopRegion())
2760 if (SinkBB && SinkBB != Parent)
2774 "Defining block must dominate sink block");
2800 VPValue *ResultVPV = R.getVPSingleValue();
2802 unsigned NewResSizeInBits = MinBWs.
lookup(UI);
2803 if (!NewResSizeInBits)
2816 (void)OldResSizeInBits;
2824 VPW->dropPoisonGeneratingFlags();
2826 if (OldResSizeInBits != NewResSizeInBits &&
2830 Instruction::ZExt, ResultVPV, OldResTy,
nullptr,
2832 Ext->insertAfter(&R);
2834 Ext->setOperand(0, ResultVPV);
2835 assert(OldResSizeInBits > NewResSizeInBits &&
"Nothing to shrink?");
2838 "Only ICmps should not need extending the result.");
2848 for (
unsigned Idx = StartIdx; Idx != R.getNumOperands(); ++Idx) {
2849 auto *
Op = R.getOperand(Idx);
2850 unsigned OpSizeInBits =
2852 if (OpSizeInBits == NewResSizeInBits)
2854 assert(OpSizeInBits > NewResSizeInBits &&
"nothing to truncate");
2855 auto [ProcessedIter, IterIsEmpty] = ProcessedTruncs.
try_emplace(
Op);
2857 R.setOperand(Idx, ProcessedIter->second);
2865 Builder.setInsertPoint(&R);
2867 Builder.createWidenCast(Instruction::Trunc,
Op, NewResTy);
2868 ProcessedIter->second = NewOp;
2869 R.setOperand(Idx, NewOp);
2884 assert(VPBB->getNumSuccessors() == 2 &&
2885 "Two successors expected for BranchOnCond");
2886 unsigned RemovedIdx;
2897 "There must be a single edge between VPBB and its successor");
2906 VPBB->back().eraseFromParent();
2960 VPValue *StartV = CanonicalIVPHI->getStartValue();
2962 auto *CanonicalIVIncrement =
2965 CanonicalIVIncrement->dropPoisonGeneratingFlags();
2966 DebugLoc DL = CanonicalIVIncrement->getDebugLoc();
2977 auto *EntryIncrement = Builder.createOverflowingOp(
2979 DL,
"index.part.next");
2985 {EntryIncrement, TC, ALMMultiplier},
DL,
2986 "active.lane.mask.entry");
2992 LaneMaskPhi->insertAfter(CanonicalIVPHI);
2997 Builder.setInsertPoint(OriginalTerminator);
2998 auto *InLoopIncrement = Builder.createOverflowingOp(
3000 {CanonicalIVIncrement, &Plan.
getVF()}, {
false,
false},
DL);
3002 {InLoopIncrement, TC, ALMMultiplier},
DL,
3003 "active.lane.mask.next");
3008 auto *NotMask = Builder.createNot(ALM,
DL);
3015 bool UseActiveLaneMaskForControlFlow) {
3017 auto *FoundWidenCanonicalIVUser =
find_if(
3019 assert(FoundWidenCanonicalIVUser &&
3020 "Must have widened canonical IV when tail folding!");
3022 auto *WideCanonicalIV =
3025 if (UseActiveLaneMaskForControlFlow) {
3034 nullptr,
"active.lane.mask");
3050 template <
typename OpTy>
bool match(OpTy *V)
const {
3061template <
typename Op0_t,
typename Op1_t>
3080 VPValue *Addr, *Mask, *EndPtr;
3083 auto AdjustEndPtr = [&CurRecipe, &EVL](
VPValue *EndPtr) {
3085 EVLEndPtr->insertBefore(&CurRecipe);
3086 EVLEndPtr->setOperand(1, &EVL);
3090 if (
match(&CurRecipe,
3104 LoadR->insertBefore(&CurRecipe);
3106 Intrinsic::experimental_vp_reverse, {LoadR, Plan->
getTrue(), &EVL},
3115 StoredVal, EVL, Mask);
3117 if (
match(&CurRecipe,
3123 Intrinsic::experimental_vp_reverse,
3124 {ReversedVal, Plan->
getTrue(), &EVL},
3128 AdjustEndPtr(EndPtr), NewReverse, EVL,
3133 if (Rdx->isConditional() &&
3138 if (Interleave->getMask() &&
3143 if (
match(&CurRecipe,
3152 Intrinsic::vp_merge, {Mask,
LHS,
RHS, &EVL},
3172 VPValue *HeaderMask =
nullptr, *EVL =
nullptr;
3177 HeaderMask = R.getVPSingleValue();
3189 NewR->insertBefore(R);
3190 for (
auto [Old, New] :
3191 zip_equal(R->definedValues(), NewR->definedValues()))
3192 Old->replaceAllUsesWith(New);
3199 R->eraseFromParent();
3216 "User of VF that we can't transform to EVL.");
3222 [&LoopRegion, &Plan](
VPUser *U) {
3224 m_c_Add(m_Specific(LoopRegion->getCanonicalIV()),
3225 m_Specific(&Plan.getVFxUF()))) ||
3226 isa<VPWidenPointerInductionRecipe>(U);
3228 "Only users of VFxUF should be VPWidenPointerInductionRecipe and the "
3229 "increment of the canonical induction.");
3245 MaxEVL = Builder.createScalarZExtOrTrunc(
3249 Builder.setInsertPoint(Header, Header->getFirstNonPhi());
3250 VPValue *PrevEVL = Builder.createScalarPhi(
3264 Intrinsic::experimental_vp_splice,
3265 {V1, V2, Imm, Plan.
getTrue(), PrevEVL, &EVL},
3269 R.getVPSingleValue()->replaceAllUsesWith(VPSplice);
3286 VPValue *EVLMask = Builder.createICmp(
3347 VPlan &Plan,
const std::optional<unsigned> &MaxSafeElements) {
3355 VPValue *StartV = CanonicalIVPHI->getStartValue();
3358 auto *CurrentIteration =
3360 CurrentIteration->insertAfter(CanonicalIVPHI);
3361 VPBuilder Builder(Header, Header->getFirstNonPhi());
3364 VPPhi *AVLPhi = Builder.createScalarPhi(
3368 if (MaxSafeElements) {
3378 auto *CanonicalIVIncrement =
3380 Builder.setInsertPoint(CanonicalIVIncrement);
3384 OpVPEVL = Builder.createScalarZExtOrTrunc(
3385 OpVPEVL, CanIVTy, I32Ty, CanonicalIVIncrement->getDebugLoc());
3387 auto *NextIter = Builder.createAdd(OpVPEVL, CurrentIteration,
3388 CanonicalIVIncrement->getDebugLoc(),
3389 "current.iteration.next",
3390 {CanonicalIVIncrement->hasNoUnsignedWrap(),
3391 CanonicalIVIncrement->hasNoSignedWrap()});
3392 CurrentIteration->addOperand(NextIter);
3396 "avl.next", {
true,
false});
3404 CanonicalIVPHI->replaceAllUsesWith(CurrentIteration);
3405 CanonicalIVIncrement->setOperand(0, CanonicalIVPHI);
3419 assert(!CurrentIteration &&
3420 "Found multiple CurrentIteration. Only one expected");
3421 CurrentIteration = PhiR;
3425 if (!CurrentIteration)
3436 CurrentIteration->
getDebugLoc(),
"current.iteration.iv");
3442 VPValue *Backedge = CanonicalIV->getIncomingValue(1);
3445 "Unexpected canonical iv");
3451 CanonicalIV->eraseFromParent();
3471 if (!
match(EVLPhi->getBackedgeValue(),
3481 [[maybe_unused]]
bool FoundAVLNext =
3484 assert(FoundAVLNext &&
"Didn't find AVL backedge?");
3496 "Expected BranchOnCond with ICmp comparing CanIV increment with vector "
3501 LatchBr->setOperand(
3512 return R->getRegion() ||
3516 for (
const SCEV *Stride : StridesMap.
values()) {
3519 const APInt *StrideConst;
3542 RewriteMap[StrideV] = PSE.
getSCEV(StrideV);
3549 const SCEV *ScevExpr = ExpSCEV->getSCEV();
3552 if (NewSCEV != ScevExpr) {
3554 ExpSCEV->replaceAllUsesWith(NewExp);
3563 const std::function<
bool(
BasicBlock *)> &BlockNeedsPredication) {
3567 auto CollectPoisonGeneratingInstrsInBackwardSlice([&](
VPRecipeBase *Root) {
3572 while (!Worklist.
empty()) {
3575 if (!Visited.
insert(CurRec).second)
3597 RecWithFlags->isDisjoint()) {
3600 Builder.createAdd(
A,
B, RecWithFlags->getDebugLoc());
3601 New->setUnderlyingValue(RecWithFlags->getUnderlyingValue());
3602 RecWithFlags->replaceAllUsesWith(New);
3603 RecWithFlags->eraseFromParent();
3606 RecWithFlags->dropPoisonGeneratingFlags();
3611 assert((!Instr || !Instr->hasPoisonGeneratingFlags()) &&
3612 "found instruction with poison generating flags not covered by "
3613 "VPRecipeWithIRFlags");
3618 if (
VPRecipeBase *OpDef = Operand->getDefiningRecipe())
3630 Instruction &UnderlyingInstr = WidenRec->getIngredient();
3631 VPRecipeBase *AddrDef = WidenRec->getAddr()->getDefiningRecipe();
3632 if (AddrDef && WidenRec->isConsecutive() &&
3633 BlockNeedsPredication(UnderlyingInstr.
getParent()))
3634 CollectPoisonGeneratingInstrsInBackwardSlice(AddrDef);
3636 VPRecipeBase *AddrDef = InterleaveRec->getAddr()->getDefiningRecipe();
3640 InterleaveRec->getInterleaveGroup();
3641 bool NeedPredication =
false;
3643 I < NumMembers; ++
I) {
3646 NeedPredication |= BlockNeedsPredication(Member->getParent());
3649 if (NeedPredication)
3650 CollectPoisonGeneratingInstrsInBackwardSlice(AddrDef);
3662 if (InterleaveGroups.empty())
3669 for (
const auto *IG : InterleaveGroups) {
3675 StoredValues.
push_back(StoreR->getStoredValue());
3676 for (
unsigned I = 1;
I < IG->getFactor(); ++
I) {
3683 StoredValues.
push_back(StoreR->getStoredValue());
3687 bool NeedsMaskForGaps =
3688 (IG->requiresScalarEpilogue() && !ScalarEpilogueAllowed) ||
3689 (!StoredValues.
empty() && !IG->isFull());
3701 VPValue *Addr = Start->getAddr();
3710 assert(IG->getIndex(IRInsertPos) != 0 &&
3711 "index of insert position shouldn't be zero");
3715 IG->getIndex(IRInsertPos),
3719 Addr =
B.createNoWrapPtrAdd(InsertPos->getAddr(), OffsetVPV, NW);
3725 if (IG->isReverse()) {
3728 -(int64_t)IG->getFactor(), NW, InsertPos->getDebugLoc());
3729 ReversePtr->insertBefore(InsertPos);
3733 InsertPos->getMask(), NeedsMaskForGaps,
3734 InterleaveMD, InsertPos->getDebugLoc());
3735 VPIG->insertBefore(InsertPos);
3738 for (
unsigned i = 0; i < IG->getFactor(); ++i)
3741 if (!Member->getType()->isVoidTy()) {
3800 AddOp = Instruction::Add;
3801 MulOp = Instruction::Mul;
3803 AddOp =
ID.getInductionOpcode();
3804 MulOp = Instruction::FMul;
3812 Step = Builder.createScalarCast(Instruction::Trunc, Step, Ty,
DL);
3813 Start = Builder.createScalarCast(Instruction::Trunc, Start, Ty,
DL);
3815 Flags.dropPoisonGeneratingFlags();
3824 Init = Builder.createWidenCast(Instruction::UIToFP,
Init, StepTy);
3829 Init = Builder.createNaryOp(MulOp, {
Init, SplatStep}, Flags);
3830 Init = Builder.createNaryOp(AddOp, {SplatStart,
Init}, Flags,
3836 WidePHI->insertBefore(WidenIVR);
3847 Builder.setInsertPoint(R->getParent(), std::next(R->getIterator()));
3851 VF = Builder.createScalarCast(Instruction::CastOps::UIToFP, VF, StepTy,
3854 VF = Builder.createScalarZExtOrTrunc(VF, StepTy,
3857 Inc = Builder.createNaryOp(MulOp, {Step, VF}, Flags);
3864 auto *
Next = Builder.createNaryOp(AddOp, {Prev, Inc}, Flags,
3867 WidePHI->addOperand(
Next);
3895 VPlan *Plan = R->getParent()->getPlan();
3896 VPValue *Start = R->getStartValue();
3897 VPValue *Step = R->getStepValue();
3898 VPValue *VF = R->getVFValue();
3900 assert(R->getInductionDescriptor().getKind() ==
3902 "Not a pointer induction according to InductionDescriptor!");
3905 "Recipe should have been replaced");
3911 VPPhi *ScalarPtrPhi = Builder.createScalarPhi(Start,
DL,
"pointer.phi");
3915 Builder.setInsertPoint(R->getParent(), R->getParent()->getFirstNonPhi());
3918 Offset = Builder.createOverflowingOp(Instruction::Mul, {
Offset, Step});
3920 Builder.createWidePtrAdd(ScalarPtrPhi,
Offset,
DL,
"vector.gep");
3921 R->replaceAllUsesWith(PtrAdd);
3926 VF = Builder.createScalarZExtOrTrunc(VF, StepTy, TypeInfo.
inferScalarType(VF),
3928 VPValue *Inc = Builder.createOverflowingOp(Instruction::Mul, {Step, VF});
3931 Builder.createPtrAdd(ScalarPtrPhi, Inc,
DL,
"ptr.ind");
3940 if (!R->isReplicator())
3944 R->dissolveToCFGLoop();
3965 assert(Br->getNumOperands() == 2 &&
3966 "BranchOnTwoConds must have exactly 2 conditions");
3970 assert(Successors.size() == 3 &&
3971 "BranchOnTwoConds must have exactly 3 successors");
3976 VPValue *Cond0 = Br->getOperand(0);
3977 VPValue *Cond1 = Br->getOperand(1);
3982 !BrOnTwoCondsBB->
getParent() &&
"regions must already be dissolved");
3995 Br->eraseFromParent();
4018 WidenIVR->replaceAllUsesWith(PtrAdd);
4031 for (
unsigned I = 1;
I != Blend->getNumIncomingValues(); ++
I)
4032 Select = Builder.createSelect(Blend->getMask(
I),
4033 Blend->getIncomingValue(
I),
Select,
4034 R.getDebugLoc(),
"predphi", *Blend);
4035 Blend->replaceAllUsesWith(
Select);
4040 if (!VEPR->getOffset()) {
4042 "Expected unroller to have materialized offset for UF != 1");
4043 VEPR->materializeOffset();
4058 for (
VPValue *
Op : LastActiveL->operands()) {
4059 VPValue *NotMask = Builder.createNot(
Op, LastActiveL->getDebugLoc());
4064 VPValue *FirstInactiveLane = Builder.createNaryOp(
4066 LastActiveL->getDebugLoc(),
"first.inactive.lane");
4072 Builder.createSub(FirstInactiveLane, One,
4073 LastActiveL->getDebugLoc(),
"last.active.lane");
4083 assert(VPI->isMasked() &&
4084 "Unmasked MaskedCond should be simplified earlier");
4085 VPI->replaceAllUsesWith(Builder.createNaryOp(
4095 DebugLoc DL = BranchOnCountInst->getDebugLoc();
4098 ToRemove.push_back(BranchOnCountInst);
4113 ? Instruction::UIToFP
4114 : Instruction::Trunc;
4115 VectorStep = Builder.createWidenCast(CastOp, VectorStep, IVTy);
4121 Builder.createWidenCast(Instruction::Trunc, ScalarStep, IVTy);
4127 MulOpc = Instruction::FMul;
4128 Flags = VPI->getFastMathFlags();
4130 MulOpc = Instruction::Mul;
4135 MulOpc, {VectorStep, ScalarStep}, Flags, R.getDebugLoc());
4137 VPI->replaceAllUsesWith(VectorStep);
4143 R->eraseFromParent();
4150 struct EarlyExitInfo {
4161 if (Pred == MiddleVPBB)
4166 VPValue *CondOfEarlyExitingVPBB;
4167 [[maybe_unused]]
bool Matched =
4168 match(EarlyExitingVPBB->getTerminator(),
4170 assert(Matched &&
"Terminator must be BranchOnCond");
4174 VPBuilder EarlyExitingBuilder(EarlyExitingVPBB->getTerminator());
4175 auto *CondToEarlyExit = EarlyExitingBuilder.
createNaryOp(
4177 TrueSucc == ExitBlock
4178 ? CondOfEarlyExitingVPBB
4179 : EarlyExitingBuilder.
createNot(CondOfEarlyExitingVPBB));
4185 "exit condition must dominate the latch");
4194 assert(!Exits.
empty() &&
"must have at least one early exit");
4201 for (
const auto &[Num, VPB] :
enumerate(RPOT))
4203 llvm::sort(Exits, [&RPOIdx](
const EarlyExitInfo &
A,
const EarlyExitInfo &
B) {
4204 return RPOIdx[
A.EarlyExitingVPBB] < RPOIdx[
B.EarlyExitingVPBB];
4210 for (
unsigned I = 0;
I + 1 < Exits.
size(); ++
I)
4211 for (
unsigned J =
I + 1; J < Exits.
size(); ++J)
4213 Exits[
I].EarlyExitingVPBB) &&
4214 "RPO sort must place dominating exits before dominated ones");
4220 VPValue *Combined = Exits[0].CondToExit;
4221 for (
const EarlyExitInfo &Info :
drop_begin(Exits))
4222 Combined = Builder.createLogicalOr(Combined, Info.CondToExit);
4229 for (
unsigned Idx = 0; Idx != Exits.
size(); ++Idx) {
4233 VectorEarlyExitVPBBs[Idx] = VectorEarlyExitVPBB;
4241 Exits.
size() == 1 ? VectorEarlyExitVPBBs[0]
4275 for (
auto [Exit, VectorEarlyExitVPBB] :
4276 zip_equal(Exits, VectorEarlyExitVPBBs)) {
4277 auto &[EarlyExitingVPBB, EarlyExitVPBB,
_] = Exit;
4289 ExitIRI->getIncomingValueForBlock(EarlyExitingVPBB);
4290 VPValue *NewIncoming = IncomingVal;
4292 VPBuilder EarlyExitBuilder(VectorEarlyExitVPBB);
4297 ExitIRI->removeIncomingValueFor(EarlyExitingVPBB);
4298 ExitIRI->addOperand(NewIncoming);
4301 EarlyExitingVPBB->getTerminator()->eraseFromParent();
4335 bool IsLastDispatch = (
I + 2 == Exits.
size());
4337 IsLastDispatch ? VectorEarlyExitVPBBs.
back()
4343 VectorEarlyExitVPBBs[
I]->setPredecessors({CurrentBB});
4346 CurrentBB = FalseBB;
4353 "Unexpected terminator");
4354 auto *IsLatchExitTaken =
4356 LatchExitingBranch->getOperand(1));
4358 DebugLoc LatchDL = LatchExitingBranch->getDebugLoc();
4359 LatchExitingBranch->eraseFromParent();
4360 Builder.setInsertPoint(LatchVPBB);
4362 {IsAnyExitTaken, IsLatchExitTaken}, LatchDL);
4364 LatchVPBB->
setSuccessors({DispatchVPBB, MiddleVPBB, HeaderVPBB});
4375 Type *RedTy = Ctx.Types.inferScalarType(Red);
4376 VPValue *VecOp = Red->getVecOp();
4379 auto IsExtendedRedValidAndClampRange =
4391 if (Red->isPartialReduction()) {
4396 ExtRedCost = Ctx.TTI.getPartialReductionCost(
4397 Opcode, SrcTy,
nullptr, RedTy, VF, ExtKind,
4400 ? std::optional{Red->getFastMathFlags()}
4404 ExtRedCost = Ctx.TTI.getExtendedReductionCost(
4405 Opcode, ExtOpc == Instruction::CastOps::ZExt, RedTy, SrcVecTy,
4406 Red->getFastMathFlags(),
CostKind);
4408 return ExtRedCost.
isValid() && ExtRedCost < ExtCost + RedCost;
4418 IsExtendedRedValidAndClampRange(
4421 Ctx.Types.inferScalarType(
A)))
4440 if (Opcode != Instruction::Add && Opcode != Instruction::Sub &&
4441 Opcode != Instruction::FAdd)
4444 Type *RedTy = Ctx.Types.inferScalarType(Red);
4447 auto IsMulAccValidAndClampRange =
4454 Ext0 ? Ctx.Types.inferScalarType(Ext0->getOperand(0)) : RedTy;
4457 if (Red->isPartialReduction()) {
4459 Ext1 ? Ctx.Types.inferScalarType(Ext1->getOperand(0)) :
nullptr;
4462 MulAccCost = Ctx.TTI.getPartialReductionCost(
4463 Opcode, SrcTy, SrcTy2, RedTy, VF,
4472 ? std::optional{Red->getFastMathFlags()}
4478 (Ext0->getOpcode() != Ext1->getOpcode() ||
4479 Ext0->getOpcode() == Instruction::CastOps::FPExt))
4483 !Ext0 || Ext0->getOpcode() == Instruction::CastOps::ZExt;
4485 MulAccCost = Ctx.TTI.getMulAccReductionCost(IsZExt, Opcode, RedTy,
4493 ExtCost += Ext0->computeCost(VF, Ctx);
4495 ExtCost += Ext1->computeCost(VF, Ctx);
4497 ExtCost += OuterExt->computeCost(VF, Ctx);
4499 return MulAccCost.
isValid() &&
4500 MulAccCost < ExtCost + MulCost + RedCost;
4505 VPValue *VecOp = Red->getVecOp();
4512 assert(Opcode == Instruction::FAdd &&
4513 "MulAccumulateReduction from an FMul must accumulate into an FAdd "
4522 if (RecipeA && RecipeB &&
4523 IsMulAccValidAndClampRange(
FMul, RecipeA, RecipeB,
nullptr)) {
4545 if (!ExtA || ExtB || !
isa<VPIRValue>(ValB) || Red->isPartialReduction())
4547 Type *NarrowTy = Ctx.Types.inferScalarType(ExtA->getOperand(0));
4561 Builder.createWidenCast(Instruction::CastOps::Trunc, ValB, NarrowTy);
4562 Type *WideTy = Ctx.Types.inferScalarType(ExtA);
4563 ValB = ExtB = Builder.createWidenCast(ExtOpc, Trunc, WideTy);
4564 Mul->setOperand(1, ExtB);
4574 ExtendAndReplaceConstantOp(RecipeA, RecipeB,
B,
Mul);
4579 IsMulAccValidAndClampRange(
Mul, RecipeA, RecipeB,
nullptr)) {
4586 if (!
Sub && IsMulAccValidAndClampRange(
Mul,
nullptr,
nullptr,
nullptr))
4595 if (!Red->isPartialReduction() &&
4604 ExtendAndReplaceConstantOp(Ext0, Ext1,
B,
Mul);
4613 (Ext->getOpcode() == Ext0->getOpcode() || Ext0 == Ext1) &&
4614 Ext0->getOpcode() == Ext1->getOpcode() &&
4615 IsMulAccValidAndClampRange(
Mul, Ext0, Ext1, Ext) &&
Mul->hasOneUse()) {
4617 Ext0->getOpcode(), Ext0->getOperand(0), Ext->getResultType(),
nullptr,
4618 *Ext0, *Ext0, Ext0->getDebugLoc());
4619 NewExt0->insertBefore(Ext0);
4624 Ext->getResultType(),
nullptr, *Ext1,
4625 *Ext1, Ext1->getDebugLoc());
4628 Mul->setOperand(0, NewExt0);
4629 Mul->setOperand(1, NewExt1);
4630 Red->setOperand(1,
Mul);
4643 auto IP = std::next(Red->getIterator());
4644 auto *VPBB = Red->getParent();
4654 Red->replaceAllUsesWith(AbstractR);
4684 for (
VPValue *VPV : VPValues) {
4693 if (
User->usesScalars(VPV))
4696 HoistPoint = HoistBlock->
begin();
4700 "All users must be in the vector preheader or dominated by it");
4705 VPV->replaceUsesWithIf(Broadcast,
4706 [VPV, Broadcast](
VPUser &U,
unsigned Idx) {
4707 return Broadcast != &U && !U.usesScalars(VPV);
4724 if (RepR->isPredicated() || !RepR->isSingleScalar() ||
4725 RepR->getOpcode() != Instruction::Load)
4728 VPValue *Addr = RepR->getOperand(0);
4731 if (!
Loc.AATags.Scope)
4736 if (R.mayWriteToMemory()) {
4738 if (!
Loc || !
Loc->AATags.Scope || !
Loc->AATags.NoAlias)
4746 for (
auto &[LoadRecipe, LoadLoc] : CandidateLoads) {
4750 const AAMDNodes &LoadAA = LoadLoc.AATags;
4766 return CommonMetadata;
4769template <
unsigned Opcode>
4774 static_assert(Opcode == Instruction::Load || Opcode == Instruction::Store,
4775 "Only Load and Store opcodes supported");
4776 constexpr bool IsLoad = (Opcode == Instruction::Load);
4782 return TypeInfo.
inferScalarType(IsLoad ? Recipe : Recipe->getOperand(0));
4787 for (
auto Recipes :
Groups) {
4788 if (Recipes.size() < 2)
4796 VPValue *MaskI = RecipeI->getMask();
4797 Type *TypeI = GetLoadStoreValueType(RecipeI);
4803 bool HasComplementaryMask =
false;
4808 VPValue *MaskJ = RecipeJ->getMask();
4809 Type *TypeJ = GetLoadStoreValueType(RecipeJ);
4810 if (TypeI == TypeJ) {
4820 if (HasComplementaryMask) {
4821 assert(Group.
size() >= 2 &&
"must have at least 2 entries");
4831template <
typename InstType>
4849 for (
auto &Group :
Groups) {
4869 return R->isSingleScalar() == IsSingleScalar;
4871 "all members in group must agree on IsSingleScalar");
4876 LoadWithMinAlign->getUnderlyingInstr(), {EarliestLoad->getOperand(0)},
4877 IsSingleScalar,
nullptr, *EarliestLoad, CommonMetadata);
4879 UnpredicatedLoad->insertBefore(EarliestLoad);
4883 Load->replaceAllUsesWith(UnpredicatedLoad);
4884 Load->eraseFromParent();
4894 if (!StoreLoc || !StoreLoc->AATags.Scope)
4900 StoresToSink.
end());
4904 SinkStoreInfo SinkInfo(StoresToSinkSet, *StoresToSink[0], PSE, L, TypeInfo);
4918 for (
auto &Group :
Groups) {
4931 VPValue *SelectedValue = Group[0]->getOperand(0);
4934 bool IsSingleScalar = Group[0]->isSingleScalar();
4935 for (
unsigned I = 1;
I < Group.size(); ++
I) {
4936 assert(IsSingleScalar == Group[
I]->isSingleScalar() &&
4937 "all members in group must agree on IsSingleScalar");
4938 VPValue *Mask = Group[
I]->getMask();
4940 SelectedValue = Builder.createSelect(Mask,
Value, SelectedValue,
4949 StoreWithMinAlign->getUnderlyingInstr(),
4950 {SelectedValue, LastStore->getOperand(1)}, IsSingleScalar,
4951 nullptr, *LastStore, CommonMetadata);
4952 UnpredicatedStore->insertBefore(*InsertBB, LastStore->
getIterator());
4956 Store->eraseFromParent();
4963 assert(Plan.
hasVF(BestVF) &&
"BestVF is not available in Plan");
4964 assert(Plan.
hasUF(BestUF) &&
"BestUF is not available in Plan");
5029 auto UsesVectorOrInsideReplicateRegion = [DefR, LoopRegion](
VPUser *U) {
5031 return !U->usesScalars(DefR) || ParentRegion != LoopRegion;
5038 none_of(DefR->users(), UsesVectorOrInsideReplicateRegion))
5048 DefR->replaceUsesWithIf(
5049 BuildVector, [BuildVector, &UsesVectorOrInsideReplicateRegion](
5051 return &U != BuildVector && UsesVectorOrInsideReplicateRegion(&U);
5065 for (
VPValue *Def : R.definedValues()) {
5078 auto IsCandidateUnpackUser = [Def](
VPUser *U) {
5080 return U->usesScalars(Def) &&
5083 if (
none_of(Def->users(), IsCandidateUnpackUser))
5090 Unpack->insertAfter(&R);
5091 Def->replaceUsesWithIf(Unpack,
5092 [&IsCandidateUnpackUser](
VPUser &U,
unsigned) {
5093 return IsCandidateUnpackUser(&U);
5103 bool RequiresScalarEpilogue,
5115 assert(StepR->getParent() == VectorPHVPBB &&
5116 "Step must be defined in VectorPHVPBB");
5118 InsertPt = std::next(StepR->getIterator());
5120 VPBuilder Builder(VectorPHVPBB, InsertPt);
5128 if (TailByMasking) {
5129 TC = Builder.createAdd(
5140 Builder.createNaryOp(Instruction::URem, {TC, Step},
5149 if (RequiresScalarEpilogue) {
5151 "requiring scalar epilogue is not supported with fail folding");
5154 R = Builder.createSelect(IsZero, Step, R);
5168 "VF and VFxUF must be materialized together");
5180 Builder.createElementCount(TCTy, VFEC * Plan.
getConcreteUF());
5187 VPValue *RuntimeVF = Builder.createElementCount(TCTy, VFEC);
5191 BC, [&VF](
VPUser &U,
unsigned) {
return !U.usesScalars(&VF); });
5195 VPValue *MulByUF = Builder.createOverflowingOp(
5207 BasicBlock *EntryBB = Entry->getIRBasicBlock();
5215 const SCEV *Expr = ExpSCEV->getSCEV();
5218 ExpandedSCEVs[ExpSCEV->getSCEV()] = Res;
5223 ExpSCEV->eraseFromParent();
5226 "VPExpandSCEVRecipes must be at the beginning of the entry block, "
5227 "before any VPIRInstructions");
5230 auto EI = Entry->begin();
5240 return ExpandedSCEVs;
5252 VPValue *OpV,
unsigned Idx,
bool IsScalable) {
5256 return Member0Op == OpV;
5260 return !IsScalable && !W->getMask() && W->isConsecutive() &&
5263 return IR->getInterleaveGroup()->isFull() &&
IR->getVPValue(Idx) == OpV;
5280 for (
unsigned Idx = 0; Idx != WideMember0->getNumOperands(); ++Idx) {
5283 OpsI.
push_back(
Op->getDefiningRecipe()->getOperand(Idx));
5288 if (
any_of(
enumerate(OpsI), [WideMember0, Idx, IsScalable](
const auto &
P) {
5289 const auto &[
OpIdx, OpV] =
P;
5304 if (!InterleaveR || InterleaveR->
getMask())
5305 return std::nullopt;
5307 Type *GroupElementTy =
nullptr;
5311 [&TypeInfo, GroupElementTy](
VPValue *
Op) {
5312 return TypeInfo.inferScalarType(Op) == GroupElementTy;
5314 return std::nullopt;
5319 [&TypeInfo, GroupElementTy](
VPValue *
Op) {
5320 return TypeInfo.inferScalarType(Op) == GroupElementTy;
5322 return std::nullopt;
5326 if (IG->getFactor() != IG->getNumMembers())
5327 return std::nullopt;
5333 assert(
Size.isScalable() == VF.isScalable() &&
5334 "if Size is scalable, VF must be scalable and vice versa");
5335 return Size.getKnownMinValue();
5339 unsigned MinVal = VF.getKnownMinValue();
5341 if (IG->getFactor() == MinVal && GroupSize == GetVectorBitWidthForVF(VF))
5344 return std::nullopt;
5352 return RepR && RepR->isSingleScalar();
5359 auto *R = V->getDefiningRecipe();
5368 for (
unsigned Idx = 0,
E = WideMember0->getNumOperands(); Idx !=
E; ++Idx)
5369 WideMember0->setOperand(
5378 auto *LI =
cast<LoadInst>(LoadGroup->getInterleaveGroup()->getInsertPos());
5380 *LI, LoadGroup->getAddr(), LoadGroup->getMask(),
true,
5381 false, {}, LoadGroup->getDebugLoc());
5382 L->insertBefore(LoadGroup);
5388 assert(RepR->isSingleScalar() &&
5390 "must be a single scalar load");
5391 NarrowedOps.
insert(RepR);
5396 VPValue *PtrOp = WideLoad->getAddr();
5398 PtrOp = VecPtr->getOperand(0);
5403 nullptr, {}, *WideLoad);
5404 N->insertBefore(WideLoad);
5409std::unique_ptr<VPlan>
5429 "unexpected branch-on-count");
5433 std::optional<ElementCount> VFToOptimize;
5450 if (R.mayWriteToMemory() && !InterleaveR)
5465 std::optional<ElementCount> NarrowedVF =
5467 if (!NarrowedVF || (VFToOptimize && NarrowedVF != VFToOptimize))
5469 VFToOptimize = NarrowedVF;
5472 if (InterleaveR->getStoredValues().empty())
5477 auto *Member0 = InterleaveR->getStoredValues()[0];
5487 VPRecipeBase *DefR = Op.value()->getDefiningRecipe();
5490 auto *IR = dyn_cast<VPInterleaveRecipe>(DefR);
5491 return IR && IR->getInterleaveGroup()->isFull() &&
5492 IR->getVPValue(Op.index()) == Op.value();
5501 VFToOptimize->isScalable()))
5506 if (StoreGroups.
empty())
5510 bool RequiresScalarEpilogue =
5521 std::unique_ptr<VPlan> NewPlan;
5523 NewPlan = std::unique_ptr<VPlan>(Plan.
duplicate());
5524 Plan.
setVF(*VFToOptimize);
5525 NewPlan->removeVF(*VFToOptimize);
5531 for (
auto *StoreGroup : StoreGroups) {
5537 *
SI, StoreGroup->getAddr(), Res,
nullptr,
true,
5538 false, {}, StoreGroup->getDebugLoc());
5539 S->insertBefore(StoreGroup);
5540 StoreGroup->eraseFromParent();
5552 if (VFToOptimize->isScalable()) {
5565 RequiresScalarEpilogue, Step);
5567 Inc->setOperand(1, Step);
5573 "All VPVectorPointerRecipes should have been removed");
5589 "must have a BranchOnCond");
5592 if (VF.
isScalable() && VScaleForTuning.has_value())
5593 VectorStep *= *VScaleForTuning;
5594 assert(VectorStep > 0 &&
"trip count should not be zero");
5598 MiddleTerm->setMetadata(LLVMContext::MD_prof, BranchWeights);
5605 VPBuilder MiddleBuilder(MiddleVPBB, MiddleVPBB->getFirstNonPhi());
5617 "Cannot handle loops with uncountable early exits");
5690 make_range(MiddleVPBB->getFirstNonPhi(), MiddleVPBB->end()))) {
5704 "vector.recur.extract.for.phi");
5722 auto CheckSentinel = [&SE](
const SCEV *IVSCEV,
bool UseMax,
5723 bool Signed) -> std::optional<APInt> {
5734 return std::nullopt;
5742 PhiR->getRecurrenceKind()))
5751 VPValue *BackedgeVal = PhiR->getBackedgeValue();
5752 VPValue *CondSelect = BackedgeVal;
5767 VPValue *
IV = TrueVal == PhiR ? FalseVal : TrueVal;
5781 bool UseSigned =
true;
5782 std::optional<APInt> SentinelVal =
5783 CheckSentinel(IVSCEV, UseMax,
true);
5785 SentinelVal = CheckSentinel(IVSCEV, UseMax,
false);
5794 if (AR->hasNoSignedWrap())
5796 else if (AR->hasNoUnsignedWrap())
5809 VPIRFlags Flags(MinMaxKind,
false,
false,
5818 VPValue *StartVPV = PhiR->getStartValue();
5826 MiddleBuilder.
createSelect(Cmp, ReducedIV, StartVPV, ExitDL);
5835 AnyOfPhi->insertAfter(PhiR);
5839 if (TrueVal == PhiR)
5846 {StartVPV, ReducedIV, OrVal}, {}, ExitDL);
5858 *CondSelect,
RdxUnordered{1}, {}, PhiR->hasUsesOutsideReductionChain());
5859 NewPhiR->insertBefore(PhiR);
5860 PhiR->replaceAllUsesWith(NewPhiR);
5861 PhiR->eraseFromParent();
5869struct ExtendedReductionOperand {
5872 std::array<VPWidenCastRecipe *, 2> CastRecipes = {};
5878struct VPPartialReductionChain {
5881 VPWidenRecipe *ReductionBinOp;
5883 ExtendedReductionOperand ExtendedOp;
5884 unsigned ScaleFactor;
5907 auto *Trunc = Builder.createWidenCast(Instruction::CastOps::Trunc,
5910 BinOp->
setOperand(1, Builder.createWidenCast(ExtOpc, Trunc, WideTy));
5922 if (!
Mul->hasOneUse() ||
5923 (Ext->getOpcode() != MulLHS->getOpcode() && MulLHS != MulRHS) ||
5924 MulLHS->getOpcode() != MulRHS->getOpcode())
5927 Mul->setOperand(0, Builder.createWidenCast(MulLHS->getOpcode(),
5928 MulLHS->getOperand(0),
5929 Ext->getResultType()));
5930 Mul->setOperand(1, MulLHS == MulRHS
5931 ?
Mul->getOperand(0)
5932 : Builder.createWidenCast(MulRHS->getOpcode(),
5933 MulRHS->getOperand(0),
5934 Ext->getResultType()));
5943static void transformToPartialReduction(
const VPPartialReductionChain &Chain,
5972 if (WidenRecipe->
getOpcode() == Instruction::Sub &&
5982 Builder.insert(NegRecipe);
5987 BinOp = optimizeExtendsForPartialReduction(BinOp, TypeInfo);
5997 assert((!ExitValue || IsLastInChain) &&
5998 "if we found ExitValue, it must match RdxPhi's backedge value");
6009 PartialRed->insertBefore(WidenRecipe);
6026 auto *NewScaleFactor = Plan.
getConstantInt(32, Chain.ScaleFactor);
6027 StartInst->setOperand(2, NewScaleFactor);
6035 VPValue *OldStartValue = StartInst->getOperand(0);
6036 StartInst->setOperand(0, StartInst->getOperand(1));
6040 assert(RdxResult &&
"Could not find reduction result");
6043 constexpr unsigned SubOpc = Instruction::BinaryOps::Sub;
6049 [&NewResult](
VPUser &U,
unsigned Idx) {
return &
U != NewResult; });
6055static bool isValidPartialReduction(
const VPPartialReductionChain &Chain,
6059 -> std::pair<Type *, TargetTransformInfo::PartialReductionExtendKind> {
6065 return {ExtOpType, ExtKind};
6067 ExtendedReductionOperand ExtendedOp = Chain.ExtendedOp;
6071 Type *ExtOpTypeA, *ExtOpTypeB;
6073 std::tie(ExtOpTypeA, ExtKindA) = GetExtInfo(ExtendA);
6074 std::tie(ExtOpTypeB, ExtKindB) = GetExtInfo(ExtendB);
6078 if (!ExtendB && ExtendedOp.BinOp &&
6079 ExtendedOp.BinOp != Chain.ReductionBinOp) {
6087 ExtOpTypeB = ExtOpTypeA;
6088 ExtKindB = ExtKindA;
6091 std::optional<unsigned> BinOpc;
6092 if (ExtendedOp.BinOp && ExtendedOp.BinOp != Chain.ReductionBinOp)
6100 WidenRecipe->
getOpcode(), ExtOpTypeA, ExtOpTypeB, PhiType, VF,
6101 ExtKindA, ExtKindB, BinOpc, CostCtx.
CostKind,
6103 ? std::optional{WidenRecipe->getFastMathFlags()}
6124static std::optional<ExtendedReductionOperand>
6127 "Op should be operand of UpdateR");
6134 std::optional<TTI::PartialReductionExtendKind> OuterExtKind;
6139 return std::nullopt;
6142 Op = CastRecipe->getOperand(0);
6148 std::array<VPWidenCastRecipe *, 2> CastRecipes = {};
6151 auto MatchExtends = [OuterExtKind,
6153 assert(Operands.size() <= 2 &&
"expected at most 2 operands");
6155 for (
const auto &[
I, OpVal] :
enumerate(Operands)) {
6159 if (
I > 0 && CastRecipes[0] &&
match(OpVal,
m_APInt(Unused)))
6168 if (!CastRecipes[
I])
6179 return CastRecipes[0] !=
nullptr;
6187 return std::nullopt;
6196 return std::nullopt;
6200 if (!MatchExtends({
Op}))
6201 return std::nullopt;
6204 return std::nullopt;
6207 return ExtendedReductionOperand{BinOp, CastRecipes};
6214static std::optional<SmallVector<VPPartialReductionChain>>
6222 return std::nullopt;
6232 VPValue *CurrentValue = ExitValue;
6233 while (CurrentValue != RedPhiR) {
6236 return std::nullopt;
6243 std::optional<ExtendedReductionOperand> ExtendedOp =
6244 matchExtendedReductionOperand(UpdateR,
Op);
6246 ExtendedOp = matchExtendedReductionOperand(UpdateR, PrevValue);
6248 return std::nullopt;
6253 ExtendedOp->CastRecipes[0]->getOperand(0));
6256 return std::nullopt;
6258 VPPartialReductionChain Chain(
6259 {UpdateR, *ExtendedOp,
6261 if (!isValidPartialReduction(Chain, PhiType, CostCtx,
Range))
6262 return std::nullopt;
6265 CurrentValue = PrevValue;
6270 std::reverse(Chains.
begin(), Chains.
end());
6289 if (
auto Chains = getScaledReductions(RedPhiR, CostCtx,
Range))
6290 ChainsByPhi.
try_emplace(RedPhiR, std::move(*Chains));
6293 if (ChainsByPhi.
empty())
6300 for (
const auto &[
_, Chains] : ChainsByPhi)
6301 for (
const VPPartialReductionChain &Chain : Chains) {
6302 PartialReductionOps.
insert(Chain.ExtendedOp.BinOp);
6303 ScaledReductionMap[Chain.ReductionBinOp] = Chain.ScaleFactor;
6311 return PartialReductionOps.contains(cast<VPRecipeBase>(U));
6320 for (
auto &[RedPhiR, Chains] : ChainsByPhi) {
6321 for (
const VPPartialReductionChain &Chain : Chains) {
6322 if (!
all_of(Chain.ExtendedOp.CastRecipes, ExtendUsersValid)) {
6326 auto UseIsValid = [&, RedPhiR = RedPhiR](
VPUser *U) {
6328 return PhiR == RedPhiR;
6330 return Chain.ScaleFactor == ScaledReductionMap.
lookup_or(R, 0) ||
6336 if (!
all_of(Chain.ReductionBinOp->
users(), UseIsValid)) {
6345 auto *RepR = dyn_cast<VPReplicateRecipe>(U);
6346 return RepR && isa<StoreInst>(RepR->getUnderlyingInstr());
6355 for (
auto &[Phi, Chains] : ChainsByPhi)
6356 for (
const VPPartialReductionChain &Chain : Chains)
6357 transformToPartialReduction(Chain, CostCtx.
Types, Plan, Phi);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Register Bank Select
This file implements a class to represent arbitrary precision integral constant values and operations...
ReachingDefInfo InstSet & ToRemove
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static bool isEqual(const Function &Caller, const Function &Callee)
static const Function * getParent(const Value *V)
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")
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 bool isSentinel(const DWARFDebugNames::AttributeEncoding &AE)
iv Induction Variable Users
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
Legalize the Machine IR a function s Machine IR
static bool mergeBlocksIntoPredecessors(Loop &L, DominatorTree &DT, LoopInfo &LI, MemorySSAUpdater *MSSAU, ScalarEvolution &SE)
static DebugLoc getDebugLoc(MachineBasicBlock::instr_iterator FirstMI, MachineBasicBlock::instr_iterator LastMI)
Return the first DebugLoc that has line number information, given a range of instructions.
This file provides utility analysis objects describing memory locations.
MachineInstr unsigned OpIdx
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
This file builds on the ADT/GraphTraits.h file to build a generic graph post order iterator.
const SmallVectorImpl< MachineOperand > & Cond
This is the interface for a metadata-based scoped no-alias analysis.
This file defines generic set operations that may be used on set's of different types,...
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallPtrSet class.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static SymbolRef::Type getType(const Symbol *Sym)
This file implements the TypeSwitch template, which mimics a switch() statement whose cases are type ...
This file implements dominator tree analysis for a single level of a VPlan's H-CFG.
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 X86InstrFMA3Group Groups[]
static const uint32_t IV[8]
Helper for extra no-alias checks via known-safe recipe and SCEV.
SinkStoreInfo(const SmallPtrSetImpl< VPRecipeBase * > &ExcludeRecipes, VPReplicateRecipe &GroupLeader, PredicatedScalarEvolution &PSE, const Loop &L, VPTypeAnalysis &TypeInfo)
bool shouldSkip(VPRecipeBase &R) const
Return true if R should be skipped during alias checking, either because it's in the exclude set or b...
Class for arbitrary precision integers.
LLVM_ABI APInt zext(unsigned width) const
Zero extend to a new width.
unsigned getActiveBits() const
Compute the number of active bits in the value.
static APInt getMaxValue(unsigned numBits)
Gets maximum unsigned value of APInt for specific bit width.
APInt abs() const
Get the absolute value.
unsigned getBitWidth() const
Return the number of bits in the APInt.
static APInt getSignedMaxValue(unsigned numBits)
Gets maximum signed value of APInt for a specific bit width.
static APInt getMinValue(unsigned numBits)
Gets minimum unsigned value of APInt for a specific bit width.
static APInt getSignedMinValue(unsigned numBits)
Gets minimum signed value of APInt for a specific bit width.
LLVM_ABI APInt sext(unsigned width) const
Sign extend to a new width.
bool isPowerOf2() const
Check if this APInt's value is a power of two greater than zero.
bool uge(const APInt &RHS) const
Unsigned greater or equal comparison.
@ NoAlias
The two locations do not alias at all.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
const T & back() const
back - Get the last element.
const T & front() const
front - Get the first element.
LLVM Basic Block Representation.
const Function * getParent() const
Return the enclosing method, or null if none.
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
This class represents a function call, abstracting a target machine's calling convention.
@ ICMP_ULT
unsigned less than
@ ICMP_ULE
unsigned less or equal
@ FCMP_UNO
1 0 0 0 True if unordered: isnan(X) | isnan(Y)
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...
static ConstantInt * getSigned(IntegerType *Ty, int64_t V, bool ImplicitTrunc=false)
Return a ConstantInt with the specified value for the specified type.
This class represents a range of values.
LLVM_ABI bool contains(const APInt &Val) const
Return true if the specified value is in the set.
static LLVM_ABI Constant * getAllOnesValue(Type *Ty)
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
A parsed version of the target data layout string in and methods for querying it.
static DebugLoc getCompilerGenerated()
static DebugLoc getUnknown()
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...
std::pair< iterator, bool > try_emplace(KeyT &&Key, Ts &&...Args)
ValueT lookup_or(const_arg_type_t< KeyT > Val, U &&Default) const
bool dominates(const DomTreeNodeBase< NodeT > *A, const DomTreeNodeBase< NodeT > *B) const
dominates - Returns true iff A dominates B.
constexpr bool isVector() const
One or more elements.
static constexpr ElementCount getScalable(ScalarTy MinVal)
Utility class for floating point operations which can have information about relaxed accuracy require...
Convenience struct for specifying and reasoning about fast-math flags.
Represents flags for the getelementptr instruction/expression.
GEPNoWrapFlags withoutNoUnsignedWrap() const
static GEPNoWrapFlags none()
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
A struct for saving information about induction variables.
InductionKind
This enum represents the kinds of inductions that we support.
@ IK_PtrInduction
Pointer induction var. Step = C.
@ IK_IntInduction
Integer induction variable. Step = C.
InstSimplifyFolder - Use InstructionSimplify to fold operations to existing values.
static InstructionCost getInvalid(CostType Val=0)
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this instruction belongs to.
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
The group of interleaved loads/stores sharing the same stride and close to each other.
InstTy * getMember(uint32_t Index) const
Get the member with the given index Index.
uint32_t getNumMembers() const
This is an important class for using LLVM in a threaded context.
An instruction for reading from memory.
static bool getDecisionAndClampRange(const std::function< bool(ElementCount)> &Predicate, VFRange &Range)
Test a Predicate on a Range of VF's.
Represents a single loop in the control flow graph.
LLVM_ABI MDNode * createBranchWeights(uint32_t TrueWeight, uint32_t FalseWeight, bool IsExpected=false)
Return metadata containing two branch weights.
This class implements a map that also provides access to all stored values in a deterministic order.
std::pair< iterator, bool > try_emplace(const KeyT &Key, Ts &&...Args)
ValueT lookup(const KeyT &Key) const
Representation for a specific memory location.
AAMDNodes AATags
The metadata nodes which describes the aliasing of the location (each member is null if that kind of ...
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 SCEV * getSCEV(Value *V)
Returns the SCEV expression of V, in the context of the current SCEV predicate.
static LLVM_ABI unsigned getOpcode(RecurKind Kind)
Returns the opcode corresponding to the RecurrenceKind.
unsigned getOpcode() const
static bool isFindLastRecurrenceKind(RecurKind Kind)
Returns true if the recurrence kind is of the form select(cmp(),x,y) where one of (x,...
RegionT * getParent() const
Get the parent of the Region.
This class uses information about analyze scalars to rewrite expressions in canonical form.
LLVM_ABI Value * expandCodeFor(const SCEV *SH, Type *Ty, BasicBlock::iterator I)
Insert code to directly compute the specified SCEV expression into the program.
static const SCEV * rewrite(const SCEV *Scev, ScalarEvolution &SE, ValueToSCEVMapTy &Map)
This class represents an analyzed expression in the program.
LLVM_ABI Type * getType() const
Return the LLVM type of this SCEV expression.
The main scalar evolution driver.
LLVM_ABI const SCEV * getUDivExpr(SCEVUse LHS, SCEVUse RHS)
Get a canonical unsigned division expression, or something simpler if possible.
const DataLayout & getDataLayout() const
Return the DataLayout associated with the module this SCEV instance is operating on.
LLVM_ABI const SCEV * getNegativeSCEV(const SCEV *V, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap)
Return the SCEV object corresponding to -V.
LLVM_ABI bool isKnownNonZero(const SCEV *S)
Test if the given expression is known to be non-zero.
LLVM_ABI const SCEV * getSCEV(Value *V)
Return a SCEV expression for the full generality of the specified expression.
LLVM_ABI const SCEV * getMinusSCEV(SCEVUse LHS, SCEVUse RHS, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Return LHS-RHS.
ConstantRange getSignedRange(const SCEV *S)
Determine the signed range for a particular SCEV.
LLVM_ABI bool isKnownPositive(const SCEV *S)
Test if the given expression is known to be positive.
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 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 bool isKnownPredicate(CmpPredicate Pred, const SCEV *LHS, const SCEV *RHS)
Test if the given expression is known to satisfy the condition described by Pred, LHS,...
static LLVM_ABI bool mayAliasInScopes(const MDNode *Scopes, const MDNode *NoAlias)
static LLVM_ABI AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB)
A vector that has set insertion semantics.
size_type size() const
Determine the number of elements 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...
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.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
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.
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.
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
bool isPointerTy() const
True if this is an instance of PointerType.
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
bool isStructTy() const
True if this is an instance of StructType.
LLVM_ABI TypeSize getPrimitiveSizeInBits() const LLVM_READONLY
Return the basic size of this type if it is a primitive type.
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.
A recipe for generating the active lane mask for the vector loop that is used to predicate the vector...
VPBasicBlock serves as the leaf of the Hierarchical Control-Flow Graph.
void appendRecipe(VPRecipeBase *Recipe)
Augment the existing recipes of a VPBasicBlock with an additional Recipe as the last recipe.
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.
iterator getFirstNonPhi()
Return the position of the first non-phi node recipe in the block.
VPRegionBlock * getEnclosingLoopRegion()
VPBasicBlock * splitAt(iterator SplitAt)
Split current block at SplitAt by inserting a new block between the current block and its successors ...
const VPRecipeBase & front() const
VPRecipeBase * getTerminator()
If the block has multiple successors, return the branch recipe terminating the block.
const VPRecipeBase & back() const
A recipe for vectorizing a phi-node as a sequence of mask-based select instructions.
VPValue * getMask(unsigned Idx) const
Return mask number Idx.
unsigned getNumIncomingValues() const
Return the number of incoming values, taking into account when normalized the first incoming value wi...
void setMask(unsigned Idx, VPValue *V)
Set mask number Idx to V.
bool isNormalized() const
A normalized blend is one that has an odd number of operands, whereby the first operand does not have...
VPBlockBase is the building block of the Hierarchical Control-Flow Graph.
void setSuccessors(ArrayRef< VPBlockBase * > NewSuccs)
Set each VPBasicBlock in NewSuccss as successor of this VPBlockBase.
VPRegionBlock * getParent()
const VPBasicBlock * getExitingBasicBlock() const
size_t getNumSuccessors() const
void setPredecessors(ArrayRef< VPBlockBase * > NewPreds)
Set each VPBasicBlock in NewPreds as predecessor of this VPBlockBase.
const VPBlocksTy & getPredecessors() const
const std::string & getName() const
void clearSuccessors()
Remove all the successors of this block.
VPBlockBase * getSinglePredecessor() const
const VPBasicBlock * getEntryBasicBlock() const
VPBlockBase * getSingleHierarchicalPredecessor()
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 insertTwoBlocksAfter(VPBlockBase *IfTrue, VPBlockBase *IfFalse, VPBlockBase *BlockPtr)
Insert disconnected VPBlockBases IfTrue and IfFalse after BlockPtr.
static void connectBlocks(VPBlockBase *From, VPBlockBase *To, unsigned PredIdx=-1u, unsigned SuccIdx=-1u)
Connect VPBlockBases From and To bi-directionally.
static void disconnectBlocks(VPBlockBase *From, VPBlockBase *To)
Disconnect VPBlockBases From and To bi-directionally.
A recipe for generating conditional branches on the bits of a mask.
RAII object that stores the current insertion point and restores it when the object is destroyed.
VPlan-based builder utility analogous to IRBuilder.
VPInstruction * createOr(VPValue *LHS, VPValue *RHS, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="")
VPValue * createScalarZExtOrTrunc(VPValue *Op, Type *ResultTy, Type *SrcTy, DebugLoc DL)
VPValue * createElementCount(Type *Ty, ElementCount EC)
VPInstruction * createNot(VPValue *Operand, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="")
VPInstruction * createScalarCast(Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy, DebugLoc DL, const VPIRMetadata &Metadata={})
static VPBuilder getToInsertAfter(VPRecipeBase *R)
Create a VPBuilder to insert after R.
VPInstruction * createOverflowingOp(unsigned Opcode, ArrayRef< VPValue * > Operands, VPRecipeWithIRFlags::WrapFlagsTy WrapFlags={false, false}, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="")
VPPhi * createScalarPhi(ArrayRef< VPValue * > IncomingValues, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="", const VPIRFlags &Flags={})
VPDerivedIVRecipe * createDerivedIV(InductionDescriptor::InductionKind Kind, FPMathOperator *FPBinOp, VPIRValue *Start, VPValue *Current, VPValue *Step, const Twine &Name="")
Convert the input value Current to the corresponding value of an induction with Start and Step values...
VPInstruction * createICmp(CmpInst::Predicate Pred, VPValue *A, VPValue *B, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="")
Create a new ICmp VPInstruction with predicate Pred and operands A and B.
VPInstruction * createSelect(VPValue *Cond, VPValue *TrueVal, VPValue *FalseVal, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="", const VPIRFlags &Flags={})
void setInsertPoint(VPBasicBlock *TheBB)
This specifies that created VPInstructions should be appended to the end of the specified block.
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.
A recipe for generating the phi node tracking the current scalar iteration index.
unsigned getNumDefinedValues() const
Returns the number of values defined by the VPDef.
VPValue * getVPSingleValue()
Returns the only VPValue defined by the VPDef.
VPValue * getVPValue(unsigned I)
Returns the VPValue with index I defined by the VPDef.
ArrayRef< VPRecipeValue * > definedValues()
Returns an ArrayRef of the values defined by the VPDef.
A recipe for converting the input value IV value to the corresponding value of an IV with different s...
Template specialization of the standard LLVM dominator tree utility for VPBlockBases.
bool properlyDominates(const VPRecipeBase *A, const VPRecipeBase *B)
A recipe to combine multiple recipes into a single 'expression' recipe, which should be considered a ...
A special type of VPBasicBlock that wraps an existing IR basic block.
Class to record and manage LLVM IR flags.
static VPIRFlags getDefaultFlags(unsigned Opcode)
Returns default flags for Opcode for opcodes that support it, asserts otherwise.
LLVM_ABI_FOR_TEST FastMathFlags getFastMathFlags() const
static LLVM_ABI_FOR_TEST VPIRInstruction * create(Instruction &I)
Create a new VPIRPhi for \I , if it is a PHINode, otherwise create a VPIRInstruction.
This is a concrete Recipe that models a single VPlan-level instruction.
@ ExtractLane
Extracts a single lane (first operand) from a set of vector operands.
@ ComputeAnyOfResult
Compute the final result of a AnyOf reduction with select(cmp(),x,y), where one of (x,...
@ ExtractPenultimateElement
@ Unpack
Extracts all lanes from its (non-scalable) vector operand.
@ FirstOrderRecurrenceSplice
@ ReductionStartVector
Start vector for reductions with 3 operands: the original start value, the identity value for the red...
@ BuildVector
Creates a fixed-width vector containing all operands.
@ BuildStructVector
Given operands of (the same) struct type, creates a struct of fixed- width vectors each containing a ...
@ CanonicalIVIncrementForPart
const InterleaveGroup< Instruction > * getInterleaveGroup() const
VPValue * getMask() const
Return the mask used by this recipe.
ArrayRef< VPValue * > getStoredValues() const
Return the VPValues stored by this interleave group.
A recipe for interleaved memory operations with vector-predication intrinsics.
VPInterleaveRecipe is a recipe for transforming an interleave group of load or stores into one wide l...
VPValue * getIncomingValue(unsigned Idx) const
Returns the incoming VPValue with index Idx.
VPPredInstPHIRecipe is a recipe for generating the phi nodes needed when control converges back from ...
VPRecipeBase is a base class modeling a sequence of one or more output IR instructions.
VPRegionBlock * getRegion()
VPBasicBlock * getParent()
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.
void insertAfter(VPRecipeBase *InsertPos)
Insert an unlinked Recipe into a basic block immediately after the specified Recipe.
iplist< VPRecipeBase >::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
Helper class to create VPRecipies from IR instructions.
VPRecipeBase * getRecipe(Instruction *I)
Return the recipe created for given ingredient.
A recipe to represent inloop reduction operations with vector-predication intrinsics,...
A recipe for handling reduction phis.
void setVFScaleFactor(unsigned ScaleFactor)
Set the VFScaleFactor for this reduction phi.
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.
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
Type * getCanonicalIVType()
Return the type of the canonical IV for loop regions.
bool isReplicator() const
An indicator whether this region is to generate multiple replicated instances of output IR correspond...
void setExiting(VPBlockBase *ExitingBlock)
Set ExitingBlock as the exiting VPBlockBase of this VPRegionBlock.
VPCanonicalIVPHIRecipe * getCanonicalIV()
Returns the canonical induction recipe of the region.
const VPBlockBase * getExiting() const
VPBasicBlock * getPreheaderVPBB()
Returns the pre-header VPBasicBlock of the loop region.
VPReplicateRecipe replicates a given instruction producing multiple scalar copies of the original sca...
bool isSingleScalar() const
bool isPredicated() const
VPValue * getMask()
Return the mask of a predicated VPReplicateRecipe.
A recipe for handling phi nodes of integer and floating-point inductions, producing their scalar valu...
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.
VPSingleDefRecipe * clone() override=0
Clone the current recipe.
An analysis for type-inference for VPValues.
LLVMContext & getContext()
Return the LLVMContext used by the analysis.
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)
unsigned getNumOperands() const
VPValue * getOperand(unsigned N) const
void addOperand(VPValue *Operand)
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.
bool isDefinedOutsideLoopRegions() const
Returns true if the VPValue is defined outside any loop.
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 setUnderlyingValue(Value *Val)
void replaceAllUsesWith(VPValue *New)
unsigned getNumUsers() const
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...
A Recipe for widening the canonical induction variable of the vector loop.
VPWidenCastRecipe is a recipe to create vector cast instructions.
A recipe for handling GEP instructions.
Base class for widened induction (VPWidenIntOrFpInductionRecipe and VPWidenPointerInductionRecipe),...
VPIRValue * getStartValue() const
Returns the start value of the induction.
PHINode * getPHINode() const
Returns the underlying PHINode if one exists, or null otherwise.
VPValue * getStepValue()
Returns the step value of the induction.
const InductionDescriptor & getInductionDescriptor() const
Returns the induction descriptor for the recipe.
A recipe for handling phi nodes of integer and floating-point inductions, producing their vector valu...
VPIRValue * getStartValue() const
Returns the start value of the induction.
VPValue * getSplatVFValue() const
If the recipe has been unrolled, return the VPValue for the induction increment, otherwise return nul...
VPValue * getLastUnrolledPartOperand()
Returns the VPValue representing the value of this induction at the last unrolled part,...
A recipe for widening vector intrinsics.
A common base class for widening memory operations.
A recipe for widened phis.
VPWidenRecipe is a recipe for producing a widened instruction using the opcode and operands of the re...
unsigned getOpcode() const
VPlan models a candidate for vectorization, encoding various decisions take to produce efficient outp...
VPIRValue * getLiveIn(Value *V) const
Return the live-in VPIRValue for V, if there is one or nullptr otherwise.
bool hasVF(ElementCount VF) const
const DataLayout & getDataLayout() const
LLVMContext & getContext() const
VPBasicBlock * getEntry()
bool hasScalableVF() const
VPValue * getTripCount() const
The trip count of the original loop.
VPValue * getOrCreateBackedgeTakenCount()
The backedge taken count of the original loop.
iterator_range< SmallSetVector< ElementCount, 2 >::iterator > vectorFactors() const
Returns an iterator range over all VFs of the plan.
VPIRValue * getFalse()
Return a VPIRValue wrapping i1 false.
VPSymbolicValue & getVFxUF()
Returns VF * UF of the vector loop region.
VPIRValue * getAllOnesValue(Type *Ty)
Return a VPIRValue wrapping the AllOnes value of type Ty.
VPRegionBlock * createReplicateRegion(VPBlockBase *Entry, VPBlockBase *Exiting, const std::string &Name="")
Create a new replicate region with Entry, Exiting and Name.
auto getLiveIns() const
Return the list of live-in VPValues available in the VPlan.
bool hasUF(unsigned UF) const
ArrayRef< VPIRBasicBlock * > getExitBlocks() const
Return an ArrayRef containing VPIRBasicBlocks wrapping the exit blocks of the original scalar loop.
VPSymbolicValue & getVectorTripCount()
The vector trip count.
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.
void setVF(ElementCount VF)
bool isUnrolled() const
Returns true if the VPlan already has been unrolled, i.e.
LLVM_ABI_FOR_TEST VPRegionBlock * getVectorLoopRegion()
Returns the VPRegionBlock of the vector loop.
unsigned getConcreteUF() const
Returns the concrete UF of the plan, after unrolling.
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 ...
VPBasicBlock * createVPBasicBlock(const Twine &Name, VPRecipeBase *Recipe=nullptr)
Create a new VPBasicBlock with Name and containing Recipe if present.
VPIRValue * getTrue()
Return a VPIRValue wrapping i1 true.
VPSymbolicValue & getUF()
Returns the UF of the vector loop region.
bool hasScalarVFOnly() const
VPBasicBlock * getScalarPreheader() const
Return the VPBasicBlock for the preheader 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.
bool hasScalarTail() const
Returns true if the scalar tail may execute after the vector loop.
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...
VPIRValue * getConstantInt(Type *Ty, uint64_t Val, bool IsSigned=false)
Return a VPIRValue wrapping a ConstantInt with the given type and value.
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
iterator_range< user_iterator > users()
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
constexpr bool hasKnownScalarFactor(const FixedOrScalableQuantity &RHS) const
Returns true if there exists a value X where RHS.multiplyCoefficientBy(X) will result in a value whos...
constexpr ScalarTy getFixedValue() const
constexpr ScalarTy getKnownScalarFactor(const FixedOrScalableQuantity &RHS) const
Returns a value X where RHS.multiplyCoefficientBy(X) will result in a value whose quantity matches ou...
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.
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
self_iterator getIterator()
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
LLVM_ABI APInt RoundingUDiv(const APInt &A, const APInt &B, APInt::Rounding RM)
Return A unsign-divided by B, rounded by the given rounding mode.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ C
The default llvm calling convention, compatible with C.
SpecificConstantMatch m_ZeroInt()
Convenience matchers for specific integer values.
BinaryOp_match< SrcTy, SpecificConstantMatch, TargetOpcode::G_XOR, true > m_Not(const SrcTy &&Src)
Matches a register not-ed by a G_XOR.
cst_pred_ty< is_all_ones > m_AllOnes()
Match an integer or vector with all bits set.
BinaryOp_match< LHS, RHS, Instruction::Add > m_Add(const LHS &L, const RHS &R)
m_Intrinsic_Ty< Opnd0, Opnd1, Opnd2 >::Ty m_MaskedStore(const Opnd0 &Op0, const Opnd1 &Op1, const Opnd2 &Op2)
Matches MaskedStore Intrinsic.
ap_match< APInt > m_APInt(const APInt *&Res)
Match a ConstantInt or splatted ConstantVector, binding the specified pointer to the contained APInt.
CastInst_match< OpTy, TruncInst > m_Trunc(const OpTy &Op)
Matches Trunc.
LogicalOp_match< LHS, RHS, Instruction::And > m_LogicalAnd(const LHS &L, const RHS &R)
Matches L && R either in the form of L & R or L ?
BinaryOp_match< LHS, RHS, Instruction::FMul > m_FMul(const LHS &L, const RHS &R)
match_combine_or< CastInst_match< OpTy, ZExtInst >, OpTy > m_ZExtOrSelf(const OpTy &Op)
bool match(Val *V, const Pattern &P)
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.
m_Intrinsic_Ty< Opnd0, Opnd1, Opnd2 >::Ty m_MaskedLoad(const Opnd0 &Op0, const Opnd1 &Op1, const Opnd2 &Op2)
Matches MaskedLoad Intrinsic.
class_match< ConstantInt > m_ConstantInt()
Match an arbitrary ConstantInt and ignore it.
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))
ThreeOps_match< Cond, LHS, RHS, Instruction::Select > m_Select(const Cond &C, const LHS &L, const RHS &R)
Matches SelectInst.
BinaryOp_match< LHS, RHS, Instruction::FAdd > m_FAdd(const LHS &L, const RHS &R)
SpecificCmpClass_match< LHS, RHS, CmpInst > m_SpecificCmp(CmpPredicate MatchPred, const LHS &L, const RHS &R)
BinaryOp_match< LHS, RHS, Instruction::Mul > m_Mul(const LHS &L, const RHS &R)
deferredval_ty< Value > m_Deferred(Value *const &V)
Like m_Specific(), but works if the specific value to match is determined as part of the same match()...
CastInst_match< OpTy, FPExtInst > m_FPExt(const OpTy &Op)
SpecificCmpClass_match< LHS, RHS, ICmpInst > m_SpecificICmp(CmpPredicate MatchPred, const LHS &L, const RHS &R)
BinaryOp_match< LHS, RHS, Instruction::UDiv > m_UDiv(const LHS &L, const RHS &R)
class_match< CmpInst > m_Cmp()
Matches any compare instruction and ignore it.
BinaryOp_match< LHS, RHS, Instruction::Add, true > m_c_Add(const LHS &L, const RHS &R)
Matches a Add with LHS and RHS in either order.
CmpClass_match< LHS, RHS, ICmpInst > m_ICmp(CmpPredicate &Pred, const LHS &L, const RHS &R)
match_combine_or< CastInst_match< OpTy, ZExtInst >, CastInst_match< OpTy, SExtInst > > m_ZExtOrSExt(const OpTy &Op)
BinaryOp_match< LHS, RHS, Instruction::FAdd, true > m_c_FAdd(const LHS &L, const RHS &R)
Matches FAdd with LHS and RHS in either order.
LogicalOp_match< LHS, RHS, Instruction::And, true > m_c_LogicalAnd(const LHS &L, const RHS &R)
Matches L && R with LHS and RHS in either order.
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
CastInst_match< OpTy, SExtInst > m_SExt(const OpTy &Op)
Matches SExt.
BinaryOp_match< LHS, RHS, Instruction::Mul, true > m_c_Mul(const LHS &L, const RHS &R)
Matches a Mul with LHS and RHS in either order.
BinaryOp_match< LHS, RHS, Instruction::Sub > m_Sub(const LHS &L, const RHS &R)
match_combine_or< LTy, RTy > m_CombineOr(const LTy &L, const RTy &R)
Combine two pattern matchers matching L || R.
bind_cst_ty m_scev_APInt(const APInt *&C)
Match an SCEV constant and bind it to an APInt.
SCEVAffineAddRec_match< Op0_t, Op1_t, class_match< const Loop > > m_scev_AffineAddRec(const Op0_t &Op0, const Op1_t &Op1)
bool match(const SCEV *S, const Pattern &P)
class_match< const SCEV > m_SCEV()
VPInstruction_match< VPInstruction::ExtractLastLane, VPInstruction_match< VPInstruction::ExtractLastPart, Op0_t > > m_ExtractLastLaneOfLastPart(const Op0_t &Op0)
AllRecipe_commutative_match< Instruction::And, Op0_t, Op1_t > m_c_BinaryAnd(const Op0_t &Op0, const Op1_t &Op1)
Match a binary AND operation.
AllRecipe_match< Instruction::Or, Op0_t, Op1_t > m_BinaryOr(const Op0_t &Op0, const Op1_t &Op1)
Match a binary OR operation.
VPInstruction_match< VPInstruction::AnyOf > m_AnyOf()
AllRecipe_commutative_match< Instruction::Or, Op0_t, Op1_t > m_c_BinaryOr(const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::ComputeReductionResult, Op0_t > m_ComputeReductionResult(const Op0_t &Op0)
VPInstruction_match< VPInstruction::StepVector > m_StepVector()
VPInstruction_match< VPInstruction::BranchOnTwoConds > m_BranchOnTwoConds()
AllRecipe_match< Opcode, Op0_t, Op1_t > m_Binary(const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::LastActiveLane, Op0_t > m_LastActiveLane(const Op0_t &Op0)
VPInstruction_match< VPInstruction::ExitingIVValue, Op0_t > m_ExitingIVValue(const Op0_t &Op0)
VPInstruction_match< Instruction::ExtractElement, Op0_t, Op1_t > m_ExtractElement(const Op0_t &Op0, const Op1_t &Op1)
specific_intval< 1 > m_False()
VPInstruction_match< VPInstruction::ExtractLastLane, Op0_t > m_ExtractLastLane(const Op0_t &Op0)
VPInstruction_match< VPInstruction::ActiveLaneMask, Op0_t, Op1_t, Op2_t > m_ActiveLaneMask(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
VPInstruction_match< VPInstruction::BranchOnCount > m_BranchOnCount()
bind_ty< VPIRValue > m_VPIRValue(VPIRValue *&V)
Match a VPIRValue.
auto m_GetElementPtr(const Op0_t &Op0, const Op1_t &Op1)
specific_intval< 1 > m_True()
VectorEndPointerRecipe_match< Op0_t, Op1_t > m_VecEndPtr(const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::ExtractLastPart, Op0_t > m_ExtractLastPart(const Op0_t &Op0)
VPInstruction_match< VPInstruction::Broadcast, Op0_t > m_Broadcast(const Op0_t &Op0)
class_match< VPValue > m_VPValue()
Match an arbitrary VPValue and ignore it.
VPInstruction_match< VPInstruction::ExplicitVectorLength, Op0_t > m_EVL(const Op0_t &Op0)
VPInstruction_match< VPInstruction::BuildVector > m_BuildVector()
BuildVector is matches only its opcode, w/o matching its operands as the number of operands is not fi...
VPInstruction_match< VPInstruction::ExtractPenultimateElement, Op0_t > m_ExtractPenultimateElement(const Op0_t &Op0)
VPInstruction_match< VPInstruction::FirstActiveLane, Op0_t > m_FirstActiveLane(const Op0_t &Op0)
bind_ty< VPInstruction > m_VPInstruction(VPInstruction *&V)
Match a VPInstruction, capturing if we match.
auto m_DerivedIV(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
VPInstruction_match< VPInstruction::BranchOnCond > m_BranchOnCond()
VPInstruction_match< VPInstruction::ExtractLane, Op0_t, Op1_t > m_ExtractLane(const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::Reverse, Op0_t > m_Reverse(const Op0_t &Op0)
NodeAddr< DefNode * > Def
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...
bool isUniformAcrossVFsAndUFs(VPValue *V)
Checks if V is uniform across all VF lanes and UF parts.
VPValue * getOrCreateVPValueForSCEVExpr(VPlan &Plan, const SCEV *Expr)
Get or create a VPValue that corresponds to the expansion of Expr.
VPInstruction * findComputeReductionResult(VPReductionPHIRecipe *PhiR)
Find the ComputeReductionResult recipe for PhiR, looking through selects inserted for predicated redu...
std::optional< MemoryLocation > getMemoryLocation(const VPRecipeBase &R)
Return a MemoryLocation for R with noalias metadata populated from R, if the recipe is supported and ...
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...
bool onlyScalarValuesUsed(const VPValue *Def)
Returns true if only scalar values of Def are used by all users.
static VPRecipeBase * findUserOf(VPValue *V, const MatchT &P)
If V is used by a recipe matching pattern P, return it.
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.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
void stable_sort(R &&Range)
auto min_element(R &&Range)
Provide wrappers to std::min_element which take ranges instead of having to pass begin/end explicitly...
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
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.
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
DenseMap< const Value *, const SCEV * > ValueToSCEVMapTy
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
const Value * getLoadStorePointerOperand(const Value *V)
A helper function that returns the pointer operand of a load or store instruction.
constexpr from_range_t from_range
auto dyn_cast_if_present(const Y &Val)
dyn_cast_if_present<X> - Functionally identical to dyn_cast, except that a null (or none in the case ...
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.
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...
auto cast_or_null(const Y &Val)
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.
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...
constexpr auto equal_to(T &&Arg)
Functor variant of std::equal_to that can be used as a UnaryPredicate in functional algorithms like a...
detail::concat_range< ValueT, RangeTs... > concat(RangeTs &&...Ranges)
Returns a concatenated range across two or more ranges.
uint64_t PowerOf2Ceil(uint64_t A)
Returns the power of two which is greater than or equal to the given value.
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.
auto reverse(ContainerTy &&C)
iterator_range< po_iterator< VPBlockDeepTraversalWrapper< VPBlockBase * > > > vp_post_order_deep(VPBlockBase *G)
Returns an iterator range to traverse the graph starting at G in post order while traversing through ...
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI_FOR_TEST cl::opt< bool > EnableWideActiveLaneMask
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
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...
iterator_range< filter_iterator< detail::IterOfRange< RangeT >, PredicateT > > make_filter_range(RangeT &&Range, PredicateT Pred)
Convenience function that takes a range of elements and a predicate, and return a new filter_iterator...
bool canConstantBeExtended(const APInt *C, Type *NarrowType, TTI::PartialReductionExtendKind ExtKind)
Check if a constant CI can be safely treated as having been extended from a narrower type with the gi...
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
iterator_range< po_iterator< VPBlockShallowTraversalWrapper< VPBlockBase * > > > vp_post_order_shallow(VPBlockBase *G)
Returns an iterator range to traverse the graph starting at G in post order.
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...
auto drop_end(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the last N elements excluded.
RecurKind
These are the kinds of recurrences that we support.
@ UMin
Unsigned integer min implemented in terms of select(cmp()).
@ FindIV
FindIV reduction with select(icmp(),x,y) where one of (x,y) is a loop induction variable (increasing ...
@ Or
Bitwise or logical OR of integers.
@ Mul
Product of integers.
@ SMax
Signed integer max implemented in terms of select(cmp()).
@ SMin
Signed integer min implemented in terms of select(cmp()).
@ Sub
Subtraction of integers.
@ AddChainWithSubs
A chain of adds and subs.
@ UMax
Unsigned integer max implemented in terms of select(cmp()).
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.
FunctionAddr VTableAddr Next
auto count(R &&Range, const E &Element)
Wrapper function around std::count to count the number of times an element Element occurs in the give...
DWARFExpression::Operation Op
auto max_element(R &&Range)
Provide wrappers to std::max_element which take ranges instead of having to pass begin/end explicitly...
ArrayRef(const T &OneElt) -> ArrayRef< T >
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.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Type * getLoadStoreType(const Value *I)
A helper function that returns the type of a load or store instruction.
bool all_equal(std::initializer_list< T > Values)
Returns true if all Values in the initializer lists are equal or the list.
hash_code hash_combine(const Ts &...args)
Combine values into a single hash_code.
bool equal(L &&LRange, R &&RRange)
Wrapper function around std::equal to detect if pair-wise elements between two ranges are the same.
Type * toVectorTy(Type *Scalar, ElementCount EC)
A helper function for converting Scalar types to vector types.
@ Default
The result values are uniform if and only if all operands are uniform.
constexpr detail::IsaCheckPredicate< Types... > IsaPred
Function object wrapper for the llvm::isa type check.
hash_code hash_combine_range(InputIteratorT first, InputIteratorT last)
Compute a hash_code for a sequence of values.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
RemoveMask_match(const Op0_t &In, Op1_t &Out)
bool match(OpTy *V) const
A collection of metadata nodes that might be associated with a memory access used by the alias-analys...
MDNode * Scope
The tag for alias scope specification (used with noalias).
MDNode * NoAlias
The tag specifying the noalias scope.
This struct is a compact representation of a valid (non-zero power of two) alignment.
An information struct used to provide DenseMap with the various necessary components for a given valu...
Incoming for lane mask phi as machine instruction, incoming register Reg and incoming block Block are...
This reduction is unordered with the partial result scaled down by some factor.
A range of powers-of-2 vectorization factors with fixed start and adjustable end.
Struct to hold various analysis needed for cost computations.
TargetTransformInfo::TargetCostKind CostKind
const TargetTransformInfo & TTI
A recipe for handling first-order recurrence phis.
A VPValue representing a live-in from the input IR or a constant.
Type * getType() const
Returns the type of the underlying IR value.
A symbolic live-in VPValue, used for values like vector trip count, VF, and VFxUF.
bool isMaterialized() const
Returns true if this symbolic value has been materialized.
A recipe for widening load operations with vector-predication intrinsics, using the address to load f...
A recipe for widening load operations, using the address to load from and an optional mask.
A recipe for widening store operations with vector-predication intrinsics, using the value to store,...
A recipe for widening store operations, using the stored value, the address to store to and an option...