54#define DEBUG_TYPE "vplan"
56#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
60 (Instr && Instr->getParent()) ? Instr->getParent()->getPlan() :
nullptr);
80 : SubclassID(SC), UnderlyingVal(UV), Def(Def) {
82 Def->addDefinedValue(
this);
86 assert(Users.empty() &&
"trying to delete a VPValue with remaining users");
88 Def->removeDefinedValue(
this);
91#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
102 (Instr && Instr->getParent()) ? Instr->getParent()->getPlan() :
nullptr);
108 const VPRecipeBase *Instr = dyn_cast_or_null<VPRecipeBase>(
this);
110 (Instr && Instr->getParent()) ? Instr->getParent()->getPlan() :
nullptr);
117 return cast_or_null<VPRecipeBase>(
Def);
121 return cast_or_null<VPRecipeBase>(
Def);
129 while ((Next = Next->getParent()))
135 for (
unsigned i = 0; i < WorkList.
size(); i++) {
136 T *Current = WorkList[i];
137 if (Current->getNumPredecessors() == 0)
139 auto &Predecessors = Current->getPredecessors();
140 WorkList.
insert(Predecessors.begin(), Predecessors.end());
155 return cast<VPBasicBlock>(
Block);
162 return cast<VPBasicBlock>(
Block);
168 "Can only set plan on its entry or preheader block.");
177 return cast<VPBasicBlock>(
Block);
184 return cast<VPBasicBlock>(
Block);
188 if (!Successors.empty() || !Parent)
191 "Block w/o successors not the exiting block of its parent.");
196 if (!Predecessors.empty() || !Parent)
199 "Block w/o predecessors not the entry of its parent.");
210 while (It !=
end() && It->isPhi())
217 return Def->getLiveInIRValue();
226 if (!VecPart->getType()->isVectorTy()) {
227 assert(
Instance.Lane.isFirstLane() &&
"cannot get lane > 0 for scalar");
242 auto GetBroadcastInstrs = [
this, Def](
Value *V) {
243 bool SafeToHoist = Def->isDefinedOutsideVectorRegions();
251 if (LoopVectorPreHeader)
263 assert(Def->isLiveIn() &&
"expected a live-in");
266 Value *IRV = Def->getLiveInIRValue();
267 Value *
B = GetBroadcastInstrs(IRV);
272 Value *ScalarValue =
get(Def, {Part, 0});
276 set(Def, ScalarValue, Part);
287 assert((isa<VPWidenIntOrFpInductionRecipe>(Def->getDefiningRecipe()) ||
288 isa<VPScalarIVStepsRecipe>(Def->getDefiningRecipe()) ||
289 isa<VPExpandSCEVRecipe>(Def->getDefiningRecipe())) &&
290 "unexpected recipe found to be invariant");
295 auto *LastInst = cast<Instruction>(
get(Def, {Part, LastLane}));
301 isa<PHINode>(LastInst)
312 Value *VectorValue =
nullptr;
314 VectorValue = GetBroadcastInstrs(ScalarValue);
315 set(Def, VectorValue, Part);
320 set(Def, Undef, Part);
323 VectorValue =
get(Def, Part);
330 VPRegionBlock *LoopRegion = R->getParent()->getEnclosingLoopRegion();
338 if (
LVer && (isa<LoadInst>(Orig) || isa<StoreInst>(Orig)))
356 for (
Value *V : To) {
378 << DIL->getFilename() <<
" Line: " << DIL->getLine());
402 for (
VPBlockBase *PredVPBlock : getHierarchicalPredecessors()) {
407 assert(PredBB &&
"Predecessor basic-block not found building successor.");
411 auto *TermBr = dyn_cast<BranchInst>(PredBBTerminator);
412 if (isa<UnreachableInst>(PredBBTerminator)) {
413 assert(PredVPSuccessors.size() == 1 &&
414 "Predecessor ending w/o branch must have single successor.");
415 DebugLoc DL = PredBBTerminator->getDebugLoc();
419 }
else if (TermBr && !TermBr->isConditional()) {
420 TermBr->setSuccessor(0, NewBB);
424 unsigned idx = PredVPSuccessors.front() ==
this ? 0 : 1;
425 assert(!TermBr->getSuccessor(idx) &&
426 "Trying to reset an existing successor block.");
427 TermBr->setSuccessor(idx, NewBB);
440 auto *R = dyn_cast<VPRegionBlock>(BB);
441 return R && !R->isReplicator();
445 if (getPlan()->getVectorLoopRegion()->getSingleSuccessor() ==
this) {
451 VPBlockBase *PredVPB = getSingleHierarchicalPredecessor();
454 "predecessor must have the current block as only successor");
458 cast<BranchInst>(ExitingBB->
getTerminator())->setSuccessor(0, NewBB);
459 }
else if (PrevVPBB &&
460 !((SingleHPred = getSingleHierarchicalPredecessor()) &&
463 (SingleHPred->
getParent() == getEnclosingLoopRegion() &&
464 !IsLoopRegion(SingleHPred))) &&
465 !(Replica && getPredecessors().empty())) {
475 NewBB = createEmptyBasicBlock(State->
CFG);
489 <<
" in BB:" << NewBB->
getName() <<
'\n');
502 for (
auto *Def : R.definedValues())
503 Def->replaceAllUsesWith(NewValue);
505 for (
unsigned I = 0,
E = R.getNumOperands();
I !=
E;
I++)
506 R.setOperand(
I, NewValue);
511 assert((SplitAt == end() || SplitAt->getParent() ==
this) &&
512 "can only split at a position in the same block");
537 if (
P &&
P->isReplicator()) {
539 assert(!cast<VPRegionBlock>(
P)->isReplicator() &&
540 "unexpected nested replicate regions");
549 "block with multiple successors doesn't have a recipe as terminator");
554 auto *VPI = dyn_cast<VPInstruction>(R);
556 isa<VPBranchOnMaskRecipe>(R) ||
563 "conditional branch recipe");
570 "block with 0 or 1 successors terminated by conditional branch recipe");
587 return getParent()->getExitingBasicBlock() ==
this;
590#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
592 if (getSuccessors().empty()) {
593 O << Indent <<
"No successors\n";
595 O << Indent <<
"Successor(s): ";
597 for (
auto *Succ : getSuccessors())
598 O << LS << Succ->getName();
605 O << Indent <<
getName() <<
":\n";
607 auto RecipeIndent = Indent +
" ";
613 printSuccessors(O, Indent);
621 Block->dropAllReferences(NewValue);
628 if (!isReplicator()) {
645 Block->execute(State);
652 assert(!State->
Instance &&
"Replicating a Region with non-null instance.");
657 for (
unsigned Part = 0,
UF = State->
UF; Part <
UF; ++Part) {
666 Block->execute(State);
675#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
678 O << Indent << (isReplicator() ?
"<xVFxUF> " :
"<x1> ") <<
getName() <<
": {";
679 auto NewIndent = Indent +
" ";
684 O << Indent <<
"}\n";
686 printSuccessors(O, Indent);
691 for (
auto &KV : LiveOuts)
698 Block->dropAllReferences(&DummyValue);
702 Preheader->dropAllReferences(&DummyValue);
705 for (
VPValue *VPV : VPLiveInsToFree)
707 if (BackedgeTakenCount)
708 delete BackedgeTakenCount;
714 auto Plan = std::make_unique<VPlan>(Preheader, VecPreheader);
726 Value *CanonicalIVStartValue,
729 if (BackedgeTakenCount && BackedgeTakenCount->getNumUsers()) {
733 "trip.count.minus.1");
737 for (
unsigned Part = 0,
UF = State.
UF; Part <
UF; ++Part)
738 State.
set(BackedgeTakenCount, VTCMO, Part);
741 for (
unsigned Part = 0,
UF = State.
UF; Part <
UF; ++Part)
742 State.
set(&VectorTripCount, VectorTripCountV, Part);
747 if (CanonicalIVStartValue) {
748 VPValue *VPV = getVPValueOrAddLiveIn(CanonicalIVStartValue);
749 auto *
IV = getCanonicalIV();
752 return isa<VPScalarIVStepsRecipe>(U) ||
753 isa<VPDerivedIVRecipe>(U) ||
754 cast<VPInstruction>(U)->getOpcode() ==
755 VPInstruction::CanonicalIVIncrement;
757 "the canonical IV should only be used by its increment or "
758 "ScalarIVSteps when resetting the start value");
759 IV->setOperand(0, VPV);
768 for (
auto &Entry : Value2VPValue)
779 Block->execute(State);
786 VPBasicBlock *Header = getVectorLoopRegion()->getEntryBasicBlock();
789 if (isa<VPWidenPHIRecipe>(&R))
792 if (isa<VPWidenPointerInductionRecipe>(&R) ||
793 isa<VPWidenIntOrFpInductionRecipe>(&R)) {
795 if (isa<VPWidenIntOrFpInductionRecipe>(&R)) {
796 Phi = cast<PHINode>(State->
get(R.getVPSingleValue(), 0));
798 auto *WidenPhi = cast<VPWidenPointerInductionRecipe>(&R);
801 if (WidenPhi->onlyScalarsGenerated(State->
VF))
804 auto *
GEP = cast<GetElementPtrInst>(State->
get(WidenPhi, 0));
805 Phi = cast<PHINode>(
GEP->getPointerOperand());
808 Phi->setIncomingBlock(1, VectorLatchBB);
812 Instruction *Inc = cast<Instruction>(Phi->getIncomingValue(1));
817 auto *PhiR = cast<VPHeaderPHIRecipe>(&R);
822 bool SinglePartNeeded = isa<VPCanonicalIVPHIRecipe>(PhiR) ||
823 isa<VPFirstOrderRecurrencePHIRecipe>(PhiR) ||
824 (isa<VPReductionPHIRecipe>(PhiR) &&
825 cast<VPReductionPHIRecipe>(PhiR)->isOrdered());
826 unsigned LastPartForNewPhi = SinglePartNeeded ? 1 : State->
UF;
828 for (
unsigned Part = 0; Part < LastPartForNewPhi; ++Part) {
829 Value *Phi = State->
get(PhiR, Part);
830 Value *Val = State->
get(PhiR->getBackedgeValue(),
831 SinglePartNeeded ? State->
UF - 1 : Part);
832 cast<PHINode>(Phi)->addIncoming(Val, VectorLatchBB);
840 updateDominatorTree(State->
DT, VectorHeaderBB, VectorLatchBB,
845#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
850 O <<
"VPlan '" <<
getName() <<
"' {";
852 if (VectorTripCount.getNumUsers() > 0) {
855 O <<
" = vector-trip-count";
858 if (BackedgeTakenCount && BackedgeTakenCount->getNumUsers()) {
860 BackedgeTakenCount->printAsOperand(O,
SlotTracker);
861 O <<
" = backedge-taken count";
865 if (TripCount->isLiveIn())
868 O <<
" = original trip-count";
871 if (!getPreheader()->empty()) {
881 if (!LiveOuts.empty())
883 for (
const auto &KV : LiveOuts) {
893 RSO <<
Name <<
" for ";
895 RSO <<
"VF={" << VFs[0];
904 RSO <<
"UF={" << UFs[0];
924 assert(LiveOuts.count(PN) == 0 &&
"an exit value for PN already exists");
925 LiveOuts.insert({PN,
new VPLiveOut(PN, V)});
935 for (
auto *BB = LoopHeaderBB; BB != LoopLatchBB; BB = PostDomSucc) {
938 assert(Succs.size() <= 2 &&
939 "Basic block in vector loop has more than 2 successors.");
940 PostDomSucc = Succs[0];
941 if (Succs.size() == 1) {
943 "PostDom successor has more than one predecessor.");
949 PostDomSucc = Succs[1];
950 InterimSucc = Succs[0];
953 "One successor of a basic block does not lead to the other.");
955 "Interim successor has more than one predecessor.");
957 "PostDom successor has more than two predecessors.");
966#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
969 return (isa<VPRegionBlock>(
Block) ?
"cluster_N" :
"N") +
974 const std::string &
Name =
Block->getName();
983 OS <<
"digraph VPlan {\n";
984 OS <<
"graph [labelloc=t, fontsize=30; label=\"Vectorization Plan";
987 if (
Plan.BackedgeTakenCount) {
990 OS <<
" := BackedgeTakenCount";
993 OS <<
"node [shape=rect, fontname=Courier, fontsize=30]\n";
994 OS <<
"edge [fontname=Courier, fontsize=30]\n";
995 OS <<
"compound=true\n";
1015 bool Hidden,
const Twine &Label) {
1020 OS << Indent << getUID(
Tail) <<
" -> " << getUID(Head);
1021 OS <<
" [ label=\"" << Label <<
'\"';
1023 OS <<
" ltail=" << getUID(
From);
1025 OS <<
" lhead=" << getUID(To);
1027 OS <<
"; splines=none";
1032 auto &Successors =
Block->getSuccessors();
1033 if (Successors.size() == 1)
1034 drawEdge(
Block, Successors.front(),
false,
"");
1035 else if (Successors.size() == 2) {
1036 drawEdge(
Block, Successors.front(),
false,
"T");
1037 drawEdge(
Block, Successors.back(),
false,
"F");
1039 unsigned SuccessorNumber = 0;
1066 EmitLine(Line,
" +\n");
1067 EmitLine(
Lines.back(),
"\n");
1070 OS << Indent <<
"]\n";
1076 OS << Indent <<
"subgraph " << getUID(
Region) <<
" {\n";
1078 OS << Indent <<
"fontname=Courier\n"
1079 << Indent <<
"label=\""
1087 OS << Indent <<
"}\n";
1092 if (
auto *Inst = dyn_cast<Instruction>(V)) {
1093 if (!Inst->getType()->isVoidTy()) {
1094 Inst->printAsOperand(O,
false);
1097 O << Inst->getOpcodeName() <<
" ";
1098 unsigned E = Inst->getNumOperands();
1100 Inst->getOperand(0)->printAsOperand(O,
false);
1101 for (
unsigned I = 1;
I <
E; ++
I)
1102 Inst->getOperand(
I)->printAsOperand(O <<
", ",
false);
1105 V->printAsOperand(O,
false);
1113 for (
unsigned J = 0; J < getNumUsers();) {
1115 unsigned NumUsers = getNumUsers();
1122 if (NumUsers == getNumUsers())
1130 for (
unsigned J = 0; J < getNumUsers();) {
1132 unsigned NumUsers = getNumUsers();
1142 if (NumUsers == getNumUsers())
1147#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1149 if (
const Value *UV = getUnderlyingValue()) {
1151 UV->printAsOperand(
OS,
false);
1156 unsigned Slot = Tracker.
getSlot(
this);
1157 if (Slot ==
unsigned(-1))
1160 OS <<
"vp<%" << Tracker.
getSlot(
this) <<
">";
1176 visitBlock(
Base, Old2New, IAI);
1180void VPInterleavedAccessInfo::visitBlock(
VPBlockBase *
Block, Old2NewTy &Old2New,
1184 if (isa<VPHeaderPHIRecipe>(&VPI))
1186 assert(isa<VPInstruction>(&VPI) &&
"Can only handle VPInstructions");
1187 auto *VPInst = cast<VPInstruction>(&VPI);
1189 auto *Inst = dyn_cast_or_null<Instruction>(VPInst->getUnderlyingValue());
1196 auto NewIGIter = Old2New.find(IG);
1197 if (NewIGIter == Old2New.end())
1199 IG->getFactor(), IG->isReverse(), IG->getAlign());
1201 if (Inst == IG->getInsertPos())
1202 Old2New[IG]->setInsertPos(VPInst);
1204 InterleaveGroupMap[VPInst] = Old2New[IG];
1205 InterleaveGroupMap[VPInst]->insertMember(
1206 VPInst, IG->getIndex(Inst),
1207 Align(IG->isReverse() ? (-1) *
int(IG->getFactor())
1208 : IG->getFactor()));
1211 visitRegion(
Region, Old2New, IAI);
1222void VPSlotTracker::assignSlot(
const VPValue *V) {
1223 assert(!Slots.contains(V) &&
"VPValue already has a slot!");
1224 Slots[V] = NextSlot++;
1227void VPSlotTracker::assignSlots(
const VPlan &
Plan) {
1228 assignSlot(&
Plan.VectorTripCount);
1229 if (
Plan.BackedgeTakenCount)
1230 assignSlot(
Plan.BackedgeTakenCount);
1236 VPBlockUtils::blocksOnly<const VPBasicBlock>(RPOT))
1240void VPSlotTracker::assignSlots(
const VPBasicBlock *VPBB) {
1242 for (
VPValue *Def : Recipe.definedValues())
1247 return all_of(Def->users(),
1248 [Def](
VPUser *U) { return U->onlyFirstLaneUsed(Def); });
1256 if (
auto *
E = dyn_cast<SCEVConstant>(Expr))
1258 else if (
auto *
E = dyn_cast<SCEVUnknown>(Expr))
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static const Function * getParent(const Value *V)
BlockVerifier::State From
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
dxil pretty DXIL Metadata Pretty Printer
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
static void dumpEdges(CFGMST< Edge, BBInfo > &MST, GCOVFunction &GF)
Generic dominator tree construction - this file provides routines to construct immediate dominator in...
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
iv Induction Variable Users
This file builds on the ADT/GraphTraits.h file to build a generic graph post order iterator.
static StringRef getName(Value *V)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallVector class.
This file implements dominator tree analysis for a single level of a VPlan's H-CFG.
static T * getPlanEntry(T *Start)
static bool hasConditionalTerminator(const VPBasicBlock *VPBB)
This file contains the declarations of the Vectorization Plan base classes:
static bool IsCondBranch(unsigned BrOpc)
static const uint32_t IV[8]
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
LLVM Basic Block Representation.
void print(raw_ostream &OS, AssemblyAnnotationWriter *AAW=nullptr, bool ShouldPreserveUseListOrder=false, bool IsForDebug=false) const
Print the basic block to an output stream with an optional AssemblyAnnotationWriter.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
bool hasNPredecessors(unsigned N) const
Return true if this block has exactly N predecessors.
const BasicBlock * getSinglePredecessor() const
Return the predecessor of this block if it has a single predecessor block.
const BasicBlock * getSingleSuccessor() const
Return the successor of this block if it has a single successor.
const Function * getParent() const
Return the enclosing method, or null if none.
InstListType::iterator iterator
Instruction iterators...
LLVMContext & getContext() const
Get the context in which this basic block lives.
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
static BranchInst * Create(BasicBlock *IfTrue, Instruction *InsertBefore=nullptr)
static Constant * get(Type *Ty, uint64_t V, bool IsSigned=false)
If Ty is a vector type, return a Constant with a splat of the given value.
std::optional< const DILocation * > cloneByMultiplyingDuplicationFactor(unsigned DF) const
Returns a new DILocation with duplication factor DF * current duplication factor encoded in the discr...
This class represents an Operation in the Expression.
Core dominator tree base class.
bool verify(VerificationLevel VL=VerificationLevel::Full) const
verify - checks if the tree is correct.
void changeImmediateDominator(DomTreeNodeBase< NodeT > *N, DomTreeNodeBase< NodeT > *NewIDom)
changeImmediateDominator - This method is used to update the dominator tree information when a node's...
DomTreeNodeBase< NodeT > * addNewBlock(NodeT *BB, NodeT *DomBB)
Add a new node to the dominator tree information.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
constexpr bool isScalar() const
Exactly one element.
bool shouldEmitDebugInfoForProfiling() const
Returns true if we should emit debug info for profiling.
Common base class shared among various IRBuilders.
Value * CreateInsertElement(Type *VecTy, Value *NewElt, Value *Idx, const Twine &Name="")
Value * CreateExtractElement(Value *Vec, Value *Idx, const Twine &Name="")
UnreachableInst * CreateUnreachable()
Value * CreateVectorSplat(unsigned NumElts, Value *V, const Twine &Name="")
Return a vector value that contains.
IntegerType * getInt32Ty()
Fetch the type representing a 32-bit integer.
BasicBlock * GetInsertBlock() const
void SetCurrentDebugLocation(DebugLoc L)
Set location information used by debugging information.
InsertPoint saveIP() const
Returns the current insert point.
ConstantInt * getInt32(uint32_t C)
Get a constant 32-bit value.
Value * CreateSub(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
void restoreIP(InsertPoint IP)
Sets the current insert point to a previously-saved location.
void SetInsertPoint(BasicBlock *TheBB)
This specifies that created instructions should be appended to the end of the specified block.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
void moveBefore(Instruction *MovePos)
Unlink this instruction from its current basic block and insert it into the basic block that MovePos ...
The group of interleaved loads/stores sharing the same stride and close to each other.
Drive the analysis of interleaved memory accesses in the loop.
InterleaveGroup< Instruction > * getInterleaveGroup(const Instruction *Instr) const
Get the interleave group that Instr belongs to.
void addBasicBlockToLoop(BlockT *NewBB, LoopInfoBase< BlockT, LoopT > &LI)
This method is used by other analyses to update loop information.
void addChildLoop(LoopT *NewChild)
Add the specified loop to be a child of this loop.
void addTopLevelLoop(LoopT *New)
This adds the specified loop to the collection of top-level loops.
LoopT * AllocateLoop(ArgsTy &&...Args)
LoopT * getLoopFor(const BlockT *BB) const
Return the inner most loop that BB lives in.
void annotateInstWithNoAlias(Instruction *VersionedInst, const Instruction *OrigInst)
Add the noalias annotations to VersionedInst.
Represents a single loop in the control flow graph.
void eraseFromParent()
This method unlinks 'this' from the containing function and deletes it.
static PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
BlockT * getEntry() const
Get the entry BasicBlock of the Region.
This class represents an analyzed expression in the program.
The main scalar evolution driver.
size_type size() const
Determine the number of elements in the SetVector.
bool insert(const value_type &X)
Insert a new element into the SetVector.
This class provides computation of slot numbers for LLVM Assembly writing.
A SetVector that performs no allocations if smaller than a certain size.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
StringRef rtrim(char Char) const
Return string with consecutive Char characters starting from the right removed.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
This function has undefined behavior.
void setOperand(unsigned i, Value *Val)
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
VPBasicBlock serves as the leaf of the Hierarchical Control-Flow Graph.
void appendRecipe(VPRecipeBase *Recipe)
Augment the existing recipes of a VPBasicBlock with an additional Recipe as the last recipe.
RecipeListTy::iterator iterator
Instruction iterators...
void execute(VPTransformState *State) override
The method which generates the output IR instructions that correspond to this VPBasicBlock,...
iterator begin()
Recipe iterator methods.
iterator getFirstNonPhi()
Return the position of the first non-phi node recipe in the block.
VPRegionBlock * getEnclosingLoopRegion()
void dropAllReferences(VPValue *NewValue) override
Replace all operands of VPUsers in the block with NewValue and also replaces all uses of VPValues def...
VPBasicBlock * splitAt(iterator SplitAt)
Split current block at SplitAt by inserting a new block between the current block and its successors ...
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print this VPBsicBlock to O, prefixing all lines with Indent.
bool isExiting() const
Returns true if the block is exiting it's parent region.
VPRecipeBase * getTerminator()
If the block has multiple successors, return the branch recipe terminating the block.
const VPRecipeBase & back() const
VPBlockBase is the building block of the Hierarchical Control-Flow Graph.
VPRegionBlock * getParent()
const VPBasicBlock * getExitingBasicBlock() const
size_t getNumSuccessors() const
void printSuccessors(raw_ostream &O, const Twine &Indent) const
Print the successors of this block to O, prefixing all lines with Indent.
VPBlockBase * getEnclosingBlockWithPredecessors()
static void deleteCFG(VPBlockBase *Entry)
Delete all blocks reachable from a given VPBlockBase, inclusive.
void setPlan(VPlan *ParentPlan)
Sets the pointer of the plan containing the block.
VPBlockBase * getSingleHierarchicalSuccessor()
VPBlockBase * getSinglePredecessor() const
const VPBlocksTy & getHierarchicalSuccessors()
VPBlockBase * getEnclosingBlockWithSuccessors()
An Enclosing Block of a block B is any block containing B, including B itself.
const VPBasicBlock * getEntryBasicBlock() const
VPBlockBase * getSingleSuccessor() const
Helper for GraphTraits specialization that traverses through VPRegionBlocks.
static void insertBlockAfter(VPBlockBase *NewBlock, VPBlockBase *BlockPtr)
Insert disconnected VPBlockBase NewBlock after BlockPtr.
static void disconnectBlocks(VPBlockBase *From, VPBlockBase *To)
Disconnect VPBlockBases From and To bi-directionally.
static void connectBlocks(VPBlockBase *From, VPBlockBase *To)
Connect VPBlockBases From and To bi-directionally.
This class augments a recipe with a set of VPValues defined by the recipe.
void dump() const
Dump the VPDef to stderr (for debugging).
virtual void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const =0
Each concrete VPDef prints itself.
Recipe to expand a SCEV expression.
This is a concrete Recipe that models a single VPlan-level instruction.
VPInterleavedAccessInfo(VPlan &Plan, InterleavedAccessInfo &IAI)
In what follows, the term "input IR" refers to code that is fed into the vectorizer whereas the term ...
Value * getAsRuntimeExpr(IRBuilderBase &Builder, const ElementCount &VF) const
Returns an expression describing the lane index that can be used at runtime.
@ ScalableLast
For ScalableLast, Lane is the offset from the start of the last N-element subvector in a scalable vec...
@ First
For First, Lane is the index into the first N elements of a fixed-vector <N x <ElTy>> or a scalable v...
A value that is used outside the VPlan.
VPRecipeBase is a base class modeling a sequence of one or more output IR instructions.
VPRegionBlock represents a collection of VPBasicBlocks and VPRegionBlocks which form a Single-Entry-S...
const VPBlockBase * getEntry() const
void dropAllReferences(VPValue *NewValue) override
Replace all operands of VPUsers in the block with NewValue and also replaces all uses of VPValues def...
void print(raw_ostream &O, const Twine &Indent, VPSlotTracker &SlotTracker) const override
Print this VPRegionBlock to O (recursively), prefixing all lines with Indent.
void execute(VPTransformState *State) override
The method which generates the output IR instructions that correspond to this VPRegionBlock,...
const VPBlockBase * getExiting() const
VPBasicBlock * getPreheaderVPBB()
Returns the pre-header VPBasicBlock of the loop region.
This class can be used to assign consecutive numbers to all VPValues in a VPlan and allows querying t...
unsigned getSlot(const VPValue *V) const
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.
VPRecipeBase * getDefiningRecipe()
Returns the recipe defining this VPValue or nullptr if it is not defined by a recipe,...
void printAsOperand(raw_ostream &OS, VPSlotTracker &Tracker) const
void dump() const
Dump the value to stderr (for debugging).
VPValue(const unsigned char SC, Value *UV=nullptr, VPDef *Def=nullptr)
void print(raw_ostream &OS, VPSlotTracker &Tracker) const
void replaceAllUsesWith(VPValue *New)
void replaceUsesWithIf(VPValue *New, llvm::function_ref< bool(VPUser &U, unsigned Idx)> ShouldReplace)
Go through the uses list for this VPValue and make each use point to New if the callback ShouldReplac...
VPDef * Def
Pointer to the VPDef that defines this VPValue.
VPlanPrinter prints a given VPlan to a given output stream.
LLVM_DUMP_METHOD void dump()
VPlan models a candidate for vectorization, encoding various decisions take to produce efficient outp...
void printDOT(raw_ostream &O) const
Print this VPlan in DOT format to O.
std::string getName() const
Return a string with the name of the plan and the applicable VFs and UFs.
void prepareToExecute(Value *TripCount, Value *VectorTripCount, Value *CanonicalIVStartValue, VPTransformState &State)
Prepare the plan for execution, setting up the required live-in values.
VPBasicBlock * getEntry()
void addLiveOut(PHINode *PN, VPValue *V)
VPBasicBlock * getPreheader()
VPValue * getVPValueOrAddLiveIn(Value *V)
Gets the VPValue for V or adds a new live-in (if none exists yet) for V.
VPRegionBlock * getVectorLoopRegion()
Returns the VPRegionBlock of the vector loop.
static VPlanPtr createInitialVPlan(const SCEV *TripCount, ScalarEvolution &PSE)
Create initial VPlan skeleton, having an "entry" VPBasicBlock (wrapping original scalar pre-header) w...
void addSCEVExpansion(const SCEV *S, VPValue *V)
LLVM_DUMP_METHOD void dump() const
Dump the plan to stderr (for debugging).
void execute(VPTransformState *State)
Generate the IR code for this VPlan.
void print(raw_ostream &O) const
Print this VPlan to O.
VPValue * getSCEVExpansion(const SCEV *S) const
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
StringRef getName() const
Return a constant reference to the value's name.
static VectorType * get(Type *ElementType, ElementCount EC)
This static method is the primary way to construct an VectorType.
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
An efficient, type-erasing, non-owning reference to a callable.
This class implements an extremely fast bulk output stream that can only output to a stream.
A raw_ostream that writes to an std::string.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ Tail
Attemps to make calls as fast as possible while guaranteeing that tail call optimization can always b...
std::string EscapeString(const std::string &Label)
VPValue * getOrCreateVPValueForSCEVExpr(VPlan &Plan, const SCEV *Expr, ScalarEvolution &SE)
Get or create a VPValue that corresponds to the expansion of Expr.
bool isUniformAfterVectorization(VPValue *VPV)
Returns true if VPV is uniform after vectorization.
bool onlyFirstLaneUsed(VPValue *Def)
Returns true if only the first lane of Def is used.
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
Interval::succ_iterator succ_end(Interval *I)
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
auto successors(const MachineBasicBlock *BB)
Value * getRuntimeVF(IRBuilderBase &B, Type *Ty, ElementCount VF)
Return the runtime value for VF.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
Interval::succ_iterator succ_begin(Interval *I)
succ_begin/succ_end - define methods so that Intervals may be used just like BasicBlocks can with the...
void interleaveComma(const Container &c, StreamT &os, UnaryFunctor each_fn)
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
iterator_range< df_iterator< VPBlockShallowTraversalWrapper< VPBlockBase * > > > vp_depth_first_shallow(VPBlockBase *G)
Returns an iterator range to traverse the graph starting at G in depth-first order.
Instruction * propagateMetadata(Instruction *I, ArrayRef< Value * > VL)
Specifically, let Kinds = [MD_tbaa, MD_alias_scope, MD_noalias, MD_fpmath, MD_nontemporal,...
Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST=nullptr)
cl::opt< bool > EnableFSDiscriminator
cl::opt< bool > EnableVPlanNativePath("enable-vplan-native-path", cl::Hidden, cl::desc("Enable VPlan-native vectorization path with " "support for outer loop vectorization."))
std::unique_ptr< VPlan > VPlanPtr
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
SmallVector< ValueTypeFromRangeType< R >, Size > to_vector(R &&Range)
Given a range of type R, iterate the entire range and return a SmallVector with elements of the vecto...
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
BasicBlock * SplitBlock(BasicBlock *Old, BasicBlock::iterator SplitPt, DominatorTree *DT, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, const Twine &BBName="", bool Before=false)
Split the specified block at the specified instruction.
This struct is a compact representation of a valid (non-zero power of two) alignment.
VPIteration represents a single point in the iteration space of the output (vectorized and/or unrolle...
void print(raw_ostream &O) const