blob: d6675cf128ad8b3206a0206ec3a81035a411eb8e [file] [log] [blame]
Chris Lattnerd43023a2002-08-02 16:43:03 +00001//===- Dominators.cpp - Dominator Calculation -----------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner081aabc2001-07-02 05:46:38 +00009//
Chris Lattnerd43023a2002-08-02 16:43:03 +000010// This file implements simple dominator construction algorithms for finding
11// forward dominators. Postdominators are available in libanalysis, but are not
12// included in libvmcore, because it's not needed. Forward dominators are
13// needed to support the Verifier pass.
Chris Lattner081aabc2001-07-02 05:46:38 +000014//
15//===----------------------------------------------------------------------===//
16
Chandler Carruth5ad5f152014-01-13 09:26:24 +000017#include "llvm/IR/Dominators.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000018#include "llvm/ADT/DepthFirstIterator.h"
Devang Patel5a1bd402007-03-27 20:50:46 +000019#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000020#include "llvm/IR/CFG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/Instructions.h"
Chandler Carruth64764b42015-01-14 10:19:28 +000022#include "llvm/IR/PassManager.h"
Dan Gohman4dbb3012009-09-28 00:27:48 +000023#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/Support/Debug.h"
Chandler Carruthe509db42014-01-13 10:52:56 +000025#include "llvm/Support/GenericDomTreeConstruction.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000026#include "llvm/Support/raw_ostream.h"
Chris Lattnerc5e0be62004-06-05 00:24:59 +000027#include <algorithm>
Chris Lattner189d19f2003-11-21 20:23:48 +000028using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000029
Dan Gohman4dbb3012009-09-28 00:27:48 +000030// Always verify dominfo if expensive checking is enabled.
Filipe Cabecinhas0da99372016-04-29 15:22:48 +000031#ifdef EXPENSIVE_CHECKS
Serge Pavlov69b3ff92017-01-24 05:52:07 +000032bool llvm::VerifyDomInfo = true;
Dan Gohman4dbb3012009-09-28 00:27:48 +000033#else
Serge Pavlov69b3ff92017-01-24 05:52:07 +000034bool llvm::VerifyDomInfo = false;
Dan Gohman4dbb3012009-09-28 00:27:48 +000035#endif
36static cl::opt<bool,true>
37VerifyDomInfoX("verify-dom-info", cl::location(VerifyDomInfo),
38 cl::desc("Verify dominator info (time consuming)"));
39
Rafael Espindolacc80cde2012-08-16 15:09:43 +000040bool BasicBlockEdge::isSingleEdge() const {
41 const TerminatorInst *TI = Start->getTerminator();
42 unsigned NumEdgesToEnd = 0;
43 for (unsigned int i = 0, n = TI->getNumSuccessors(); i < n; ++i) {
44 if (TI->getSuccessor(i) == End)
45 ++NumEdgesToEnd;
46 if (NumEdgesToEnd >= 2)
47 return false;
48 }
49 assert(NumEdgesToEnd == 1);
50 return true;
Rafael Espindola11870772012-08-10 14:05:55 +000051}
52
Chris Lattnerc385beb2001-07-06 16:58:22 +000053//===----------------------------------------------------------------------===//
Owen Andersonf35a1db2007-04-15 08:47:27 +000054// DominatorTree Implementation
Chris Lattner00f51672003-12-07 00:38:08 +000055//===----------------------------------------------------------------------===//
56//
Owen Anderson84c357f2007-09-23 21:31:44 +000057// Provide public access to DominatorTree information. Implementation details
Chandler Carruthe509db42014-01-13 10:52:56 +000058// can be found in Dominators.h, GenericDomTree.h, and
59// GenericDomTreeConstruction.h.
Chris Lattner00f51672003-12-07 00:38:08 +000060//
61//===----------------------------------------------------------------------===//
62
Benjamin Kramera667d1a2015-07-13 17:21:31 +000063template class llvm::DomTreeNodeBase<BasicBlock>;
Jakub Kuderskib292c222017-07-14 18:26:09 +000064template class llvm::DominatorTreeBase<BasicBlock, false>; // DomTreeBase
65template class llvm::DominatorTreeBase<BasicBlock, true>; // PostDomTreeBase
Owen Anderson41878012007-10-16 19:59:25 +000066
Jakub Kuderski5af07f52017-07-13 20:45:32 +000067template void
68llvm::DomTreeBuilder::Calculate<DomTreeBuilder::BBDomTree, Function>(
69 DomTreeBuilder::BBDomTree &DT, Function &F);
Jakub Kuderskib292c222017-07-14 18:26:09 +000070template void
71llvm::DomTreeBuilder::Calculate<DomTreeBuilder::BBPostDomTree, Function>(
72 DomTreeBuilder::BBPostDomTree &DT, Function &F);
Jakub Kuderski5af07f52017-07-13 20:45:32 +000073
Jakub Kuderski13e9ef12017-07-14 21:17:33 +000074template void llvm::DomTreeBuilder::InsertEdge<DomTreeBuilder::BBDomTree>(
75 DomTreeBuilder::BBDomTree &DT, BasicBlock *From, BasicBlock *To);
76template void llvm::DomTreeBuilder::InsertEdge<DomTreeBuilder::BBPostDomTree>(
77 DomTreeBuilder::BBPostDomTree &DT, BasicBlock *From, BasicBlock *To);
78
Jakub Kuderski5af07f52017-07-13 20:45:32 +000079template bool llvm::DomTreeBuilder::Verify<DomTreeBuilder::BBDomTree>(
80 const DomTreeBuilder::BBDomTree &DT);
Jakub Kuderskib292c222017-07-14 18:26:09 +000081template bool llvm::DomTreeBuilder::Verify<DomTreeBuilder::BBPostDomTree>(
82 const DomTreeBuilder::BBPostDomTree &DT);
Rafael Espindola30616362014-02-14 22:36:16 +000083
Chandler Carruthca68a3e2017-01-15 06:32:49 +000084bool DominatorTree::invalidate(Function &F, const PreservedAnalyses &PA,
85 FunctionAnalysisManager::Invalidator &) {
86 // Check whether the analysis, all analyses on functions, or the function's
87 // CFG have been preserved.
88 auto PAC = PA.getChecker<DominatorTreeAnalysis>();
89 return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>() ||
90 PAC.preservedSet<CFGAnalyses>());
91}
92
Rafael Espindola94df2672012-02-26 02:19:19 +000093// dominates - Return true if Def dominates a use in User. This performs
94// the special checks necessary if Def and User are in the same basic block.
95// Note that Def doesn't dominate a use in Def itself!
96bool DominatorTree::dominates(const Instruction *Def,
97 const Instruction *User) const {
98 const BasicBlock *UseBB = User->getParent();
99 const BasicBlock *DefBB = Def->getParent();
Rafael Espindola082d4822012-02-18 19:46:02 +0000100
Rafael Espindolaa53c46a2012-03-30 16:46:21 +0000101 // Any unreachable use is dominated, even if Def == User.
102 if (!isReachableFromEntry(UseBB))
103 return true;
104
105 // Unreachable definitions don't dominate anything.
106 if (!isReachableFromEntry(DefBB))
107 return false;
Rafael Espindola082d4822012-02-18 19:46:02 +0000108
Rafael Espindola94df2672012-02-26 02:19:19 +0000109 // An instruction doesn't dominate a use in itself.
110 if (Def == User)
Chris Lattner22151ce2009-09-21 22:30:50 +0000111 return false;
Rafael Espindola082d4822012-02-18 19:46:02 +0000112
David Majnemer8a1c45d2015-12-12 05:38:55 +0000113 // The value defined by an invoke dominates an instruction only if it
114 // dominates every instruction in UseBB.
115 // A PHI is dominated only if the instruction dominates every possible use in
116 // the UseBB.
117 if (isa<InvokeInst>(Def) || isa<PHINode>(User))
Rafael Espindola94df2672012-02-26 02:19:19 +0000118 return dominates(Def, UseBB);
119
120 if (DefBB != UseBB)
121 return dominates(DefBB, UseBB);
122
123 // Loop through the basic block until we find Def or User.
124 BasicBlock::const_iterator I = DefBB->begin();
125 for (; &*I != Def && &*I != User; ++I)
Chris Lattner22151ce2009-09-21 22:30:50 +0000126 /*empty*/;
Rafael Espindola082d4822012-02-18 19:46:02 +0000127
Rafael Espindola94df2672012-02-26 02:19:19 +0000128 return &*I == Def;
129}
130
131// true if Def would dominate a use in any instruction in UseBB.
132// note that dominates(Def, Def->getParent()) is false.
133bool DominatorTree::dominates(const Instruction *Def,
134 const BasicBlock *UseBB) const {
135 const BasicBlock *DefBB = Def->getParent();
136
Rafael Espindolaa53c46a2012-03-30 16:46:21 +0000137 // Any unreachable use is dominated, even if DefBB == UseBB.
138 if (!isReachableFromEntry(UseBB))
139 return true;
140
141 // Unreachable definitions don't dominate anything.
142 if (!isReachableFromEntry(DefBB))
143 return false;
Rafael Espindola94df2672012-02-26 02:19:19 +0000144
145 if (DefBB == UseBB)
146 return false;
147
David Majnemer8a1c45d2015-12-12 05:38:55 +0000148 // Invoke results are only usable in the normal destination, not in the
149 // exceptional destination.
David Majnemer0bc0eef2015-08-15 02:46:08 +0000150 if (const auto *II = dyn_cast<InvokeInst>(Def)) {
151 BasicBlock *NormalDest = II->getNormalDest();
152 BasicBlockEdge E(DefBB, NormalDest);
153 return dominates(E, UseBB);
154 }
Rafael Espindola94df2672012-02-26 02:19:19 +0000155
David Majnemer0bc0eef2015-08-15 02:46:08 +0000156 return dominates(DefBB, UseBB);
Rafael Espindola59564072012-08-07 17:30:46 +0000157}
158
159bool DominatorTree::dominates(const BasicBlockEdge &BBE,
160 const BasicBlock *UseBB) const {
161 // If the BB the edge ends in doesn't dominate the use BB, then the
162 // edge also doesn't.
163 const BasicBlock *Start = BBE.getStart();
164 const BasicBlock *End = BBE.getEnd();
165 if (!dominates(End, UseBB))
Rafael Espindola94df2672012-02-26 02:19:19 +0000166 return false;
167
Rafael Espindola59564072012-08-07 17:30:46 +0000168 // Simple case: if the end BB has a single predecessor, the fact that it
169 // dominates the use block implies that the edge also does.
170 if (End->getSinglePredecessor())
Rafael Espindola94df2672012-02-26 02:19:19 +0000171 return true;
172
173 // The normal edge from the invoke is critical. Conceptually, what we would
174 // like to do is split it and check if the new block dominates the use.
175 // With X being the new block, the graph would look like:
176 //
177 // DefBB
178 // /\ . .
179 // / \ . .
180 // / \ . .
181 // / \ | |
182 // A X B C
183 // | \ | /
184 // . \|/
185 // . NormalDest
186 // .
187 //
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +0000188 // Given the definition of dominance, NormalDest is dominated by X iff X
Rafael Espindola94df2672012-02-26 02:19:19 +0000189 // dominates all of NormalDest's predecessors (X, B, C in the example). X
190 // trivially dominates itself, so we only have to find if it dominates the
191 // other predecessors. Since the only way out of X is via NormalDest, X can
192 // only properly dominate a node if NormalDest dominates that node too.
Adam Nemet4ef096b2017-06-05 16:27:09 +0000193 int IsDuplicateEdge = 0;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000194 for (const_pred_iterator PI = pred_begin(End), E = pred_end(End);
195 PI != E; ++PI) {
196 const BasicBlock *BB = *PI;
Adam Nemet4ef096b2017-06-05 16:27:09 +0000197 if (BB == Start) {
198 // If there are multiple edges between Start and End, by definition they
199 // can't dominate anything.
200 if (IsDuplicateEdge++)
201 return false;
Rafael Espindola94df2672012-02-26 02:19:19 +0000202 continue;
Adam Nemet4ef096b2017-06-05 16:27:09 +0000203 }
Rafael Espindola94df2672012-02-26 02:19:19 +0000204
Rafael Espindola59564072012-08-07 17:30:46 +0000205 if (!dominates(End, BB))
Rafael Espindola94df2672012-02-26 02:19:19 +0000206 return false;
207 }
208 return true;
Chris Lattner22151ce2009-09-21 22:30:50 +0000209}
Dan Gohman73273272012-04-12 23:31:46 +0000210
Chandler Carruth73523022014-01-13 13:07:17 +0000211bool DominatorTree::dominates(const BasicBlockEdge &BBE, const Use &U) const {
Rafael Espindola59564072012-08-07 17:30:46 +0000212 Instruction *UserInst = cast<Instruction>(U.getUser());
213 // A PHI in the end of the edge is dominated by it.
214 PHINode *PN = dyn_cast<PHINode>(UserInst);
215 if (PN && PN->getParent() == BBE.getEnd() &&
216 PN->getIncomingBlock(U) == BBE.getStart())
217 return true;
218
219 // Otherwise use the edge-dominates-block query, which
220 // handles the crazy critical edge cases properly.
221 const BasicBlock *UseBB;
222 if (PN)
223 UseBB = PN->getIncomingBlock(U);
224 else
225 UseBB = UserInst->getParent();
226 return dominates(BBE, UseBB);
227}
228
Chandler Carruth73523022014-01-13 13:07:17 +0000229bool DominatorTree::dominates(const Instruction *Def, const Use &U) const {
Rafael Espindola59564072012-08-07 17:30:46 +0000230 Instruction *UserInst = cast<Instruction>(U.getUser());
Dan Gohman73273272012-04-12 23:31:46 +0000231 const BasicBlock *DefBB = Def->getParent();
232
233 // Determine the block in which the use happens. PHI nodes use
234 // their operands on edges; simulate this by thinking of the use
235 // happening at the end of the predecessor block.
236 const BasicBlock *UseBB;
237 if (PHINode *PN = dyn_cast<PHINode>(UserInst))
238 UseBB = PN->getIncomingBlock(U);
239 else
240 UseBB = UserInst->getParent();
241
242 // Any unreachable use is dominated, even if Def == User.
243 if (!isReachableFromEntry(UseBB))
244 return true;
245
246 // Unreachable definitions don't dominate anything.
247 if (!isReachableFromEntry(DefBB))
248 return false;
249
David Majnemer8a1c45d2015-12-12 05:38:55 +0000250 // Invoke instructions define their return values on the edges to their normal
251 // successors, so we have to handle them specially.
Dan Gohman73273272012-04-12 23:31:46 +0000252 // Among other things, this means they don't dominate anything in
253 // their own block, except possibly a phi, so we don't need to
254 // walk the block in any case.
255 if (const InvokeInst *II = dyn_cast<InvokeInst>(Def)) {
Rafael Espindola59564072012-08-07 17:30:46 +0000256 BasicBlock *NormalDest = II->getNormalDest();
257 BasicBlockEdge E(DefBB, NormalDest);
258 return dominates(E, U);
Dan Gohman73273272012-04-12 23:31:46 +0000259 }
260
261 // If the def and use are in different blocks, do a simple CFG dominator
262 // tree query.
263 if (DefBB != UseBB)
264 return dominates(DefBB, UseBB);
265
266 // Ok, def and use are in the same block. If the def is an invoke, it
267 // doesn't dominate anything in the block. If it's a PHI, it dominates
268 // everything in the block.
269 if (isa<PHINode>(UserInst))
270 return true;
271
272 // Otherwise, just loop through the basic block until we find Def or User.
273 BasicBlock::const_iterator I = DefBB->begin();
274 for (; &*I != Def && &*I != UserInst; ++I)
275 /*empty*/;
276
277 return &*I != UserInst;
278}
279
280bool DominatorTree::isReachableFromEntry(const Use &U) const {
281 Instruction *I = dyn_cast<Instruction>(U.getUser());
282
283 // ConstantExprs aren't really reachable from the entry block, but they
284 // don't need to be treated like unreachable code either.
285 if (!I) return true;
286
287 // PHI nodes use their operands on their incoming edges.
288 if (PHINode *PN = dyn_cast<PHINode>(I))
289 return isReachableFromEntry(PN->getIncomingBlock(U));
290
291 // Everything else uses their operands in their own block.
292 return isReachableFromEntry(I->getParent());
293}
Chandler Carruth73523022014-01-13 13:07:17 +0000294
295void DominatorTree::verifyDomTree() const {
Jakub Kuderski069e5cfa2017-06-30 16:33:04 +0000296 // Perform the expensive checks only when VerifyDomInfo is set.
297 if (VerifyDomInfo && !verify()) {
Jakub Kuderskif9223362017-06-29 17:45:51 +0000298 errs() << "\n~~~~~~~~~~~\n\t\tDomTree verification failed!\n~~~~~~~~~~~\n";
299 print(errs());
300 abort();
301 }
302
Chandler Carruth73523022014-01-13 13:07:17 +0000303 Function &F = *getRoot()->getParent();
304
305 DominatorTree OtherDT;
306 OtherDT.recalculate(F);
307 if (compare(OtherDT)) {
308 errs() << "DominatorTree is not up to date!\nComputed:\n";
309 print(errs());
310 errs() << "\nActual:\n";
311 OtherDT.print(errs());
312 abort();
313 }
314}
315
316//===----------------------------------------------------------------------===//
Chandler Carruth64764b42015-01-14 10:19:28 +0000317// DominatorTreeAnalysis and related pass implementations
318//===----------------------------------------------------------------------===//
319//
320// This implements the DominatorTreeAnalysis which is used with the new pass
321// manager. It also implements some methods from utility passes.
322//
323//===----------------------------------------------------------------------===//
324
Chandler Carruth164a2aa62016-06-17 00:11:01 +0000325DominatorTree DominatorTreeAnalysis::run(Function &F,
Sean Silva36e0d012016-08-09 00:28:15 +0000326 FunctionAnalysisManager &) {
Chandler Carruth64764b42015-01-14 10:19:28 +0000327 DominatorTree DT;
328 DT.recalculate(F);
329 return DT;
330}
331
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000332AnalysisKey DominatorTreeAnalysis::Key;
NAKAMURA Takumidf0cd722016-02-28 17:17:00 +0000333
Chandler Carruth64764b42015-01-14 10:19:28 +0000334DominatorTreePrinterPass::DominatorTreePrinterPass(raw_ostream &OS) : OS(OS) {}
335
336PreservedAnalyses DominatorTreePrinterPass::run(Function &F,
Chandler Carruthb47f8012016-03-11 11:05:24 +0000337 FunctionAnalysisManager &AM) {
Chandler Carruth64764b42015-01-14 10:19:28 +0000338 OS << "DominatorTree for function: " << F.getName() << "\n";
Chandler Carruthb47f8012016-03-11 11:05:24 +0000339 AM.getResult<DominatorTreeAnalysis>(F).print(OS);
Chandler Carruth64764b42015-01-14 10:19:28 +0000340
341 return PreservedAnalyses::all();
342}
343
344PreservedAnalyses DominatorTreeVerifierPass::run(Function &F,
Chandler Carruthb47f8012016-03-11 11:05:24 +0000345 FunctionAnalysisManager &AM) {
346 AM.getResult<DominatorTreeAnalysis>(F).verifyDomTree();
Chandler Carruth64764b42015-01-14 10:19:28 +0000347
348 return PreservedAnalyses::all();
349}
350
351//===----------------------------------------------------------------------===//
Chandler Carruth73523022014-01-13 13:07:17 +0000352// DominatorTreeWrapperPass Implementation
353//===----------------------------------------------------------------------===//
354//
Chandler Carruth64764b42015-01-14 10:19:28 +0000355// The implementation details of the wrapper pass that holds a DominatorTree
356// suitable for use with the legacy pass manager.
Chandler Carruth73523022014-01-13 13:07:17 +0000357//
358//===----------------------------------------------------------------------===//
359
360char DominatorTreeWrapperPass::ID = 0;
361INITIALIZE_PASS(DominatorTreeWrapperPass, "domtree",
362 "Dominator Tree Construction", true, true)
363
364bool DominatorTreeWrapperPass::runOnFunction(Function &F) {
365 DT.recalculate(F);
366 return false;
367}
368
Adam Nemete340f852015-05-06 08:18:41 +0000369void DominatorTreeWrapperPass::verifyAnalysis() const {
370 if (VerifyDomInfo)
371 DT.verifyDomTree();
372}
Chandler Carruth73523022014-01-13 13:07:17 +0000373
374void DominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const {
375 DT.print(OS);
376}
377