24#ifndef LLVM_TRANSFORMS_VECTORIZE_VPLAN_H
25#define LLVM_TRANSFORMS_VECTORIZE_VPLAN_H
124 VPlan *Plan =
nullptr;
127 const VPBlockTy SubclassID;
136 void appendPredecessor(VPBlockBase *Predecessor) {
137 assert(Predecessor &&
"Cannot add nullptr predecessor!");
142 void removePredecessor(VPBlockBase *Predecessor) {
143 auto Pos =
find(Predecessors, Predecessor);
144 assert(Pos &&
"Predecessor does not exist");
145 Predecessors.
erase(Pos);
149 void removeSuccessor(VPBlockBase *Successor) {
150 auto Pos =
find(Successors, Successor);
151 assert(Pos &&
"Successor does not exist");
152 Successors.
erase(Pos);
157 void replacePredecessor(VPBlockBase *Old, VPBlockBase *New) {
158 auto I =
find(Predecessors, Old);
160 assert(Old->getParent() ==
New->getParent() &&
161 "replaced predecessor must have the same parent");
167 void replaceSuccessor(VPBlockBase *Old, VPBlockBase *New) {
168 auto I =
find(Successors, Old);
170 assert(Old->getParent() ==
New->getParent() &&
171 "replaced successor must have the same parent");
180 const std::string &
getName()
const {
return Name; }
194 const VPlan *getPlan()
const;
198 void setPlan(
VPlan *ParentPlan);
231 return (Successors.size() == 1 ? *Successors.begin() :
nullptr);
237 return (Predecessors.size() == 1 ? *Predecessors.begin() :
nullptr);
284 assert(Successors.empty() &&
"Setting one successor when others exist.");
286 "connected blocks must have the same parent");
295 assert(Successors.empty() &&
"Setting two successors when others exist.");
296 appendSuccessor(IfTrue);
297 appendSuccessor(IfFalse);
304 assert(Predecessors.empty() &&
"Block predecessors already set.");
305 for (
auto *Pred : NewPreds)
306 appendPredecessor(Pred);
313 assert(Successors.empty() &&
"Block successors already set.");
314 for (
auto *Succ : NewSuccs)
315 appendSuccessor(Succ);
327 assert(Predecessors.size() == 2 &&
"must have 2 predecessors to swap");
328 std::swap(Predecessors[0], Predecessors[1]);
335 assert(Successors.size() == 2 &&
"must have 2 successors to swap");
342 "must have Pred exactly once in Predecessors");
343 return std::distance(Predecessors.begin(),
find(Predecessors, Pred));
349 "must have Succ exactly once in Successors");
350 return std::distance(Successors.begin(),
find(Successors, Succ));
360#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
407 VPBasicBlock *Parent =
nullptr;
431 VPVectorEndPointerSC,
433 VPWidenCanonicalIVSC,
437 VPWidenMemIntrinsicSC,
450 VPCurrentIterationPHISC,
451 VPActiveLaneMaskPHISC,
452 VPFirstOrderRecurrencePHISC,
453 VPWidenIntOrFpInductionSC,
454 VPWidenPointerInductionSC,
458 VPFirstPHISC = VPWidenPHISC,
459 VPFirstHeaderPHISC = VPCurrentIterationPHISC,
460 VPLastHeaderPHISC = VPReductionPHISC,
461 VPLastPHISC = VPReductionPHISC,
466 :
VPDef(),
VPUser(Operands), DL(DL), SubclassID(SC) {}
475 const VPBasicBlock *
getParent()
const {
return Parent; }
541 bool mayReadFromMemory()
const;
544 bool mayWriteToMemory()
const;
557#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
568 const VPRecipeTy SubclassID;
577#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
586#define VP_CLASSOF_IMPL(VPRecipeID) \
587 static inline bool classof(const VPRecipeBase *R) { \
588 return R->getVPRecipeID() == VPRecipeID; \
590 static inline bool classof(const VPValue *V) { \
591 auto *R = V->getDefiningRecipe(); \
592 return R && R->getVPRecipeID() == VPRecipeID; \
594 static inline bool classof(const VPUser *U) { \
595 auto *R = dyn_cast<VPRecipeBase>(U); \
596 return R && R->getVPRecipeID() == VPRecipeID; \
598 static inline bool classof(const VPSingleDefRecipe *R) { \
599 return R->getVPRecipeID() == VPRecipeID; \
625 switch (R->getVPRecipeID()) {
626 case VPRecipeBase::VPDerivedIVSC:
627 case VPRecipeBase::VPExpandSCEVSC:
628 case VPRecipeBase::VPExpressionSC:
629 case VPRecipeBase::VPInstructionSC:
630 case VPRecipeBase::VPReductionEVLSC:
631 case VPRecipeBase::VPReductionSC:
632 case VPRecipeBase::VPReplicateSC:
633 case VPRecipeBase::VPScalarIVStepsSC:
634 case VPRecipeBase::VPVectorPointerSC:
635 case VPRecipeBase::VPVectorEndPointerSC:
636 case VPRecipeBase::VPWidenCallSC:
637 case VPRecipeBase::VPWidenCanonicalIVSC:
638 case VPRecipeBase::VPWidenCastSC:
639 case VPRecipeBase::VPWidenGEPSC:
640 case VPRecipeBase::VPWidenIntrinsicSC:
641 case VPRecipeBase::VPWidenMemIntrinsicSC:
642 case VPRecipeBase::VPWidenSC:
643 case VPRecipeBase::VPBlendSC:
644 case VPRecipeBase::VPPredInstPHISC:
645 case VPRecipeBase::VPCurrentIterationPHISC:
646 case VPRecipeBase::VPActiveLaneMaskPHISC:
647 case VPRecipeBase::VPFirstOrderRecurrencePHISC:
648 case VPRecipeBase::VPWidenPHISC:
649 case VPRecipeBase::VPWidenIntOrFpInductionSC:
650 case VPRecipeBase::VPWidenPointerInductionSC:
651 case VPRecipeBase::VPReductionPHISC:
652 case VPRecipeBase::VPWidenLoadEVLSC:
653 case VPRecipeBase::VPWidenLoadSC:
655 case VPRecipeBase::VPBranchOnMaskSC:
656 case VPRecipeBase::VPInterleaveEVLSC:
657 case VPRecipeBase::VPInterleaveSC:
658 case VPRecipeBase::VPIRInstructionSC:
659 case VPRecipeBase::VPWidenStoreEVLSC:
660 case VPRecipeBase::VPWidenStoreSC:
661 case VPRecipeBase::VPHistogramSC:
668 auto *R = V->getDefiningRecipe();
687#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
696 enum class OperationType :
unsigned char {
737 struct ExactFlagsTy {
739 ExactFlagsTy(
bool Exact) : IsExact(Exact) {}
741 struct FastMathFlagsTy {
742 char AllowReassoc : 1;
745 char NoSignedZeros : 1;
746 char AllowReciprocal : 1;
747 char AllowContract : 1;
755 uint8_t CmpPredStorage;
756 FastMathFlagsTy FMFs;
759 struct ReductionFlagsTy {
762 unsigned char Kind : 6;
764 unsigned char IsOrdered : 1;
765 unsigned char IsInLoop : 1;
766 FastMathFlagsTy FMFs;
768 ReductionFlagsTy(
RecurKind Kind,
bool IsOrdered,
bool IsInLoop,
770 : Kind(static_cast<unsigned char>(Kind)), IsOrdered(IsOrdered),
771 IsInLoop(IsInLoop), FMFs(FMFs) {}
774 OperationType OpType;
795 OpType = OperationType::FCmp;
797 FCmp->getPredicate());
799 FCmpFlags.FMFs = FCmp->getFastMathFlags();
801 OpType = OperationType::Cmp;
806 OpType = OperationType::DisjointOp;
809 OpType = OperationType::OverflowingBinOp;
810 WrapFlags = {
Op->hasNoUnsignedWrap(),
Op->hasNoSignedWrap()};
812 OpType = OperationType::Trunc;
815 OpType = OperationType::PossiblyExactOp;
818 OpType = OperationType::GEPOp;
821 "wrap flags truncated");
823 OpType = OperationType::NonNegOp;
826 OpType = OperationType::FPMathOp;
827 FMFs =
Op->getFastMathFlags();
837 : OpType(OperationType::FCmp),
AllFlags() {
844 : OpType(OperationType::OverflowingBinOp),
AllFlags() {
849 : OpType(OperationType::Trunc),
AllFlags() {
858 : OpType(OperationType::DisjointOp),
AllFlags() {
863 : OpType(OperationType::NonNegOp),
AllFlags() {
868 : OpType(OperationType::PossiblyExactOp),
AllFlags() {
873 : OpType(OperationType::GEPOp),
AllFlags() {
878 : OpType(OperationType::ReductionOp),
AllFlags() {
883 OpType = Other.OpType;
897 case OperationType::OverflowingBinOp:
901 case OperationType::Trunc:
905 case OperationType::DisjointOp:
908 case OperationType::PossiblyExactOp:
911 case OperationType::GEPOp:
914 case OperationType::FPMathOp:
915 case OperationType::FCmp:
916 case OperationType::ReductionOp:
917 getFMFsRef().NoNaNs =
false;
918 getFMFsRef().NoInfs =
false;
920 case OperationType::NonNegOp:
923 case OperationType::Cmp:
924 case OperationType::Other:
932 case OperationType::OverflowingBinOp:
936 case OperationType::Trunc:
940 case OperationType::DisjointOp:
943 case OperationType::PossiblyExactOp:
946 case OperationType::GEPOp:
950 case OperationType::FPMathOp:
951 case OperationType::FCmp: {
952 const FastMathFlagsTy &
F = getFMFsRef();
953 I.setHasAllowReassoc(
F.AllowReassoc);
954 I.setHasNoNaNs(
F.NoNaNs);
955 I.setHasNoInfs(
F.NoInfs);
956 I.setHasNoSignedZeros(
F.NoSignedZeros);
957 I.setHasAllowReciprocal(
F.AllowReciprocal);
958 I.setHasAllowContract(
F.AllowContract);
959 I.setHasApproxFunc(
F.ApproxFunc);
962 case OperationType::NonNegOp:
965 case OperationType::ReductionOp:
967 case OperationType::Cmp:
968 case OperationType::Other:
974 assert((OpType == OperationType::Cmp || OpType == OperationType::FCmp) &&
975 "recipe doesn't have a compare predicate");
982 assert((OpType == OperationType::Cmp || OpType == OperationType::FCmp) &&
983 "recipe doesn't have a compare predicate");
984 if (OpType == OperationType::FCmp)
997 return OpType == OperationType::Cmp || OpType == OperationType::FCmp;
1002 return OpType == OperationType::FPMathOp || OpType == OperationType::FCmp ||
1003 OpType == OperationType::ReductionOp;
1009 assert(OpType == OperationType::NonNegOp &&
1010 "recipe doesn't have a NNEG flag");
1016 case OperationType::OverflowingBinOp:
1018 case OperationType::Trunc:
1027 case OperationType::OverflowingBinOp:
1029 case OperationType::Trunc:
1038 case OperationType::OverflowingBinOp:
1039 case OperationType::Trunc:
1051 assert(OpType == OperationType::DisjointOp &&
1052 "recipe cannot have a disjoing flag");
1057 assert(OpType == OperationType::ReductionOp &&
1058 "recipe doesn't have reduction flags");
1063 assert(OpType == OperationType::ReductionOp &&
1064 "recipe doesn't have reduction flags");
1069 assert(OpType == OperationType::ReductionOp &&
1070 "recipe doesn't have reduction flags");
1076 FastMathFlagsTy &getFMFsRef() {
1077 if (OpType == OperationType::FCmp)
1079 if (OpType == OperationType::ReductionOp)
1083 const FastMathFlagsTy &getFMFsRef()
const {
1084 if (OpType == OperationType::FCmp)
1086 if (OpType == OperationType::ReductionOp)
1105#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1111static_assert(
sizeof(
VPIRFlags) <= 3,
"VPIRFlags should not grow");
1128 return R->getVPRecipeID() == VPRecipeBase::VPBlendSC ||
1129 R->getVPRecipeID() == VPRecipeBase::VPInstructionSC ||
1130 R->getVPRecipeID() == VPRecipeBase::VPWidenSC ||
1131 R->getVPRecipeID() == VPRecipeBase::VPWidenGEPSC ||
1132 R->getVPRecipeID() == VPRecipeBase::VPWidenCallSC ||
1133 R->getVPRecipeID() == VPRecipeBase::VPWidenCastSC ||
1134 R->getVPRecipeID() == VPRecipeBase::VPWidenIntrinsicSC ||
1135 R->getVPRecipeID() == VPRecipeBase::VPWidenMemIntrinsicSC ||
1136 R->getVPRecipeID() == VPRecipeBase::VPReductionSC ||
1137 R->getVPRecipeID() == VPRecipeBase::VPReductionEVLSC ||
1138 R->getVPRecipeID() == VPRecipeBase::VPReplicateSC ||
1139 R->getVPRecipeID() == VPRecipeBase::VPVectorEndPointerSC ||
1140 R->getVPRecipeID() == VPRecipeBase::VPVectorPointerSC ||
1141 R->getVPRecipeID() == VPRecipeBase::VPWidenCanonicalIVSC;
1150 auto *R = V->getDefiningRecipe();
1191 llvm::find_if(Metadata, [Kind](
const std::pair<unsigned, MDNode *> &
P) {
1192 return P.first == Kind;
1194 if (It != Metadata.end())
1197 Metadata.emplace_back(Kind,
Node);
1207 find_if(Metadata, [Kind](
const auto &
P) {
return P.first == Kind; });
1208 return It != Metadata.end() ? It->second :
nullptr;
1211#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1229 Instruction::OtherOpsEnd + 1,
1352 bool doesGeneratePerAllLanes()
const;
1357 unsigned getNumOperandsForOpcode()
const;
1360 typedef unsigned char OpcodeTy;
1368 bool canGenerateScalarForFirstLane()
const;
1376 bool alwaysUnmasked()
const {
1382 if (!getUnderlyingValue())
1386 Opcode == Instruction::GetElementPtr;
1390 VPInstruction(
unsigned Opcode, ArrayRef<VPValue *> Operands,
1391 const VPIRFlags &Flags = {},
const VPIRMetadata &MD = {},
1393 Type *ResultTy =
nullptr);
1402 Type *ResultTy =
nullptr) {
1403 auto *New =
new VPInstruction(Opcode, NewOperands, *
this, *
this,
1426#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1435 case Instruction::Ret:
1436 case Instruction::UncondBr:
1437 case Instruction::CondBr:
1438 case Instruction::Store:
1439 case Instruction::Switch:
1440 case Instruction::IndirectBr:
1441 case Instruction::Resume:
1442 case Instruction::CatchRet:
1443 case Instruction::Unreachable:
1444 case Instruction::Fence:
1445 case Instruction::AtomicRMW:
1459 if (NumOpsForOpcode == -1u)
1473 if (alwaysUnmasked())
1475 assert(Mask->getScalarType()->isIntegerTy(1) &&
1476 "Mask must be an i1 (vector)");
1496 bool opcodeMayReadOrWriteFromMemory()
const;
1499 bool usesFirstLaneOnly(
const VPValue *
Op)
const override;
1502 bool usesFirstPartOnly(
const VPValue *
Op)
const override;
1506 bool isVectorToScalar()
const;
1509 bool isSingleScalar()
const;
1518#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1537 const Twine &Name =
"", Value *UV =
nullptr)
1548 unsigned Opc = VPI->getOpcode();
1555 case Instruction::Load:
1590#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1659 assert((R->getNumOperands() == 0 ||
1660 IncomingV->
getScalarType() == R->getOperand(0)->getScalarType()) &&
1661 "all incoming values must have the same type");
1662 R->addOperand(IncomingV);
1665#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1673 const Twine &Name =
"",
Type *ResultTy =
nullptr)
1679 return VPI && VPI->getOpcode() == Instruction::PHI;
1684 return VPI && VPI->getOpcode() == Instruction::PHI;
1689 return VPI && VPI->getOpcode() == Instruction::PHI;
1701#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1748 "Op must be an operand of the recipe");
1754 "Op must be an operand of the recipe");
1760 "Op must be an operand of the recipe");
1765#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1795#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1817 setUnderlyingValue(&
I);
1823 : VPRecipeWithIRFlags(VPRecipeBase::VPWidenSC, Operands,
1826 VPIRMetadata(
Metadata), Opcode(Opcode) {}
1852#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1861 "Op must be an operand of the recipe");
1862 return Opcode == Instruction::Select &&
Op ==
getOperand(0) &&
1883 "Set flags not supported for the provided opcode");
1885 "Opcode requires specific flags to be set");
1909#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1922 bool MayReadFromMemory;
1925 bool MayWriteToMemory;
1928 bool MayHaveSideEffects;
1937 VectorIntrinsicID(VectorIntrinsicID) {
1938 LLVMContext &Ctx = Ty->getContext();
1941 MayReadFromMemory = !ME.onlyWritesMemory();
1942 MayWriteToMemory = !ME.onlyReadsMemory();
1943 MayHaveSideEffects = MayWriteToMemory ||
1944 !Attrs.hasAttribute(Attribute::NoUnwind) ||
1945 !Attrs.hasAttribute(Attribute::WillReturn);
1959 VPIRMetadata(MD), VectorIntrinsicID(VectorIntrinsicID),
1972 VectorIntrinsicID, CallArguments, Ty, Flags,
1988 return R->getVPRecipeID() == VPRecipeBase::VPWidenIntrinsicSC ||
1989 R->getVPRecipeID() == VPRecipeBase::VPWidenMemIntrinsicSC;
1998 auto *R = V->getDefiningRecipe();
2037#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2056 VectorIntrinsicID, CallArguments, Ty, {}, MD,
2058 Alignment(Alignment) {
2059 assert(VectorIntrinsicID == Intrinsic::experimental_vp_strided_load &&
2060 "Unexpected intrinsic");
2078 bool IsMasked,
Align Alignment,
2099 : VPRecipeWithIRFlags(VPRecipeBase::VPWidenCallSC, CallArguments,
2103 setUnderlyingValue(UV);
2105 isa<Function>(getOperand(getNumOperands() - 1)->getLiveInIRValue()) &&
2106 "last operand must be the called function");
2107 assert(cast<Function>(CallArguments.
back()->getLiveInIRValue())
2108 ->getReturnType() == getScalarType() &&
2109 "Scalar type must match return type of called scalar function");
2139 bool usesFirstLaneOnly(
const VPValue *
Op)
const override;
2142#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2189#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2198 Type *SourceElementTy;
2206 Operands[0]->getScalarType(), Flags,
DL),
2207 SourceElementTy(SourceElementTy) {
2209 setUnderlyingValue(UV);
2242 bool usesFirstLaneOnly(
const VPValue *
Op)
const override;
2245#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2258 Type *SourceElementTy;
2268 Ptr->getScalarType(), GEPFlags,
DL),
2269 SourceElementTy(SourceElementTy), Stride(Stride) {
2270 assert(Stride < 0 &&
"Stride must be negative");
2291 "offset must be an integer index");
2299 "Op must be an operand of the recipe");
2313 "Op must be an operand of the recipe");
2328#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2340 Type *SourceElementTy;
2347 Ptr->getScalarType(), GEPFlags,
DL),
2348 SourceElementTy(SourceElementTy) {}
2361 "per-part offset must be an integer index");
2371 "Op must be an operand of the recipe");
2378 "Op must be an operand of the recipe");
2388 Clone->addPerPartOffset(VFxPart);
2400#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2445 return R->getVPRecipeID() >= VPRecipeBase::VPFirstHeaderPHISC &&
2446 R->getVPRecipeID() <= VPRecipeBase::VPLastHeaderPHISC;
2484 "backedge value must be appended right after construction");
2486 "backedge value must have the same type as the start value");
2491#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2522 "last-part value must match the induction recipe's scalar type");
2526 "splat-step must match the induction type for non-pointer "
2527 "inductions, or be an integer index for pointer inductions");
2533 return R->getVPRecipeID() == VPRecipeBase::VPWidenIntOrFpInductionSC ||
2534 R->getVPRecipeID() == VPRecipeBase::VPWidenPointerInductionSC;
2538 auto *R = V->getDefiningRecipe();
2576 return IndDesc.getNoWrapPredicates();
2583 "VPWidenIntOrFpInductionRecipe generates its own backedge value");
2589 "Op must be an operand of the recipe");
2612 Start, Step, IndDesc,
DL),
2622 Start, Step, IndDesc,
2644 "expandVPWidenIntOrFpInductionRecipe");
2676#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2692 Start, Step, IndDesc,
DL) {
2709 "expandVPWidenPointerInduction");
2716#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2746 "all incoming values must have the same type");
2768#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2804 "Op must be an operand of the recipe");
2809#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2830 unsigned ScaleFactor) {
2831 assert((!Ordered || InLoop) &&
"Ordered implies in-loop");
2852 bool HasUsesOutsideReductionChain;
2859 bool HasUsesOutsideReductionChain =
false)
2861 VPIRFlags(Flags), Kind(Kind), Style(Style),
2862 HasUsesOutsideReductionChain(HasUsesOutsideReductionChain) {
2872 *Start, *BackedgeValue, Style, *
this, HasUsesOutsideReductionChain);
2887 auto *Partial = std::get_if<RdxUnordered>(&Style);
2888 return Partial ? Partial->VFScaleFactor : 1;
2894 assert(ScaleFactor > 1 &&
"must set to scale factor > 1");
2902 bool isOrdered()
const {
return std::holds_alternative<RdxOrdered>(Style); }
2906 return std::holds_alternative<RdxInLoop>(Style) ||
2907 std::holds_alternative<RdxOrdered>(Style);
2915 return HasUsesOutsideReductionChain;
2921 "Op must be an operand of the recipe");
2926#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2945 assert(Operands.size() >= 2 &&
"Expected at least two operands!");
2947 [
this](
unsigned I) {
2951 "all incoming values must have the same type");
2953 [
this](
unsigned I) {
2954 return getMask(
I)->getScalarType()->isIntegerTy(1);
2956 "masks must be a bool");
2993 assert(V->getScalarType()->isIntegerTy(1) &&
"Mask must be an i1 (vector)");
3006 bool usesFirstLaneOnly(
const VPValue *
Op)
const override;
3009#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3027 bool HasMask =
false;
3031 bool NeedsMaskForGaps =
false;
3039 NeedsMaskForGaps(NeedsMaskForGaps) {
3041 assert((!Mask || !IG->isReverse()) &&
3042 "Reversed masked interleave-group not supported.");
3043 if (StoredValues.
empty()) {
3045 assert(!Inst->getType()->isVoidTy() &&
"must have result");
3049 for (
auto *SV : StoredValues)
3062 return R->getVPRecipeID() == VPRecipeBase::VPInterleaveSC ||
3063 R->getVPRecipeID() == VPRecipeBase::VPInterleaveEVLSC;
3123 Mask, NeedsMaskForGaps, MD, DL) {}
3140 "Op must be an operand of the recipe");
3149#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3164 R.getStoredValues(), Mask, R.needsMaskForGaps(), R,
3166 assert(!getInterleaveGroup()->isReverse() &&
3167 "Reversed interleave-group with tail folding is not supported.");
3168 assert(!needsMaskForGaps() &&
"Interleaved access with gap mask is not "
3169 "supported for scalable vector.");
3189 "Op must be an operand of the recipe");
3199#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3215 bool IsConditional =
false;
3224 RdxKind(RdxKind), Style(Style) {
3232 "all incoming values must have the same type");
3235 "CondOp must be a bool");
3236 IsConditional =
true;
3247 {ChainOp, VecOp}, CondOp, Style,
DL) {}
3253 {ChainOp, VecOp}, CondOp, Style,
DL) {}
3264 return R->getVPRecipeID() == VPRecipeBase::VPReductionSC ||
3265 R->getVPRecipeID() == VPRecipeBase::VPReductionEVLSC;
3292 bool isOrdered()
const {
return std::holds_alternative<RdxOrdered>(Style); };
3299 return std::holds_alternative<RdxInLoop>(Style) ||
3300 std::holds_alternative<RdxOrdered>(Style);
3313 auto *Partial = std::get_if<RdxUnordered>(&Style);
3314 return Partial ? Partial->VFScaleFactor : 1;
3318#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3336 {R.getChainOp(), R.getVecOp(), &EVL}, CondOp,
3357 "Op must be an operand of the recipe");
3362#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3376 bool IsSingleScalar;
3383 bool IsSingleScalar,
VPValue *Mask =
nullptr,
3385 DebugLoc
DL = DebugLoc::getUnknown())
3386 : VPRecipeWithIRFlags(VPRecipeBase::VPReplicateSC, Operands,
3387 computeScalarType(
I, Operands), Flags,
DL),
3388 VPIRMetadata(
Metadata), IsSingleScalar(IsSingleScalar),
3389 IsPredicated(Mask) {
3390 assert((!IsSingleScalar || !
I->isCast()) &&
3391 "single-scalar casts should use VPInstructionWithType");
3392 setUnderlyingValue(
I);
3410 Copy->transferFlags(*
this);
3443 "Op must be an operand of the recipe");
3450 "Op must be an operand of the recipe");
3474#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3501#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3505 O << Indent <<
"BRANCH-ON-MASK ";
3513 "Op must be an operand of the recipe");
3536 enum class ExpressionTypes {
3543 NegatedExtendedReduction,
3555 ExtNegatedMulAccReduction,
3559 ExpressionTypes ExpressionType;
3567 VPExpressionRecipe(ExpressionTypes ExpressionType,
3572 : VPExpressionRecipe(ExpressionTypes::ExtendedReduction, {Ext, Red}) {}
3575 : VPExpressionRecipe(ExpressionTypes::NegatedExtendedReduction,
3580 "Expected an add or add-chain-with-subs reduction");
3581 if (Neg->getOpcode() == Instruction::Sub) {
3583 assert(SubConst && SubConst->isZero() &&
"Expected a negating sub");
3585 assert(Neg->getOpcode() == Instruction::FNeg &&
"Unexpected opcode");
3588 : VPExpressionRecipe(ExpressionTypes::MulAccReduction, {
Mul, Red}) {}
3591 : VPExpressionRecipe(ExpressionTypes::ExtMulAccReduction,
3592 {Ext0, Ext1,
Mul, Red}) {}
3596 : VPExpressionRecipe(ExpressionTypes::ExtNegatedMulAccReduction,
3597 {Ext0, Ext1,
Mul, Neg, Red}) {
3598 assert((
Mul->getOpcode() == Instruction::Mul ||
3599 Mul->getOpcode() == Instruction::FMul) &&
3604 "Expected an add or add-chain-with-subs reduction");
3606 if (Neg->getOpcode() == Instruction::Sub) {
3608 assert(SubConst && SubConst->isZero() &&
3609 Neg->getOpcode() == Instruction::Sub &&
"Expected a negating sub");
3611 assert(Neg->getOpcode() == Instruction::FNeg &&
"Unexpected opcode");
3616 for (
auto *R :
reverse(ExpressionRecipes)) {
3617 if (ExpressionRecipesSeen.
insert(R).second)
3620 for (
VPValue *
T : LiveInPlaceholders)
3627 assert(!ExpressionRecipes.empty() &&
"empty expressions should be removed");
3629 for (
auto *R : ExpressionRecipes)
3630 NewExpressiondRecipes.
push_back(R->clone());
3631 for (
auto *New : NewExpressiondRecipes) {
3632 for (
const auto &[Idx, Old] :
enumerate(ExpressionRecipes))
3633 New->replaceUsesOfWith(Old, NewExpressiondRecipes[Idx]);
3636 for (
const auto &[Placeholder, OutsideOp] :
3638 New->replaceUsesOfWith(Placeholder, OutsideOp);
3640 return new VPExpressionRecipe(ExpressionType, NewExpressiondRecipes);
3650 return PR ? PR->getVFScaleFactor() : 1;
3673#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3712#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3738 assert(Mask->getScalarType()->isIntegerTy(1) &&
3739 "Mask must be an i1 (vector)");
3770 return isMasked() ? R->getOperand(R->getNumOperands() - 1) :
nullptr;
3813 "Op must be an operand of the recipe");
3823#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3839 L.getIngredient().
getType(), &L.getIngredient(),
3864 "Op must be an operand of the recipe");
3874#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3916 "Op must be an operand of the recipe");
3926#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3969 "Op must be an operand of the recipe");
3984#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4005 llvm_unreachable(
"SCEV expressions must be expanded before final execute");
4018#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4048#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4075 "scalar phi recipe");
4088 "Op must be an operand of the recipe");
4093#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4108 CanonicalIV->
getType(), Flags) {}
4116 WideCanIV->addPerPartStep(Step);
4145 "per-part step must have the same type as the canonical IV");
4150#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4172 Start->getScalarType(),
nullptr),
4173 Kind(Kind), FPBinOp(FPBinOp) {}
4201 "Op must be an operand of the recipe");
4206#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4228 IV->getScalarType(), FMFs,
DL),
4229 InductionOpcode(Opcode) {}
4238 NewR->setStartIndex(StartIndex);
4272 bool doesGeneratePerAllLanes()
const;
4277 "Op must be an operand of the recipe");
4284#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4295template <
typename VPMixin,
typename... RecipeTys>
4298 CastInfoMixinImpl<VPMixin, RecipeTys...>> {
4299 static_assert((std::is_base_of_v<VPMixin, RecipeTys> && ...),
4300 "Each type in RecipeTys must derive from VPMixin");
4307 VPMixin *Out =
nullptr;
4309 assert(Out &&
"Illegal recipe for cast");
4330 CastInfo<VPPhiAccessors, VPRecipeBase *>> {};
4360 CastInfo<VPIRMetadata, VPRecipeBase *>> {};
4427 return V->getVPBlockID() == VPBlockBase::VPBasicBlockSC ||
4428 V->getVPBlockID() == VPBlockBase::VPIRBasicBlockSC;
4432 assert(Recipe &&
"No recipe to append.");
4433 assert(!Recipe->Parent &&
"Recipe already in VPlan");
4434 Recipe->Parent =
this;
4435 Recipes.insert(InsertPt, Recipe);
4465#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4482 bool isExiting()
const;
4492 const VPBasicBlock *getCFGPredecessor(
unsigned Idx)
const;
4508inline const VPBasicBlock *
4518class VPIRBasicBlock :
public VPBasicBlock {
4525 : VPBasicBlock(VPIRBasicBlockSC,
4533 return V->getVPBlockID() == VPBlockBase::VPIRBasicBlockSC;
4550 std::unique_ptr<VPRegionValue> CanIV;
4553 std::unique_ptr<VPRegionValue> HeaderMask;
4570 assert(!HeaderMask &&
"Header mask already created");
4571 HeaderMask = std::make_unique<VPRegionValue>(
4573 CanIV->getDefiningRegion());
4574 return HeaderMask.get();
4604 std::unique_ptr<VPCanonicalIVInfo> CanIVInfo;
4609 const std::string &Name =
"")
4610 :
VPBlockBase(VPRegionBlockSC, Name), Entry(Entry), Exiting(Exiting) {
4612 assert(!Entry->hasPredecessors() &&
"Entry block has predecessors.");
4613 assert(Exiting &&
"Must also pass Exiting if Entry is passed.");
4614 assert(!Exiting->hasSuccessors() &&
"Exit block has successors.");
4615 Entry->setParent(
this);
4616 Exiting->setParent(
this);
4620 VPRegionBlock(Type *CanIVTy, DebugLoc
DL, VPBlockBase *Entry,
4621 VPBlockBase *Exiting,
const std::string &Name =
"")
4622 : VPRegionBlock(Entry, Exiting, Name) {
4623 CanIVInfo = std::make_unique<VPCanonicalIVInfo>(CanIVTy,
DL,
this);
4631 return V->getVPBlockID() == VPBlockBase::VPRegionBlockSC;
4641 "Entry block cannot have predecessors.");
4653 "Exit block cannot have successors.");
4654 Exiting = ExitingBlock;
4675#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4693 void dissolveToCFGLoop();
4703 return CanIVInfo ? CanIVInfo->getRegionValue() :
nullptr;
4706 return CanIVInfo ? CanIVInfo->getRegionValue() :
nullptr;
4711 return CanIVInfo->getRegionValue()->getType();
4716 return CanIVInfo ? CanIVInfo->getHeaderMask() :
nullptr;
4724 return HeaderMask && HeaderMask->
getNumUsers() > 0 ? HeaderMask :
nullptr;
4730 assert(CanIVInfo &&
"Can only create header mask for loop regions");
4731 return CanIVInfo->createHeaderMask();
4740 if (
auto *HM = CanIVInfo->getHeaderMask())
4752 CanIVInfo->clearNUW();
4830 : Entry(Entry), ScalarHeader(ScalarHeader), VectorTripCount(IdxTy),
4831 VF(IdxTy), UF(IdxTy), VFxUF(IdxTy) {
4832 Entry->setPlan(
this);
4833 assert(ScalarHeader->getNumSuccessors() == 0 &&
4834 "scalar header must be a leaf node");
4847 : VectorTripCount(IdxTy), VF(IdxTy), UF(IdxTy), VFxUF(IdxTy) {
4904 "cannot call the function after vector loop region has been removed");
4931 assert(TripCount &&
"trip count needs to be set before accessing it");
4938 assert(!TripCount && NewTripCount &&
"TripCount should not be set yet.");
4939 TripCount = NewTripCount;
4946 "TripCount must be set when resetting");
4947 TripCount = NewTripCount;
4953 if (!BackedgeTakenCount)
4955 return BackedgeTakenCount;
4983 assert(
hasVF(VF) &&
"Cannot set VF not already in plan");
4990 assert(
hasVF(VF) &&
"tried to remove VF not present in plan");
5008 assert(VFs.size() == 1 &&
"expected plan with single VF");
5013 bool HasScalarVFOnly = VFs.size() == 1 && VFs[0].isScalar();
5015 "Plan with scalar VF should only have a single VF");
5016 return HasScalarVFOnly;
5019 bool hasUF(
unsigned UF)
const {
return UFs.empty() || UFs.contains(UF); }
5023 assert(UFs.size() == 1 &&
"Expected a single UF");
5028 assert(
hasUF(UF) &&
"Cannot set the UF not already in plan");
5045 assert(V &&
"Trying to get or add the VPIRValue of a null Value");
5046 auto [It, Inserted] = LiveIns.try_emplace(V);
5055 "Only VPIRValues should be in mapping");
5059 assert(V &&
"Trying to get or add the VPIRValue of a null VPIRValue");
5085 bool IsSigned =
false) {
5106#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
5130 CreatedBlocks.push_back(VPB);
5139 const std::string &Name =
"",
5143 CreatedBlocks.push_back(VPB);
5151 const std::string &Name =
"") {
5153 CreatedBlocks.push_back(VPB);
5170 unsigned NumExitPredecessors =
5182 return NumExitPredecessors >= 1;
5186 return NumExitPredecessors > 1;
5202#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static MCDisassembler::DecodeStatus addOperand(MCInst &Inst, const MCOperand &Opnd)
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static void print(raw_ostream &Out, object::Archive::Kind Kind, T Val)
This file implements methods to test, set and extract typed bits from packed unsigned integers.
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.
#define LLVM_ABI_FOR_TEST
#define LLVM_PACKED_START
This file defines an InstructionCost class that is used when calculating the cost of an instruction,...
static std::pair< Value *, APInt > getMask(Value *WideMask, unsigned Factor, ElementCount LeafValueEC)
This file implements a map that provides insertion order iteration.
static Interval intersect(const Interval &I1, const Interval &I2)
This file provides utility analysis objects describing memory locations.
static StringRef getName(Value *V)
static bool mayHaveSideEffects(MachineInstr &MI)
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static SymbolRef::Type getType(const Symbol *Sym)
static const BasicSubtargetSubTypeKV * find(StringRef S, ArrayRef< BasicSubtargetSubTypeKV > A)
Find KV in array using binary search.
This file contains the declarations of the entities induced by Vectorization Plans,...
#define VP_CLASSOF_IMPL(VPRecipeID)
static const uint32_t IV[8]
Class for arbitrary precision integers.
static APInt getAllOnes(unsigned numBits)
Return an APInt of a specified width with all bits set.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
const T & back() const
Get the last element.
bool empty() const
Check if the array is empty.
LLVM Basic Block Representation.
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this basic block belongs to.
LLVM_ABI LLVMContext & getContext() const
Get the context in which this basic block lives.
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.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
A parsed version of the target data layout string in and methods for querying it.
static DebugLoc getUnknown()
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
static constexpr ElementCount getFixed(ScalarTy MinVal)
Utility class for floating point operations which can have information about relaxed accuracy require...
Convenience struct for specifying and reasoning about fast-math flags.
Represents flags for the getelementptr instruction/expression.
static GEPNoWrapFlags fromRaw(unsigned Flags)
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 ...
The group of interleaved loads/stores sharing the same stride and close to each other.
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.
Represents a single loop in the control flow graph.
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
The RecurrenceDescriptor is used to identify recurrences variables in a loop.
This class represents an assumption made using SCEV expressions which can be checked at run-time.
This class represents an analyzed expression in the program.
This class provides computation of slot numbers for LLVM Assembly writing.
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.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
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.
Represent a constant reference to a string, i.e.
std::string str() const
Get the contents as an std::string.
This class represents a truncation of integer types.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
LLVM_ABI 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.
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
bool isIntegerTy() const
True if this is an instance of IntegerType.
void execute(VPTransformState &State) override
Generate the active lane mask phi of the vector loop.
VPActiveLaneMaskPHIRecipe * clone() override
Clone the current recipe.
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPActiveLaneMaskPHIRecipe(VPValue *StartMask, DebugLoc DL)
~VPActiveLaneMaskPHIRecipe() override=default
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...
RecipeListTy & getRecipeList()
Returns a reference to the list of recipes.
iplist< VPRecipeBase > RecipeListTy
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.
const VPBasicBlock * getCFGPredecessor(unsigned Idx) const
Returns the predecessor block at index Idx with the predecessors as per the corresponding plain CFG.
iterator getFirstNonPhi()
Return the position of the first non-phi node recipe in the block.
const_reverse_iterator rbegin() const
RecipeListTy Recipes
The VPRecipes held in the order of output instructions to generate.
const VPRecipeBase & front() const
const_iterator begin() const
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
VPBasicBlock(VPBlockTy BlockSC, const Twine &Name="")
VPValue * getIncomingValue(unsigned Idx) const
Return incoming value number Idx.
VPValue * getMask(unsigned Idx) const
Return mask number Idx.
VPBlendRecipe(PHINode *Phi, ArrayRef< VPValue * > Operands, const VPIRFlags &Flags, DebugLoc DL)
The blend operation is a User of the incoming values and of their respective masks,...
unsigned getNumIncomingValues() const
Return the number of incoming values, taking into account when normalized the first incoming value wi...
void execute(VPTransformState &State) override
The method which generates the output IR instructions that correspond to this VPRecipe,...
VPBlendRecipe * cloneWithOperands(ArrayRef< VPValue * > NewOperands)
VPBlendRecipe * clone() override
Clone the current recipe.
void setMask(unsigned Idx, VPValue *V)
Set mask number Idx to V.
bool isNormalized() const
A normalized blend is one that has an odd number of operands, whereby the first operand does not have...
VPBlockBase is the building block of the Hierarchical Control-Flow Graph.
void setSuccessors(ArrayRef< VPBlockBase * > NewSuccs)
Set each VPBasicBlock in NewSuccss as successor of this VPBlockBase.
VPRegionBlock * getParent()
VPBlocksTy & getPredecessors()
iterator_range< VPBlockBase ** > predecessors()
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.
bool hasPredecessors() const
Returns true if this block has any predecessors.
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.
SmallVectorImpl< VPBlockBase * > VPBlocksTy
virtual ~VPBlockBase()=default
const VPBlocksTy & getHierarchicalPredecessors()
unsigned getIndexForSuccessor(const VPBlockBase *Succ) const
Returns the index for Succ in the blocks successor list.
size_t getNumPredecessors() const
void setPredecessors(ArrayRef< VPBlockBase * > NewPreds)
Set each VPBasicBlock in NewPreds as predecessor of this VPBlockBase.
VPBlockBase * getEnclosingBlockWithPredecessors()
unsigned getIndexForPredecessor(const VPBlockBase *Pred) const
Returns the index for Pred in the blocks predecessors list.
enum :unsigned char { VPRegionBlockSC, VPBasicBlockSC, VPIRBasicBlockSC } VPBlockTy
An enumeration for keeping track of the concrete subclass of VPBlockBase that are actually instantiat...
bool hasSuccessors() const
Returns true if this block has any successors.
const VPBlocksTy & getPredecessors() const
virtual VPBlockBase * clone()=0
Clone the current block and it's recipes without updating the operands of the cloned recipes,...
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.
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.
friend class VPBlockUtils
unsigned getVPBlockID() const
void printAsOperand(raw_ostream &OS, bool PrintType=false) const
void swapPredecessors()
Swap predecessors of the block.
VPBlocksTy & getSuccessors()
VPBlockBase * getEnclosingBlockWithSuccessors()
An Enclosing Block of a block B is any block containing B, including B itself.
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
VPBlockBase(VPBlockTy SC, const std::string &N)
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPBranchOnMaskRecipe * clone() override
Clone the current recipe.
bool usesScalars(const VPValue *Op) const override
Returns true if the recipe uses scalars of operand Op.
VPBranchOnMaskRecipe(VPValue *BlockInMask, DebugLoc DL)
VPlan-based builder utility analogous to IRBuilder.
VPRegionValue * createHeaderMask()
Create the header mask for the region and return it.
VPRegionValue * getHeaderMask() const
VPRegionValue * getRegionValue()
VPCanonicalIVInfo(Type *Ty, DebugLoc DL, VPRegionBlock *Region)
const VPRegionValue * getRegionValue() const
VPCurrentIterationPHIRecipe * clone() override
Clone the current recipe.
VPCurrentIterationPHIRecipe(VPValue *StartIV, DebugLoc DL)
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPCurrentIterationPHIRecipe.
LLVM_ABI_FOR_TEST void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
void execute(VPTransformState &State) override
Generate the phi nodes.
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
~VPCurrentIterationPHIRecipe() override=default
InductionDescriptor::InductionKind getInductionKind() const
VPValue * getIndex() const
VPDerivedIVRecipe(InductionDescriptor::InductionKind Kind, const FPMathOperator *FPBinOp, VPValue *Start, VPValue *IV, VPValue *Step)
const FPMathOperator * getFPBinOp() const
VPValue * getStepValue() const
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPDerivedIVRecipe.
void execute(VPTransformState &State) override
The method which generates the output IR instructions that correspond to this VPRecipe,...
VPDerivedIVRecipe * clone() override
Clone the current recipe.
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
~VPDerivedIVRecipe() override=default
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPValue * getStartValue() const
Template specialization of the standard LLVM dominator tree utility for VPBlockBases.
void execute(VPTransformState &State) override
The method which generates the output IR instructions that correspond to this VPRecipe,...
void printRecipe(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 VPExpandSCEVRecipe.
VPExpandSCEVRecipe(const SCEV *Expr)
const SCEV * getSCEV() const
VPExpandSCEVRecipe * clone() override
Clone the current recipe.
~VPExpandSCEVRecipe() override=default
void execute(VPTransformState &State) override
Method for generating code, must not be called as this recipe is abstract.
bool isVectorToScalar() const
Returns true if this VPExpressionRecipe produces a single scalar.
VPExpressionRecipe(VPWidenCastRecipe *Ext, VPWidenRecipe *Neg, VPReductionRecipe *Red)
VPExpressionRecipe * clone() override
Clone the current recipe.
void decompose()
Insert the recipes of the expression back into the VPlan, directly before the current recipe.
~VPExpressionRecipe() override
VPExpressionRecipe(VPWidenCastRecipe *Ext, VPReductionRecipe *Red)
bool mayHaveSideEffects() const
Returns true if this expression contains recipes that may have side effects.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Compute the cost of this recipe either using a recipe's specialized implementation or using the legac...
bool mayReadOrWriteMemory() const
Returns true if this expression contains recipes that may read from or write to memory.
VPExpressionRecipe(VPWidenCastRecipe *Ext0, VPWidenCastRecipe *Ext1, VPWidenRecipe *Mul, VPReductionRecipe *Red)
VPExpressionRecipe(VPWidenCastRecipe *Ext0, VPWidenCastRecipe *Ext1, VPWidenRecipe *Mul, VPWidenRecipe *Neg, VPReductionRecipe *Red)
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
unsigned getVFScaleFactor() const
VPExpressionRecipe(VPWidenRecipe *Mul, VPReductionRecipe *Red)
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.
VPHistogramRecipe * clone() override
Clone the current recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPHistogramRecipe.
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
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
VP_CLASSOF_IMPL(VPRecipeBase::VPHistogramSC)
~VPHistogramRecipe() override=default
VPHistogramRecipe(unsigned Opcode, ArrayRef< VPValue * > Operands, const VPIRMetadata &Metadata={}, DebugLoc DL=DebugLoc::getUnknown())
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,...
BasicBlock * getIRBasicBlock() const
static bool classof(const VPBlockBase *V)
~VPIRBasicBlock() override=default
VPIRBasicBlock * clone() override
Clone the current block and it's recipes, without updating the operands of the cloned recipes.
Class to record and manage LLVM IR flags.
WrapFlagsTy getNoWrapFlagsOrNone() const
ReductionFlagsTy ReductionFlags
LLVM_ABI_FOR_TEST bool hasRequiredFlagsForOpcode(unsigned Opcode) const
Returns true if Opcode has its required flags set.
VPIRFlags(RecurKind Kind, bool IsOrdered, bool IsInLoop, FastMathFlags FMFs)
LLVM_ABI_FOR_TEST bool flagsValidForOpcode(unsigned Opcode) const
Returns true if the set flags are valid for Opcode.
static VPIRFlags getDefaultFlags(unsigned Opcode)
Returns default flags for Opcode for opcodes that support it, asserts otherwise.
VPIRFlags(DisjointFlagsTy DisjointFlags)
VPIRFlags(WrapFlagsTy WrapFlags)
void printFlags(raw_ostream &O) const
VPIRFlags(CmpInst::Predicate Pred, FastMathFlags FMFs)
bool hasFastMathFlags() const
Returns true if the recipe has fast-math flags.
bool isReductionOrdered() const
CmpInst::Predicate getPredicate() const
WrapFlagsTy getNoWrapFlags() const
LLVM_ABI_FOR_TEST FastMathFlags getFastMathFlagsOrNone() const
void transferFlags(VPIRFlags &Other)
bool hasNoSignedWrap() const
void intersectFlags(const VPIRFlags &Other)
Only keep flags also present in Other.
VPIRFlags(TruncFlagsTy TruncFlags)
VPIRFlags(FastMathFlags FMFs)
VPIRFlags(NonNegFlagsTy NonNegFlags)
VPIRFlags(CmpInst::Predicate Pred)
VPIRFlags(ExactFlagsTy ExactFlags)
GEPNoWrapFlags getGEPNoWrapFlags() const
bool hasPredicate() const
Returns true if the recipe has a comparison predicate.
DisjointFlagsTy DisjointFlags
void setPredicate(CmpInst::Predicate Pred)
bool hasNoUnsignedWrap() const
NonNegFlagsTy NonNegFlags
bool isReductionInLoop() const
void dropPoisonGeneratingFlags()
Drop all poison-generating flags.
void applyFlags(Instruction &I) const
Apply the IR flags to I.
VPIRFlags(GEPNoWrapFlags GEPFlags)
RecurKind getRecurKind() const
VPIRFlags(Instruction &I)
Instruction & getInstruction() const
bool usesFirstPartOnly(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.
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the VPUser only uses the first lane of operand Op.
static LLVM_ABI_FOR_TEST VPIRInstruction * create(Instruction &I)
Create a new VPIRPhi for \I , if it is a PHINode, otherwise create a VPIRInstruction.
LLVM_ABI_FOR_TEST InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPIRInstruction.
bool usesScalars(const VPValue *Op) const override
Returns true if the VPUser uses scalars of operand Op.
VPIRInstruction(Instruction &I)
VPIRInstruction::create() should be used to create VPIRInstructions, as subclasses may need to be cre...
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
static bool classof(const VPUser *R)
static bool classof(const VPRecipeBase *R)
Type * getResultType() const
VPInstruction * clone() override
Clone the current recipe.
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPInstructionWithType(unsigned Opcode, ArrayRef< VPValue * > Operands, Type *ResultTy, const VPIRFlags &Flags={}, const VPIRMetadata &Metadata={}, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="", Value *UV=nullptr)
void execute(VPTransformState &State) override
Generate the instruction.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPInstruction.
bool usesScalars(const VPValue *Op) const override
Cast recipes always use scalars of their operand.
This is a concrete Recipe that models a single VPlan-level instruction.
VPInstruction(unsigned Opcode, ArrayRef< VPValue * > Operands, const VPIRFlags &Flags={}, const VPIRMetadata &MD={}, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="", Type *ResultTy=nullptr)
unsigned getNumOperandsWithoutMask() const
Returns the number of operands, excluding the mask if the VPInstruction is masked.
iterator_range< operand_iterator > operandsWithoutMask()
Returns an iterator range over the operands excluding the mask operand if present.
VPInstruction * clone() override
Clone the current recipe.
@ ExtractLastActive
Extracts the last active lane from a set of vectors.
@ Intrinsic
Calls a scalar intrinsic. The intrinsic ID is the last operand.
@ ExtractLane
Extracts a single lane (first operand) from a set of vector operands.
@ ExitingIVValue
Compute the exiting value of a wide induction after vectorization, that is the value of the last lane...
@ WideIVStep
Scale the first operand (vector step) by the second operand (scalar-step).
@ ExtractPenultimateElement
@ ResumeForEpilogue
Explicit user for the resume phi of the canonical induction in the main VPlan, used by the epilogue v...
@ Unpack
Extracts all lanes from its (non-scalable) vector operand.
@ FirstOrderRecurrenceSplice
@ ReductionStartVector
Start vector for reductions with 3 operands: the original start value, the identity value for the red...
@ BuildVector
Creates a fixed-width vector containing all operands.
@ BuildStructVector
Given operands of (the same) struct type, creates a struct of fixed- width vectors each containing a ...
@ CanonicalIVIncrementForPart
@ ComputeReductionResult
Reduce the operands to the final reduction result using the operation specified via the operation's V...
@ CalculateTripCountMinusVF
iterator_range< const_operand_iterator > operandsWithoutMask() const
void addMask(VPValue *Mask)
Add mask Mask to an unmasked VPInstruction, if it needs masking.
StringRef getName() const
Returns the symbolic name assigned to the VPInstruction.
unsigned getOpcode() const
void setName(StringRef NewName)
Set the symbolic name for the VPInstruction.
VPValue * getMask() const
Returns the mask for the VPInstruction.
VPInstruction * cloneWithOperands(ArrayRef< VPValue * > NewOperands, Type *ResultTy=nullptr)
unsigned getNumOperandsForOpcode() const
Return the number of operands determined by the opcode of the VPInstruction, excluding mask.
bool isMasked() const
Returns true if the VPInstruction has a mask operand.
A common base class for interleaved memory operations.
virtual unsigned getNumStoreOperands() const =0
Returns the number of stored operands of this interleave group.
VPInterleaveBase(VPRecipeTy SC, const InterleaveGroup< Instruction > *IG, ArrayRef< VPValue * > Operands, ArrayRef< VPValue * > StoredValues, VPValue *Mask, bool NeedsMaskForGaps, const VPIRMetadata &MD, DebugLoc DL)
bool usesFirstLaneOnly(const VPValue *Op) const override=0
Returns true if the recipe only uses the first lane of operand Op.
bool needsMaskForGaps() const
Return true if the access needs a mask because of the gaps.
void execute(VPTransformState &State) override
The method which generates the output IR instructions that correspond to this VPRecipe,...
static bool classof(const VPUser *U)
Instruction * getInsertPos() const
static bool classof(const VPRecipeBase *R)
const InterleaveGroup< Instruction > * getInterleaveGroup() const
VPValue * getMask() const
Return the mask used by this recipe.
ArrayRef< VPValue * > getStoredValues() const
Return the VPValues stored by this interleave group.
VPInterleaveBase * clone() override=0
Clone the current recipe.
VPValue * getAddr() const
Return the address accessed by this recipe.
bool usesFirstLaneOnly(const VPValue *Op) const override
The recipe only uses the first lane of the address, and EVL operand.
VPValue * getEVL() const
The VPValue of the explicit vector length.
~VPInterleaveEVLRecipe() override=default
unsigned getNumStoreOperands() const override
Returns the number of stored operands of this interleave group.
VPInterleaveEVLRecipe * clone() override
Clone the current recipe.
VPInterleaveEVLRecipe(VPInterleaveRecipe &R, VPValue &EVL, VPValue *Mask)
VPInterleaveRecipe is a recipe for transforming an interleave group of load or stores into one wide l...
unsigned getNumStoreOperands() const override
Returns the number of stored operands of this interleave group.
~VPInterleaveRecipe() override=default
VPInterleaveRecipe * clone() override
Clone the current recipe.
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPInterleaveRecipe(const InterleaveGroup< Instruction > *IG, VPValue *Addr, ArrayRef< VPValue * > StoredValues, VPValue *Mask, bool NeedsMaskForGaps, const VPIRMetadata &MD, DebugLoc DL)
In what follows, the term "input IR" refers to code that is fed into the vectorizer whereas the term ...
A VPRecipeValue defined by a multi-def recipe, stores a pointer to it.
Helper type to provide functions to access incoming values and blocks for phi-like recipes.
virtual const VPRecipeBase * getAsRecipe() const =0
Return a VPRecipeBase* to the current object.
VPValue * getIncomingValueForBlock(const VPBasicBlock *VPBB) const
Returns the incoming value for VPBB. VPBB must be an incoming block.
VPUser::const_operand_range incoming_values() const
Returns an interator range over the incoming values.
void addIncoming(VPValue *IncomingV)
Append IncomingV as an incoming value to the phi-like recipe.
virtual unsigned getNumIncoming() const
Returns the number of incoming values, also number of incoming blocks.
void removeIncomingValueFor(VPBlockBase *IncomingBlock) const
Removes the incoming value for IncomingBlock, which must be a predecessor.
const VPBasicBlock * getIncomingBlock(unsigned Idx) const
Returns the incoming block with index Idx.
detail::zippy< llvm::detail::zip_first, VPUser::const_operand_range, const_incoming_blocks_range > incoming_values_and_blocks() const
Returns an iterator range over pairs of incoming values and corresponding incoming blocks.
VPValue * getIncomingValue(unsigned Idx) const
Returns the incoming VPValue with index Idx.
virtual ~VPPhiAccessors()=default
void printPhiOperands(raw_ostream &O, VPSlotTracker &SlotTracker) const
Print the recipe.
void setIncomingValueForBlock(const VPBasicBlock *VPBB, VPValue *V) const
Sets the incoming value for VPBB to V.
iterator_range< mapped_iterator< detail::index_iterator, std::function< const VPBasicBlock *(size_t)> > > const_incoming_blocks_range
const_incoming_blocks_range incoming_blocks() const
Returns an iterator range over the incoming blocks.
~VPPredInstPHIRecipe() override=default
VPPredInstPHIRecipe * clone() override
Clone the current 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.
virtual void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const =0
Each concrete VPRecipe prints itself, without printing common information, like debug info or metadat...
VPRegionBlock * getRegion()
void setDebugLoc(DebugLoc NewDL)
Set the recipe's debug location to NewDL.
bool mayWriteToMemory() const
Returns true if the recipe may write to memory.
VPRecipeTy getVPRecipeID() const
~VPRecipeBase() override=default
VPBasicBlock * getParent()
enum :unsigned char { VPBranchOnMaskSC, VPDerivedIVSC, VPExpandSCEVSC, VPExpressionSC, VPIRInstructionSC, VPInstructionSC, VPInterleaveEVLSC, VPInterleaveSC, VPReductionEVLSC, VPReductionSC, VPReplicateSC, VPScalarIVStepsSC, VPVectorPointerSC, VPVectorEndPointerSC, VPWidenCallSC, VPWidenCanonicalIVSC, VPWidenCastSC, VPWidenGEPSC, VPWidenIntrinsicSC, VPWidenMemIntrinsicSC, VPWidenLoadEVLSC, VPWidenLoadSC, VPWidenStoreEVLSC, VPWidenStoreSC, VPWidenSC, VPBlendSC, VPHistogramSC, VPWidenPHISC, VPPredInstPHISC, VPCurrentIterationPHISC, VPActiveLaneMaskPHISC, VPFirstOrderRecurrencePHISC, VPWidenIntOrFpInductionSC, VPWidenPointerInductionSC, VPReductionPHISC, VPFirstPHISC=VPWidenPHISC, VPFirstHeaderPHISC=VPCurrentIterationPHISC, VPLastHeaderPHISC=VPReductionPHISC, VPLastPHISC=VPReductionPHISC, } VPRecipeTy
An enumeration for keeping track of the concrete subclass of VPRecipeBase that is actually instantiat...
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.
virtual VPRecipeBase * clone()=0
Clone the current recipe.
friend class VPBlockUtils
const VPBasicBlock * getParent() const
VPRecipeBase(VPRecipeTy SC, ArrayRef< VPValue * > Operands, DebugLoc DL=DebugLoc::getUnknown())
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)
void removeFromParent()
This method unlinks 'this' from the containing basic block, but does not delete it.
void moveAfter(VPRecipeBase *MovePos)
Unlink this recipe from its current VPBasicBlock and insert it into the VPBasicBlock that MovePos liv...
Type * getScalarType() const
Returns the scalar type of this VPRecipeValue.
VPValue * getEVL() const
The VPValue of the explicit vector length.
VPReductionEVLRecipe(VPReductionRecipe &R, VPValue &EVL, VPValue *CondOp, DebugLoc DL=DebugLoc::getUnknown())
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPReductionEVLRecipe * clone() override
Clone the current recipe.
~VPReductionEVLRecipe() override=default
bool isOrdered() const
Returns true, if the phi is part of an ordered reduction.
void setVFScaleFactor(unsigned ScaleFactor)
Set the VFScaleFactor for this reduction phi.
VPReductionPHIRecipe * clone() override
Clone the current recipe.
unsigned getVFScaleFactor() const
Get the factor that the VF of this recipe's output should be scaled by, or 1 if it isn't scaled.
~VPReductionPHIRecipe() override=default
bool hasUsesOutsideReductionChain() const
Returns true, if the phi is part of a multi-use reduction.
VPReductionPHIRecipe(PHINode *Phi, RecurKind Kind, VPValue &Start, VPValue &BackedgeValue, ReductionStyle Style, const VPIRFlags &Flags, bool HasUsesOutsideReductionChain=false)
Create a new VPReductionPHIRecipe for the reduction Phi.
bool isInLoop() const
Returns true if the phi is part of an in-loop reduction.
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
void execute(VPTransformState &State) override
Generate the phi/select nodes.
VPReductionPHIRecipe * cloneWithOperands(VPValue *Start, VPValue *BackedgeValue)
bool isPartialReduction() const
Returns true if the reduction outputs a vector with a scaled down VF.
RecurKind getRecurrenceKind() const
Returns the recurrence kind of the reduction.
A recipe to represent inloop, ordered or partial reduction operations.
bool isConditional() const
Return true if the in-loop reduction is conditional.
static bool classof(const VPRecipeBase *R)
static bool classof(const VPSingleDefRecipe *R)
VPValue * getVecOp() const
The VPValue of the vector value to be reduced.
VPValue * getCondOp() const
The VPValue of the condition for the block.
RecurKind getRecurrenceKind() const
Return the recurrence kind for the in-loop reduction.
VPReductionRecipe(RecurKind RdxKind, FastMathFlags FMFs, Instruction *I, VPValue *ChainOp, VPValue *VecOp, VPValue *CondOp, ReductionStyle Style, DebugLoc DL=DebugLoc::getUnknown())
bool isOrdered() const
Return true if the in-loop reduction is ordered.
VPReductionRecipe(const RecurKind RdxKind, FastMathFlags FMFs, VPValue *ChainOp, VPValue *VecOp, VPValue *CondOp, ReductionStyle Style, DebugLoc DL=DebugLoc::getUnknown())
VPReductionRecipe(VPRecipeTy SC, RecurKind RdxKind, FastMathFlags FMFs, Instruction *I, ArrayRef< VPValue * > Operands, VPValue *CondOp, ReductionStyle Style, DebugLoc DL)
bool isPartialReduction() const
Returns true if the reduction outputs a vector with a scaled down VF.
~VPReductionRecipe() override=default
VPValue * getChainOp() const
The VPValue of the scalar Chain being accumulated.
bool isInLoop() const
Returns true if the reduction is in-loop.
VPReductionRecipe * clone() override
Clone the current recipe.
static bool classof(const VPUser *U)
static bool classof(const VPValue *VPV)
unsigned getVFScaleFactor() const
Get the factor that the VF of this recipe's output should be scaled by, or 1 if it isn't scaled.
VPRegionBlock represents a collection of VPBasicBlocks and VPRegionBlocks which form a Single-Entry-S...
const VPBlockBase * getEntry() const
bool isReplicator() const
An indicator whether this region is to generate multiple replicated instances of output IR correspond...
~VPRegionBlock() override=default
VPRegionValue * createHeaderMask()
Create the header mask for the region and return it.
VPRegionValue * getUsedHeaderMask() const
Return the header mask if it exists and is used, or null otherwise.
void setExiting(VPBlockBase *ExitingBlock)
Set ExitingBlock as the exiting VPBlockBase of this VPRegionBlock.
VPBlockBase * getExiting()
const VPRegionValue * getCanonicalIV() const
SmallVector< VPRegionValue *, 2 > getRegionValues() const
Return the region values of the loop region (canonical IV, header mask) or an empty vector for replic...
void setEntry(VPBlockBase *EntryBlock)
Set EntryBlock as the entry VPBlockBase of this VPRegionBlock.
Type * getCanonicalIVType() const
Return the type of the canonical IV for loop regions.
bool hasCanonicalIVNUW() const
Indicates if NUW is set for the canonical IV increment, for loop regions.
void clearCanonicalIVNUW(VPInstruction *Increment)
Unsets NUW for the canonical IV increment Increment, for loop regions.
VPRegionValue * getCanonicalIV()
Return the canonical induction variable of the region, null for replicating regions.
const VPBlockBase * getExiting() const
VPBasicBlock * getPreheaderVPBB()
Returns the pre-header VPBasicBlock of the loop region.
VPRegionValue * getHeaderMask() const
Return the header mask of the region, or null if not set.
static bool classof(const VPBlockBase *V)
Method to support type inquiry through isa, cast, and dyn_cast.
VPValues are defined by a VPRegionBlock, like the canonical IV.
VPReplicateRecipe replicates a given instruction producing multiple scalar copies of the original sca...
bool isSingleScalar() const
Returns true if the recipe produces a single scalar value.
unsigned getNumOperandsWithoutMask() const
Returns the number of operands, excluding the mask if the recipe is predicated.
VPReplicateRecipe(Instruction *I, ArrayRef< VPValue * > Operands, bool IsSingleScalar, VPValue *Mask=nullptr, const VPIRFlags &Flags={}, VPIRMetadata Metadata={}, DebugLoc DL=DebugLoc::getUnknown())
~VPReplicateRecipe() override=default
static Type * computeScalarType(const Instruction *I, ArrayRef< VPValue * > Operands)
Compute the scalar result type for a VPReplicateRecipe wrapping I with Operands (excluding any predic...
VPReplicateRecipe * cloneWithOperands(ArrayRef< VPValue * > NewOperands)
bool usesScalars(const VPValue *Op) const override
Returns true if the recipe uses scalars of operand Op.
operand_range operandsWithoutMask()
Return the recipe's operands, excluding the mask of a predicated recipe.
bool isPredicated() const
VPReplicateRecipe * clone() override
Clone the current recipe.
bool doesGeneratePerAllLanes() const
Returns true if the recipe produces scalar values for all VF lanes.
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
unsigned getOpcode() const
VPValue * getMask()
Return the mask of a predicated VPReplicateRecipe.
Instruction::BinaryOps getInductionOpcode() const
VPValue * getStepValue() const
void setStartIndex(VPValue *StartIndex)
Set or add the StartIndex operand.
VPScalarIVStepsRecipe * clone() override
Clone the current recipe.
VPValue * getStartIndex() const
Return the StartIndex, or null if known to be zero, valid only after unrolling.
VPValue * getVFValue() const
Return the number of scalars to produce per unroll part, used to compute StartIndex during unrolling.
VPScalarIVStepsRecipe(VPValue *IV, VPValue *Step, VPValue *VF, Instruction::BinaryOps Opcode, FastMathFlags FMFs={}, DebugLoc DL=DebugLoc::getUnknown())
~VPScalarIVStepsRecipe() override=default
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPSingleDefRecipe is a base class for recipes that model a sequence of one or more output IR that def...
static bool classof(const VPValue *V)
Instruction * getUnderlyingInstr()
Returns the underlying instruction.
static bool classof(const VPRecipeBase *R)
VPSingleDefRecipe(VPRecipeTy SC, ArrayRef< VPValue * > Operands, Value *UV, DebugLoc DL=DebugLoc::getUnknown())
const Instruction * getUnderlyingInstr() const
VPSingleDefRecipe(VPRecipeTy SC, ArrayRef< VPValue * > Operands, Type *ResultTy, Value *UV=nullptr, DebugLoc DL=DebugLoc::getUnknown())
static bool classof(const VPUser *U)
VPSingleDefRecipe * clone() override=0
Clone the current recipe.
VPSingleDefRecipe(VPRecipeTy SC, ArrayRef< VPValue * > Operands, DebugLoc DL=DebugLoc::getUnknown())
LLVM_ABI_FOR_TEST VPSingleDefValue(VPSingleDefRecipe *Def, Value *UV=nullptr, Type *Ty=nullptr)
Construct a VPSingleDefValue. Must only be used by VPSingleDefRecipe.
This class can be used to assign names to VPValues.
A symbolic live-in VPValue, used for values like vector trip count, VF, and VFxUF.
This class augments VPValue with operands which provide the inverse def-use edges from VPValue's user...
void printOperands(raw_ostream &O, VPSlotTracker &SlotTracker) const
Print the operands to O.
void setOperand(unsigned I, VPValue *New)
unsigned getNumOperands() const
operand_iterator op_end()
operand_iterator op_begin()
VPValue * getOperand(unsigned N) const
VPUser(ArrayRef< VPValue * > Operands)
iterator_range< const_operand_iterator > const_operand_range
virtual bool usesScalars(const VPValue *Op) const
Returns true if the VPUser uses scalars of operand Op.
iterator_range< operand_iterator > operand_range
void addOperand(VPValue *Operand)
This is the base class of the VPlan Def/Use graph, used for modeling the data flow into,...
Type * getScalarType() const
Returns the scalar type of this VPValue, dispatching based on the concrete subclass.
Value * getLiveInIRValue() const
Return the underlying IR value for a VPIRValue.
VPRecipeBase * getDefiningRecipe()
Returns the recipe defining this VPValue or nullptr if it is not defined by a recipe,...
Value * getUnderlyingValue() const
Return the underlying Value attached to this VPValue.
void setUnderlyingValue(Value *Val)
unsigned getNumUsers() const
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the VPUser only uses the first lane of operand Op.
VPValue * getVFValue() const
void execute(VPTransformState &State) override
The method which generates the output IR instructions that correspond to this VPRecipe,...
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
Type * getSourceElementType() const
int64_t getStride() const
VPVectorEndPointerRecipe * clone() override
Clone the current recipe.
VPValue * getOffset() const
bool usesFirstPartOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first part of operand Op.
void addOffset(VPValue *Offset)
Append Offset as the offset operand.
VPVectorEndPointerRecipe(VPValue *Ptr, VPValue *VF, Type *SourceElementTy, int64_t Stride, GEPNoWrapFlags GEPFlags, DebugLoc DL)
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPVectorPointerRecipe.
VPValue * getPointer() const
void materializeOffset(unsigned Part=0)
Adds the offset operand to the recipe.
void addPerPartOffset(VPValue *VFxPart)
Add the per-part offset (VFxPart) used for unrolled parts > 0.
VPValue * getStride() const
Type * getSourceElementType() const
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the VPUser only uses the first lane of operand Op.
void printRecipe(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 usesFirstPartOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first part of operand Op.
VPVectorPointerRecipe(VPValue *Ptr, Type *SourceElementTy, VPValue *Stride, GEPNoWrapFlags GEPFlags, DebugLoc DL)
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPHeaderPHIRecipe.
VPVectorPointerRecipe * clone() override
Clone the current recipe.
VPValue * getVFxPart() const
A recipe for widening Call instructions using library calls.
VPWidenCallRecipe(Value *UV, Function *Variant, ArrayRef< VPValue * > CallArguments, const VPIRFlags &Flags={}, const VPIRMetadata &Metadata={}, DebugLoc DL={})
const_operand_range args() const
VPWidenCallRecipe * clone() override
Clone the current recipe.
Function * getCalledScalarFunction() const
~VPWidenCallRecipe() override=default
~VPWidenCanonicalIVRecipe() override=default
VPValue * getStepValue() const
void addPerPartStep(VPValue *Step)
Add the per-part step (VF * Part) used for unrolled parts.
void printRecipe(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 VPWidenCanonicalIVPHIRecipe.
VPRegionValue * getCanonicalIV() const
Return the canonical IV being widened.
VPWidenCanonicalIVRecipe * clone() override
Clone the current recipe.
VPWidenCanonicalIVRecipe(VPRegionValue *CanonicalIV, const VPIRFlags::WrapFlagsTy &Flags={})
void execute(VPTransformState &State) override
The method which generates the output IR instructions that correspond to this VPRecipe,...
VPWidenCastRecipe is a recipe to create vector cast instructions.
Instruction::CastOps getOpcode() const
LLVM_ABI_FOR_TEST void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
LLVM_ABI_FOR_TEST void execute(VPTransformState &State) override
Produce widened copies of the cast.
~VPWidenCastRecipe() override=default
LLVM_ABI_FOR_TEST InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenCastRecipe.
VPWidenCastRecipe(Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy, CastInst *CI=nullptr, const VPIRFlags &Flags={}, const VPIRMetadata &Metadata={}, DebugLoc DL=DebugLoc::getUnknown())
VPWidenCastRecipe * clone() override
Clone the current recipe.
unsigned getOpcode() const
This recipe generates a GEP instruction.
Type * getSourceElementType() const
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(Type *SourceElementTy, ArrayRef< VPValue * > Operands, const VPIRFlags &Flags={}, DebugLoc DL=DebugLoc::getUnknown(), GetElementPtrInst *UV=nullptr)
void execute(VPTransformState &State) override=0
Generate the phi nodes.
ArrayRef< const SCEVPredicate * > getNoWrapPredicates() const
Returns the SCEV predicates associated with this induction.
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
static bool classof(const VPValue *V)
void setStepValue(VPValue *V)
Update the step value of the recipe.
VPValue * getBackedgeValue() override
Returns the incoming value from the loop backedge.
VPIRValue * getStartValue() const
Returns the start value of the induction.
unsigned getNumIncoming() const override
Returns the number of incoming values, also number of incoming blocks.
PHINode * getPHINode() const
Returns the underlying PHINode if one exists, or null otherwise.
VPValue * getStepValue()
Returns the step value of the induction.
const InductionDescriptor & getInductionDescriptor() const
Returns the induction descriptor for the recipe.
static bool classof(const VPRecipeBase *R)
VPWidenInductionRecipe(VPRecipeTy Kind, PHINode *IV, VPValue *Start, VPValue *Step, const InductionDescriptor &IndDesc, Type *ResultTy, DebugLoc DL)
const VPValue * getVFValue() const
static bool classof(const VPSingleDefRecipe *R)
const VPValue * getStepValue() const
VPWidenInductionRecipe(VPRecipeTy Kind, PHINode *IV, VPValue *Start, VPValue *Step, const InductionDescriptor &IndDesc, DebugLoc DL)
void addUnrolledPartOperands(VPValue *SplatVFStep, VPValue *LastPart)
After unrolling, append the splat-VF step (VF * step) and the value of the induction at the last unro...
const TruncInst * getTruncInst() const
void execute(VPTransformState &State) override
Generate the phi nodes.
~VPWidenIntOrFpInductionRecipe() override=default
VPValue * getSplatVFValue() const
If the recipe has been unrolled, return the VPValue for the induction increment, otherwise return nul...
VPWidenIntOrFpInductionRecipe * clone() override
Clone the current recipe.
VPWidenIntOrFpInductionRecipe(PHINode *IV, VPIRValue *Start, VPValue *Step, VPValue *VF, const InductionDescriptor &IndDesc, const VPIRFlags &Flags, DebugLoc DL)
TruncInst * getTruncInst()
Returns the first defined value as TruncInst, if it is one or nullptr otherwise.
VPWidenIntOrFpInductionRecipe(PHINode *IV, VPIRValue *Start, VPValue *Step, VPValue *VF, const InductionDescriptor &IndDesc, TruncInst *Trunc, const VPIRFlags &Flags, DebugLoc DL)
VPValue * getLastUnrolledPartOperand()
Returns the VPValue representing the value of this induction at the last unrolled part,...
unsigned getNumIncoming() const override
Returns the number of incoming values, also number of incoming blocks.
bool isCanonical() const
Returns true if the induction is canonical, i.e.
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
A recipe for widening vector intrinsics.
VPWidenIntrinsicRecipe(VPRecipeTy SC, Intrinsic::ID VectorIntrinsicID, ArrayRef< VPValue * > CallArguments, Type *Ty, const VPIRFlags &Flags={}, const VPIRMetadata &MD={}, DebugLoc DL=DebugLoc::getUnknown())
VPWidenIntrinsicRecipe(Intrinsic::ID VectorIntrinsicID, ArrayRef< VPValue * > CallArguments, Type *Ty, const VPIRFlags &Flags={}, const VPIRMetadata &Metadata={}, DebugLoc DL=DebugLoc::getUnknown())
CallInst * createVectorCall(VPTransformState &State)
Helper function to produce the widened intrinsic call.
Intrinsic::ID getVectorIntrinsicID() const
Return the ID of the intrinsic.
LLVM_ABI_FOR_TEST void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
bool mayReadFromMemory() const
Returns true if the intrinsic may read from memory.
StringRef getIntrinsicName() const
Return to name of the intrinsic as string.
static InstructionCost computeCallCost(Intrinsic::ID ID, ArrayRef< const VPValue * > Operands, const VPRecipeWithIRFlags &R, ElementCount VF, VPCostContext &Ctx)
Compute the cost of a vector intrinsic with ID and Operands.
VPWidenIntrinsicRecipe(CallInst &CI, Intrinsic::ID VectorIntrinsicID, ArrayRef< VPValue * > CallArguments, Type *Ty, const VPIRFlags &Flags={}, const VPIRMetadata &MD={}, DebugLoc DL=DebugLoc::getUnknown())
bool mayHaveSideEffects() const
Returns true if the intrinsic may have side-effects.
static bool classof(const VPSingleDefRecipe *R)
static bool classof(const VPValue *V)
VPWidenIntrinsicRecipe * clone() override
Clone the current recipe.
bool mayWriteToMemory() const
Returns true if the intrinsic may write to memory.
~VPWidenIntrinsicRecipe() override=default
static bool classof(const VPRecipeBase *R)
LLVM_ABI_FOR_TEST bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the VPUser only uses the first lane of operand Op.
LLVM_ABI_FOR_TEST void execute(VPTransformState &State) override
Produce a widened version of the vector intrinsic.
LLVM_ABI_FOR_TEST InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this vector intrinsic.
static bool classof(const VPUser *U)
static InstructionCost computeMemIntrinsicCost(Intrinsic::ID IID, Type *Ty, bool IsMasked, Align Alignment, VPCostContext &Ctx)
Helper function for computing the cost of vector memory intrinsic.
void execute(VPTransformState &State) override
Produce a widened version of the vector memory intrinsic.
~VPWidenMemIntrinsicRecipe() override=default
VPWidenMemIntrinsicRecipe * clone() override
Clone the current recipe.
VPWidenMemIntrinsicRecipe(Intrinsic::ID VectorIntrinsicID, ArrayRef< VPValue * > CallArguments, Type *Ty, Align Alignment, const VPIRMetadata &MD={}, DebugLoc DL=DebugLoc::getUnknown())
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this vector memory intrinsic.
A common mixin class for widening memory operations.
bool IsMasked
Whether the memory access is masked.
bool isConsecutive() const
Return whether the loaded-from / stored-to addresses are consecutive.
virtual ~VPWidenMemoryRecipe()=default
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const
Return the cost of this VPWidenMemoryRecipe.
Instruction & getIngredient() const
bool Consecutive
Whether the accessed addresses are consecutive.
virtual const VPRecipeBase * getAsRecipe() const =0
VPValue * getMask() const
Return the mask used by this recipe.
Align Alignment
Alignment information for this memory access.
VPWidenMemoryRecipe(Instruction &I, bool Consecutive, const VPIRMetadata &Metadata)
virtual VPRecipeBase * getAsRecipe()=0
Return a VPRecipeBase* to the current object.
bool isMasked() const
Returns true if the recipe is masked.
void setMask(VPValue *Mask)
Align getAlign() const
Returns the alignment of the memory access.
VPValue * getAddr() const
Return the address accessed by this recipe.
A recipe for widened phis.
const VPRecipeBase * getAsRecipe() const override
Return a VPRecipeBase* to the current object.
unsigned getOpcode() const
This recipe generates a PHI.
VPWidenPHIRecipe * clone() override
Clone the current recipe.
~VPWidenPHIRecipe() override=default
VPWidenPHIRecipe(ArrayRef< VPValue * > IncomingValues, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="")
Create a new VPWidenPHIRecipe with incoming values IncomingValues, debug location DL and Name.
VPWidenPointerInductionRecipe * clone() override
Clone the current recipe.
~VPWidenPointerInductionRecipe() override=default
bool onlyScalarsGenerated(bool IsScalable)
Returns true if only scalar values will be generated.
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
void execute(VPTransformState &State) override
Generate vector values for the pointer induction.
VPWidenPointerInductionRecipe(PHINode *Phi, VPValue *Start, VPValue *Step, VPValue *NumUnrolledElems, const InductionDescriptor &IndDesc, DebugLoc DL)
Create a new VPWidenPointerInductionRecipe for Phi with start value Start and the number of elements ...
VPWidenRecipe is a recipe for producing a widened instruction using the opcode and operands of the re...
VPWidenRecipe * clone() override
Clone the current recipe.
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
VPWidenRecipe(Instruction &I, ArrayRef< VPValue * > Operands, const VPIRFlags &Flags={}, const VPIRMetadata &Metadata={}, DebugLoc DL={})
VPWidenRecipe(unsigned Opcode, ArrayRef< VPValue * > Operands, const VPIRFlags &Flags={}, const VPIRMetadata &Metadata={}, DebugLoc DL={})
~VPWidenRecipe() override=default
VPWidenRecipe * cloneWithOperands(ArrayRef< VPValue * > NewOperands)
unsigned getOpcode() const
VPlan models a candidate for vectorization, encoding various decisions take to produce efficient outp...
VPIRValue * getLiveIn(Value *V) const
Return the live-in VPIRValue for V, if there is one or nullptr otherwise.
LLVM_ABI_FOR_TEST void printDOT(raw_ostream &O) const
Print this VPlan in DOT format to O.
friend class VPSlotTracker
std::string getName() const
Return a string with the name of the plan and the applicable VFs and UFs.
bool hasVF(ElementCount VF) const
ElementCount getSingleVF() const
Returns the single VF of the plan, asserting that the plan has exactly one VF.
const DataLayout & getDataLayout() const
LLVMContext & getContext() const
VPBasicBlock * getEntry()
Type * getIndexType() const
The type of the canonical induction variable of the vector loop.
void setName(const Twine &newName)
bool hasScalableVF() const
VPValue * getTripCount() const
The trip count of the original loop.
VPValue * getOrCreateBackedgeTakenCount()
The backedge taken count of the original loop.
iterator_range< SmallSetVector< ElementCount, 2 >::iterator > vectorFactors() const
Returns an iterator range over all VFs of the plan.
LLVM_ABI_FOR_TEST ~VPlan()
VPIRValue * getOrAddLiveIn(VPIRValue *V)
bool isExitBlock(VPBlockBase *VPBB)
Returns true if VPBB is an exit block.
const VPBasicBlock * getEntry() const
friend class VPlanPrinter
VPIRValue * getFalse()
Return a VPIRValue wrapping i1 false.
VPIRValue * getConstantInt(const APInt &Val)
Return a VPIRValue wrapping a ConstantInt with the given APInt value.
VPSymbolicValue & getVFxUF()
Returns VF * UF of the vector loop region.
VPIRValue * getAllOnesValue(Type *Ty)
Return a VPIRValue wrapping the AllOnes value of type Ty.
VPRegionBlock * createReplicateRegion(VPBlockBase *Entry, VPBlockBase *Exiting, const std::string &Name="")
Create a new replicate region with Entry, Exiting and Name.
VPIRBasicBlock * createEmptyVPIRBasicBlock(BasicBlock *IRBB)
Create a VPIRBasicBlock wrapping IRBB, but do not create VPIRInstructions wrapping the instructions i...
auto getLiveIns() const
Return the list of live-in VPValues available in the VPlan.
bool hasUF(unsigned UF) const
VPIRValue * getPoison(Type *Ty)
Return a VPIRValue wrapping a poison value of type Ty.
ArrayRef< VPIRBasicBlock * > getExitBlocks() const
Return an ArrayRef containing VPIRBasicBlocks wrapping the exit blocks of the original scalar loop.
VPlan(BasicBlock *ScalarHeaderBB, Type *IdxTy)
Construct a VPlan with a new VPBasicBlock as entry, a VPIRBasicBlock wrapping ScalarHeaderBB and vect...
VPSymbolicValue & getVectorTripCount()
The vector trip count.
VPValue * getBackedgeTakenCount() const
VPIRValue * getOrAddLiveIn(Value *V)
Gets the live-in VPIRValue for V or adds a new live-in (if none exists yet) for V.
VPRegionBlock * createLoopRegion(Type *CanIVTy, DebugLoc DL, const std::string &Name="", VPBlockBase *Entry=nullptr, VPBlockBase *Exiting=nullptr)
Create a new loop region with a canonical IV using CanIVTy and DL.
VPIRValue * getZero(Type *Ty)
Return a VPIRValue wrapping the null value of type Ty.
void setVF(ElementCount VF)
bool isUnrolled() const
Returns true if the VPlan already has been unrolled, i.e.
LLVM_ABI_FOR_TEST VPRegionBlock * getVectorLoopRegion()
Returns the VPRegionBlock of the vector loop.
bool hasEarlyExit() const
Returns true if the VPlan is based on a loop with an early exit.
InstructionCost cost(ElementCount VF, VPCostContext &Ctx)
Return the cost of this plan.
LLVM_ABI_FOR_TEST bool isOuterLoop() const
Returns true if this VPlan is for an outer loop, i.e., its vector loop region contains a nested loop ...
unsigned getConcreteUF() const
Returns the concrete UF of the plan, after unrolling.
VPIRValue * getConstantInt(unsigned BitWidth, uint64_t Val, bool IsSigned=false)
Return a VPIRValue wrapping a ConstantInt with the given bitwidth and value.
const VPBasicBlock * getMiddleBlock() const
void setTripCount(VPValue *NewTripCount)
Set the trip count assuming it is currently null; if it is not - use resetTripCount().
void resetTripCount(VPValue *NewTripCount)
Resets the trip count for the VPlan.
VPBasicBlock * getMiddleBlock()
Returns the 'middle' block of the plan, that is the block that selects whether to execute the scalar ...
void setEntry(VPBasicBlock *VPBB)
VPBasicBlock * createVPBasicBlock(const Twine &Name, VPRecipeBase *Recipe=nullptr)
Create a new VPBasicBlock with Name and containing Recipe if present.
LLVM_ABI_FOR_TEST VPIRBasicBlock * createVPIRBasicBlock(BasicBlock *IRBB)
Create a VPIRBasicBlock from IRBB containing VPIRInstructions for all instructions in IRBB,...
void removeVF(ElementCount VF)
Remove VF from the plan.
VPIRValue * getTrue()
Return a VPIRValue wrapping i1 true.
VPBasicBlock * getVectorPreheader() const
Returns the preheader of the vector loop region, if one exists, or null otherwise.
LLVM_DUMP_METHOD void dump() const
Dump the plan to stderr (for debugging).
VPSymbolicValue & getUF()
Returns the UF of the vector loop region.
bool hasScalarVFOnly() const
VPBasicBlock * getScalarPreheader() const
Return the VPBasicBlock for the preheader of the scalar loop.
void execute(VPTransformState *State)
Generate the IR code for this VPlan.
LLVM_ABI_FOR_TEST void print(raw_ostream &O) const
Print this VPlan to O.
bool hasTailFolded() const
Returns true if the vector loop region is tail-folded.
void addVF(ElementCount VF)
VPIRBasicBlock * getScalarHeader() const
Return the VPIRBasicBlock wrapping the header of the scalar loop.
void printLiveIns(raw_ostream &O) const
Print the live-ins of this VPlan to O.
VPSymbolicValue & getVF()
Returns the VF of the vector loop region.
const VPSymbolicValue & getVF() const
bool hasScalarTail() const
Returns true if the scalar tail may execute after the vector loop, i.e.
LLVM_ABI_FOR_TEST VPlan * duplicate()
Clone the current VPlan, update all VPValues of the new VPlan and cloned recipes to refer to the clon...
VPIRValue * getConstantInt(Type *Ty, uint64_t Val, bool IsSigned=false)
Return a VPIRValue wrapping a ConstantInt with the given type and value.
LLVM Value Representation.
ilist_node_with_parent()=default
Increasing range of size_t indices.
typename base_list_type::const_reverse_iterator const_reverse_iterator
typename base_list_type::reverse_iterator reverse_iterator
typename base_list_type::iterator iterator
typename base_list_type::const_iterator const_iterator
An intrusive list with ownership and callbacks specified/controlled by ilist_traits,...
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.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
LLVM_ABI AttributeSet getFnAttributes(LLVMContext &C, ID id)
Return the function attributes for an intrinsic.
std::variant< std::monostate, Loc::Single, Loc::Multi, Loc::MMI, Loc::EntryValue > Variant
Alias for the std::variant specialization base class of DbgVariable.
CastInfo helper for casting from VPRecipeBase to a mixin class that is not part of the VPRecipeBase c...
unsigned getOpcode(const VPValue *V)
Return the instruction opcode for the recipe defining V or 0 for unsupported recipes and VPValues not...
This is an optimization pass for GlobalISel generic memory operations.
void dump(const SparseBitVector< ElementSize > &LHS, raw_ostream &out)
detail::zippy< detail::zip_shortest, T, U, Args... > zip(T &&t, U &&u, Args &&...args)
zip iterator for two or more iteratable types.
auto cast_if_present(const Y &Val)
cast_if_present<X> - Functionally identical to cast, except that a null value is accepted.
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.
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
ReductionStyle getReductionStyle(bool InLoop, bool Ordered, unsigned ScaleFactor)
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
Type * toScalarizedTy(Type *Ty)
A helper for converting vectorized types to scalarized (non-vector) types.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
@ Load
The value being inserted comes from a load (InsertElement only).
@ Store
The extracted value is stored (ExtractElement only).
LLVM_ABI void getMetadataToPropagate(Instruction *Inst, SmallVectorImpl< std::pair< unsigned, MDNode * > > &Metadata)
Add metadata from Inst to Metadata, if it can be preserved after vectorization.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
auto cast_or_null(const Y &Val)
Align getLoadStoreAlignment(const Value *I)
A helper function that returns the alignment of load or store instruction.
MemoryEffectsBase< IRMemLocation > MemoryEffects
Summary of how a function affects memory in the program.
LLVM_ABI bool isSafeToSpeculativelyExecute(const Instruction *I, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr, bool UseVariableInfo=true, bool IgnoreUBImplyingAttrs=true)
Return true if the instruction does not have any effects besides calculating the result and does not ...
auto map_range(ContainerTy &&C, FuncTy F)
Return a range that applies F to the elements of C.
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
auto reverse(ContainerTy &&C)
UncountableExitStyle
Different methods of handling early exits.
@ MaskedHandleExitInScalarLoop
All memory operations other than the load(s) required to determine whether an uncountable exit occurr...
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
bool isPointerTy(const Type *T)
LLVM_ABI Type * computeScalarTypeForInstruction(unsigned Opcode, ArrayRef< VPValue * > Operands)
Compute the scalar result type for an IR Opcode given Operands.
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
auto drop_end(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the last N elements excluded.
RecurKind
These are the kinds of recurrences that we support.
@ Mul
Product of integers.
@ AddChainWithSubs
A chain of adds and subs.
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)
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr unsigned BitWidth
auto sum_of(R &&Range, E Init=E{0})
Returns the sum of all values in Range with Init initial value.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
constexpr auto seq(T Begin, T End)
Iterate over an integral type from Begin up to - but not including - End.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
std::variant< RdxOrdered, RdxInLoop, RdxUnordered > ReductionStyle
@ Increment
Incrementally increasing token ID.
std::unique_ptr< VPlan > VPlanPtr
Implement std::hash so that hash_code can be used in STL containers.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
This struct is a compact representation of a valid (non-zero power of two) alignment.
static Bitfield::Type get(StorageType Packed)
Unpacks the field from the Packed value.
static void set(StorageType &Packed, typename Bitfield::Type Value)
Sets the typed value in the provided Packed value.
This struct provides a method for customizing the way a cast is performed.
Provides a cast trait that strips const from types to make it easier to implement a const-version of ...
This cast trait just provides the default implementation of doCastIfPossible to make CastInfo special...
Provides a cast trait that uses a defined pointer to pointer cast as a base for reference-to-referenc...
This reduction is in-loop.
Possible variants of a reduction.
This reduction is unordered with the partial result scaled down by some factor.
A MapVector that performs no allocations if smaller than a certain size.
An overlay on VPConstant for VPValues that wrap a ConstantInt.
Struct to hold various analysis needed for cost computations.
void execute(VPTransformState &State) override
Generate the phi nodes.
VPFirstOrderRecurrencePHIRecipe * clone() override
Clone the current recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this first-order recurrence phi recipe.
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
void printRecipe(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print the recipe.
VPFirstOrderRecurrencePHIRecipe(PHINode *Phi, VPValue &Start, VPValue &BackedgeValue)
DisjointFlagsTy(bool IsDisjoint)
NonNegFlagsTy(bool IsNonNeg)
TruncFlagsTy(bool HasNUW, bool HasNSW)
WrapFlagsTy(bool HasNUW, bool HasNSW)
An overlay for VPIRInstructions wrapping PHI nodes enabling convenient use cast/dyn_cast/isa and exec...
static bool classof(const VPRecipeBase *U)
static bool classof(const VPUser *U)
const VPRecipeBase * getAsRecipe() const override
Return a VPRecipeBase* to the current object.
A VPValue representing a live-in from the input IR or a constant.
static bool classof(const VPUser *U)
VPPhi * clone() override
Clone the current recipe.
const VPRecipeBase * getAsRecipe() const override
Return a VPRecipeBase* to the current object.
static bool classof(const VPSingleDefRecipe *SDR)
static bool classof(const VPValue *V)
VPPhi(ArrayRef< VPValue * > Operands, const VPIRFlags &Flags, DebugLoc DL, const Twine &Name="", Type *ResultTy=nullptr)
A pure-virtual common base class for recipes defining a single VPValue and using IR flags.
VPRecipeWithIRFlags(VPRecipeTy SC, ArrayRef< VPValue * > Operands, const VPIRFlags &Flags, DebugLoc DL=DebugLoc::getUnknown())
static bool classof(const VPSingleDefRecipe *R)
static bool classof(const VPRecipeBase *R)
InstructionCost getCostForRecipeWithOpcode(unsigned Opcode, ElementCount VF, VPCostContext &Ctx) const
Compute the cost for this recipe for VF, using Opcode and Ctx.
static bool classof(const VPValue *V)
VPRecipeWithIRFlags(VPRecipeTy SC, ArrayRef< VPValue * > Operands, Type *ResultTy, const VPIRFlags &Flags, DebugLoc DL=DebugLoc::getUnknown())
void execute(VPTransformState &State) override=0
The method which generates the output IR instructions that correspond to this VPRecipe,...
VPRecipeWithIRFlags * clone() override=0
Clone the current recipe.
static bool classof(const VPUser *U)
A recipe for widening load operations with vector-predication intrinsics, using the address to load f...
VPWidenLoadEVLRecipe * clone() override
Clone the current recipe.
VPValue * getEVL() const
Return the EVL operand.
VPWidenLoadEVLRecipe(VPWidenLoadRecipe &L, VPValue *Addr, VPValue &EVL, VPValue *Mask)
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
A recipe for widening load operations, using the address to load from and an optional mask.
VPWidenLoadRecipe(LoadInst &Load, VPValue *Addr, VPValue *Mask, bool Consecutive, const VPIRMetadata &Metadata, DebugLoc DL)
bool usesFirstLaneOnly(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.
VP_CLASSOF_IMPL(VPRecipeBase::VPWidenLoadSC)
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenLoadRecipe.
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.
VPWidenStoreEVLRecipe * clone() override
Clone the current recipe.
VPWidenStoreEVLRecipe(VPWidenStoreRecipe &S, VPValue *Addr, VPValue *StoredVal, VPValue &EVL, VPValue *Mask)
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
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...
VPWidenStoreRecipe(StoreInst &Store, VPValue *Addr, VPValue *StoredVal, VPValue *Mask, bool Consecutive, const VPIRMetadata &Metadata, DebugLoc DL)
VP_CLASSOF_IMPL(VPRecipeBase::VPWidenStoreSC)
VPValue * getStoredValue() const
Return the value stored by this recipe.
VPWidenStoreRecipe * clone() override
Clone the current recipe.
InstructionCost computeCost(ElementCount VF, VPCostContext &Ctx) const override
Return the cost of this VPWidenStoreRecipe.
bool usesFirstLaneOnly(const VPValue *Op) const override
Returns true if the recipe only uses the first lane of operand Op.
static VPMixin * castFailed()
static bool isPossible(VPRecipeBase *R)
Used by isa.
static VPMixin * doCast(VPRecipeBase *R)
Used by cast.