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);
272 unsigned CacheIdx =
Lane.mapToCacheIndex(
VF);
273 return CacheIdx <
I->second.size() &&
I->second[CacheIdx];
284 "scalar values must be stored as (0, 0)");
297 unsigned CacheIdx =
Lane.mapToCacheIndex(
VF);
298 if (Scalars.size() <= CacheIdx)
299 Scalars.resize(CacheIdx + 1);
300 assert(!Scalars[CacheIdx] &&
"should overwrite existing value");
301 Scalars[CacheIdx] = V;
308 "need to overwrite existing value");
309 unsigned CacheIdx =
Lane.mapToCacheIndex(
VF);
310 assert(CacheIdx < Iter->second.size() &&
311 "need to overwrite existing value");
312 Iter->second[CacheIdx] = V;
399 const unsigned char SubclassID;
416 VPlan *Plan =
nullptr;
426 assert(Predecessor &&
"Cannot add nullptr predecessor!");
431 void removePredecessor(VPBlockBase *Predecessor) {
432 auto Pos =
find(Predecessors, Predecessor);
433 assert(Pos &&
"Predecessor does not exist");
434 Predecessors.
erase(Pos);
438 void removeSuccessor(VPBlockBase *
Successor) {
440 assert(Pos &&
"Successor does not exist");
441 Successors.
erase(Pos);
446 void replacePredecessor(VPBlockBase *Old, VPBlockBase *New) {
447 auto I =
find(Predecessors, Old);
449 assert(Old->getParent() ==
New->getParent() &&
450 "replaced predecessor must have the same parent");
456 void replaceSuccessor(VPBlockBase *Old, VPBlockBase *New) {
457 auto I =
find(Successors, Old);
459 assert(Old->getParent() ==
New->getParent() &&
460 "replaced successor must have the same parent");
466 : SubclassID(SC),
Name(
N) {}
473 using VPBlockTy =
enum { VPRegionBlockSC, VPBasicBlockSC, VPIRBasicBlockSC };
525 return (Successors.
size() == 1 ? *Successors.
begin() :
nullptr);
531 return (Predecessors.
size() == 1 ? *Predecessors.
begin() :
nullptr);
584 assert(Successors.
empty() &&
"Setting one successor when others exist.");
586 "connected blocks must have the same parent");
595 assert(Successors.
empty() &&
"Setting two successors when others exist.");
596 appendSuccessor(IfTrue);
597 appendSuccessor(IfFalse);
604 assert(Predecessors.
empty() &&
"Block predecessors already set.");
605 for (
auto *Pred : NewPreds)
606 appendPredecessor(Pred);
613 assert(Successors.
empty() &&
"Block successors already set.");
614 for (
auto *Succ : NewSuccs)
615 appendSuccessor(Succ);
628 assert(Successors.
size() == 2 &&
"must have 2 successors to swap");
653#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
735 template <
typename IterT>
825#define VP_CLASSOF_IMPL(VPDefID) \
826 static inline bool classof(const VPDef *D) { \
827 return D->getVPDefID() == VPDefID; \
829 static inline bool classof(const VPValue *V) { \
830 auto *R = V->getDefiningRecipe(); \
831 return R && R->getVPDefID() == VPDefID; \
833 static inline bool classof(const VPUser *U) { \
834 auto *R = dyn_cast<VPRecipeBase>(U); \
835 return R && R->getVPDefID() == VPDefID; \
837 static inline bool classof(const VPRecipeBase *R) { \
838 return R->getVPDefID() == VPDefID; \
840 static inline bool classof(const VPSingleDefRecipe *R) { \
841 return R->getVPDefID() == VPDefID; \
849 template <
typename IterT>
857 template <
typename IterT>
863 switch (R->getVPDefID()) {
864 case VPRecipeBase::VPDerivedIVSC:
865 case VPRecipeBase::VPEVLBasedIVPHISC:
866 case VPRecipeBase::VPExpandSCEVSC:
867 case VPRecipeBase::VPInstructionSC:
868 case VPRecipeBase::VPReductionEVLSC:
869 case VPRecipeBase::VPReductionSC:
870 case VPRecipeBase::VPReplicateSC:
871 case VPRecipeBase::VPScalarIVStepsSC:
872 case VPRecipeBase::VPVectorPointerSC:
873 case VPRecipeBase::VPReverseVectorPointerSC:
874 case VPRecipeBase::VPWidenCallSC:
875 case VPRecipeBase::VPWidenCanonicalIVSC:
876 case VPRecipeBase::VPWidenCastSC:
877 case VPRecipeBase::VPWidenGEPSC:
878 case VPRecipeBase::VPWidenIntrinsicSC:
879 case VPRecipeBase::VPWidenSC:
880 case VPRecipeBase::VPWidenEVLSC:
881 case VPRecipeBase::VPWidenSelectSC:
882 case VPRecipeBase::VPBlendSC:
883 case VPRecipeBase::VPPredInstPHISC:
884 case VPRecipeBase::VPCanonicalIVPHISC:
885 case VPRecipeBase::VPActiveLaneMaskPHISC:
886 case VPRecipeBase::VPFirstOrderRecurrencePHISC:
887 case VPRecipeBase::VPWidenPHISC:
888 case VPRecipeBase::VPWidenIntOrFpInductionSC:
889 case VPRecipeBase::VPWidenPointerInductionSC:
890 case VPRecipeBase::VPReductionPHISC:
891 case VPRecipeBase::VPScalarCastSC:
893 case VPRecipeBase::VPBranchOnMaskSC:
894 case VPRecipeBase::VPInterleaveSC:
895 case VPRecipeBase::VPIRInstructionSC:
896 case VPRecipeBase::VPWidenLoadEVLSC:
897 case VPRecipeBase::VPWidenLoadSC:
898 case VPRecipeBase::VPWidenStoreEVLSC:
899 case VPRecipeBase::VPWidenStoreSC:
900 case VPRecipeBase::VPHistogramSC:
909 auto *R = dyn_cast<VPRecipeBase>(U);
923#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
931 enum class OperationType :
unsigned char {
956 struct ExactFlagsTy {
959 struct NonNegFlagsTy {
962 struct FastMathFlagsTy {
971 FastMathFlagsTy(
const FastMathFlags &FMF);
974 OperationType OpType;
989 OpType =
Other.OpType;
994 template <
typename IterT>
997 OpType = OperationType::Other;
1001 template <
typename IterT>
1004 if (
auto *
Op = dyn_cast<CmpInst>(&
I)) {
1005 OpType = OperationType::Cmp;
1007 }
else if (
auto *
Op = dyn_cast<PossiblyDisjointInst>(&
I)) {
1008 OpType = OperationType::DisjointOp;
1010 }
else if (
auto *
Op = dyn_cast<OverflowingBinaryOperator>(&
I)) {
1011 OpType = OperationType::OverflowingBinOp;
1012 WrapFlags = {
Op->hasNoUnsignedWrap(),
Op->hasNoSignedWrap()};
1013 }
else if (
auto *
Op = dyn_cast<PossiblyExactOperator>(&
I)) {
1014 OpType = OperationType::PossiblyExactOp;
1016 }
else if (
auto *
GEP = dyn_cast<GetElementPtrInst>(&
I)) {
1017 OpType = OperationType::GEPOp;
1019 }
else if (
auto *PNNI = dyn_cast<PossiblyNonNegInst>(&
I)) {
1020 OpType = OperationType::NonNegOp;
1022 }
else if (
auto *
Op = dyn_cast<FPMathOperator>(&
I)) {
1023 OpType = OperationType::FPMathOp;
1024 FMFs =
Op->getFastMathFlags();
1026 OpType = OperationType::Other;
1031 template <
typename IterT>
1037 template <
typename IterT>
1043 template <
typename IterT>
1049 template <
typename IterT>
1056 template <
typename IterT>
1064 return R->getVPDefID() == VPRecipeBase::VPInstructionSC ||
1065 R->getVPDefID() == VPRecipeBase::VPWidenSC ||
1066 R->getVPDefID() == VPRecipeBase::VPWidenEVLSC ||
1067 R->getVPDefID() == VPRecipeBase::VPWidenGEPSC ||
1068 R->getVPDefID() == VPRecipeBase::VPWidenCastSC ||
1069 R->getVPDefID() == VPRecipeBase::VPReplicateSC ||
1070 R->getVPDefID() == VPRecipeBase::VPReverseVectorPointerSC ||
1071 R->getVPDefID() == VPRecipeBase::VPVectorPointerSC;
1075 auto *R = dyn_cast<VPRecipeBase>(U);
1084 case OperationType::OverflowingBinOp:
1088 case OperationType::DisjointOp:
1091 case OperationType::PossiblyExactOp:
1094 case OperationType::GEPOp:
1097 case OperationType::FPMathOp:
1098 FMFs.NoNaNs =
false;
1099 FMFs.NoInfs =
false;
1101 case OperationType::NonNegOp:
1104 case OperationType::Cmp:
1105 case OperationType::Other:
1113 case OperationType::OverflowingBinOp:
1117 case OperationType::DisjointOp:
1120 case OperationType::PossiblyExactOp:
1123 case OperationType::GEPOp:
1124 cast<GetElementPtrInst>(
I)->setNoWrapFlags(
GEPFlags);
1126 case OperationType::FPMathOp:
1127 I->setHasAllowReassoc(
FMFs.AllowReassoc);
1128 I->setHasNoNaNs(
FMFs.NoNaNs);
1129 I->setHasNoInfs(
FMFs.NoInfs);
1130 I->setHasNoSignedZeros(
FMFs.NoSignedZeros);
1131 I->setHasAllowReciprocal(
FMFs.AllowReciprocal);
1132 I->setHasAllowContract(
FMFs.AllowContract);
1133 I->setHasApproxFunc(
FMFs.ApproxFunc);
1135 case OperationType::NonNegOp:
1138 case OperationType::Cmp:
1139 case OperationType::Other:
1145 assert(OpType == OperationType::Cmp &&
1146 "recipe doesn't have a compare predicate");
1158 assert(OpType == OperationType::OverflowingBinOp &&
1159 "recipe doesn't have a NUW flag");
1164 assert(OpType == OperationType::OverflowingBinOp &&
1165 "recipe doesn't have a NSW flag");
1170 assert(OpType == OperationType::DisjointOp &&
1171 "recipe cannot have a disjoing flag");
1175#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1204 Instruction::OtherOpsEnd + 1,
1237 typedef unsigned char OpcodeTy;
1241 const std::string
Name;
1249 bool doesGeneratePerAllLanes()
const;
1253 bool canGenerateScalarForFirstLane()
const;
1268 bool isFPMathOp()
const;
1275 Opcode(Opcode),
Name(
Name.str()) {}
1282 VPValue *
B, DebugLoc
DL = {},
const Twine &
Name =
"");
1287 Opcode(Opcode),
Name(
Name.str()) {}
1294 assert(Opcode == Instruction::Or &&
"only OR opcodes can be disjoint");
1304 FastMathFlags
FMFs, DebugLoc
DL = {},
const Twine &
Name =
"");
1311 New->transferFlags(*
this);
1329#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1342 case Instruction::Ret:
1343 case Instruction::Br:
1344 case Instruction::Store:
1345 case Instruction::Switch:
1346 case Instruction::IndirectBr:
1347 case Instruction::Resume:
1348 case Instruction::CatchRet:
1349 case Instruction::Unreachable:
1350 case Instruction::Fence:
1351 case Instruction::AtomicRMW:
1408#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1416 "Op must be an operand of the recipe");
1422 "Op must be an operand of the recipe");
1435 template <
typename IterT>
1441 template <
typename IterT>
1449 R->transferFlags(*
this);
1454 return R->getVPDefID() == VPRecipeBase::VPWidenSC ||
1455 R->getVPDefID() == VPRecipeBase::VPWidenEVLSC;
1459 auto *R = dyn_cast<VPRecipeBase>(U);
1473#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1486 template <
typename IterT>
1515 "Op must be an operand of the recipe");
1521#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1540 ResultTy(ResultTy) {
1542 "opcode of underlying cast doesn't match");
1547 ResultTy(ResultTy) {}
1554 *cast<CastInst>(UV));
1568#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1591 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,
1706#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1726 *cast<Instruction>(UV)),
1730 "last operand must be the called function");
1760#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1777 template <
typename IterT>
1780 :
VPRecipeBase(VPDef::VPHistogramSC, Operands, DL), Opcode(Opcode) {}
1805#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1814 template <
typename IterT>
1835#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1852 bool isPointerLoopInvariant()
const {
1856 bool isIndexLoopInvariant(
unsigned I)
const {
1860 bool areAllOperandsInvariant()
const {
1862 return Op->isDefinedOutsideLoopRegions();
1867 template <
typename IterT>
1890#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1908 IndexedTy(IndexedTy) {}
1919 "Op must be an operand of the recipe");
1933 "Op must be an operand of the recipe");
1944#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1961 IndexedTy(IndexedTy) {}
1969 "Op must be an operand of the recipe");
1976 "Op must be an operand of the recipe");
1993#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2037 return B->getVPDefID() >= VPDef::VPFirstHeaderPHISC &&
2038 B->getVPDefID() <= VPDef::VPLastHeaderPHISC;
2041 auto *
B = V->getDefiningRecipe();
2042 return B &&
B->getVPDefID() >= VPRecipeBase::VPFirstHeaderPHISC &&
2043 B->getVPDefID() <= VPRecipeBase::VPLastHeaderPHISC;
2053#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2097 return R->getVPDefID() == VPDef::VPWidenIntOrFpInductionSC ||
2098 R->getVPDefID() == VPDef::VPWidenPointerInductionSC;
2116 "VPWidenIntOrFpInductionRecipe generates its own backedge value");
2123 "VPWidenIntOrFpInductionRecipe generates its own backedge value");
2165#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2205 bool IsScalarAfterVectorization;
2212 bool IsScalarAfterVectorization,
DebugLoc DL)
2215 IsScalarAfterVectorization(IsScalarAfterVectorization) {}
2240#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2275 "Op must be an operand of the recipe");
2279#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2312#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2321 IncomingBlocks.
push_back(IncomingBlock);
2341 return R->getVPDefID() == VPDef::VPFirstOrderRecurrencePHISC;
2355#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2380 VPValue &Start,
bool IsInLoop =
false,
2381 bool IsOrdered =
false)
2383 RdxDesc(RdxDesc), IsInLoop(IsInLoop), IsOrdered(IsOrdered) {
2384 assert((!IsOrdered || IsInLoop) &&
"IsOrdered requires IsInLoop");
2400 return R->getVPDefID() == VPDef::VPReductionPHISC;
2406#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2471#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2480 "Op must be an operand of the recipe");
2484 [
this](
VPUser *U) {
return U->onlyFirstLaneUsed(
this); });
2497 bool HasMask =
false;
2501 bool NeedsMaskForGaps =
false;
2506 bool NeedsMaskForGaps)
2508 NeedsMaskForGaps(NeedsMaskForGaps) {
2509 for (
unsigned i = 0; i < IG->
getFactor(); ++i)
2511 if (
I->getType()->isVoidTy())
2516 for (
auto *SV : StoredValues)
2560#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2577 "Op must be an operand of the recipe");
2592 bool IsConditional =
false;
2597 VPValue *CondOp,
bool IsOrdered)
2600 IsConditional =
true;
2621 return R->getVPDefID() == VPRecipeBase::VPReductionSC ||
2622 R->getVPDefID() == VPRecipeBase::VPReductionEVLSC;
2626 auto *R = dyn_cast<VPRecipeBase>(U);
2637#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2685#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2697 "Op must be an operand of the recipe");
2714 template <
typename IterT>
2716 bool IsUniform,
VPValue *Mask =
nullptr)
2718 IsUniform(IsUniform), IsPredicated(Mask) {
2729 Copy->transferFlags(*
this);
2744#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2757 "Op must be an operand of the recipe");
2764 "Op must be an operand of the recipe");
2805#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2809 O << Indent <<
"BRANCH-ON-MASK ";
2828 "Op must be an operand of the recipe");
2863#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2872 "Op must be an operand of the recipe");
2901 std::initializer_list<VPValue *> Operands,
2914 return R->getVPDefID() == VPRecipeBase::VPWidenLoadSC ||
2915 R->getVPDefID() == VPRecipeBase::VPWidenStoreSC ||
2916 R->getVPDefID() == VPRecipeBase::VPWidenLoadEVLSC ||
2917 R->getVPDefID() == VPRecipeBase::VPWidenStoreEVLSC;
2921 auto *R = dyn_cast<VPRecipeBase>(U);
2979#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2988 "Op must be an operand of the recipe");
3001 {L.getAddr(), &EVL}, L.isConsecutive(),
3002 L.isReverse(), L.getDebugLoc()),
3019#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3028 "Op must be an operand of the recipe");
3059#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3068 "Op must be an operand of the recipe");
3082 S.isConsecutive(), S.isReverse(), S.getDebugLoc()) {
3101#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3110 "Op must be an operand of the recipe");
3149#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3178 return D->getVPDefID() == VPDef::VPCanonicalIVPHISC;
3183 "cannot execute this recipe, should be replaced by VPScalarPHIRecipe");
3186#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3200 "Op must be an operand of the recipe");
3207 "Op must be an operand of the recipe");
3246 return D->getVPDefID() == VPDef::VPActiveLaneMaskPHISC;
3252#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3277 return D->getVPDefID() == VPDef::VPEVLBasedIVPHISC;
3282 "cannot execute this recipe, should be replaced by VPScalarPHIRecipe");
3295 "Op must be an operand of the recipe");
3299#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3317 cast<VPCanonicalIVPHIRecipe>(
getOperand(0)));
3334#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3357 const Twine &Name =
"")
3361 Start, CanonicalIV, Step, Name) {}
3367 FPBinOp(FPBinOp), Name(Name.str()) {}
3389#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3405 "Op must be an operand of the recipe");
3421 InductionOpcode(Opcode) {}
3426 IV, Step, IndDesc.getInductionOpcode(),
3451#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3462 "Op must be an operand of the recipe");
3529 return V->getVPBlockID() == VPBlockBase::VPBasicBlockSC ||
3530 V->getVPBlockID() == VPBlockBase::VPIRBasicBlockSC;
3534 assert(Recipe &&
"No recipe to append.");
3535 assert(!Recipe->Parent &&
"Recipe already in VPlan");
3536 Recipe->Parent =
this;
3569#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3593 NewBlock->appendRecipe(R.clone());
3628 return V->getVPBlockID() == VPBlockBase::VPIRBasicBlockSC;
3642 NewBlock->appendRecipe(R.clone());
3671 const std::string &Name =
"",
bool IsReplicator =
false)
3672 :
VPBlockBase(VPRegionBlockSC, Name), Entry(Entry), Exiting(Exiting),
3673 IsReplicator(IsReplicator) {
3674 assert(Entry->getPredecessors().empty() &&
"Entry block has predecessors.");
3676 Entry->setParent(
this);
3680 :
VPBlockBase(VPRegionBlockSC, Name), Entry(nullptr), Exiting(nullptr),
3681 IsReplicator(IsReplicator) {}
3686 Entry->dropAllReferences(&DummyValue);
3693 return V->getVPBlockID() == VPBlockBase::VPRegionBlockSC;
3703 "Entry block cannot have predecessors.");
3715 "Exit block cannot have successors.");
3716 Exiting = ExitingBlock;
3739#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3791 VPValue *BackedgeTakenCount =
nullptr;
3819 : Entry(Entry), ScalarHeader(ScalarHeader) {
3820 Entry->setPlan(
this);
3822 "scalar header must be a leaf node");
3828 :
VPlan(Entry, ScalarHeader) {
3856 bool RequiresScalarEpilogueCheck,
3857 bool TailFolded,
Loop *TheLoop);
3907 assert(TripCount &&
"trip count needs to be set before accessing it");
3915 "TripCount always must be set");
3916 TripCount = NewTripCount;
3921 if (!BackedgeTakenCount)
3922 BackedgeTakenCount =
new VPValue();
3923 return BackedgeTakenCount;
3938 assert(
hasVF(VF) &&
"Cannot set VF not already in plan");
3959 assert(UFs.
size() == 1 &&
"Expected a single UF");
3964 assert(
hasUF(UF) &&
"Cannot set the UF not already in plan");
3977 assert(V &&
"Trying to get or add the VPValue of a null Value");
3978 if (!Value2VPValue.
count(V)) {
3982 assert(!Value2VPValue.
count(V) &&
"Value already exists in VPlan");
3983 Value2VPValue[V] = VPV;
3986 assert(Value2VPValue.
count(V) &&
"Value does not exist in VPlan");
3987 assert(Value2VPValue[V]->isLiveIn() &&
3988 "Only live-ins should be in mapping");
3989 return Value2VPValue[V];
3995#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4012 if (EntryVPBB->
empty()) {
4016 return cast<VPCanonicalIVPHIRecipe>(&*EntryVPBB->
begin());
4020 return SCEVToExpansion.
lookup(S);
4025 SCEVToExpansion[S] = V;
4033#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4040 unsigned TabWidth = 2;
4048 void bumpIndent(
int b) { Indent = std::string((
Depth += b) * TabWidth,
' '); }
4074 const Twine &Label);
4119 "Can't insert new block with predecessors or successors.");
4136 "Can't insert new block with predecessors or successors.");
4154 "Can't insert IfTrue with successors.");
4156 "Can't insert IfFalse with successors.");
4171 unsigned PredIdx = -1u,
unsigned SuccIdx = -1u) {
4173 "Can't connect two block with different parents");
4174 assert((SuccIdx != -1u ||
From->getNumSuccessors() < 2) &&
4175 "Blocks can't have more than two successors.");
4177 From->appendSuccessor(To);
4179 From->getSuccessors()[SuccIdx] = To;
4182 To->appendPredecessor(
From);
4190 assert(To &&
"Successor to disconnect is null.");
4191 From->removeSuccessor(To);
4192 To->removePredecessor(
From);
4199 Pred->replaceSuccessor(Old, New);
4201 Succ->replacePredecessor(Old, New);
4210 template <
typename BlockTy,
typename T>
4213 using BaseTy = std::conditional_t<std::is_const<BlockTy>::value,
4223 return cast<BlockTy>(&
Block);
4234 auto &Successors =
From->getSuccessors();
4237 "must have single between From and To");
4238 unsigned SuccIdx = std::distance(Successors.
begin(),
find(Successors, To));
4240 std::distance(Predecessors.
begin(),
find(Predecessors,
From));
4270 for (
auto &
I : InterleaveGroupMap)
4272 for (
auto *
Ptr : DelSet)
4281 return InterleaveGroupMap.
lookup(Instr);
4288 enum class OpMode {
Failed, Load, Opcode };
4292 struct BundleDenseMapInfo {
4294 return {
reinterpret_cast<VPValue *
>(-1)};
4298 return {
reinterpret_cast<VPValue *
>(-2)};
4322 bool CompletelySLP =
true;
4325 unsigned WidestBundleBits = 0;
4327 using MultiNodeOpTy =
4328 typename std::pair<VPInstruction *, SmallVector<VPValue *, 4>>;
4337 bool MultiNodeActive =
false;
4359#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.
VPBasicBlock * clone() override
Clone the current block and it's recipes, without updating the operands of the cloned recipes.
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
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()
void dropAllReferences(VPValue *NewValue) override
Replace all operands of VPUsers in the block with NewValue and also replaces all uses of VPValues def...
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,...
static void deleteCFG(VPBlockBase *Entry)
Delete all blocks reachable from a given VPBlockBase, inclusive.
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)
virtual void dropAllReferences(VPValue *NewValue)=0
Replace all operands of VPUsers in the block with NewValue and also replaces all uses of VPValues def...
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.
bool isCanonical(InductionDescriptor::InductionKind Kind, VPValue *Start, VPValue *Step) const
Check if the induction described by Kind, /p Start and Step is canonical, i.e.
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)
static VPIRBasicBlock * fromBasicBlock(BasicBlock *IRBB)
Create a VPIRBasicBlock from IRBB containing VPIRInstructions for all instructions in 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
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.
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.
VPPredInstPHIRecipe(VPValue *PredV)
Construct a VPPredInstPHIRecipe given PredInst whose value needs a phi nodes after merging back from ...
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.
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.
VPReductionPHIRecipe(PHINode *Phi, const RecurrenceDescriptor &RdxDesc, VPValue &Start, bool IsInLoop=false, bool IsOrdered=false)
Create a new VPReductionPHIRecipe for the reduction Phi described by RdxDesc.
bool isOrdered() const
Returns true, if the phi is part of an ordered reduction.
VPReductionPHIRecipe * clone() override
Clone the current recipe.
~VPReductionPHIRecipe() override=default
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)
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.
VPReductionRecipe(const RecurrenceDescriptor &R, Instruction *I, VPValue *ChainOp, VPValue *VecOp, VPValue *CondOp, bool IsOrdered)
VPValue * getCondOp() const
The VPValue of the condition for the block.
VPReductionRecipe(const unsigned char SC, const RecurrenceDescriptor &R, Instruction *I, ArrayRef< VPValue * > Operands, VPValue *CondOp, bool IsOrdered)
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 dropAllReferences(VPValue *NewValue) override
Replace all operands of VPUsers in the block with NewValue and also replaces all uses of VPValues def...
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.
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.
VPScalarCastRecipe(Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy)
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),...
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)
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={})
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()
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.
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...
VPlan(VPBasicBlock *Entry, VPValue *TC, VPIRBasicBlock *ScalarHeader)
Construct a VPlan with Entry entering the plan, trip count TC and with ScalarHeader wrapping the orig...
bool hasVF(ElementCount VF)
void addSCEVExpansion(const SCEV *S, VPValue *V)
VPlan(VPBasicBlock *Entry, VPIRBasicBlock *ScalarHeader)
Construct a VPlan with Entry to the plan and with ScalarHeader wrapping the original header of the sc...
bool hasUF(unsigned UF) const
void setVF(ElementCount VF)
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)
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.
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