54#define DEBUG_TYPE "basicblock-utils"
58 cl::desc(
"Set the maximum path length when checking whether a basic block "
59 "is followed by a block that either has a terminating "
60 "deoptimizing call or is terminated with an unreachable"));
68 bool KeepOneInputPHIs) {
73 Succ->removePredecessor(BB, KeepOneInputPHIs);
74 if (Updates && UniqueSuccessors.
insert(Succ).second)
79 while (!BB->
empty()) {
92 "The successor list of BB isn't empty before "
93 "applying corresponding DTU updates.");
107 bool KeepOneInputPHIs) {
109 for (
auto *BB : BBs) {
110 auto NonFirstPhiIt = BB->getFirstNonPHIIt();
111 if (NonFirstPhiIt != BB->end()) {
120 UniqueEHRetBlocksToDelete.
clear();
130 UniqueEHRetBlocksToDelete.
insert(ReturnInstrBB);
134 for (
BasicBlock *EHRetBB : UniqueEHRetBlocksToDelete)
139 UniqueEHRetBlocksToDelete.
clear();
147 bool KeepOneInputPHIs) {
152 bool KeepOneInputPHIs) {
157 for (
auto *BB :
Dead)
159 assert(
Dead.count(Pred) &&
"All predecessors must be dead!");
172 BB->eraseFromParent();
176 bool KeepOneInputPHIs) {
184 std::vector<BasicBlock*> DeadBlocks;
186 if (!Reachable.count(&BB))
187 DeadBlocks.push_back(&BB);
192 return !DeadBlocks.empty();
201 if (PN->getIncomingValue(0) != PN)
202 PN->replaceAllUsesWith(PN->getIncomingValue(0));
209 PN->eraseFromParent();
222 if (!KnownNonDeadPHIs)
223 KnownNonDeadPHIs = &LocalKnownNonDeadPHIs;
226 for (
const auto &
PHI : PHIs) {
230 if (PHIChanged && KnownNonDeadPHIs)
231 KnownNonDeadPHIs->
clear();
240 bool PredecessorWithTwoSuccessors,
247 if (!PredBB)
return false;
250 if (PredBB == BB)
return false;
265 unsigned FallThruPath;
266 if (PredecessorWithTwoSuccessors) {
273 FallThruPath = PredBB_BI->
getSuccessor(0) == BB ? 0 : 1;
297 IncomingValues.
push_back(PN.getIncomingValue(0));
302 assert(!DTU &&
"cannot use both DT and DTU for updates");
306 assert(BBNode &&
"PredNode unreachable but BBNode reachable?");
308 C->setIDom(PredNode);
313 std::vector<DominatorTree::UpdateType> Updates;
315 assert(!DT &&
"cannot use both DT and DTU for updates");
320 Updates.reserve(Updates.size() + 2 *
succ_size(BB) + 1);
329 if (!SuccsOfPredBB.
contains(SuccOfBB))
330 if (SeenSuccs.
insert(SuccOfBB).second)
334 if (SeenSuccs.
insert(SuccOfBB).second)
356 if (PredecessorWithTwoSuccessors) {
395 "successors should have been transferred to PredBB");
408 assert(!MergeBlocks.
empty() &&
"MergeBlocks should not be empty");
410 bool BlocksHaveBeenMerged =
false;
411 while (!MergeBlocks.
empty()) {
414 if (Dest && (!L || L->contains(Dest))) {
419 "Expecting BB to be unique predecessor of the Dest block");
420 MergeBlocks.
erase(Dest);
421 BlocksHaveBeenMerged =
true;
423 MergeBlocks.
erase(BB);
425 MergeBlocks.
erase(BB);
427 return BlocksHaveBeenMerged;
456 DVR.getDebugLoc()->getInlinedAt());
464 if (DVR.isDbgAssign()) {
479 for (
auto &DVR : ToBeRemoved)
480 DVR->eraseFromParent();
482 return !ToBeRemoved.
empty();
505 bool RemovedAny =
false;
509 for (
auto &
I : *BB) {
515 DVR.getDebugLoc()->getInlinedAt());
519 bool IsDbgValueKind =
525 if (Inserted || VMI->second.first !=
Values ||
526 VMI->second.second != DVR.getExpression()) {
528 VMI->second = {
Values, DVR.getExpression()};
530 VMI->second = {
Values,
nullptr};
537 DVR.eraseFromParent();
566 bool RemovedAny =
false;
571 for (
auto &
I : *BB) {
574 if (!DVR.isDbgValue() && !DVR.isDbgAssign())
576 bool IsDbgValueKind =
580 if (!SeenDefForAggregate.
contains(Aggregate)) {
581 bool IsKill = DVR.isKillLocation() && IsDbgValueKind;
583 SeenDefForAggregate.
insert(Aggregate);
584 }
else if (DVR.isDbgAssign()) {
585 DVR.eraseFromParent();
596 bool MadeChanges =
false;
623 I.replaceAllUsesWith(V);
626 if (
I.hasName() && !V->hasName())
630 BI = BI->eraseFromParent();
635 assert(
I->getParent() ==
nullptr &&
636 "ReplaceInstWithInst: Instruction already inserted into basic block!");
640 if (!
I->getDebugLoc())
641 I->setDebugLoc(BI->getDebugLoc());
674 const Twine &BBName) {
692 assert(SP == BB &&
"CFG broken");
701 "Should have a single succ!");
713template <
typename TI,
typename T>
716 static_assert(std::is_same_v<TI, CycleInfo> || std::is_same_v<TI, LoopInfo>,
717 "type must be CycleInfo or LoopInfo");
722 if constexpr (std::is_same_v<TI, CycleInfo>)
723 LC = LCI->getSmallestCommonCycle(CallBrBlock, Succ);
725 LC = LCI->getSmallestCommonLoop(CallBrBlock, Succ);
729 if constexpr (std::is_same_v<TI, CycleInfo>)
730 LCI->addBlockToCycle(CallBrTarget, LC);
732 LC->addBasicBlockToLoop(CallBrTarget, *LCI);
742 assert(CallBr &&
"expected callbr terminator");
743 assert(SuccIdx < CallBr->getNumSuccessors() &&
744 Succ == CallBr->
getSuccessor(SuccIdx) &&
"invalid successor index");
749 bool ReusesCallBrTarget = CallBrTarget;
756 if (!ReusesCallBrTarget) {
758 CallBrBlock->
getName() +
".target." +
767 int BBIdx = PN.getBasicBlockIndex(CallBrBlock);
768 assert(BBIdx != -1 &&
"expected incoming value form callbr block");
769 PN.setIncomingBlock(BBIdx, CallBrTarget);
775 *UpdatedLI = Updated;
779 PN.removeIncomingValue(CallBrBlock,
false);
786 if (!ReusesCallBrTarget)
791 if (!ReusesCallBrTarget)
801 II->setUnwindDest(Succ);
803 CS->setUnwindDest(Succ);
805 CR->setUnwindDest(Succ);
824 if (PN.getIncomingBlock(BBIdx) != OldPred)
825 BBIdx = PN.getBasicBlockIndex(OldPred);
827 assert(BBIdx != -1 &&
"Invalid PHI Index!");
828 PN.setIncomingBlock(BBIdx, NewPred);
834 PHINode *LandingPadReplacement,
836 const Twine &BBName) {
839 if (!LandingPadReplacement && !PadInst->
isEHPad())
847 if (
Options.PreserveLoopSimplify && LI) {
848 if (
Loop *BBLoop = LI->getLoopFor(BB)) {
862 if (LI->getLoopFor(
P) != BBLoop) {
885 if (LandingPadReplacement) {
886 auto *NewLP = OriginalPad->
clone();
888 NewLP->insertBefore(Terminator->getIterator());
891 Value *ParentPad =
nullptr;
893 ParentPad = FuncletPad->getParentPad();
895 ParentPad = CatchSwitch->getParentPad();
897 ParentPad = CleanupPad->getParentPad();
899 ParentPad = LandingPad->getParent();
924 MSSAU->applyUpdates(Updates, *DT);
926 MSSAU->getMemorySSA()->verifyMemorySSA();
931 if (
Loop *BBLoop = LI->getLoopFor(BB)) {
934 if (
Loop *SuccLoop = LI->getLoopFor(Succ)) {
935 if (BBLoop == SuccLoop) {
937 SuccLoop->addBasicBlockToLoop(NewBB, *LI);
938 }
else if (BBLoop->contains(SuccLoop)) {
940 BBLoop->addBasicBlockToLoop(NewBB, *LI);
941 }
else if (SuccLoop->contains(BBLoop)) {
943 SuccLoop->addBasicBlockToLoop(NewBB, *LI);
949 assert(SuccLoop->getHeader() == Succ &&
950 "Should not create irreducible loops!");
951 if (
Loop *
P = SuccLoop->getParentLoop())
952 P->addBasicBlockToLoop(NewBB, *LI);
958 if (!BBLoop->contains(Succ)) {
959 assert(!BBLoop->contains(NewBB) &&
960 "Split point for loop exit is contained in loop!");
967 if (!LoopPreds.
empty()) {
969 Succ, LoopPreds,
"split", DT, LI, MSSAU,
Options.PreserveLCSSA);
985 "SplitBB has non-PHI nodes!");
989 int Idx = PN.getBasicBlockIndex(SplitBB);
990 assert(Idx >= 0 &&
"Invalid Block Index");
991 Value *V = PN.getIncomingValue(Idx);
996 if (VP->getParent() == SplitBB)
1009 PN.setIncomingValue(Idx, NewPN);
1016 unsigned NumBroken = 0;
1030 const Twine &BBName) {
1034 assert(SplitIt != SplitPt->getParent()->end());
1036 std::string Name = BBName.
str();
1038 SplitIt, Name.empty() ? Old->
getName() +
".split" : Name);
1044 L->addBasicBlockToLoop(New, *LI);
1053 if (UniqueSuccessorsOfOld.
insert(SuccessorOfOld).second) {
1062 std::vector<DomTreeNode *> Children(OldNode->begin(), OldNode->end());
1080 return SplitBlockImpl(Old, SplitPt,
nullptr, DT, LI, MSSAU, BBName);
1085 return SplitBlockImpl(Old, SplitPt, DTU,
nullptr, LI, MSSAU, BBName);
1103 bool PreserveLCSSA,
bool &HasLoopExit) {
1119 for (
auto *Pred : Preds)
1120 if (UniquePreds.
insert(Pred).second) {
1146 assert(DT &&
"DT should be available to update LoopInfo!");
1151 bool IsLoopEntry = !!L;
1152 bool SplitMakesNewLoopHeader =
false;
1164 if (!PL->contains(OldBB))
1171 if (L->contains(Pred))
1172 IsLoopEntry =
false;
1174 SplitMakesNewLoopHeader =
true;
1186 Loop *InnermostPredLoop =
nullptr;
1191 while (PredLoop && !PredLoop->contains(OldBB))
1192 PredLoop = PredLoop->getParentLoop();
1195 if (PredLoop && PredLoop->contains(OldBB) &&
1196 (!InnermostPredLoop ||
1197 InnermostPredLoop->
getLoopDepth() < PredLoop->getLoopDepth()))
1198 InnermostPredLoop = PredLoop;
1202 if (InnermostPredLoop)
1205 L->addBasicBlockToLoop(NewBB, *LI);
1206 if (SplitMakesNewLoopHeader) {
1213 L->moveToHeader(NewBB);
1222 const Twine &BBName) {
1230 bool HasLoopExit =
false;
1249 Value *InVal =
nullptr;
1292 if (PredSet.
count(IncomingBB)) {
1321 std::string NewName = std::string(Suffix) +
".split-lp";
1324 DTU, DT, LI, MSSAU, PreserveLCSSA);
1342 BI->setDebugLoc(L->getStartLoc());
1348 OldLatch = L->getLoopLatch();
1358 "Cannot split an edge from an IndirectBrInst");
1359 Pred->getTerminator()->replaceSuccessorWith(BB, NewBB);
1366 if (Preds.
empty()) {
1373 bool HasLoopExit =
false;
1377 if (!Preds.
empty()) {
1384 if (NewLatch != OldLatch) {
1402 bool PreserveLCSSA) {
1404 MSSAU, PreserveLCSSA);
1411 bool PreserveLCSSA) {
1413 nullptr, LI, MSSAU, PreserveLCSSA);
1440 "Cannot split an edge from an IndirectBrInst");
1441 Pred->getTerminator()->replaceUsesOfWith(OrigBB, NewBB1);
1444 bool HasLoopExit =
false;
1446 PreserveLCSSA, HasLoopExit);
1456 if (Pred == NewBB1)
continue;
1458 "Cannot split an edge from an IndirectBrInst");
1464 if (!NewBB2Preds.
empty()) {
1477 NewBB2Pred->getTerminator()->replaceUsesOfWith(OrigBB, NewBB2);
1480 HasLoopExit =
false;
1482 PreserveLCSSA, HasLoopExit);
1502 "Split cannot be applied if LPad is token type. Otherwise an "
1503 "invalid PHINode of token type would be created.");
1520 const char *Suffix1,
const char *Suffix2,
1524 bool PreserveLCSSA) {
1526 NewBBs, DTU,
nullptr, LI, MSSAU,
1533 Instruction *UncondBranch = Pred->getTerminator();
1546 V = BCI->getOperand(0);
1547 NewBC = BCI->
clone();
1554 V = EVI->getOperand(0);
1555 NewEV = EVI->
clone();
1566 if (PN->getParent() == BB) {
1568 NewEV->
setOperand(0, PN->getIncomingValueForBlock(Pred));
1570 NewBC->
setOperand(0, PN->getIncomingValueForBlock(Pred));
1572 Op = PN->getIncomingValueForBlock(Pred);
1595 Cond, SplitBefore, &ThenBlock,
nullptr,
1597 false, BranchWeights, DTU, LI);
1608 Cond, SplitBefore,
nullptr, &ElseBlock,
1610 Unreachable, BranchWeights, DTU, LI);
1622 Cond, SplitBefore, &ThenBlock, &ElseBlock,
false,
1623 false, BranchWeights, DTU, LI);
1631 BasicBlock **ElseBlock,
bool UnreachableThen,
bool UnreachableElse,
1633 assert((ThenBlock || ElseBlock) &&
1634 "At least one branch block must be created");
1635 assert((!UnreachableThen || !UnreachableElse) &&
1636 "Split block tail must be reachable");
1643 Updates.
reserve(4 + 2 * UniqueOrigSuccessors.
size());
1650 bool ThenToTailEdge =
false;
1651 bool ElseToTailEdge =
false;
1670 BB->getTerminator()->
setDebugLoc(SplitBefore->getDebugLoc());
1676 handleBlock(ThenBlock, UnreachableThen, TrueBlock, ThenToTailEdge);
1677 handleBlock(ElseBlock, UnreachableElse, FalseBlock, ElseToTailEdge);
1681 HeadNewTerm->setMetadata(LLVMContext::MD_prof, BranchWeights);
1691 for (
BasicBlock *UniqueOrigSuccessor : UniqueOrigSuccessors)
1693 for (
BasicBlock *UniqueOrigSuccessor : UniqueOrigSuccessors)
1701 L->addBasicBlockToLoop(TrueBlock, *LI);
1703 L->addBasicBlockToLoop(FalseBlock, *LI);
1704 L->addBasicBlockToLoop(
Tail, *LI);
1709std::pair<Instruction *, Value *>
1717 auto &
DL = SplitBefore->getDataLayout();
1718 const unsigned Bitwidth =
DL.getTypeSizeInBits(Ty);
1721 auto *
IV = Builder.CreatePHI(Ty, 2,
"iv");
1723 Builder.CreateAdd(
IV, ConstantInt::get(Ty, 1),
IV->getName() +
".next",
1724 true, Bitwidth != 2);
1725 auto *IVCheck = Builder.CreateICmpEQ(IVNext, End,
1726 IV->getName() +
".check");
1727 Builder.CreateCondBr(IVCheck, LoopExit, LoopBody);
1731 IV->addIncoming(ConstantInt::get(Ty, 0), LoopPred);
1732 IV->addIncoming(IVNext, LoopBody);
1741 IRBuilder<> IRB(InsertBefore->getParent(), InsertBefore);
1743 if (EC.isScalable()) {
1746 auto [BodyIP, Index] =
1754 unsigned Num = EC.getFixedValue();
1755 for (
unsigned Idx = 0; Idx < Num; ++Idx) {
1757 Func(IRB, ConstantInt::get(IndexTy, Idx));
1765 IRBuilder<> IRB(InsertBefore->getParent(), InsertBefore);
1776 for (
unsigned Idx = 0; Idx < Num; ++Idx) {
1778 Func(IRB, ConstantInt::get(Ty, Idx));
1836 if (Pred1Br->getSuccessor(0) == BB &&
1837 Pred1Br->getSuccessor(1) == Pred2) {
1840 }
else if (Pred1Br->getSuccessor(0) == Pred2 &&
1841 Pred1Br->getSuccessor(1) == BB) {
1865 if (!BI)
return nullptr;
1885 NewCond = Builder.CreateNot(NewCond, NewCond->
getName() +
".not");
1892 for (
auto &BB :
F) {
1893 auto *Term = BB.getTerminator();
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static BasicBlock * SplitBlockPredecessorsImpl(BasicBlock *BB, ArrayRef< BasicBlock * > Preds, const char *Suffix, DomTreeUpdater *DTU, DominatorTree *DT, LoopInfo *LI, MemorySSAUpdater *MSSAU, bool PreserveLCSSA)
static bool removeRedundantDbgInstrsUsingBackwardScan(BasicBlock *BB)
Remove redundant instructions within sequences of consecutive dbg.value instructions.
static bool removeUndefDbgAssignsFromEntryBlock(BasicBlock *BB)
Remove redundant undef dbg.assign intrinsic from an entry block using a forward scan.
static bool updateCycleLoopInfo(TI *LCI, BasicBlock *CallBrBlock, BasicBlock *CallBrTarget, BasicBlock *Succ)
Helper function to update the cycle or loop information after inserting a new block between a callbr ...
static void UpdateAnalysisInformation(BasicBlock *OldBB, BasicBlock *NewBB, ArrayRef< BasicBlock * > Preds, DomTreeUpdater *DTU, DominatorTree *DT, LoopInfo *LI, MemorySSAUpdater *MSSAU, bool PreserveLCSSA, bool &HasLoopExit)
Update DominatorTree, LoopInfo, and LCCSA analysis information.
static BasicBlock * SplitBlockImpl(BasicBlock *Old, BasicBlock::iterator SplitPt, DomTreeUpdater *DTU, DominatorTree *DT, LoopInfo *LI, MemorySSAUpdater *MSSAU, const Twine &BBName)
static bool removeRedundantDbgInstrsUsingForwardScan(BasicBlock *BB)
Remove redundant dbg.value instructions using a forward scan.
static void SplitLandingPadPredecessorsImpl(BasicBlock *OrigBB, ArrayRef< BasicBlock * > Preds, const char *Suffix1, const char *Suffix2, SmallVectorImpl< BasicBlock * > &NewBBs, DomTreeUpdater *DTU, DominatorTree *DT, LoopInfo *LI, MemorySSAUpdater *MSSAU, bool PreserveLCSSA)
static cl::opt< unsigned > MaxDeoptOrUnreachableSuccessorCheckDepth("max-deopt-or-unreachable-succ-check-depth", cl::init(8), cl::Hidden, cl::desc("Set the maximum path length when checking whether a basic block " "is followed by a block that either has a terminating " "deoptimizing call or is terminated with an unreachable"))
static void emptyAndDetachBlock(BasicBlock *BB, SmallVectorImpl< DominatorTree::UpdateType > *Updates, bool KeepOneInputPHIs)
Zap all the instructions in the block and replace them with an unreachable instruction and notify the...
static void UpdatePHINodes(BasicBlock *OrigBB, BasicBlock *NewBB, ArrayRef< BasicBlock * > Preds, Instruction *BI, bool HasLoopExit)
Update the PHI nodes in OrigBB to include the values coming from NewBB.
static bool hasReachableLoopEntryToHeader(const Loop &L, const DominatorTree &DT)
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file declares the LLVM IR specialization of the GenericCycle templates.
SmallPtrSet< const BasicBlock *, 8 > VisitedBlocks
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
uint64_t IntrinsicInst * II
const SmallVectorImpl< MachineOperand > & Cond
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static const uint32_t IV[8]
Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
Get the array size.
bool empty() const
Check if the array is empty.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
iterator_range< const_phi_iterator > phis() const
Returns a range that iterates over the phis in the basic block.
LLVM_ABI const LandingPadInst * getLandingPadInst() const
Return the landingpad instruction associated with the landing pad.
LLVM_ABI const_iterator getFirstInsertionPt() const
Returns an iterator to the first instruction in this block that is suitable for inserting a non-PHI i...
LLVM_ABI BasicBlock * splitBasicBlock(iterator I, const Twine &BBName="")
Split the basic block into two basic blocks at the specified instruction.
const Function * getParent() const
Return the enclosing method, or null if none.
const Instruction & back() const
LLVM_ABI BasicBlock * splitBasicBlockBefore(iterator I, const Twine &BBName="")
Split the basic block into two basic blocks at the specified instruction and insert the new basic blo...
bool hasAddressTaken() const
Returns true if there are any uses of this basic block other than direct branches,...
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
LLVM_ABI bool isEntryBlock() const
Return true if this is the entry block of the containing function.
LLVM_ABI InstListType::const_iterator getFirstNonPHIOrDbg(bool SkipPseudoOp=true) const
Returns a pointer to the first instruction in this block that is not a PHINode or a debug intrinsic,...
LLVM_ABI const BasicBlock * getUniqueSuccessor() const
Return the successor of this block if it has a unique successor.
LLVM_ABI const BasicBlock * getSinglePredecessor() const
Return the predecessor of this block if it has a single predecessor block.
const Instruction & front() const
LLVM_ABI const CallInst * getTerminatingDeoptimizeCall() const
Returns the call instruction calling @llvm.experimental.deoptimize prior to the terminating return in...
LLVM_ABI const BasicBlock * getUniquePredecessor() const
Return the predecessor of this block if it has a unique predecessor block.
LLVM_ABI const BasicBlock * getSingleSuccessor() const
Return the successor of this block if it has a single successor.
InstListType::iterator iterator
Instruction iterators...
LLVM_ABI LLVMContext & getContext() const
Get the context in which this basic block lives.
LLVM_ABI bool isLandingPad() const
Return true if this basic block is a landing pad.
LLVM_ABI bool canSplitPredecessors() const
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
void splice(BasicBlock::iterator ToIt, BasicBlock *FromBB)
Transfer all instructions from FromBB to this basic block at ToIt.
LLVM_ABI void removePredecessor(BasicBlock *Pred, bool KeepOneInputPHIs=false)
Update PHI nodes in this BasicBlock before removal of predecessor Pred.
This class represents a no-op cast from one type to another.
CallBr instruction, tracking function calls that may not return control but instead transfer it to a ...
void setSuccessor(unsigned i, BasicBlock *NewSucc)
BasicBlock * getSuccessor(unsigned i) const
static CleanupPadInst * Create(Value *ParentPad, ArrayRef< Value * > Args={}, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
static CleanupReturnInst * Create(Value *CleanupPad, BasicBlock *UnwindBB=nullptr, InsertPosition InsertBefore=nullptr)
This class is the base class for the comparison instructions.
void setPredicate(Predicate P)
Set the predicate for this instruction to the specified value.
Predicate getInversePredicate() const
For example, EQ -> NE, UGT -> ULE, SLT -> SGE, OEQ -> UNE, UGT -> OLE, OLT -> UGE,...
Conditional Branch instruction.
LLVM_ABI void swapSuccessors()
Swap the successors of this branch instruction.
static CondBrInst * Create(Value *Cond, BasicBlock *IfTrue, BasicBlock *IfFalse, InsertPosition InsertBefore=nullptr)
void setSuccessor(unsigned idx, BasicBlock *NewSucc)
void setCondition(Value *V)
Value * getCondition() const
BasicBlock * getSuccessor(unsigned i) const
Represents calls to the llvm.experimintal.convergence.* intrinsics.
Record of a variable value-assignment, aka a non instruction representation of the dbg....
Identifies a unique instance of a whole variable (discards/ignores fragment information).
Identifies a unique instance of a variable.
std::pair< iterator, bool > try_emplace(KeyT &&Key, Ts &&...Args)
Implements a dense probed hash-table based set.
iterator_range< iterator > children()
LLVM_ABI void deleteBB(BasicBlock *DelBB)
Delete DelBB.
DomTreeNodeBase< NodeT > * getRootNode()
getRootNode - This returns the entry node for the CFG of the function.
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.
void splitBlock(NodeT *NewBB)
splitBlock - BB is split and now it has one successor.
static constexpr UpdateKind Delete
DomTreeNodeBase< NodeT > * setNewRoot(NodeT *BB)
Add a new node to the forward dominator tree and make it a new root.
static constexpr UpdateKind Insert
void eraseNode(NodeT *BB)
eraseNode - Removes a node from the dominator tree.
DomTreeNodeBase< NodeT > * getNode(const NodeT *BB) const
getNode - return the (Post)DominatorTree node for the specified basic block.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
LLVM_ABI bool isReachableFromEntry(const Use &U) const
Provide an overload for a Use.
LLVM_ABI bool dominates(const BasicBlock *BB, const Use &U) const
Return true if the (end of the) basic block BB dominates the use U.
DomTreeT & getDomTree()
Flush DomTree updates and return DomTree.
void applyUpdates(ArrayRef< UpdateT > Updates)
Submit updates to all available trees.
void flush()
Apply all pending updates to available trees and flush all BasicBlocks awaiting deletion.
bool hasDomTree() const
Returns true if it holds a DomTreeT.
void recalculate(FuncT &F)
Notify DTU that the entry block was replaced.
Module * getParent()
Get the module that this global value is contained inside of...
Common base class shared among various IRBuilders.
void SetInsertPoint(BasicBlock *TheBB)
This specifies that created instructions should be appended to the end of the specified block.
LLVM_ABI Value * CreateElementCount(Type *Ty, ElementCount EC)
Create an expression which evaluates to the number of elements in EC at runtime.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
LLVM_ABI Instruction * clone() const
Create a copy of 'this' instruction that is identical in all ways except the following:
LLVM_ABI unsigned getNumSuccessors() const LLVM_READONLY
Return the number of successors that this instruction has.
LLVM_ABI void insertBefore(InstListType::iterator InsertPos)
Insert an unlinked instruction into a basic block immediately before the specified position.
bool isEHPad() const
Return true if the instruction is a variety of EH-block.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
LLVM_ABI bool mayHaveSideEffects() const LLVM_READONLY
Return true if the instruction may have side effects.
LLVM_ABI void setMetadata(unsigned KindID, MDNode *Node)
Set the metadata of the specified kind to the specified node.
LLVM_ABI void moveBeforePreserving(InstListType::iterator MovePos)
Perform a moveBefore operation, while signalling that the caller intends to preserve the original ord...
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
bool isSpecialTerminator() const
LLVM_ABI InstListType::iterator insertInto(BasicBlock *ParentBB, InstListType::iterator It)
Inserts an unlinked instruction into ParentBB at position It and returns the iterator of the inserted...
This is an important class for using LLVM in a threaded context.
The landingpad instruction holds all of the information necessary to generate correct exception handl...
BlockT * getLoopLatch() const
If there is a single latch block for this loop, return it.
unsigned getLoopDepth() const
Return the nesting level of this loop.
void addBasicBlockToLoop(BlockT *NewBB, LoopInfoBase< BlockT, LoopT > &LI)
This method is used by other analyses to update loop information.
void removeBlock(BlockT *BB)
This method completely removes BB from all data structures, including all of the Loop objects it is n...
bool isLoopHeader(const BlockT *BB) const
LoopT * getLoopFor(const BlockT *BB) const
Return the inner most loop that BB lives in.
LLVM_ABI void erase(Loop *L)
Update LoopInfo after removing the last backedge from a loop.
Represents a single loop in the control flow graph.
Provides a lazy, caching interface for making common memory aliasing information queries,...
LLVM_ABI void invalidateCachedPredecessors()
Clears the PredIteratorCache info.
LLVM_ABI void removeInstruction(Instruction *InstToRemove)
Removes an instruction from the dependence analysis, updating the dependence of instructions that pre...
MemorySSA * getMemorySSA() const
Get handle on MemorySSA.
LLVM_ABI void moveAllAfterSpliceBlocks(BasicBlock *From, BasicBlock *To, Instruction *Start)
From block was spliced into From and To.
LLVM_ABI void moveAllAfterMergeBlocks(BasicBlock *From, BasicBlock *To, Instruction *Start)
From block was merged into To.
LLVM_ABI void moveToPlace(MemoryUseOrDef *What, BasicBlock *BB, MemorySSA::InsertionPlace Where)
LLVM_ABI void wireOldPredecessorsToNewImmediatePredecessor(BasicBlock *Old, BasicBlock *New, ArrayRef< BasicBlock * > Preds, bool IdenticalEdgesWereMerged=true)
A new empty BasicBlock (New) now branches directly to Old.
MemoryUseOrDef * getMemoryAccess(const Instruction *I) const
Given a memory Mod/Ref'ing instruction, get the MemorySSA access associated with it.
Class that has the common methods + fields of memory uses/defs.
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
LLVM_ABI void removeIncomingValueIf(function_ref< bool(unsigned)> Predicate, bool DeletePHIIfEmpty=true)
Remove all incoming values for which the predicate returns true.
LLVM_ABI Value * removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty=true)
Remove an incoming value.
Value * getIncomingValueForBlock(const BasicBlock *BB) const
BasicBlock * getIncomingBlock(unsigned i) const
Return incoming basic block number i.
Value * getIncomingValue(unsigned i) const
Return incoming value number x.
unsigned getNumIncomingValues() const
Return the number of incoming edges.
static PHINode * Create(Type *Ty, unsigned NumReservedValues, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructors - NumReservedValues is a hint for the number of incoming edges that this phi node will h...
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Simple wrapper around std::function<void(raw_ostream&)>.
Return a value (possibly void), from a function.
Implements a dense probed hash-table based set with some number of buckets stored inline.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
bool erase(PtrType Ptr)
Remove pointer from the set.
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
void insert_range(Range &&R)
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
bool contains(ConstPtrType Ptr) const
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Provides information about what library functions are available for the current target.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
LLVM_ABI std::string str() const
Return the twine contents as a std::string.
bool isTriviallyEmpty() const
Check if this twine is trivially empty; a false return value does not necessarily mean the twine is e...
The instances of the Type class are immutable: once they are created, they are never changed.
bool isTokenTy() const
Return true if this is 'token'.
Unconditional Branch instruction.
static UncondBrInst * Create(BasicBlock *Target, InsertPosition InsertBefore=nullptr)
BasicBlock * getSuccessor(unsigned i=0) const
This function has undefined behavior.
A Use represents the edge between a Value definition and its users.
void setOperand(unsigned i, Value *Val)
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI void setName(const Twine &Name)
Change the name of the value.
bool hasOneUse() const
Return true if there is exactly one use of this value.
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
LLVM_ABI void printAsOperand(raw_ostream &O, bool PrintType=true, const Module *M=nullptr) const
Print the name of this Value out to the specified raw_ostream.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
LLVM_ABI void takeName(Value *V)
Transfer the name from V to this value.
std::pair< iterator, bool > insert(const ValueT &V)
bool contains(const_arg_type_t< ValueT > V) const
Check if the set contains the given element.
const ParentTy * getParent() const
self_iterator getIterator()
This class implements an extremely fast bulk output stream that can only output to a stream.
#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...
@ C
The default llvm calling convention, compatible with C.
LLVM_ABI AssignmentInstRange getAssignmentInsts(DIAssignID *ID)
Return a range of instructions (typically just one) that have ID as an attachment.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI void ReplaceInstWithInst(BasicBlock *BB, BasicBlock::iterator &BI, Instruction *I)
Replace the instruction specified by BI with the instruction specified by I.
iterator_range< df_ext_iterator< T, SetTy > > depth_first_ext(const T &G, SetTy &S)
LLVM_ABI bool RemoveRedundantDbgInstrs(BasicBlock *BB)
Try to remove redundant dbg.value instructions from given basic block.
bool succ_empty(const Instruction *I)
LLVM_ABI bool IsBlockFollowedByDeoptOrUnreachable(const BasicBlock *BB)
Check if we can prove that all paths starting from this block converge to a block that either has a @...
RelativeUniformCounterPtr Values
LLVM_ABI unsigned GetSuccessorNumber(const BasicBlock *BB, const BasicBlock *Succ)
Search for the specified successor of basic block BB and return its position in the terminator instru...
auto pred_end(const MachineBasicBlock *BB)
LLVM_ABI void detachDeadBlocks(ArrayRef< BasicBlock * > BBs, SmallVectorImpl< DominatorTree::UpdateType > *Updates, bool KeepOneInputPHIs=false)
Replace contents of every block in BBs with single unreachable instruction.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool hasOnlySimpleTerminator(const Function &F)
auto successors(const MachineBasicBlock *BB)
LLVM_ABI ReturnInst * FoldReturnIntoUncondBranch(ReturnInst *RI, BasicBlock *BB, BasicBlock *Pred, DomTreeUpdater *DTU=nullptr)
This method duplicates the specified return instruction into a predecessor which ends in an unconditi...
constexpr from_range_t from_range
LLVM_ABI std::pair< Instruction *, Value * > SplitBlockAndInsertSimpleForLoop(Value *End, BasicBlock::iterator SplitBefore)
Insert a for (int i = 0; i < End; i++) loop structure (with the exception that End is assumed > 0,...
LLVM_ABI BasicBlock * splitBlockBefore(BasicBlock *Old, BasicBlock::iterator SplitPt, DomTreeUpdater *DTU, LoopInfo *LI, MemorySSAUpdater *MSSAU, const Twine &BBName="")
Split the specified block at the specified instruction SplitPt.
LLVM_ABI Instruction * SplitBlockAndInsertIfElse(Value *Cond, BasicBlock::iterator SplitBefore, bool Unreachable, MDNode *BranchWeights=nullptr, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr, BasicBlock *ElseBlock=nullptr)
Similar to SplitBlockAndInsertIfThen, but the inserted block is on the false path of the branch.
LLVM_ABI bool DeleteDeadPHIs(BasicBlock *BB, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr, SmallPtrSetImpl< PHINode * > *KnownNonDeadPHIs=nullptr)
Examine each PHI in the given block and delete it if it is dead.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
auto cast_or_null(const Y &Val)
LLVM_ABI void DeleteDeadBlock(BasicBlock *BB, DomTreeUpdater *DTU=nullptr, bool KeepOneInputPHIs=false)
Delete the specified block, which must have no predecessors.
LLVM_ABI void ReplaceInstWithValue(BasicBlock::iterator &BI, Value *V)
Replace all uses of an instruction (specified by BI) with a value, then remove and delete the origina...
LLVM_ABI BasicBlock * SplitKnownCriticalEdge(Instruction *TI, unsigned SuccNum, const CriticalEdgeSplittingOptions &Options=CriticalEdgeSplittingOptions(), const Twine &BBName="")
If it is known that an edge is critical, SplitKnownCriticalEdge can be called directly,...
DomTreeNodeBase< BasicBlock > DomTreeNode
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.
LLVM_ABI CondBrInst * GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue, BasicBlock *&IfFalse)
Check whether BB is the merge point of a if-region.
LLVM_ABI bool HasLoopOrEntryConvergenceToken(const BasicBlock *BB)
Check if the given basic block contains any loop or entry convergent intrinsic instructions.
LLVM_ABI void InvertBranch(CondBrInst *PBI, IRBuilderBase &Builder)
auto reverse(ContainerTy &&C)
LLVM_ABI bool EliminateUnreachableBlocks(Function &F, DomTreeUpdater *DTU=nullptr, bool KeepOneInputPHIs=false)
Delete all basic blocks from F that are not reachable from its entry node.
LLVM_ABI bool MergeBlockSuccessorsIntoGivenBlocks(SmallPtrSetImpl< BasicBlock * > &MergeBlocks, Loop *L=nullptr, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr)
Merge block(s) sucessors, if possible.
LLVM_ABI void SplitBlockAndInsertIfThenElse(Value *Cond, BasicBlock::iterator SplitBefore, Instruction **ThenTerm, Instruction **ElseTerm, MDNode *BranchWeights=nullptr, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr)
SplitBlockAndInsertIfThenElse is similar to SplitBlockAndInsertIfThen, but also creates the ElseBlock...
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI BasicBlock * ehAwareSplitEdge(BasicBlock *BB, BasicBlock *Succ, LandingPadInst *OriginalPad=nullptr, PHINode *LandingPadReplacement=nullptr, const CriticalEdgeSplittingOptions &Options=CriticalEdgeSplittingOptions(), const Twine &BBName="")
Split the edge connect the specficed blocks in the case that Succ is an Exception Handling Block.
auto succ_size(const MachineBasicBlock *BB)
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...
LLVM_ABI bool RecursivelyDeleteDeadPHINode(PHINode *PN, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr, SmallPtrSetImpl< PHINode * > *KnownNonDeadPHIs=nullptr)
If the specified value is an effectively dead PHI node, due to being a def-use chain of single-use no...
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...
LLVM_ABI void SplitLandingPadPredecessors(BasicBlock *OrigBB, ArrayRef< BasicBlock * > Preds, const char *Suffix, const char *Suffix2, SmallVectorImpl< BasicBlock * > &NewBBs, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, bool PreserveLCSSA=false)
This method transforms the landing pad, OrigBB, by introducing two new basic blocks into the function...
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
LLVM_ABI BasicBlock * SplitBlockPredecessors(BasicBlock *BB, ArrayRef< BasicBlock * > Preds, const char *Suffix, DominatorTree *DT, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, bool PreserveLCSSA=false)
This method introduces at least one new basic block into the function and moves some of the predecess...
LLVM_ABI bool VerifyMemorySSA
Enables verification of MemorySSA.
LLVM_ABI void createPHIsForSplitLoopExit(ArrayRef< BasicBlock * > Preds, BasicBlock *SplitBB, BasicBlock *DestBB)
When a loop exit edge is split, LCSSA form may require new PHIs in the new exit block.
LLVM_ABI bool MergeBlockIntoPredecessor(BasicBlock *BB, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, MemoryDependenceResults *MemDep=nullptr, bool PredecessorWithTwoSuccessors=false, DominatorTree *DT=nullptr)
Attempts to merge a block into its predecessor, if possible.
LLVM_ABI bool isAssignmentTrackingEnabled(const Module &M)
Return true if assignment tracking is enabled for module M.
LLVM_ABI BasicBlock * SplitBlock(BasicBlock *Old, BasicBlock::iterator SplitPt, DominatorTree *DT, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, const Twine &BBName="")
Split the specified block at the specified instruction.
DWARFExpression::Operation Op
PredIterator< BasicBlock, Value::user_iterator > pred_iterator
LLVM_ABI BasicBlock * SplitCriticalEdge(Instruction *TI, unsigned SuccNum, const CriticalEdgeSplittingOptions &Options=CriticalEdgeSplittingOptions(), const Twine &BBName="")
If this edge is a critical edge, insert a new node to split the critical edge.
LLVM_ABI bool FoldSingleEntryPHINodes(BasicBlock *BB, MemoryDependenceResults *MemDep=nullptr)
We know that BB has one predecessor.
ArrayRef(const T &OneElt) -> ArrayRef< T >
LLVM_ABI bool isCriticalEdge(const Instruction *TI, unsigned SuccNum, bool AllowIdenticalEdges=false)
Return true if the specified edge is a critical edge.
LLVM_ABI unsigned SplitAllCriticalEdges(Function &F, const CriticalEdgeSplittingOptions &Options=CriticalEdgeSplittingOptions())
Loop over all of the edges in the CFG, breaking critical edges as they are found.
LLVM_ABI void updatePhiNodes(BasicBlock *DestBB, BasicBlock *OldPred, BasicBlock *NewPred, PHINode *Until=nullptr)
Replaces all uses of OldPred with the NewPred block in all PHINodes in a block.
LLVM_ABI Printable printBasicBlock(const BasicBlock *BB)
Print BasicBlock BB as an operand or print "<nullptr>" if BB is a nullptr.
auto pred_begin(const MachineBasicBlock *BB)
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
auto predecessors(const MachineBasicBlock *BB)
iterator_range< pointer_iterator< WrappedIteratorT > > make_pointer_range(RangeT &&Range)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
LLVM_ABI Instruction * SplitBlockAndInsertIfThen(Value *Cond, BasicBlock::iterator SplitBefore, bool Unreachable, MDNode *BranchWeights=nullptr, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr, BasicBlock *ThenBlock=nullptr)
Split the containing block at the specified instruction - everything before SplitBefore stays in the ...
LLVM_ABI void DeleteDeadBlocks(ArrayRef< BasicBlock * > BBs, DomTreeUpdater *DTU=nullptr, bool KeepOneInputPHIs=false)
Delete the specified blocks from BB.
LLVM_ABI BasicBlock * SplitEdge(BasicBlock *From, BasicBlock *To, DominatorTree *DT=nullptr, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, const Twine &BBName="")
Split the edge connecting the specified blocks, and return the newly created basic block between From...
LLVM_ABI void setUnwindEdgeTo(Instruction *TI, BasicBlock *Succ)
Sets the unwind edge of an instruction to a particular successor.
static auto filterDbgVars(iterator_range< simple_ilist< DbgRecord >::iterator > R)
Filter the DbgRecord range to DbgVariableRecord types only and downcast.
LLVM_ABI void SplitBlockAndInsertForEachLane(ElementCount EC, Type *IndexTy, BasicBlock::iterator InsertBefore, std::function< void(IRBuilderBase &, Value *)> Func)
Utility function for performing a given action on each lane of a vector with EC elements.
LLVM_ABI BasicBlock * SplitCallBrEdge(BasicBlock *CallBrBlock, BasicBlock *Succ, unsigned SuccIdx, BasicBlock *CallBrTarget=nullptr, DomTreeUpdater *DTU=nullptr, CycleInfo *CI=nullptr, LoopInfo *LI=nullptr, bool *UpdatedLI=nullptr)
Create a new intermediate target block for a callbr edge.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Option class for critical edge splitting.
CriticalEdgeSplittingOptions & setPreserveLCSSA()