LLVM 19.0.0git
UnifyLoopExits.cpp
Go to the documentation of this file.
1//===- UnifyLoopExits.cpp - Redirect exiting edges to one block -*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// For each natural loop with multiple exit blocks, this pass creates a new
10// block N such that all exiting blocks now branch to N, and then control flow
11// is redistributed to all the original exit blocks.
12//
13// Limitation: This assumes that all terminators in the CFG are direct branches
14// (the "br" instruction). The presence of any other control flow
15// such as indirectbr, switch or callbr will cause an assert.
16//
17//===----------------------------------------------------------------------===//
18
20#include "llvm/ADT/MapVector.h"
23#include "llvm/IR/Constants.h"
24#include "llvm/IR/Dominators.h"
29
30#define DEBUG_TYPE "unify-loop-exits"
31
32using namespace llvm;
33
35 "max-booleans-in-control-flow-hub", cl::init(32), cl::Hidden,
36 cl::desc("Set the maximum number of outgoing blocks for using a boolean "
37 "value to record the exiting block in CreateControlFlowHub."));
38
39namespace {
40struct UnifyLoopExitsLegacyPass : public FunctionPass {
41 static char ID;
42 UnifyLoopExitsLegacyPass() : FunctionPass(ID) {
44 }
45
46 void getAnalysisUsage(AnalysisUsage &AU) const override {
51 }
52
53 bool runOnFunction(Function &F) override;
54};
55} // namespace
56
57char UnifyLoopExitsLegacyPass::ID = 0;
58
60 return new UnifyLoopExitsLegacyPass();
61}
62
63INITIALIZE_PASS_BEGIN(UnifyLoopExitsLegacyPass, "unify-loop-exits",
64 "Fixup each natural loop to have a single exit block",
65 false /* Only looks at CFG */, false /* Analysis Pass */)
68INITIALIZE_PASS_END(UnifyLoopExitsLegacyPass, "unify-loop-exits",
69 "Fixup each natural loop to have a single exit block",
70 false /* Only looks at CFG */, false /* Analysis Pass */)
71
72// The current transform introduces new control flow paths which may break the
73// SSA requirement that every def must dominate all its uses. For example,
74// consider a value D defined inside the loop that is used by some instruction
75// U outside the loop. It follows that D dominates U, since the original
76// program has valid SSA form. After merging the exits, all paths from D to U
77// now flow through the unified exit block. In addition, there may be other
78// paths that do not pass through D, but now reach the unified exit
79// block. Thus, D no longer dominates U.
80//
81// Restore the dominance by creating a phi for each such D at the new unified
82// loop exit. But when doing this, ignore any uses U that are in the new unified
83// loop exit, since those were introduced specially when the block was created.
84//
85// The use of SSAUpdater seems like overkill for this operation. The location
86// for creating the new PHI is well-known, and also the set of incoming blocks
87// to the new PHI.
90 BasicBlock *LoopExitBlock) {
91 using InstVector = SmallVector<Instruction *, 8>;
93 IIMap ExternalUsers;
94 for (auto *BB : L->blocks()) {
95 for (auto &I : *BB) {
96 for (auto &U : I.uses()) {
97 auto UserInst = cast<Instruction>(U.getUser());
98 auto UserBlock = UserInst->getParent();
99 if (UserBlock == LoopExitBlock)
100 continue;
101 if (L->contains(UserBlock))
102 continue;
103 LLVM_DEBUG(dbgs() << "added ext use for " << I.getName() << "("
104 << BB->getName() << ")"
105 << ": " << UserInst->getName() << "("
106 << UserBlock->getName() << ")"
107 << "\n");
108 ExternalUsers[&I].push_back(UserInst);
109 }
110 }
111 }
112
113 for (const auto &II : ExternalUsers) {
114 // For each Def used outside the loop, create NewPhi in
115 // LoopExitBlock. NewPhi receives Def only along exiting blocks that
116 // dominate it, while the remaining values are undefined since those paths
117 // didn't exist in the original CFG.
118 auto Def = II.first;
119 LLVM_DEBUG(dbgs() << "externally used: " << Def->getName() << "\n");
120 auto NewPhi =
121 PHINode::Create(Def->getType(), Incoming.size(),
122 Def->getName() + ".moved", LoopExitBlock->begin());
123 for (auto *In : Incoming) {
124 LLVM_DEBUG(dbgs() << "predecessor " << In->getName() << ": ");
125 if (Def->getParent() == In || DT.dominates(Def, In)) {
126 LLVM_DEBUG(dbgs() << "dominated\n");
127 NewPhi->addIncoming(Def, In);
128 } else {
129 LLVM_DEBUG(dbgs() << "not dominated\n");
130 NewPhi->addIncoming(PoisonValue::get(Def->getType()), In);
131 }
132 }
133
134 LLVM_DEBUG(dbgs() << "external users:");
135 for (auto *U : II.second) {
136 LLVM_DEBUG(dbgs() << " " << U->getName());
137 U->replaceUsesOfWith(Def, NewPhi);
138 }
139 LLVM_DEBUG(dbgs() << "\n");
140 }
141}
142
143static bool unifyLoopExits(DominatorTree &DT, LoopInfo &LI, Loop *L) {
144 // To unify the loop exits, we need a list of the exiting blocks as
145 // well as exit blocks. The functions for locating these lists both
146 // traverse the entire loop body. It is more efficient to first
147 // locate the exiting blocks and then examine their successors to
148 // locate the exit blocks.
149 SetVector<BasicBlock *> ExitingBlocks;
151
152 // We need SetVectors, but the Loop API takes a vector, so we use a temporary.
154 L->getExitingBlocks(Temp);
155 for (auto *BB : Temp) {
156 ExitingBlocks.insert(BB);
157 for (auto *S : successors(BB)) {
158 auto SL = LI.getLoopFor(S);
159 // A successor is not an exit if it is directly or indirectly in the
160 // current loop.
161 if (SL == L || L->contains(SL))
162 continue;
163 Exits.insert(S);
164 }
165 }
166
168 dbgs() << "Found exit blocks:";
169 for (auto Exit : Exits) {
170 dbgs() << " " << Exit->getName();
171 }
172 dbgs() << "\n";
173
174 dbgs() << "Found exiting blocks:";
175 for (auto EB : ExitingBlocks) {
176 dbgs() << " " << EB->getName();
177 }
178 dbgs() << "\n";);
179
180 if (Exits.size() <= 1) {
181 LLVM_DEBUG(dbgs() << "loop does not have multiple exits; nothing to do\n");
182 return false;
183 }
184
186 DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager);
187 auto LoopExitBlock =
188 CreateControlFlowHub(&DTU, GuardBlocks, ExitingBlocks, Exits, "loop.exit",
189 MaxBooleansInControlFlowHub.getValue());
190
191 restoreSSA(DT, L, ExitingBlocks, LoopExitBlock);
192
193#if defined(EXPENSIVE_CHECKS)
194 assert(DT.verify(DominatorTree::VerificationLevel::Full));
195#else
196 assert(DT.verify(DominatorTree::VerificationLevel::Fast));
197#endif // EXPENSIVE_CHECKS
198 L->verifyLoop();
199
200 // The guard blocks were created outside the loop, so they need to become
201 // members of the parent loop.
202 if (auto ParentLoop = L->getParentLoop()) {
203 for (auto *G : GuardBlocks) {
204 ParentLoop->addBasicBlockToLoop(G, LI);
205 }
206 ParentLoop->verifyLoop();
207 }
208
209#if defined(EXPENSIVE_CHECKS)
210 LI.verify(DT);
211#endif // EXPENSIVE_CHECKS
212
213 return true;
214}
215
216static bool runImpl(LoopInfo &LI, DominatorTree &DT) {
217
218 bool Changed = false;
219 auto Loops = LI.getLoopsInPreorder();
220 for (auto *L : Loops) {
221 LLVM_DEBUG(dbgs() << "Loop: " << L->getHeader()->getName() << " (depth: "
222 << LI.getLoopDepth(L->getHeader()) << ")\n");
223 Changed |= unifyLoopExits(DT, LI, L);
224 }
225 return Changed;
226}
227
228bool UnifyLoopExitsLegacyPass::runOnFunction(Function &F) {
229 LLVM_DEBUG(dbgs() << "===== Unifying loop exits in function " << F.getName()
230 << "\n");
231 auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
232 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
233
234 assert(hasOnlySimpleTerminator(F) && "Unsupported block terminator.");
235
236 return runImpl(LI, DT);
237}
238
239namespace llvm {
240
243 auto &LI = AM.getResult<LoopAnalysis>(F);
244 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
245
246 if (!runImpl(LI, DT))
247 return PreservedAnalyses::all();
251 return PA;
252}
253} // namespace llvm
aarch64 promote const
This file contains the declarations for the subclasses of Constant, which represent the different fla...
#define LLVM_DEBUG(X)
Definition: Debug.h:101
static bool runImpl(Function &F, const TargetLowering &TLI)
Hexagon Hardware Loops
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
#define G(x, y, z)
Definition: MD5.cpp:56
This file implements a map that provides insertion order iteration.
PowerPC TLS Dynamic Call Fixup
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition: PassSupport.h:55
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:59
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:52
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
unify loop exits
unify loop Fixup each natural loop to have a single exit static false void restoreSSA(const DominatorTree &DT, const Loop *L, const SetVector< BasicBlock * > &Incoming, BasicBlock *LoopExitBlock)
unify loop Fixup each natural loop to have a single exit block
static cl::opt< unsigned > MaxBooleansInControlFlowHub("max-booleans-in-control-flow-hub", cl::init(32), cl::Hidden, cl::desc("Set the maximum number of outgoing blocks for using a boolean " "value to record the exiting block in CreateControlFlowHub."))
static bool unifyLoopExits(DominatorTree &DT, LoopInfo &LI, Loop *L)
static bool runImpl(LoopInfo &LI, DominatorTree &DT)
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:348
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:500
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
LLVM Basic Block Representation.
Definition: BasicBlock.h:60
Analysis pass which computes a DominatorTree.
Definition: Dominators.h:279
bool verify(VerificationLevel VL=VerificationLevel::Full) const
verify - checks if the tree is correct.
Legacy analysis pass which computes a DominatorTree.
Definition: Dominators.h:317
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition: Dominators.h:162
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
virtual bool runOnFunction(Function &F)=0
runOnFunction - Virtual method overriden by subclasses to do the per-function processing of the pass.
Analysis pass that exposes the LoopInfo for a function.
Definition: LoopInfo.h:566
void verify(const DominatorTreeBase< BlockT, false > &DomTree) const
SmallVector< LoopT *, 4 > getLoopsInPreorder() const
Return all of the loops in the function in preorder across the loop nests, with siblings in forward p...
unsigned getLoopDepth(const BlockT *BB) const
Return the loop nesting level of the specified block.
LoopT * getLoopFor(const BlockT *BB) const
Return the inner most loop that BB lives in.
The legacy pass manager's analysis pass to compute loop information.
Definition: LoopInfo.h:593
Represents a single loop in the control flow graph.
Definition: LoopInfo.h:44
This class implements a map that also provides access to all stored values in a deterministic order.
Definition: MapVector.h:36
static PHINode * Create(Type *Ty, unsigned NumReservedValues, const Twine &NameStr, BasicBlock::iterator InsertBefore)
Constructors - NumReservedValues is a hint for the number of incoming edges that this phi node will h...
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
virtual void getAnalysisUsage(AnalysisUsage &) const
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
Definition: Pass.cpp:98
static PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Definition: Constants.cpp:1827
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:109
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: Analysis.h:115
void preserve()
Mark an analysis as preserved.
Definition: Analysis.h:129
A vector that has set insertion semantics.
Definition: SetVector.h:57
size_type size() const
Determine the number of elements in the SetVector.
Definition: SetVector.h:98
bool insert(const value_type &X)
Insert a new element into the SetVector.
Definition: SetVector.h:162
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
bool hasOnlySimpleTerminator(const Function &F)
auto successors(const MachineBasicBlock *BB)
void initializeUnifyLoopExitsLegacyPassPass(PassRegistry &)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
FunctionPass * createUnifyLoopExitsPass()
BasicBlock * CreateControlFlowHub(DomTreeUpdater *DTU, SmallVectorImpl< BasicBlock * > &GuardBlocks, const SetVector< BasicBlock * > &Predecessors, const SetVector< BasicBlock * > &Successors, const StringRef Prefix, std::optional< unsigned > MaxControlFlowBooleans=std::nullopt)
Given a set of incoming and outgoing blocks, create a "hub" such that every edge from an incoming blo...
Incoming for lane maks phi as machine instruction, incoming register Reg and incoming block Block are...