25#ifndef LLVM_TRANSFORMS_VECTORIZE_VPLAN_H
26#define LLVM_TRANSFORMS_VECTORIZE_VPLAN_H
55class InnerLoopVectorizer;
59class RecurrenceDescriptor;
65class VPReplicateRecipe;
68class LoopVectorizationCostModel;
111 "Both Start and End should have the same scalable flag");
113 "Expected Start to be a power of 2");
115 "Expected End to be a power of 2");
176 VPLane(
unsigned Lane,
Kind LaneKind) : Lane(Lane), LaneKind(LaneKind) {}
182 "trying to extract with invalid offset");
191 return VPLane(LaneOffset, LaneKind);
273 unsigned CacheIdx =
Lane.mapToCacheIndex(
VF);
274 return CacheIdx <
I->second.size() &&
I->second[CacheIdx];
285 "scalar values must be stored as (0, 0)");
298 unsigned CacheIdx =
Lane.mapToCacheIndex(
VF);
299 if (Scalars.size() <= CacheIdx)
300 Scalars.resize(CacheIdx + 1);
301 assert(!Scalars[CacheIdx] &&
"should overwrite existing value");
302 Scalars[CacheIdx] = V;
309 "need to overwrite existing value");
310 unsigned CacheIdx =
Lane.mapToCacheIndex(
VF);
311 assert(CacheIdx < Iter->second.size() &&
312 "need to overwrite existing value");
313 Iter->second[CacheIdx] = V;
400 const unsigned char SubclassID;
417 VPlan *Plan =
nullptr;
427 assert(Predecessor &&
"Cannot add nullptr predecessor!");
432 void removePredecessor(VPBlockBase *Predecessor) {
433 auto Pos =
find(Predecessors, Predecessor);
434 assert(Pos &&
"Predecessor does not exist");
435 Predecessors.
erase(Pos);
439 void removeSuccessor(VPBlockBase *
Successor) {
441 assert(Pos &&
"Successor does not exist");
442 Successors.
erase(Pos);
447 void replacePredecessor(VPBlockBase *Old, VPBlockBase *New) {
448 auto I =
find(Predecessors, Old);
450 assert(Old->getParent() ==
New->getParent() &&
451 "replaced predecessor must have the same parent");
457 void replaceSuccessor(VPBlockBase *Old, VPBlockBase *New) {
458 auto I =
find(Successors, Old);
460 assert(Old->getParent() ==
New->getParent() &&
461 "replaced successor must have the same parent");
467 : SubclassID(SC),
Name(
N) {}
474 using VPBlockTy =
enum { VPRegionBlockSC, VPBasicBlockSC, VPIRBasicBlockSC };
526 return (Successors.
size() == 1 ? *Successors.
begin() :
nullptr);
532 return (Predecessors.
size() == 1 ? *Predecessors.
begin() :
nullptr);
585 assert(Successors.
empty() &&
"Setting one successor when others exist.");
587 "connected blocks must have the same parent");
596 assert(Successors.
empty() &&
"Setting two successors when others exist.");
597 appendSuccessor(IfTrue);
598 appendSuccessor(IfFalse);
605 assert(Predecessors.
empty() &&
"Block predecessors already set.");
606 for (
auto *Pred : NewPreds)
607 appendPredecessor(Pred);
614 assert(Successors.
empty() &&
"Block successors already set.");
615 for (
auto *Succ : NewSuccs)
616 appendSuccessor(Succ);
629 assert(Successors.
size() == 2 &&
"must have 2 successors to swap");
647#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
729 template <
typename IterT>
819#define VP_CLASSOF_IMPL(VPDefID) \
820 static inline bool classof(const VPDef *D) { \
821 return D->getVPDefID() == VPDefID; \
823 static inline bool classof(const VPValue *V) { \
824 auto *R = V->getDefiningRecipe(); \
825 return R && R->getVPDefID() == VPDefID; \
827 static inline bool classof(const VPUser *U) { \
828 auto *R = dyn_cast<VPRecipeBase>(U); \
829 return R && R->getVPDefID() == VPDefID; \
831 static inline bool classof(const VPRecipeBase *R) { \
832 return R->getVPDefID() == VPDefID; \
834 static inline bool classof(const VPSingleDefRecipe *R) { \
835 return R->getVPDefID() == VPDefID; \
843 template <
typename IterT>
851 template <
typename IterT>
857 switch (R->getVPDefID()) {
858 case VPRecipeBase::VPDerivedIVSC:
859 case VPRecipeBase::VPEVLBasedIVPHISC:
860 case VPRecipeBase::VPExpandSCEVSC:
861 case VPRecipeBase::VPInstructionSC:
862 case VPRecipeBase::VPReductionEVLSC:
863 case VPRecipeBase::VPReductionSC:
864 case VPRecipeBase::VPReplicateSC:
865 case VPRecipeBase::VPScalarIVStepsSC:
866 case VPRecipeBase::VPVectorPointerSC:
867 case VPRecipeBase::VPReverseVectorPointerSC:
868 case VPRecipeBase::VPWidenCallSC:
869 case VPRecipeBase::VPWidenCanonicalIVSC:
870 case VPRecipeBase::VPWidenCastSC:
871 case VPRecipeBase::VPWidenGEPSC:
872 case VPRecipeBase::VPWidenIntrinsicSC:
873 case VPRecipeBase::VPWidenSC:
874 case VPRecipeBase::VPWidenEVLSC:
875 case VPRecipeBase::VPWidenSelectSC:
876 case VPRecipeBase::VPBlendSC:
877 case VPRecipeBase::VPPredInstPHISC:
878 case VPRecipeBase::VPCanonicalIVPHISC:
879 case VPRecipeBase::VPActiveLaneMaskPHISC:
880 case VPRecipeBase::VPFirstOrderRecurrencePHISC:
881 case VPRecipeBase::VPWidenPHISC:
882 case VPRecipeBase::VPWidenIntOrFpInductionSC:
883 case VPRecipeBase::VPWidenPointerInductionSC:
884 case VPRecipeBase::VPReductionPHISC:
885 case VPRecipeBase::VPScalarCastSC:
886 case VPRecipeBase::VPPartialReductionSC:
888 case VPRecipeBase::VPBranchOnMaskSC:
889 case VPRecipeBase::VPInterleaveSC:
890 case VPRecipeBase::VPIRInstructionSC:
891 case VPRecipeBase::VPWidenLoadEVLSC:
892 case VPRecipeBase::VPWidenLoadSC:
893 case VPRecipeBase::VPWidenStoreEVLSC:
894 case VPRecipeBase::VPWidenStoreSC:
895 case VPRecipeBase::VPHistogramSC:
904 auto *R = dyn_cast<VPRecipeBase>(U);
918#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
926 enum class OperationType :
unsigned char {
951 struct ExactFlagsTy {
954 struct NonNegFlagsTy {
957 struct FastMathFlagsTy {
966 FastMathFlagsTy(
const FastMathFlags &FMF);
969 OperationType OpType;
984 OpType =
Other.OpType;
989 template <
typename IterT>
992 OpType = OperationType::Other;
996 template <
typename IterT>
999 if (
auto *
Op = dyn_cast<CmpInst>(&
I)) {
1000 OpType = OperationType::Cmp;
1002 }
else if (
auto *
Op = dyn_cast<PossiblyDisjointInst>(&
I)) {
1003 OpType = OperationType::DisjointOp;
1005 }
else if (
auto *
Op = dyn_cast<OverflowingBinaryOperator>(&
I)) {
1006 OpType = OperationType::OverflowingBinOp;
1007 WrapFlags = {
Op->hasNoUnsignedWrap(),
Op->hasNoSignedWrap()};
1008 }
else if (
auto *
Op = dyn_cast<PossiblyExactOperator>(&
I)) {
1009 OpType = OperationType::PossiblyExactOp;
1011 }
else if (
auto *
GEP = dyn_cast<GetElementPtrInst>(&
I)) {
1012 OpType = OperationType::GEPOp;
1014 }
else if (
auto *PNNI = dyn_cast<PossiblyNonNegInst>(&
I)) {
1015 OpType = OperationType::NonNegOp;
1017 }
else if (
auto *
Op = dyn_cast<FPMathOperator>(&
I)) {
1018 OpType = OperationType::FPMathOp;
1019 FMFs =
Op->getFastMathFlags();
1021 OpType = OperationType::Other;
1026 template <
typename IterT>
1032 template <
typename IterT>
1038 template <
typename IterT>
1044 template <
typename IterT>
1051 template <
typename IterT>
1059 return R->getVPDefID() == VPRecipeBase::VPInstructionSC ||
1060 R->getVPDefID() == VPRecipeBase::VPWidenSC ||
1061 R->getVPDefID() == VPRecipeBase::VPWidenEVLSC ||
1062 R->getVPDefID() == VPRecipeBase::VPWidenGEPSC ||
1063 R->getVPDefID() == VPRecipeBase::VPWidenCastSC ||
1064 R->getVPDefID() == VPRecipeBase::VPReplicateSC ||
1065 R->getVPDefID() == VPRecipeBase::VPReverseVectorPointerSC ||
1066 R->getVPDefID() == VPRecipeBase::VPVectorPointerSC;
1070 auto *R = dyn_cast<VPRecipeBase>(U);
1079 case OperationType::OverflowingBinOp:
1083 case OperationType::DisjointOp:
1086 case OperationType::PossiblyExactOp:
1089 case OperationType::GEPOp:
1092 case OperationType::FPMathOp:
1093 FMFs.NoNaNs =
false;
1094 FMFs.NoInfs =
false;
1096 case OperationType::NonNegOp:
1099 case OperationType::Cmp:
1100 case OperationType::Other:
1108 case OperationType::OverflowingBinOp:
1112 case OperationType::DisjointOp:
1115 case OperationType::PossiblyExactOp:
1118 case OperationType::GEPOp:
1119 cast<GetElementPtrInst>(
I)->setNoWrapFlags(
GEPFlags);
1121 case OperationType::FPMathOp:
1122 I->setHasAllowReassoc(
FMFs.AllowReassoc);
1123 I->setHasNoNaNs(
FMFs.NoNaNs);
1124 I->setHasNoInfs(
FMFs.NoInfs);
1125 I->setHasNoSignedZeros(
FMFs.NoSignedZeros);
1126 I->setHasAllowReciprocal(
FMFs.AllowReciprocal);
1127 I->setHasAllowContract(
FMFs.AllowContract);
1128 I->setHasApproxFunc(
FMFs.ApproxFunc);
1130 case OperationType::NonNegOp:
1133 case OperationType::Cmp:
1134 case OperationType::Other:
1140 assert(OpType == OperationType::Cmp &&
1141 "recipe doesn't have a compare predicate");
1153 assert(OpType == OperationType::OverflowingBinOp &&
1154 "recipe doesn't have a NUW flag");
1159 assert(OpType == OperationType::OverflowingBinOp &&
1160 "recipe doesn't have a NSW flag");
1165 assert(OpType == OperationType::DisjointOp &&
1166 "recipe cannot have a disjoing flag");
1170#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1199 Instruction::OtherOpsEnd + 1,
1232 typedef unsigned char OpcodeTy;
1236 const std::string
Name;
1244 bool doesGeneratePerAllLanes()
const;
1248 bool canGenerateScalarForFirstLane()
const;
1263 bool isFPMathOp()
const;
1270 Opcode(Opcode),
Name(
Name.str()) {}
1277 VPValue *
B, DebugLoc
DL = {},
const Twine &
Name =
"");
1282 Opcode(Opcode),
Name(
Name.str()) {}
1289 assert(Opcode == Instruction::Or &&
"only OR opcodes can be disjoint");
1299 FastMathFlags
FMFs, DebugLoc
DL = {},
const Twine &
Name =
"");
1306 New->transferFlags(*
this);
1324#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1337 case Instruction::Ret:
1338 case Instruction::Br:
1339 case Instruction::Store:
1340 case Instruction::Switch:
1341 case Instruction::IndirectBr:
1342 case Instruction::Resume:
1343 case Instruction::CatchRet:
1344 case Instruction::Unreachable:
1345 case Instruction::Fence:
1346 case Instruction::AtomicRMW:
1406#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1414 "Op must be an operand of the recipe");
1420 "Op must be an operand of the recipe");
1433 template <
typename IterT>
1439 template <
typename IterT>
1447 R->transferFlags(*
this);
1452 return R->getVPDefID() == VPRecipeBase::VPWidenSC ||
1453 R->getVPDefID() == VPRecipeBase::VPWidenEVLSC;
1457 auto *R = dyn_cast<VPRecipeBase>(U);
1471#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1484 template <
typename IterT>
1513 "Op must be an operand of the recipe");
1519#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1538 ResultTy(ResultTy) {
1540 "opcode of underlying cast doesn't match");
1545 ResultTy(ResultTy) {}
1552 *cast<CastInst>(UV));
1566#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1590 ResultTy(ResultTy) {}
1610#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1621 "Op must be an operand of the recipe");
1635 bool MayReadFromMemory;
1638 bool MayWriteToMemory;
1641 bool MayHaveSideEffects;
1648 VectorIntrinsicID(VectorIntrinsicID), ResultTy(Ty),
1657 VectorIntrinsicID(VectorIntrinsicID), ResultTy(Ty) {
1663 MayHaveSideEffects = MayWriteToMemory ||
1664 !Attrs.hasFnAttr(Attribute::NoUnwind) ||
1665 !Attrs.hasFnAttr(Attribute::WillReturn);
1669 std::initializer_list<VPValue *> CallArguments,
1709#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1729 *cast<Instruction>(UV)),
1733 "last operand must be the called function");
1763#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1780 template <
typename IterT>
1783 :
VPRecipeBase(VPDef::VPHistogramSC, Operands, DL), Opcode(Opcode) {}
1808#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1817 template <
typename IterT>
1838#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1855 bool isPointerLoopInvariant()
const {
1859 bool isIndexLoopInvariant(
unsigned I)
const {
1863 bool areAllOperandsInvariant()
const {
1865 return Op->isDefinedOutsideLoopRegions();
1870 template <
typename IterT>
1893#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1911 IndexedTy(IndexedTy) {}
1922 "Op must be an operand of the recipe");
1936 "Op must be an operand of the recipe");
1947#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1964 IndexedTy(IndexedTy) {}
1972 "Op must be an operand of the recipe");
1979 "Op must be an operand of the recipe");
1996#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2040 return B->getVPDefID() >= VPDef::VPFirstHeaderPHISC &&
2041 B->getVPDefID() <= VPDef::VPLastHeaderPHISC;
2044 auto *
B = V->getDefiningRecipe();
2045 return B &&
B->getVPDefID() >= VPRecipeBase::VPFirstHeaderPHISC &&
2046 B->getVPDefID() <= VPRecipeBase::VPLastHeaderPHISC;
2056#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2100 return R->getVPDefID() == VPDef::VPWidenIntOrFpInductionSC ||
2101 R->getVPDefID() == VPDef::VPWidenPointerInductionSC;
2105 auto *R = V->getDefiningRecipe();
2128 "VPWidenIntOrFpInductionRecipe generates its own backedge value");
2135 "VPWidenIntOrFpInductionRecipe generates its own backedge value");
2177#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2217 bool IsScalarAfterVectorization;
2224 bool IsScalarAfterVectorization,
DebugLoc DL)
2227 IsScalarAfterVectorization(IsScalarAfterVectorization) {}
2252#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2287 "Op must be an operand of the recipe");
2291#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2324#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2333 IncomingBlocks.
push_back(IncomingBlock);
2353 return R->getVPDefID() == VPDef::VPFirstOrderRecurrencePHISC;
2367#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2390 unsigned VFScaleFactor = 1;
2396 VPValue &Start,
bool IsInLoop =
false,
2397 bool IsOrdered =
false,
unsigned VFScaleFactor = 1)
2399 RdxDesc(RdxDesc), IsInLoop(IsInLoop), IsOrdered(IsOrdered),
2400 VFScaleFactor(VFScaleFactor) {
2401 assert((!IsOrdered || IsInLoop) &&
"IsOrdered requires IsInLoop");
2409 IsOrdered, VFScaleFactor);
2417 return R->getVPDefID() == VPDef::VPReductionPHISC;
2423#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2458 "Unexpected operand order for partial reduction recipe");
2478#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2533#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2542 "Op must be an operand of the recipe");
2546 [
this](
VPUser *U) {
return U->onlyFirstLaneUsed(
this); });
2559 bool HasMask =
false;
2563 bool NeedsMaskForGaps =
false;
2568 bool NeedsMaskForGaps)
2570 NeedsMaskForGaps(NeedsMaskForGaps) {
2571 for (
unsigned i = 0; i < IG->
getFactor(); ++i)
2573 if (
I->getType()->isVoidTy())
2578 for (
auto *SV : StoredValues)
2622#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2639 "Op must be an operand of the recipe");
2654 bool IsConditional =
false;
2661 IsOrdered(IsOrdered) {
2663 IsConditional =
true;
2685 return R->getVPDefID() == VPRecipeBase::VPReductionSC ||
2686 R->getVPDefID() == VPRecipeBase::VPReductionEVLSC;
2690 auto *R = dyn_cast<VPRecipeBase>(U);
2701#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2736 R.isOrdered(), R.getDebugLoc()) {}
2749#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2761 "Op must be an operand of the recipe");
2778 template <
typename IterT>
2780 bool IsUniform,
VPValue *Mask =
nullptr)
2782 IsUniform(IsUniform), IsPredicated(Mask) {
2793 Copy->transferFlags(*
this);
2808#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2821 "Op must be an operand of the recipe");
2828 "Op must be an operand of the recipe");
2869#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2873 O << Indent <<
"BRANCH-ON-MASK ";
2892 "Op must be an operand of the recipe");
2927#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2936 "Op must be an operand of the recipe");
2965 std::initializer_list<VPValue *> Operands,
2978 return R->getVPDefID() == VPRecipeBase::VPWidenLoadSC ||
2979 R->getVPDefID() == VPRecipeBase::VPWidenStoreSC ||
2980 R->getVPDefID() == VPRecipeBase::VPWidenLoadEVLSC ||
2981 R->getVPDefID() == VPRecipeBase::VPWidenStoreEVLSC;
2985 auto *R = dyn_cast<VPRecipeBase>(U);
3043#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3052 "Op must be an operand of the recipe");
3065 {L.getAddr(), &EVL}, L.isConsecutive(),
3066 L.isReverse(), L.getDebugLoc()),
3083#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3092 "Op must be an operand of the recipe");
3123#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3132 "Op must be an operand of the recipe");
3146 S.isConsecutive(), S.isReverse(), S.getDebugLoc()) {
3165#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3174 "Op must be an operand of the recipe");
3213#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3242 return D->getVPDefID() == VPDef::VPCanonicalIVPHISC;
3247 "cannot execute this recipe, should be replaced by VPScalarPHIRecipe");
3250#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3264 "Op must be an operand of the recipe");
3271 "Op must be an operand of the recipe");
3305 return D->getVPDefID() == VPDef::VPActiveLaneMaskPHISC;
3311#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3336 return D->getVPDefID() == VPDef::VPEVLBasedIVPHISC;
3341 "cannot execute this recipe, should be replaced by VPScalarPHIRecipe");
3354 "Op must be an operand of the recipe");
3358#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3376 cast<VPCanonicalIVPHIRecipe>(
getOperand(0)));
3393#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3416 const Twine &Name =
"")
3420 Start, CanonicalIV, Step, Name) {}
3426 FPBinOp(FPBinOp), Name(Name.str()) {}
3448#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3464 "Op must be an operand of the recipe");
3480 InductionOpcode(Opcode) {}
3485 IV, Step, IndDesc.getInductionOpcode(),
3510#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3521 "Op must be an operand of the recipe");
3588 return V->getVPBlockID() == VPBlockBase::VPBasicBlockSC ||
3589 V->getVPBlockID() == VPBlockBase::VPIRBasicBlockSC;
3593 assert(Recipe &&
"No recipe to append.");
3594 assert(!Recipe->Parent &&
"Recipe already in VPlan");
3595 Recipe->Parent =
this;
3626#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3680 return V->getVPBlockID() == VPBlockBase::VPIRBasicBlockSC;
3714 const std::string &Name =
"",
bool IsReplicator =
false)
3715 :
VPBlockBase(VPRegionBlockSC, Name), Entry(Entry), Exiting(Exiting),
3716 IsReplicator(IsReplicator) {
3717 assert(Entry->getPredecessors().empty() &&
"Entry block has predecessors.");
3719 Entry->setParent(
this);
3723 :
VPBlockBase(VPRegionBlockSC, Name), Entry(nullptr), Exiting(nullptr),
3724 IsReplicator(IsReplicator) {}
3730 return V->getVPBlockID() == VPBlockBase::VPRegionBlockSC;
3740 "Entry block cannot have predecessors.");
3752 "Exit block cannot have successors.");
3753 Exiting = ExitingBlock;
3774#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3826 VPValue *BackedgeTakenCount =
nullptr;
3857 : Entry(Entry), ScalarHeader(ScalarHeader) {
3858 Entry->setPlan(
this);
3860 "scalar header must be a leaf node");
3896 bool RequiresScalarEpilogueCheck,
3897 bool TailFolded,
Loop *TheLoop);
3951 assert(TripCount &&
"trip count needs to be set before accessing it");
3959 "TripCount always must be set");
3960 TripCount = NewTripCount;
3965 if (!BackedgeTakenCount)
3966 BackedgeTakenCount =
new VPValue();
3967 return BackedgeTakenCount;
3982 assert(
hasVF(VF) &&
"Cannot set VF not already in plan");
4003 assert(UFs.
size() == 1 &&
"Expected a single UF");
4008 assert(
hasUF(UF) &&
"Cannot set the UF not already in plan");
4021 assert(V &&
"Trying to get or add the VPValue of a null Value");
4022 if (!Value2VPValue.
count(V)) {
4026 assert(!Value2VPValue.
count(V) &&
"Value already exists in VPlan");
4027 Value2VPValue[V] = VPV;
4030 assert(Value2VPValue.
count(V) &&
"Value does not exist in VPlan");
4031 assert(Value2VPValue[V]->isLiveIn() &&
4032 "Only live-ins should be in mapping");
4033 return Value2VPValue[V];
4039#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4056 if (EntryVPBB->
empty()) {
4060 return cast<VPCanonicalIVPHIRecipe>(&*EntryVPBB->
begin());
4064 return SCEVToExpansion.
lookup(S);
4069 SCEVToExpansion[S] = V;
4090 const std::string &
Name =
"",
4091 bool IsReplicator =
false) {
4102 bool IsReplicator =
false) {
4120#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4127 unsigned TabWidth = 2;
4135 void bumpIndent(
int b) { Indent = std::string((
Depth += b) * TabWidth,
' '); }
4161 const Twine &Label);
4206 "Can't insert new block with predecessors or successors.");
4223 "Can't insert new block with predecessors or successors.");
4241 "Can't insert IfTrue with successors.");
4243 "Can't insert IfFalse with successors.");
4258 unsigned PredIdx = -1u,
unsigned SuccIdx = -1u) {
4260 "Can't connect two block with different parents");
4261 assert((SuccIdx != -1u ||
From->getNumSuccessors() < 2) &&
4262 "Blocks can't have more than two successors.");
4264 From->appendSuccessor(To);
4266 From->getSuccessors()[SuccIdx] = To;
4269 To->appendPredecessor(
From);
4277 assert(To &&
"Successor to disconnect is null.");
4278 From->removeSuccessor(To);
4279 To->removePredecessor(
From);
4286 Pred->replaceSuccessor(Old, New);
4288 Succ->replacePredecessor(Old, New);
4297 template <
typename BlockTy,
typename T>
4300 using BaseTy = std::conditional_t<std::is_const<BlockTy>::value,
4310 return cast<BlockTy>(&
Block);
4321 auto &Successors =
From->getSuccessors();
4324 "must have single between From and To");
4325 unsigned SuccIdx = std::distance(Successors.
begin(),
find(Successors, To));
4327 std::distance(Predecessors.
begin(),
find(Predecessors,
From));
4357 for (
auto &
I : InterleaveGroupMap)
4359 for (
auto *
Ptr : DelSet)
4368 return InterleaveGroupMap.
lookup(Instr);
4375 enum class OpMode {
Failed, Load, Opcode };
4379 struct BundleDenseMapInfo {
4381 return {
reinterpret_cast<VPValue *
>(-1)};
4385 return {
reinterpret_cast<VPValue *
>(-2)};
4409 bool CompletelySLP =
true;
4412 unsigned WidestBundleBits = 0;
4414 using MultiNodeOpTy =
4415 typename std::pair<VPInstruction *, SmallVector<VPValue *, 4>>;
4424 bool MultiNodeActive =
false;
4446#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
static MCDisassembler::DecodeStatus addOperand(MCInst &Inst, const MCOperand &Opnd)
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
BlockVerifier::State From
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
This file defines the DenseMap class.
std::optional< std::vector< StOtherPiece > > Other
std::pair< BasicBlock *, unsigned > BlockTy
A pair of (basic block, score).
This file defines an InstructionCost class that is used when calculating the cost of an instruction,...
mir Rename Register Operands
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
static cl::opt< RegAllocEvictionAdvisorAnalysis::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Development, "development", "for training")))
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file implements the SmallBitVector class.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
This file contains the declarations of the entities induced by Vectorization Plans,...
#define VP_CLASSOF_IMPL(VPDefID)
static const uint32_t IV[8]
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
ArrayRef< T > slice(size_t N, size_t M) const
slice(n, m) - Chop off the first N elements of the array, and keep M elements in the array.
LLVM Basic Block Representation.
This class represents a function call, abstracting a target machine's calling convention.
This is the base class for all instructions that perform data casts.
Instruction::CastOps getOpcode() const
Return the opcode of this CastInst.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
An abstraction over a floating-point predicate, and a pack of an integer predicate with samesign info...
This class represents an Operation in the Expression.
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...
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
bool contains(const_arg_type_t< KeyT > Val) const
Return true if the specified key is in the map, false otherwise.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
constexpr bool isScalar() const
Exactly one element.
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.
static GEPNoWrapFlags none()
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
Common base class shared among various IRBuilders.
A struct for saving information about induction variables.
InductionKind
This enum represents the kinds of inductions that we support.
InnerLoopVectorizer vectorizes loops which contain only one basic block to a specified vectorization ...
bool mayWriteToMemory() const LLVM_READONLY
Return true if this instruction may modify memory.
bool mayHaveSideEffects() const LLVM_READONLY
Return true if the instruction may have side effects.
bool mayReadFromMemory() const LLVM_READONLY
Return true if this instruction may read memory.
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
The group of interleaved loads/stores sharing the same stride and close to each other.
uint32_t getFactor() const
InstTy * getMember(uint32_t Index) const
Get the member with the given index Index.
InstTy * getInsertPos() const
Drive the analysis of interleaved memory accesses in the loop.
This is an important class for using LLVM in a threaded context.
An instruction for reading from memory.
LoopVectorizationCostModel - estimates the expected speedups due to vectorization.
This class emits a version of the loop where run-time checks ensure that may-alias pointers can't ove...
Represents a single loop in the control flow graph.
bool onlyWritesMemory() const
Whether this function only (at most) writes memory.
bool onlyReadsMemory() const
Whether this function only (at most) reads memory.
An interface layer with SCEV used to manage how we see SCEV expressions for values in the context of ...
The RecurrenceDescriptor is used to identify recurrences variables in a loop.
This class represents an analyzed expression in the program.
The main scalar evolution driver.
This class represents the LLVM 'select' instruction.
size_type size() const
Determine the number of elements in the SetVector.
iterator end()
Get an iterator to the end of the SetVector.
void clear()
Completely clear the SetVector.
size_type count(const key_type &key) const
Count the number of elements of a given key in the SetVector.
bool empty() const
Determine if the SetVector is empty or not.
iterator begin()
Get an iterator to the beginning of the SetVector.
bool insert(const value_type &X)
Insert a new element into the SetVector.
bool contains(const key_type &key) const
Check if the SetVector contains the given key.
This class provides computation of slot numbers for LLVM Assembly writing.
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.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
A SetVector that performs no allocations if smaller than a certain size.
iterator erase(const_iterator CI)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
StringRef - Represent a constant reference to a string, i.e.
Provides information about what library functions are available for the current target.
This class represents a truncation of integer types.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
std::string str() const
Return the twine contents as a std::string.
The instances of the Type class are immutable: once they are created, they are never changed.
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
Iterator to iterate over vectorization factors in a VFRange.
ElementCount operator*() const
iterator(ElementCount VF)
bool operator==(const iterator &Other) const
A recipe for generating the active lane mask for the vector loop that is used to predicate the vector...
void execute(VPTransformState &State) override
Generate the active lane mask phi of the vector loop.
VPActiveLaneMaskPHIRecipe * clone() override
Clone the current recipe.
static bool classof(const VPHeaderPHIRecipe *D)
VPActiveLaneMaskPHIRecipe(VPValue *StartMask, DebugLoc DL)
~VPActiveLaneMaskPHIRecipe() override=default
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPBasicBlock serves as the leaf of the Hierarchical Control-Flow Graph.
RecipeListTy::const_iterator const_iterator
void appendRecipe(VPRecipeBase *Recipe)
Augment the existing recipes of a VPBasicBlock with an additional Recipe as the last recipe.
RecipeListTy::const_reverse_iterator const_reverse_iterator
RecipeListTy::iterator iterator
Instruction iterators...
void connectToPredecessors(VPTransformState::CFGState &CFG)
Connect the VPBBs predecessors' in the VPlan CFG to the IR basic block generated for this VPBB.
void execute(VPTransformState *State) override
The method which generates the output IR instructions that correspond to this VPBasicBlock,...
RecipeListTy & getRecipeList()
Returns a reference to the list of recipes.
VPBasicBlock(const unsigned char BlockSC, const Twine &Name="")
VPBasicBlock(const Twine &Name="", VPRecipeBase *Recipe=nullptr)
iterator begin()
Recipe iterator methods.
RecipeListTy::reverse_iterator reverse_iterator
VPBasicBlock * clone() override
Clone the current block and it's recipes, without updating the operands of the cloned recipes.
iterator_range< iterator > phis()
Returns an iterator range over the PHI-like recipes in the block.
InstructionCost cost(ElementCount VF, VPCostContext &Ctx) override
Return the cost of this VPBasicBlock.
iterator getFirstNonPhi()
Return the position of the first non-phi node recipe in the block.
VPRegionBlock * getEnclosingLoopRegion()
const_reverse_iterator rbegin() const
VPBasicBlock * splitAt(iterator SplitAt)
Split current block at SplitAt by inserting a new block between the current block and its successors ...
RecipeListTy Recipes
The VPRecipes held in the order of output instructions to generate.
void executeRecipes(VPTransformState *State, BasicBlock *BB)
Execute the recipes in the IR basic block BB.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print this VPBsicBlock to O, prefixing all lines with Indent.
const VPRecipeBase & front() const
const_iterator begin() const
bool isExiting() const
Returns true if the block is exiting it's parent region.
VPRecipeBase * getTerminator()
If the block has multiple successors, return the branch recipe terminating the block.
const VPRecipeBase & back() const
void insert(VPRecipeBase *Recipe, iterator InsertPt)
const_iterator end() const
static bool classof(const VPBlockBase *V)
Method to support type inquiry through isa, cast, and dyn_cast.
static RecipeListTy VPBasicBlock::* getSublistAccess(VPRecipeBase *)
Returns a pointer to a member of the recipe list.
reverse_iterator rbegin()
const_reverse_iterator rend() const
A recipe for vectorizing a phi-node as a sequence of mask-based select instructions.
VPBlendRecipe(PHINode *Phi, ArrayRef< VPValue * > Operands)
The blend operation is a User of the incoming values and of their respective masks,...
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenMemoryRecipe.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPValue * getIncomingValue(unsigned Idx) const
Return incoming value number Idx.
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...
VPBlendRecipe * clone() override
Clone the current recipe.
void execute(VPTransformState &State) override
Generate the phi/select nodes.
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()
VPBlocksTy & getPredecessors()
iterator_range< VPBlockBase ** > predecessors()
const VPBasicBlock * getExitingBasicBlock() const
LLVM_DUMP_METHOD void dump() const
Dump this VPBlockBase to dbgs().
void setName(const Twine &newName)
size_t getNumSuccessors() const
iterator_range< VPBlockBase ** > successors()
virtual void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const =0
Print plain-text dump of this VPBlockBase to O, prefixing all lines with Indent.
void swapSuccessors()
Swap successors of the block. The block must have exactly 2 successors.
void printSuccessors(raw_ostream &O, const Twine &Indent) const
Print the successors of this block to O, prefixing all lines with Indent.
bool isLegalToHoistInto()
Return true if it is legal to hoist instructions into this block.
virtual ~VPBlockBase()=default
void print(raw_ostream &O) const
Print plain-text dump of this VPlan to O.
const VPBlocksTy & getHierarchicalPredecessors()
size_t getNumPredecessors() const
void setPredecessors(ArrayRef< VPBlockBase * > NewPreds)
Set each VPBasicBlock in NewPreds as predecessor of this VPBlockBase.
VPBlockBase * getEnclosingBlockWithPredecessors()
const VPBlocksTy & getPredecessors() const
virtual VPBlockBase * clone()=0
Clone the current block and it's recipes without updating the operands of the cloned recipes,...
enum { VPRegionBlockSC, VPBasicBlockSC, VPIRBasicBlockSC } VPBlockTy
An enumeration for keeping track of the concrete subclass of VPBlockBase that are actually instantiat...
virtual InstructionCost cost(ElementCount VF, VPCostContext &Ctx)=0
Return the cost of the block.
void setPlan(VPlan *ParentPlan)
Sets the pointer of the plan containing the block.
const VPRegionBlock * getParent() const
const std::string & getName() const
void clearSuccessors()
Remove all the successors of this block.
VPBlockBase * getSingleHierarchicalSuccessor()
void setTwoSuccessors(VPBlockBase *IfTrue, VPBlockBase *IfFalse)
Set two given VPBlockBases IfTrue and IfFalse to be the two successors of this VPBlockBase.
VPBlockBase * getSinglePredecessor() const
virtual void execute(VPTransformState *State)=0
The method which generates the output IR that correspond to this VPBlockBase, thereby "executing" the...
const VPBlocksTy & getHierarchicalSuccessors()
void clearPredecessors()
Remove all the predecessor of this block.
unsigned getVPBlockID() const
void printAsOperand(raw_ostream &OS, bool PrintType=false) const
VPBlockBase(const unsigned char SC, const std::string &N)
VPBlocksTy & getSuccessors()
VPBlockBase * getEnclosingBlockWithSuccessors()
An Enclosing Block of a block B is any block containing B, including B itself.
const VPBasicBlock * getEntryBasicBlock() const
void setOneSuccessor(VPBlockBase *Successor)
Set a given VPBlockBase Successor as the single successor of this VPBlockBase.
void setParent(VPRegionBlock *P)
VPBlockBase * getSingleHierarchicalPredecessor()
VPBlockBase * getSingleSuccessor() const
const VPBlocksTy & getSuccessors() const
Class that provides utilities for VPBlockBases in VPlan.
static auto blocksOnly(const T &Range)
Return an iterator range over Range which only includes BlockTy blocks.
static void insertBlockAfter(VPBlockBase *NewBlock, VPBlockBase *BlockPtr)
Insert disconnected VPBlockBase NewBlock after BlockPtr.
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.
static void reassociateBlocks(VPBlockBase *Old, VPBlockBase *New)
Reassociate all the blocks connected to Old so that they now point to New.
static void insertBlockBefore(VPBlockBase *NewBlock, VPBlockBase *BlockPtr)
Insert disconnected block NewBlock before Blockptr.
A recipe for generating conditional branches on the bits of a mask.
VPValue * getMask() const
Return the mask used by this recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPBranchOnMaskRecipe.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPBranchOnMaskRecipe(VPValue *BlockInMask)
VPBranchOnMaskRecipe * clone() override
Clone the current recipe.
bool usesScalars(const VPValue *Op) const override
Returns true if the recipe uses scalars of operand Op.
void execute(VPTransformState &State) override
Generate the extraction of the appropriate bit from the block mask and the conditional branch.
Canonical scalar induction phi of the vector loop.
bool onlyFirstPartUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first part of operand Op.
~VPCanonicalIVPHIRecipe() override=default
static bool classof(const VPHeaderPHIRecipe *D)
VPCanonicalIVPHIRecipe * clone() override
Clone the current recipe.
VPCanonicalIVPHIRecipe(VPValue *StartV, DebugLoc DL)
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
Type * getScalarType() const
Returns the scalar type of the induction.
void execute(VPTransformState &State) override
Generate the phi nodes.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPCanonicalIVPHIRecipe.
This class augments a recipe with a set of VPValues defined by the recipe.
unsigned getVPDefID() const
A recipe for converting the input value IV value to the corresponding value of an IV with different s...
void execute(VPTransformState &State) override
Generate the transformed value of the induction at offset StartValue (1.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPDerivedIVRecipe.
VPValue * getStepValue() const
Type * getScalarType() const
VPDerivedIVRecipe * clone() override
Clone the current recipe.
VPDerivedIVRecipe(InductionDescriptor::InductionKind Kind, const FPMathOperator *FPBinOp, VPValue *Start, VPValue *IV, VPValue *Step, const Twine &Name="")
~VPDerivedIVRecipe() override=default
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPValue * getStartValue() const
VPDerivedIVRecipe(const InductionDescriptor &IndDesc, VPValue *Start, VPCanonicalIVPHIRecipe *CanonicalIV, VPValue *Step, const Twine &Name="")
A recipe for generating the phi node for the current index of elements, adjusted in accordance with E...
static bool classof(const VPHeaderPHIRecipe *D)
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPEVLBasedIVPHIRecipe * clone() override
Clone the current recipe.
~VPEVLBasedIVPHIRecipe() override=default
void execute(VPTransformState &State) override
Generate the phi nodes.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPEVLBasedIVPHIRecipe.
VPEVLBasedIVPHIRecipe(VPValue *StartIV, DebugLoc DL)
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
Recipe to expand a SCEV expression.
VPExpandSCEVRecipe(const SCEV *Expr, ScalarEvolution &SE)
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPExpandSCEVRecipe.
const SCEV * getSCEV() const
void execute(VPTransformState &State) override
Generate a canonical vector induction variable of the vector loop, with.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPExpandSCEVRecipe * clone() override
Clone the current recipe.
~VPExpandSCEVRecipe() override=default
A recipe representing a sequence of load -> update -> store as part of a histogram operation.
void execute(VPTransformState &State) override
Produce a vectorized histogram operation.
VP_CLASSOF_IMPL(VPDef::VPHistogramSC)
VPHistogramRecipe * clone() override
Clone the current recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPHistogramRecipe.
VPHistogramRecipe(unsigned Opcode, iterator_range< IterT > Operands, DebugLoc DL={})
VPValue * getMask() const
Return the mask operand if one was provided, or a null pointer if all lanes should be executed uncond...
unsigned getOpcode() const
~VPHistogramRecipe() override=default
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
A special type of VPBasicBlock that wraps an existing IR basic block.
void execute(VPTransformState *State) override
The method which generates the output IR instructions that correspond to this VPBasicBlock,...
VPIRBasicBlock(BasicBlock *IRBB)
BasicBlock * getIRBasicBlock() const
~VPIRBasicBlock() override
static bool classof(const VPBlockBase *V)
VPIRBasicBlock * clone() override
Clone the current block and it's recipes, without updating the operands of the cloned recipes.
A recipe to wrap on original IR instruction not to be modified during execution, execept for PHIs.
Instruction & getInstruction() const
bool onlyFirstPartUsed(const VPValue *Op) const override
Returns true if the VPUser only uses the first part of operand Op.
~VPIRInstruction() override=default
void execute(VPTransformState &State) override
The method which generates the output IR instructions that correspond to this VPRecipe,...
VPIRInstruction * clone() override
Clone the current recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPIRInstruction.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
bool usesScalars(const VPValue *Op) const override
Returns true if the VPUser uses scalars of operand Op.
VPIRInstruction(Instruction &I)
This is a concrete Recipe that models a single VPlan-level instruction.
VPInstruction(VPValue *Ptr, VPValue *Offset, GEPNoWrapFlags Flags, DebugLoc DL={}, const Twine &Name="")
VPInstruction(unsigned Opcode, ArrayRef< VPValue * > Operands, DebugLoc DL, const Twine &Name="")
VPInstruction * clone() override
Clone the current recipe.
@ ResumePhi
Creates a scalar phi in a leaf VPBB with a single predecessor in VPlan.
@ FirstOrderRecurrenceSplice
@ CanonicalIVIncrementForPart
@ CalculateTripCountMinusVF
bool opcodeMayReadOrWriteFromMemory() const
Returns true if the underlying opcode may read from or write to memory.
LLVM_DUMP_METHOD void dump() const
Print the VPInstruction to dbgs() (for debugging).
StringRef getName() const
Returns the symbolic name assigned to the VPInstruction.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPInstruction.
unsigned getOpcode() const
VPInstruction(unsigned Opcode, std::initializer_list< VPValue * > Operands, WrapFlagsTy WrapFlags, DebugLoc DL={}, const Twine &Name="")
bool onlyFirstPartUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first part of operand Op.
VPInstruction(unsigned Opcode, std::initializer_list< VPValue * > Operands, DebugLoc DL={}, const Twine &Name="")
VPInstruction(unsigned Opcode, std::initializer_list< VPValue * > Operands, DisjointFlagsTy DisjointFlag, DebugLoc DL={}, const Twine &Name="")
bool isVectorToScalar() const
Returns true if this VPInstruction produces a scalar value from a vector, e.g.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the VPInstruction to O.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
bool isSingleScalar() const
Returns true if this VPInstruction's operands are single scalars and the result is also a single scal...
void execute(VPTransformState &State) override
Generate the instruction.
VPInterleaveRecipe is a recipe for transforming an interleave group of load or stores into one wide l...
bool onlyFirstLaneUsed(const VPValue *Op) const override
The recipe only uses the first lane of the address.
~VPInterleaveRecipe() override=default
VPValue * getAddr() const
Return the address accessed by this recipe.
VPInterleaveRecipe(const InterleaveGroup< Instruction > *IG, VPValue *Addr, ArrayRef< VPValue * > StoredValues, VPValue *Mask, bool NeedsMaskForGaps)
VPValue * getMask() const
Return the mask used by this recipe.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPInterleaveRecipe * clone() override
Clone the current recipe.
void execute(VPTransformState &State) override
Generate the wide load or store, and shuffles.
ArrayRef< VPValue * > getStoredValues() const
Return the VPValues stored by this interleave group.
Instruction * getInsertPos() const
const InterleaveGroup< Instruction > * getInterleaveGroup()
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPInterleaveRecipe.
unsigned getNumStoreOperands() const
Returns the number of stored operands of this interleave group.
~VPInterleavedAccessInfo()
InterleaveGroup< VPInstruction > * getInterleaveGroup(VPInstruction *Instr) const
Get the interleave group that Instr belongs to.
In what follows, the term "input IR" refers to code that is fed into the vectorizer whereas the term ...
static VPLane getLastLaneForVF(const ElementCount &VF)
static unsigned getNumCachedLanes(const ElementCount &VF)
Returns the maxmimum number of lanes that we are able to consider caching for VF.
Value * getAsRuntimeExpr(IRBuilderBase &Builder, const ElementCount &VF) const
Returns an expression describing the lane index that can be used at runtime.
VPLane(unsigned Lane, Kind LaneKind)
Kind getKind() const
Returns the Kind of lane offset.
static VPLane getLaneFromEnd(const ElementCount &VF, unsigned Offset)
bool isFirstLane() const
Returns true if this is the first lane of the whole vector.
unsigned getKnownLane() const
Returns a compile-time known value for the lane index and asserts if the lane can only be calculated ...
static VPLane getFirstLane()
Kind
Kind describes how to interpret Lane.
@ ScalableLast
For ScalableLast, Lane is the offset from the start of the last N-element subvector in a scalable vec...
@ First
For First, Lane is the index into the first N elements of a fixed-vector <N x <ElTy>> or a scalable v...
unsigned mapToCacheIndex(const ElementCount &VF) const
Maps the lane to a cache index based on VF.
A recipe for forming partial reductions.
~VPPartialReductionRecipe() override=default
void execute(VPTransformState &State) override
Generate the reduction in the loop.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPPartialReductionRecipe.
unsigned getOpcode() const
Get the binary op's opcode.
VPPartialReductionRecipe(unsigned Opcode, VPValue *Op0, VPValue *Op1, Instruction *ReductionInst=nullptr)
VPPartialReductionRecipe(Instruction *ReductionInst, VPValue *Op0, VPValue *Op1)
VPPartialReductionRecipe * clone() override
Clone the current recipe.
VPPredInstPHIRecipe is a recipe for generating the phi nodes needed when control converges back from ...
~VPPredInstPHIRecipe() override=default
bool usesScalars(const VPValue *Op) const override
Returns true if the recipe uses scalars of operand Op.
void execute(VPTransformState &State) override
Generates phi nodes for live-outs (from a replicate region) as needed to retain SSA form.
VPPredInstPHIRecipe * clone() override
Clone the current recipe.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPPredInstPHIRecipe.
VPPredInstPHIRecipe(VPValue *PredV, DebugLoc DL)
Construct a VPPredInstPHIRecipe given PredInst whose value needs a phi nodes after merging back from ...
VPRecipeBase is a base class modeling a sequence of one or more output IR instructions.
bool mayReadFromMemory() const
Returns true if the recipe may read from memory.
bool mayReadOrWriteMemory() const
Returns true if the recipe may read from or write to memory.
bool mayHaveSideEffects() const
Returns true if the recipe may have side-effects.
bool mayWriteToMemory() const
Returns true if the recipe may write to memory.
virtual InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const
Compute the cost of this recipe either using a recipe's specialized implementation or using the legac...
virtual ~VPRecipeBase()=default
VPBasicBlock * getParent()
DebugLoc getDebugLoc() const
Returns the debug location of the recipe.
virtual void execute(VPTransformState &State)=0
The method which generates the output IR instructions that correspond to this VPRecipe,...
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.
static bool classof(const VPDef *D)
Method to support type inquiry through isa, cast, and dyn_cast.
iplist< VPRecipeBase >::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
VPRecipeBase(const unsigned char SC, ArrayRef< VPValue * > Operands, DebugLoc DL={})
virtual VPRecipeBase * clone()=0
Clone the current recipe.
const VPBasicBlock * getParent() const
InstructionCost cost(ElementCount VF, VPCostContext &Ctx)
Return the cost of this recipe, taking into account if the cost computation should be skipped and the...
static bool classof(const VPUser *U)
VPRecipeBase(const unsigned char SC, iterator_range< IterT > Operands, DebugLoc DL={})
void removeFromParent()
This method unlinks 'this' from the containing basic block, but does not delete it.
bool isPhi() const
Returns true for PHI-like recipes.
void moveAfter(VPRecipeBase *MovePos)
Unlink this recipe from its current VPBasicBlock and insert it into the VPBasicBlock that MovePos liv...
Class to record LLVM IR flag for a recipe along with it.
NonNegFlagsTy NonNegFlags
CmpInst::Predicate CmpPredicate
GEPNoWrapFlags getGEPNoWrapFlags() const
VPRecipeWithIRFlags(const unsigned char SC, IterT Operands, CmpInst::Predicate Pred, DebugLoc DL={})
void setFlags(Instruction *I) const
Set the IR flags for I.
VPRecipeWithIRFlags(const unsigned char SC, IterT Operands, GEPNoWrapFlags GEPFlags, DebugLoc DL={})
static bool classof(const VPRecipeBase *R)
VPRecipeWithIRFlags(const unsigned char SC, IterT Operands, FastMathFlags FMFs, DebugLoc DL={})
void dropPoisonGeneratingFlags()
Drop all poison-generating flags.
bool hasFastMathFlags() const
Returns true if the recipe has fast-math flags.
VPRecipeWithIRFlags(const unsigned char SC, IterT Operands, Instruction &I)
DisjointFlagsTy DisjointFlags
VPRecipeWithIRFlags(const unsigned char SC, IterT Operands, WrapFlagsTy WrapFlags, DebugLoc DL={})
VPRecipeWithIRFlags(const unsigned char SC, IterT Operands, DisjointFlagsTy DisjointFlags, DebugLoc DL={})
void transferFlags(VPRecipeWithIRFlags &Other)
bool hasNoUnsignedWrap() const
void printFlags(raw_ostream &O) const
CmpInst::Predicate getPredicate() const
bool hasNoSignedWrap() const
static bool classof(const VPUser *U)
FastMathFlags getFastMathFlags() const
VPRecipeWithIRFlags(const unsigned char SC, IterT Operands, DebugLoc DL={})
A recipe to represent inloop reduction operations with vector-predication intrinsics,...
void execute(VPTransformState &State) override
Generate the reduction in the loop.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPValue * getEVL() const
The VPValue of the explicit vector length.
VPReductionEVLRecipe(VPReductionRecipe &R, VPValue &EVL, VPValue *CondOp)
VPReductionEVLRecipe * clone() override
Clone the current recipe.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
~VPReductionEVLRecipe() override=default
A recipe for handling reduction phis.
bool isOrdered() const
Returns true, if the phi is part of an ordered reduction.
VPReductionPHIRecipe * clone() override
Clone the current recipe.
~VPReductionPHIRecipe() override=default
VPReductionPHIRecipe(PHINode *Phi, const RecurrenceDescriptor &RdxDesc, VPValue &Start, bool IsInLoop=false, bool IsOrdered=false, unsigned VFScaleFactor=1)
Create a new VPReductionPHIRecipe for the reduction Phi described by RdxDesc.
bool isInLoop() const
Returns true, if the phi is part of an in-loop reduction.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
void execute(VPTransformState &State) override
Generate the phi/select nodes.
static bool classof(const VPHeaderPHIRecipe *R)
const RecurrenceDescriptor & getRecurrenceDescriptor() const
A recipe to represent inloop reduction operations, performing a reduction on a vector operand into a ...
bool isConditional() const
Return true if the in-loop reduction is conditional.
static bool classof(const VPRecipeBase *R)
VPReductionRecipe(const RecurrenceDescriptor &R, Instruction *I, VPValue *ChainOp, VPValue *VecOp, VPValue *CondOp, bool IsOrdered, DebugLoc DL={})
VPReductionRecipe(const unsigned char SC, const RecurrenceDescriptor &R, Instruction *I, ArrayRef< VPValue * > Operands, VPValue *CondOp, bool IsOrdered, DebugLoc DL)
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of VPReductionRecipe.
VPValue * getVecOp() const
The VPValue of the vector value to be reduced.
const RecurrenceDescriptor & getRecurrenceDescriptor() const
Return the recurrence decriptor for the in-loop reduction.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPValue * getCondOp() const
The VPValue of the condition for the block.
bool isOrdered() const
Return true if the in-loop reduction is ordered.
~VPReductionRecipe() override=default
VPValue * getChainOp() const
The VPValue of the scalar Chain being accumulated.
VPReductionRecipe * clone() override
Clone the current recipe.
void execute(VPTransformState &State) override
Generate the reduction in the loop.
static bool classof(const VPUser *U)
VPRegionBlock represents a collection of VPBasicBlocks and VPRegionBlocks which form a Single-Entry-S...
VPRegionBlock * clone() override
Clone all blocks in the single-entry single-exit region of the block and their recipes without updati...
const VPBlockBase * getEntry() const
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.
VPBlockBase * getExiting()
void setEntry(VPBlockBase *EntryBlock)
Set EntryBlock as the entry VPBlockBase of this VPRegionBlock.
InstructionCost cost(ElementCount VF, VPCostContext &Ctx) override
Return the cost of the block.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print this VPRegionBlock to O (recursively), prefixing all lines with Indent.
VPRegionBlock(const std::string &Name="", bool IsReplicator=false)
VPRegionBlock(VPBlockBase *Entry, VPBlockBase *Exiting, const std::string &Name="", bool IsReplicator=false)
void execute(VPTransformState *State) override
The method which generates the output IR instructions that correspond to this VPRegionBlock,...
const VPBlockBase * getExiting() const
VPBasicBlock * getPreheaderVPBB()
Returns the pre-header VPBasicBlock of the loop region.
~VPRegionBlock() override
static bool classof(const VPBlockBase *V)
Method to support type inquiry through isa, cast, and dyn_cast.
VPReplicateRecipe replicates a given instruction producing multiple scalar copies of the original sca...
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
void execute(VPTransformState &State) override
Generate replicas of the desired Ingredient.
~VPReplicateRecipe() override=default
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPReplicateRecipe.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
bool usesScalars(const VPValue *Op) const override
Returns true if the recipe uses scalars of operand Op.
bool isPredicated() const
VPReplicateRecipe * clone() override
Clone the current recipe.
VPReplicateRecipe(Instruction *I, iterator_range< IterT > Operands, bool IsUniform, VPValue *Mask=nullptr)
unsigned getOpcode() const
VPValue * getMask()
Return the mask of a predicated VPReplicateRecipe.
bool shouldPack() const
Returns true if the recipe is used by a widened recipe via an intervening VPPredInstPHIRecipe.
A recipe to compute the pointers for widened memory accesses of IndexTy in reverse order.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPVectorPointerRecipe.
VPReverseVectorPointerRecipe * clone() override
Clone the current recipe.
bool onlyFirstPartUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first part of operand Op.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
void execute(VPTransformState &State) override
The method which generates the output IR instructions that correspond to this VPRecipe,...
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the VPUser only uses the first lane of operand Op.
VPReverseVectorPointerRecipe(VPValue *Ptr, VPValue *VF, Type *IndexedTy, GEPNoWrapFlags GEPFlags, DebugLoc DL)
const VPValue * getVFValue() const
VPScalarCastRecipe is a recipe to create scalar cast instructions.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPScalarCastRecipe.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Each concrete VPDef prints itself.
~VPScalarCastRecipe() override=default
VPScalarCastRecipe * clone() override
Clone the current recipe.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the VPUser only uses the first lane of operand Op.
VPScalarCastRecipe(Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy, DebugLoc DL)
void execute(VPTransformState &State) override
The method which generates the output IR instructions that correspond to this VPRecipe,...
Type * getResultType() const
Returns the result type of the cast.
A recipe for handling phi nodes of integer and floating-point inductions, producing their scalar valu...
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPValue * getStepValue() const
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPScalarIVStepsRecipe.
VPScalarIVStepsRecipe(const InductionDescriptor &IndDesc, VPValue *IV, VPValue *Step)
VPScalarIVStepsRecipe * clone() override
Clone the current recipe.
VPScalarIVStepsRecipe(VPValue *IV, VPValue *Step, Instruction::BinaryOps Opcode, FastMathFlags FMFs)
~VPScalarIVStepsRecipe() override=default
void execute(VPTransformState &State) override
Generate the scalarized versions of the phi node as needed by their users.
Recipe to generate a scalar PHI.
VPScalarPHIRecipe(VPValue *Start, VPValue *BackedgeValue, DebugLoc DL, StringRef Name)
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
~VPScalarPHIRecipe() override=default
void execute(VPTransformState &State) override
Generate the phi/select nodes.
VPScalarPHIRecipe * clone() override
Clone the current recipe.
VPSingleDef is a base class for recipes for modeling a sequence of one or more output IR that define ...
VPSingleDefRecipe(const unsigned char SC, ArrayRef< VPValue * > Operands, DebugLoc DL={})
Instruction * getUnderlyingInstr()
Returns the underlying instruction.
static bool classof(const VPRecipeBase *R)
const Instruction * getUnderlyingInstr() const
VPSingleDefRecipe(const unsigned char SC, IterT Operands, DebugLoc DL={})
static bool classof(const VPUser *U)
LLVM_DUMP_METHOD void dump() const
Print this VPSingleDefRecipe to dbgs() (for debugging).
VPSingleDefRecipe(const unsigned char SC, IterT Operands, Value *UV, DebugLoc DL={})
virtual VPSingleDefRecipe * clone() override=0
Clone the current recipe.
This class can be used to assign names to VPValues.
An analysis for type-inference for VPValues.
Helper to access the operand that contains the unroll part for this recipe after unrolling.
VPValue * getUnrollPartOperand(VPUser &U) const
Return the VPValue operand containing the unroll part or null if there is no such operand.
unsigned getUnrollPart(VPUser &U) const
Return the unroll part.
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
operand_iterator op_end()
operand_iterator op_begin()
VPValue * getOperand(unsigned N) const
void addOperand(VPValue *Operand)
bool isDefinedOutsideLoopRegions() const
Returns true if the VPValue is defined outside any loop region.
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.
unsigned getNumUsers() const
Value * getLiveInIRValue()
Returns the underlying IR value, if this VPValue is defined outside the scope of VPlan.
bool isLiveIn() const
Returns true if this VPValue is a live-in, i.e. defined outside the VPlan.
friend class VPRecipeBase
A recipe to compute the pointers for widened memory accesses of IndexTy.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPVectorPointerRecipe(VPValue *Ptr, Type *IndexedTy, GEPNoWrapFlags GEPFlags, DebugLoc DL)
void execute(VPTransformState &State) override
The method which generates the output IR instructions that correspond to this VPRecipe,...
bool onlyFirstPartUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first part of operand Op.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the VPUser only uses the first lane of operand Op.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPHeaderPHIRecipe.
VPVectorPointerRecipe * clone() override
Clone the current recipe.
A recipe for widening Call instructions using library calls.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
const_operand_range arg_operands() const
VPWidenCallRecipe * clone() override
Clone the current recipe.
Function * getCalledScalarFunction() const
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenCallRecipe.
void execute(VPTransformState &State) override
Produce a widened version of the call instruction.
operand_range arg_operands()
~VPWidenCallRecipe() override=default
VPWidenCallRecipe(Value *UV, Function *Variant, ArrayRef< VPValue * > CallArguments, DebugLoc DL={})
A Recipe for widening the canonical induction variable of the vector loop.
void execute(VPTransformState &State) override
Generate a canonical vector induction variable of the vector loop, with start = {<Part*VF,...
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
~VPWidenCanonicalIVRecipe() override=default
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenCanonicalIVPHIRecipe.
VPWidenCanonicalIVRecipe * clone() override
Clone the current recipe.
VPWidenCanonicalIVRecipe(VPCanonicalIVPHIRecipe *CanonicalIV)
VPWidenCastRecipe is a recipe to create vector cast instructions.
VPWidenCastRecipe(Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy, CastInst &UI)
Instruction::CastOps getOpcode() const
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
Type * getResultType() const
Returns the result type of the cast.
VPWidenCastRecipe(Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy)
void execute(VPTransformState &State) override
Produce widened copies of the cast.
~VPWidenCastRecipe() override=default
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenCastRecipe.
VPWidenCastRecipe * clone() override
Clone the current recipe.
A recipe for widening operations with vector-predication intrinsics with explicit vector length (EVL)...
const VPValue * getEVL() const
~VPWidenEVLRecipe() override=default
VPWidenEVLRecipe(Instruction &I, iterator_range< IterT > Operands, VPValue &EVL)
VPWidenRecipe * clone() override final
Clone the current recipe.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override final
Print the recipe.
VP_CLASSOF_IMPL(VPDef::VPWidenEVLSC)
VPWidenEVLRecipe(VPWidenRecipe &W, VPValue &EVL)
void execute(VPTransformState &State) override final
Produce a vp-intrinsic using the opcode and operands of the recipe, processing EVL elements.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
A recipe for handling GEP instructions.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
void execute(VPTransformState &State) override
Generate the gep nodes.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenGEPRecipe.
VPWidenGEPRecipe * clone() override
Clone the current recipe.
~VPWidenGEPRecipe() override=default
VPWidenGEPRecipe(GetElementPtrInst *GEP, iterator_range< IterT > Operands)
Base class for widened induction (VPWidenIntOrFpInductionRecipe and VPWidenPointerInductionRecipe),...
static bool classof(const VPValue *V)
VPValue * getBackedgeValue() override
Returns the incoming value from the loop backedge.
PHINode * getPHINode() const
VPWidenInductionRecipe(unsigned char Kind, PHINode *IV, VPValue *Start, VPValue *Step, const InductionDescriptor &IndDesc, DebugLoc DL)
VPValue * getStepValue()
Returns the step value of the induction.
const InductionDescriptor & getInductionDescriptor() const
Returns the induction descriptor for the recipe.
VPRecipeBase & getBackedgeRecipe() override
Returns the backedge value as a recipe.
static bool classof(const VPRecipeBase *R)
static bool classof(const VPHeaderPHIRecipe *R)
const VPValue * getStepValue() const
virtual void execute(VPTransformState &State) override=0
Generate the phi nodes.
A recipe for handling phi nodes of integer and floating-point inductions, producing their vector valu...
const TruncInst * getTruncInst() const
const VPValue * getVFValue() const
~VPWidenIntOrFpInductionRecipe() override=default
VPWidenIntOrFpInductionRecipe(PHINode *IV, VPValue *Start, VPValue *Step, VPValue *VF, const InductionDescriptor &IndDesc, TruncInst *Trunc, DebugLoc DL)
VPWidenIntOrFpInductionRecipe * clone() override
Clone the current recipe.
TruncInst * getTruncInst()
Returns the first defined value as TruncInst, if it is one or nullptr otherwise.
void execute(VPTransformState &State) override
Generate the vectorized and scalarized versions of the phi node as needed by their users.
VPWidenIntOrFpInductionRecipe(PHINode *IV, VPValue *Start, VPValue *Step, VPValue *VF, const InductionDescriptor &IndDesc, DebugLoc DL)
VPValue * getLastUnrolledPartOperand()
Returns the VPValue representing the value of this induction at the last unrolled part,...
Type * getScalarType() const
Returns the scalar type of the induction.
bool isCanonical() const
Returns true if the induction is canonical, i.e.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPValue * getSplatVFValue()
A recipe for widening vector intrinsics.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the VPUser only uses the first lane of operand Op.
VPWidenIntrinsicRecipe(Intrinsic::ID VectorIntrinsicID, std::initializer_list< VPValue * > CallArguments, Type *Ty, DebugLoc DL={})
Intrinsic::ID getVectorIntrinsicID() const
Return the ID of the intrinsic.
bool mayReadFromMemory() const
Returns true if the intrinsic may read from memory.
StringRef getIntrinsicName() const
Return to name of the intrinsic as string.
VPWidenIntrinsicRecipe(Intrinsic::ID VectorIntrinsicID, ArrayRef< VPValue * > CallArguments, Type *Ty, DebugLoc DL={})
bool mayHaveSideEffects() const
Returns true if the intrinsic may have side-effects.
VPWidenIntrinsicRecipe * clone() override
Clone the current recipe.
bool mayWriteToMemory() const
Returns true if the intrinsic may write to memory.
~VPWidenIntrinsicRecipe() override=default
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
Type * getResultType() const
Return the scalar return type of the intrinsic.
void execute(VPTransformState &State) override
Produce a widened version of the vector intrinsic.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this vector intrinsic.
VPWidenIntrinsicRecipe(CallInst &CI, Intrinsic::ID VectorIntrinsicID, ArrayRef< VPValue * > CallArguments, Type *Ty, DebugLoc DL={})
A common base class for widening memory operations.
bool IsMasked
Whether the memory access is masked.
bool Reverse
Whether the consecutive accessed addresses are in reverse order.
bool isConsecutive() const
Return whether the loaded-from / stored-to addresses are consecutive.
static bool classof(const VPUser *U)
void execute(VPTransformState &State) override
Generate the wide load/store.
VPWidenMemoryRecipe * clone() override
Clone the current recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenMemoryRecipe.
Instruction & getIngredient() const
bool Consecutive
Whether the accessed addresses are consecutive.
static bool classof(const VPRecipeBase *R)
VPWidenMemoryRecipe(const char unsigned SC, Instruction &I, std::initializer_list< VPValue * > Operands, bool Consecutive, bool Reverse, DebugLoc DL)
VPValue * getMask() const
Return the mask used by this recipe.
bool isMasked() const
Returns true if the recipe is masked.
void setMask(VPValue *Mask)
VPValue * getAddr() const
Return the address accessed by this recipe.
bool isReverse() const
Return whether the consecutive loaded/stored addresses are in reverse order.
A recipe for handling phis that are widened in the vector loop.
void addIncoming(VPValue *IncomingV, VPBasicBlock *IncomingBlock)
Adds a pair (IncomingV, IncomingBlock) to the phi.
VPValue * getIncomingValue(unsigned I)
Returns the I th incoming VPValue.
VPWidenPHIRecipe(PHINode *Phi, VPValue *Start=nullptr)
Create a new VPWidenPHIRecipe for Phi with start value Start.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPWidenPHIRecipe * clone() override
Clone the current recipe.
~VPWidenPHIRecipe() override=default
VPBasicBlock * getIncomingBlock(unsigned I)
Returns the I th incoming VPBasicBlock.
void execute(VPTransformState &State) override
Generate the phi/select nodes.
VPWidenPointerInductionRecipe * clone() override
Clone the current recipe.
~VPWidenPointerInductionRecipe() override=default
VPWidenPointerInductionRecipe(PHINode *Phi, VPValue *Start, VPValue *Step, const InductionDescriptor &IndDesc, bool IsScalarAfterVectorization, DebugLoc DL)
Create a new VPWidenPointerInductionRecipe for Phi with start value Start.
bool onlyScalarsGenerated(bool IsScalable)
Returns true if only scalar values will be generated.
VPValue * getFirstUnrolledPartOperand()
Returns the VPValue representing the value of this induction at the first unrolled part,...
void execute(VPTransformState &State) override
Generate vector values for the pointer induction.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPWidenRecipe is a recipe for producing a widened instruction using the opcode and operands of the re...
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenRecipe.
void execute(VPTransformState &State) override
Produce a widened instruction using the opcode and operands of the recipe, processing State....
VPWidenRecipe * clone() override
Clone the current recipe.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
~VPWidenRecipe() override=default
VPWidenRecipe(Instruction &I, iterator_range< IterT > Operands)
unsigned getOpcode() const
VPWidenRecipe(unsigned VPDefOpcode, Instruction &I, iterator_range< IterT > Operands)
static bool classof(const VPRecipeBase *R)
static bool classof(const VPUser *U)
VPlanPrinter prints a given VPlan to a given output stream.
VPlanPrinter(raw_ostream &O, const VPlan &P)
LLVM_DUMP_METHOD void dump()
Class that maps (parts of) an existing VPlan to trees of combined VPInstructions.
VPInstruction * buildGraph(ArrayRef< VPValue * > Operands)
Tries to build an SLP tree rooted at Operands and returns a VPInstruction combining Operands,...
bool isCompletelySLP() const
Return true if all visited instruction can be combined.
VPlanSlp(VPInterleavedAccessInfo &IAI, VPBasicBlock &BB)
unsigned getWidestBundleBits() const
Return the width of the widest combined bundle in bits.
VPlan models a candidate for vectorization, encoding various decisions take to produce efficient outp...
void printDOT(raw_ostream &O) const
Print this VPlan in DOT format to O.
std::string getName() const
Return a string with the name of the plan and the applicable VFs and UFs.
void prepareToExecute(Value *TripCount, Value *VectorTripCount, VPTransformState &State)
Prepare the plan for execution, setting up the required live-in values.
VPBasicBlock * getEntry()
VPRegionBlock * createVPRegionBlock(VPBlockBase *Entry, VPBlockBase *Exiting, const std::string &Name="", bool IsReplicator=false)
Create a new VPRegionBlock with Entry, Exiting and Name.
VPValue & getVectorTripCount()
The vector trip count.
void setName(const Twine &newName)
VPValue & getVFxUF()
Returns VF * UF of the vector loop region.
VPValue & getVF()
Returns the VF of the vector loop region.
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.
VPlan(BasicBlock *ScalarHeaderBB, VPValue *TC)
Construct a VPlan with a new VPBasicBlock as entry, a VPIRBasicBlock wrapping ScalarHeaderBB and a tr...
const VPBasicBlock * getEntry() const
static VPlanPtr createInitialVPlan(Type *InductionTy, PredicatedScalarEvolution &PSE, bool RequiresScalarEpilogueCheck, bool TailFolded, Loop *TheLoop)
Create initial VPlan, having an "entry" VPBasicBlock (wrapping original scalar pre-header) which cont...
VPIRBasicBlock * createEmptyVPIRBasicBlock(BasicBlock *IRBB)
Create a VPIRBasicBlock wrapping IRBB, but do not create VPIRInstructions wrapping the instructions i...
bool hasVF(ElementCount VF)
void addSCEVExpansion(const SCEV *S, VPValue *V)
bool hasUF(unsigned UF) const
void setVF(ElementCount VF)
VPRegionBlock * createVPRegionBlock(const std::string &Name="", bool IsReplicator=false)
Create a new VPRegionBlock with Name and entry and exiting blocks set to nullptr.
auto getExitBlocks()
Return an iterator range over the VPIRBasicBlock wrapping the exit blocks of the VPlan,...
VPRegionBlock * getVectorLoopRegion()
Returns the VPRegionBlock of the vector loop.
InstructionCost cost(ElementCount VF, VPCostContext &Ctx)
Return the cost of this plan.
const VPBasicBlock * getMiddleBlock() const
Returns the 'middle' block of the plan, that is the block that selects whether to execute the scalar ...
void resetTripCount(VPValue *NewTripCount)
Resets the trip count for the VPlan.
VPBasicBlock * getMiddleBlock()
void setEntry(VPBasicBlock *VPBB)
VPBasicBlock * createVPBasicBlock(const Twine &Name, VPRecipeBase *Recipe=nullptr)
Create a new VPBasicBlock with Name and containing Recipe if present.
VPIRBasicBlock * createVPIRBasicBlock(BasicBlock *IRBB)
Create a VPIRBasicBlock from IRBB containing VPIRInstructions for all instructions in IRBB,...
VPValue * getOrAddLiveIn(Value *V)
Gets the live-in VPValue for V or adds a new live-in (if none exists yet) for V.
LLVM_DUMP_METHOD void dump() const
Dump the plan to stderr (for debugging).
bool hasScalarVFOnly() const
VPBasicBlock * getScalarPreheader() const
Return the VPBasicBlock for the preheader of the scalar loop.
void execute(VPTransformState *State)
Generate the IR code for this VPlan.
VPCanonicalIVPHIRecipe * getCanonicalIV()
Returns the canonical induction recipe of the vector loop.
void print(raw_ostream &O) const
Print this VPlan to O.
void addVF(ElementCount VF)
VPIRBasicBlock * getScalarHeader() const
Return the VPIRBasicBlock wrapping the header of the scalar loop.
VPValue * getLiveIn(Value *V) const
Return the live-in VPValue for V, if there is one or nullptr otherwise.
VPValue * getSCEVExpansion(const SCEV *S) const
void printLiveIns(raw_ostream &O) const
Print the live-ins of this VPlan to O.
VPBasicBlock * getVectorPreheader()
Returns the preheader of the vector loop region, if one exists, or null otherwise.
VPlan * duplicate()
Clone the current VPlan, update all VPValues of the new VPlan and cloned recipes to refer to the clon...
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
An ilist node that can access its parent list.
base_list_type::const_reverse_iterator const_reverse_iterator
base_list_type::reverse_iterator reverse_iterator
base_list_type::const_iterator const_iterator
base_list_type::iterator iterator
iterator insert(iterator where, pointer New)
CRTP base class which implements the entire standard iterator facade in terms of a minimal subset of ...
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
This file defines classes to implement an intrusive doubly linked list class (i.e.
This file defines the ilist_node class template, which is a convenient base class for creating classe...
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ BasicBlock
Various leaf nodes.
AttributeList getAttributes(LLVMContext &C, ID id)
Return the attributes for an intrinsic.
This is an optimization pass for GlobalISel generic memory operations.
auto find(R &&Range, const T &Val)
Provide wrappers to std::find 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.
bool isEqual(const GCNRPTracker::LiveRegSet &S1, const GCNRPTracker::LiveRegSet &S2)
testing::Matcher< const detail::ErrorHolder & > Failed()
Value * getRuntimeVF(IRBuilderBase &B, Type *Ty, ElementCount VF)
Return the runtime value for VF.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
auto cast_or_null(const Y &Val)
auto map_range(ContainerTy &&C, FuncTy F)
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.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
std::unique_ptr< VPlan > VPlanPtr
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
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...
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
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
Value * createStepForVF(IRBuilderBase &B, Type *Ty, ElementCount VF, int64_t Step)
Return a value for Step multiplied by VF.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
unsigned getReciprocalPredBlockProb()
A helper function that returns the reciprocal of the block probability of predicated blocks.
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.
A range of powers-of-2 vectorization factors with fixed start and adjustable end.
VFRange(const ElementCount &Start, const ElementCount &End)
Struct to hold various analysis needed for cost computations.
LoopVectorizationCostModel & CM
TargetTransformInfo::OperandValueInfo getOperandInfo(VPValue *V) const
Returns the OperandInfo for V, if it is a live-in.
bool skipCostComputation(Instruction *UI, bool IsVector) const
Return true if the cost for UI shouldn't be computed, e.g.
InstructionCost getLegacyCost(Instruction *UI, ElementCount VF) const
Return the cost for UI with VF using the legacy cost model as fallback until computing the cost of al...
const TargetLibraryInfo & TLI
VPCostContext(const TargetTransformInfo &TTI, const TargetLibraryInfo &TLI, Type *CanIVTy, LoopVectorizationCostModel &CM)
const TargetTransformInfo & TTI
SmallPtrSet< Instruction *, 8 > SkipCostComputation
A recipe for handling first-order recurrence phis.
void execute(VPTransformState &State) override
Generate the phi nodes.
VPFirstOrderRecurrencePHIRecipe * clone() override
Clone the current recipe.
VPFirstOrderRecurrencePHIRecipe(PHINode *Phi, VPValue &Start)
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this first-order recurrence phi recipe.
static bool classof(const VPHeaderPHIRecipe *R)
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
DisjointFlagsTy(bool IsDisjoint)
WrapFlagsTy(bool HasNUW, bool HasNSW)
A recipe for widening load operations with vector-predication intrinsics, using the address to load f...
void execute(VPTransformState &State) override
Generate the wide load or gather.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenLoadEVLRecipe.
VPValue * getEVL() const
Return the EVL operand.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPWidenLoadEVLRecipe(VPWidenLoadRecipe &L, VPValue &EVL, VPValue *Mask)
A recipe for widening load operations, using the address to load from and an optional mask.
VP_CLASSOF_IMPL(VPDef::VPWidenLoadSC)
VPWidenLoadRecipe(LoadInst &Load, VPValue *Addr, VPValue *Mask, bool Consecutive, bool Reverse, DebugLoc DL)
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
void execute(VPTransformState &State) override
Generate a wide load or gather.
VPWidenLoadRecipe * clone() override
Clone the current recipe.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
A recipe for widening select instructions.
bool isInvariantCond() const
VPWidenSelectRecipe * clone() override
Clone the current recipe.
VPWidenSelectRecipe(SelectInst &I, iterator_range< IterT > Operands)
VPValue * getCond() const
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenSelectRecipe.
void execute(VPTransformState &State) override
Produce a widened version of the select instruction.
~VPWidenSelectRecipe() override=default
A recipe for widening store operations with vector-predication intrinsics, using the value to store,...
VPValue * getStoredValue() const
Return the address accessed by this recipe.
void execute(VPTransformState &State) override
Generate the wide store or scatter.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPWidenStoreEVLRecipe(VPWidenStoreRecipe &S, VPValue &EVL, VPValue *Mask)
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenStoreEVLRecipe.
VPValue * getEVL() const
Return the EVL operand.
A recipe for widening store operations, using the stored value, the address to store to and an option...
void execute(VPTransformState &State) override
Generate a wide store or scatter.
bool onlyFirstLaneUsed(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPWidenStoreRecipe(StoreInst &Store, VPValue *Addr, VPValue *StoredVal, VPValue *Mask, bool Consecutive, bool Reverse, DebugLoc DL)
VP_CLASSOF_IMPL(VPDef::VPWidenStoreSC)
VPValue * getStoredValue() const
Return the value stored by this recipe.
VPWidenStoreRecipe * clone() override
Clone the current recipe.
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPlanIngredient(const Value *V)
void print(raw_ostream &O) const