blob: cf9f5759ba5339231191864f23393cc130151a36 [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"
Nico Weber432a3882018-04-30 14:59:11 +000020#include "llvm/Config/llvm-config.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000021#include "llvm/IR/CFG.h"
Brian M. Rzycki9b7ae232018-01-12 21:06:48 +000022#include "llvm/IR/Constants.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/Instructions.h"
Chandler Carruth64764b42015-01-14 10:19:28 +000024#include "llvm/IR/PassManager.h"
Dan Gohman4dbb3012009-09-28 00:27:48 +000025#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000026#include "llvm/Support/Debug.h"
Chandler Carruthe509db42014-01-13 10:52:56 +000027#include "llvm/Support/GenericDomTreeConstruction.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000028#include "llvm/Support/raw_ostream.h"
Chris Lattnerc5e0be62004-06-05 00:24:59 +000029#include <algorithm>
Chris Lattner189d19f2003-11-21 20:23:48 +000030using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000031
Serge Pavlov69b3ff92017-01-24 05:52:07 +000032bool llvm::VerifyDomInfo = false;
Zachary Turner8065f0b2017-12-01 00:53:10 +000033static cl::opt<bool, true>
34 VerifyDomInfoX("verify-dom-info", cl::location(VerifyDomInfo), cl::Hidden,
35 cl::desc("Verify dominator info (time consuming)"));
Dan Gohman4dbb3012009-09-28 00:27:48 +000036
Jakub Kuderskiffb4fb72018-01-24 02:40:35 +000037#ifdef EXPENSIVE_CHECKS
38static constexpr bool ExpensiveChecksEnabled = true;
39#else
40static constexpr bool ExpensiveChecksEnabled = false;
41#endif
42
Rafael Espindolacc80cde2012-08-16 15:09:43 +000043bool BasicBlockEdge::isSingleEdge() const {
Chandler Carruthedb12a82018-10-15 10:04:59 +000044 const Instruction *TI = Start->getTerminator();
Rafael Espindolacc80cde2012-08-16 15:09:43 +000045 unsigned NumEdgesToEnd = 0;
46 for (unsigned int i = 0, n = TI->getNumSuccessors(); i < n; ++i) {
47 if (TI->getSuccessor(i) == End)
48 ++NumEdgesToEnd;
49 if (NumEdgesToEnd >= 2)
50 return false;
51 }
52 assert(NumEdgesToEnd == 1);
53 return true;
Rafael Espindola11870772012-08-10 14:05:55 +000054}
55
Chris Lattnerc385beb2001-07-06 16:58:22 +000056//===----------------------------------------------------------------------===//
Owen Andersonf35a1db2007-04-15 08:47:27 +000057// DominatorTree Implementation
Chris Lattner00f51672003-12-07 00:38:08 +000058//===----------------------------------------------------------------------===//
59//
Owen Anderson84c357f2007-09-23 21:31:44 +000060// Provide public access to DominatorTree information. Implementation details
Chandler Carruthe509db42014-01-13 10:52:56 +000061// can be found in Dominators.h, GenericDomTree.h, and
62// GenericDomTreeConstruction.h.
Chris Lattner00f51672003-12-07 00:38:08 +000063//
64//===----------------------------------------------------------------------===//
65
Benjamin Kramera667d1a2015-07-13 17:21:31 +000066template class llvm::DomTreeNodeBase<BasicBlock>;
Jakub Kuderskib292c222017-07-14 18:26:09 +000067template class llvm::DominatorTreeBase<BasicBlock, false>; // DomTreeBase
68template class llvm::DominatorTreeBase<BasicBlock, true>; // PostDomTreeBase
Owen Anderson41878012007-10-16 19:59:25 +000069
Alina Sbirlea148c4452018-08-14 17:12:30 +000070template class llvm::cfg::Update<BasicBlock *>;
Jakub Kuderski624463a2017-08-16 16:12:52 +000071
Jakub Kuderskic271dea2017-07-26 18:07:40 +000072template void llvm::DomTreeBuilder::Calculate<DomTreeBuilder::BBDomTree>(
73 DomTreeBuilder::BBDomTree &DT);
Alina Sbirlead4b3f192018-08-16 21:54:33 +000074template void
75llvm::DomTreeBuilder::CalculateWithUpdates<DomTreeBuilder::BBDomTree>(
76 DomTreeBuilder::BBDomTree &DT, BBUpdates U);
77
Jakub Kuderskic271dea2017-07-26 18:07:40 +000078template void llvm::DomTreeBuilder::Calculate<DomTreeBuilder::BBPostDomTree>(
79 DomTreeBuilder::BBPostDomTree &DT);
Alina Sbirlead4b3f192018-08-16 21:54:33 +000080// No CalculateWithUpdates<PostDomTree> instantiation, unless a usecase arises.
Jakub Kuderski5af07f52017-07-13 20:45:32 +000081
Jakub Kuderski13e9ef12017-07-14 21:17:33 +000082template void llvm::DomTreeBuilder::InsertEdge<DomTreeBuilder::BBDomTree>(
83 DomTreeBuilder::BBDomTree &DT, BasicBlock *From, BasicBlock *To);
84template void llvm::DomTreeBuilder::InsertEdge<DomTreeBuilder::BBPostDomTree>(
85 DomTreeBuilder::BBPostDomTree &DT, BasicBlock *From, BasicBlock *To);
86
Jakub Kuderskieb59ff22017-07-14 21:58:53 +000087template void llvm::DomTreeBuilder::DeleteEdge<DomTreeBuilder::BBDomTree>(
88 DomTreeBuilder::BBDomTree &DT, BasicBlock *From, BasicBlock *To);
89template void llvm::DomTreeBuilder::DeleteEdge<DomTreeBuilder::BBPostDomTree>(
90 DomTreeBuilder::BBPostDomTree &DT, BasicBlock *From, BasicBlock *To);
91
Jakub Kuderski624463a2017-08-16 16:12:52 +000092template void llvm::DomTreeBuilder::ApplyUpdates<DomTreeBuilder::BBDomTree>(
93 DomTreeBuilder::BBDomTree &DT, DomTreeBuilder::BBUpdates);
94template void llvm::DomTreeBuilder::ApplyUpdates<DomTreeBuilder::BBPostDomTree>(
95 DomTreeBuilder::BBPostDomTree &DT, DomTreeBuilder::BBUpdates);
96
Jakub Kuderski5af07f52017-07-13 20:45:32 +000097template bool llvm::DomTreeBuilder::Verify<DomTreeBuilder::BBDomTree>(
Jakub Kuderskiffb4fb72018-01-24 02:40:35 +000098 const DomTreeBuilder::BBDomTree &DT,
99 DomTreeBuilder::BBDomTree::VerificationLevel VL);
Jakub Kuderskib292c222017-07-14 18:26:09 +0000100template bool llvm::DomTreeBuilder::Verify<DomTreeBuilder::BBPostDomTree>(
Jakub Kuderskiffb4fb72018-01-24 02:40:35 +0000101 const DomTreeBuilder::BBPostDomTree &DT,
102 DomTreeBuilder::BBPostDomTree::VerificationLevel VL);
Rafael Espindola30616362014-02-14 22:36:16 +0000103
Chandler Carruthca68a3e2017-01-15 06:32:49 +0000104bool DominatorTree::invalidate(Function &F, const PreservedAnalyses &PA,
105 FunctionAnalysisManager::Invalidator &) {
106 // Check whether the analysis, all analyses on functions, or the function's
107 // CFG have been preserved.
108 auto PAC = PA.getChecker<DominatorTreeAnalysis>();
109 return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>() ||
110 PAC.preservedSet<CFGAnalyses>());
111}
112
Rafael Espindola94df2672012-02-26 02:19:19 +0000113// dominates - Return true if Def dominates a use in User. This performs
114// the special checks necessary if Def and User are in the same basic block.
115// Note that Def doesn't dominate a use in Def itself!
116bool DominatorTree::dominates(const Instruction *Def,
117 const Instruction *User) const {
118 const BasicBlock *UseBB = User->getParent();
119 const BasicBlock *DefBB = Def->getParent();
Rafael Espindola082d4822012-02-18 19:46:02 +0000120
Rafael Espindolaa53c46a2012-03-30 16:46:21 +0000121 // Any unreachable use is dominated, even if Def == User.
122 if (!isReachableFromEntry(UseBB))
123 return true;
124
125 // Unreachable definitions don't dominate anything.
126 if (!isReachableFromEntry(DefBB))
127 return false;
Rafael Espindola082d4822012-02-18 19:46:02 +0000128
Rafael Espindola94df2672012-02-26 02:19:19 +0000129 // An instruction doesn't dominate a use in itself.
130 if (Def == User)
Chris Lattner22151ce2009-09-21 22:30:50 +0000131 return false;
Rafael Espindola082d4822012-02-18 19:46:02 +0000132
David Majnemer8a1c45d2015-12-12 05:38:55 +0000133 // The value defined by an invoke dominates an instruction only if it
134 // dominates every instruction in UseBB.
135 // A PHI is dominated only if the instruction dominates every possible use in
136 // the UseBB.
137 if (isa<InvokeInst>(Def) || isa<PHINode>(User))
Rafael Espindola94df2672012-02-26 02:19:19 +0000138 return dominates(Def, UseBB);
139
140 if (DefBB != UseBB)
141 return dominates(DefBB, UseBB);
142
143 // Loop through the basic block until we find Def or User.
144 BasicBlock::const_iterator I = DefBB->begin();
145 for (; &*I != Def && &*I != User; ++I)
Chris Lattner22151ce2009-09-21 22:30:50 +0000146 /*empty*/;
Rafael Espindola082d4822012-02-18 19:46:02 +0000147
Rafael Espindola94df2672012-02-26 02:19:19 +0000148 return &*I == Def;
149}
150
151// true if Def would dominate a use in any instruction in UseBB.
152// note that dominates(Def, Def->getParent()) is false.
153bool DominatorTree::dominates(const Instruction *Def,
154 const BasicBlock *UseBB) const {
155 const BasicBlock *DefBB = Def->getParent();
156
Rafael Espindolaa53c46a2012-03-30 16:46:21 +0000157 // Any unreachable use is dominated, even if DefBB == UseBB.
158 if (!isReachableFromEntry(UseBB))
159 return true;
160
161 // Unreachable definitions don't dominate anything.
162 if (!isReachableFromEntry(DefBB))
163 return false;
Rafael Espindola94df2672012-02-26 02:19:19 +0000164
165 if (DefBB == UseBB)
166 return false;
167
David Majnemer8a1c45d2015-12-12 05:38:55 +0000168 // Invoke results are only usable in the normal destination, not in the
169 // exceptional destination.
David Majnemer0bc0eef2015-08-15 02:46:08 +0000170 if (const auto *II = dyn_cast<InvokeInst>(Def)) {
171 BasicBlock *NormalDest = II->getNormalDest();
172 BasicBlockEdge E(DefBB, NormalDest);
173 return dominates(E, UseBB);
174 }
Rafael Espindola94df2672012-02-26 02:19:19 +0000175
David Majnemer0bc0eef2015-08-15 02:46:08 +0000176 return dominates(DefBB, UseBB);
Rafael Espindola59564072012-08-07 17:30:46 +0000177}
178
179bool DominatorTree::dominates(const BasicBlockEdge &BBE,
180 const BasicBlock *UseBB) const {
181 // If the BB the edge ends in doesn't dominate the use BB, then the
182 // edge also doesn't.
183 const BasicBlock *Start = BBE.getStart();
184 const BasicBlock *End = BBE.getEnd();
185 if (!dominates(End, UseBB))
Rafael Espindola94df2672012-02-26 02:19:19 +0000186 return false;
187
Rafael Espindola59564072012-08-07 17:30:46 +0000188 // Simple case: if the end BB has a single predecessor, the fact that it
189 // dominates the use block implies that the edge also does.
190 if (End->getSinglePredecessor())
Rafael Espindola94df2672012-02-26 02:19:19 +0000191 return true;
192
193 // The normal edge from the invoke is critical. Conceptually, what we would
194 // like to do is split it and check if the new block dominates the use.
195 // With X being the new block, the graph would look like:
196 //
197 // DefBB
198 // /\ . .
199 // / \ . .
200 // / \ . .
201 // / \ | |
202 // A X B C
203 // | \ | /
204 // . \|/
205 // . NormalDest
206 // .
207 //
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +0000208 // Given the definition of dominance, NormalDest is dominated by X iff X
Rafael Espindola94df2672012-02-26 02:19:19 +0000209 // dominates all of NormalDest's predecessors (X, B, C in the example). X
210 // trivially dominates itself, so we only have to find if it dominates the
211 // other predecessors. Since the only way out of X is via NormalDest, X can
212 // only properly dominate a node if NormalDest dominates that node too.
Adam Nemet4ef096b2017-06-05 16:27:09 +0000213 int IsDuplicateEdge = 0;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000214 for (const_pred_iterator PI = pred_begin(End), E = pred_end(End);
215 PI != E; ++PI) {
216 const BasicBlock *BB = *PI;
Adam Nemet4ef096b2017-06-05 16:27:09 +0000217 if (BB == Start) {
218 // If there are multiple edges between Start and End, by definition they
219 // can't dominate anything.
220 if (IsDuplicateEdge++)
221 return false;
Rafael Espindola94df2672012-02-26 02:19:19 +0000222 continue;
Adam Nemet4ef096b2017-06-05 16:27:09 +0000223 }
Rafael Espindola94df2672012-02-26 02:19:19 +0000224
Rafael Espindola59564072012-08-07 17:30:46 +0000225 if (!dominates(End, BB))
Rafael Espindola94df2672012-02-26 02:19:19 +0000226 return false;
227 }
228 return true;
Chris Lattner22151ce2009-09-21 22:30:50 +0000229}
Dan Gohman73273272012-04-12 23:31:46 +0000230
Chandler Carruth73523022014-01-13 13:07:17 +0000231bool DominatorTree::dominates(const BasicBlockEdge &BBE, const Use &U) const {
Rafael Espindola59564072012-08-07 17:30:46 +0000232 Instruction *UserInst = cast<Instruction>(U.getUser());
233 // A PHI in the end of the edge is dominated by it.
234 PHINode *PN = dyn_cast<PHINode>(UserInst);
235 if (PN && PN->getParent() == BBE.getEnd() &&
236 PN->getIncomingBlock(U) == BBE.getStart())
237 return true;
238
239 // Otherwise use the edge-dominates-block query, which
240 // handles the crazy critical edge cases properly.
241 const BasicBlock *UseBB;
242 if (PN)
243 UseBB = PN->getIncomingBlock(U);
244 else
245 UseBB = UserInst->getParent();
246 return dominates(BBE, UseBB);
247}
248
Chandler Carruth73523022014-01-13 13:07:17 +0000249bool DominatorTree::dominates(const Instruction *Def, const Use &U) const {
Rafael Espindola59564072012-08-07 17:30:46 +0000250 Instruction *UserInst = cast<Instruction>(U.getUser());
Dan Gohman73273272012-04-12 23:31:46 +0000251 const BasicBlock *DefBB = Def->getParent();
252
253 // Determine the block in which the use happens. PHI nodes use
254 // their operands on edges; simulate this by thinking of the use
255 // happening at the end of the predecessor block.
256 const BasicBlock *UseBB;
257 if (PHINode *PN = dyn_cast<PHINode>(UserInst))
258 UseBB = PN->getIncomingBlock(U);
259 else
260 UseBB = UserInst->getParent();
261
262 // Any unreachable use is dominated, even if Def == User.
263 if (!isReachableFromEntry(UseBB))
264 return true;
265
266 // Unreachable definitions don't dominate anything.
267 if (!isReachableFromEntry(DefBB))
268 return false;
269
David Majnemer8a1c45d2015-12-12 05:38:55 +0000270 // Invoke instructions define their return values on the edges to their normal
271 // successors, so we have to handle them specially.
Dan Gohman73273272012-04-12 23:31:46 +0000272 // Among other things, this means they don't dominate anything in
273 // their own block, except possibly a phi, so we don't need to
274 // walk the block in any case.
275 if (const InvokeInst *II = dyn_cast<InvokeInst>(Def)) {
Rafael Espindola59564072012-08-07 17:30:46 +0000276 BasicBlock *NormalDest = II->getNormalDest();
277 BasicBlockEdge E(DefBB, NormalDest);
278 return dominates(E, U);
Dan Gohman73273272012-04-12 23:31:46 +0000279 }
280
281 // If the def and use are in different blocks, do a simple CFG dominator
282 // tree query.
283 if (DefBB != UseBB)
284 return dominates(DefBB, UseBB);
285
286 // Ok, def and use are in the same block. If the def is an invoke, it
287 // doesn't dominate anything in the block. If it's a PHI, it dominates
288 // everything in the block.
289 if (isa<PHINode>(UserInst))
290 return true;
291
292 // Otherwise, just loop through the basic block until we find Def or User.
293 BasicBlock::const_iterator I = DefBB->begin();
294 for (; &*I != Def && &*I != UserInst; ++I)
295 /*empty*/;
296
297 return &*I != UserInst;
298}
299
300bool DominatorTree::isReachableFromEntry(const Use &U) const {
301 Instruction *I = dyn_cast<Instruction>(U.getUser());
302
303 // ConstantExprs aren't really reachable from the entry block, but they
304 // don't need to be treated like unreachable code either.
305 if (!I) return true;
306
307 // PHI nodes use their operands on their incoming edges.
308 if (PHINode *PN = dyn_cast<PHINode>(I))
309 return isReachableFromEntry(PN->getIncomingBlock(U));
310
311 // Everything else uses their operands in their own block.
312 return isReachableFromEntry(I->getParent());
313}
Chandler Carruth73523022014-01-13 13:07:17 +0000314
Chandler Carruth73523022014-01-13 13:07:17 +0000315//===----------------------------------------------------------------------===//
Chandler Carruth64764b42015-01-14 10:19:28 +0000316// DominatorTreeAnalysis and related pass implementations
317//===----------------------------------------------------------------------===//
318//
319// This implements the DominatorTreeAnalysis which is used with the new pass
320// manager. It also implements some methods from utility passes.
321//
322//===----------------------------------------------------------------------===//
323
Chandler Carruth164a2aa62016-06-17 00:11:01 +0000324DominatorTree DominatorTreeAnalysis::run(Function &F,
Sean Silva36e0d012016-08-09 00:28:15 +0000325 FunctionAnalysisManager &) {
Chandler Carruth64764b42015-01-14 10:19:28 +0000326 DominatorTree DT;
327 DT.recalculate(F);
328 return DT;
329}
330
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000331AnalysisKey DominatorTreeAnalysis::Key;
NAKAMURA Takumidf0cd722016-02-28 17:17:00 +0000332
Chandler Carruth64764b42015-01-14 10:19:28 +0000333DominatorTreePrinterPass::DominatorTreePrinterPass(raw_ostream &OS) : OS(OS) {}
334
335PreservedAnalyses DominatorTreePrinterPass::run(Function &F,
Chandler Carruthb47f8012016-03-11 11:05:24 +0000336 FunctionAnalysisManager &AM) {
Chandler Carruth64764b42015-01-14 10:19:28 +0000337 OS << "DominatorTree for function: " << F.getName() << "\n";
Chandler Carruthb47f8012016-03-11 11:05:24 +0000338 AM.getResult<DominatorTreeAnalysis>(F).print(OS);
Chandler Carruth64764b42015-01-14 10:19:28 +0000339
340 return PreservedAnalyses::all();
341}
342
343PreservedAnalyses DominatorTreeVerifierPass::run(Function &F,
Chandler Carruthb47f8012016-03-11 11:05:24 +0000344 FunctionAnalysisManager &AM) {
David Green7c35de12018-02-28 11:00:08 +0000345 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
346 assert(DT.verify());
347 (void)DT;
Chandler Carruth64764b42015-01-14 10:19:28 +0000348 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 {
David Green7c35de12018-02-28 11:00:08 +0000370 if (VerifyDomInfo)
371 assert(DT.verify(DominatorTree::VerificationLevel::Full));
372 else if (ExpensiveChecksEnabled)
373 assert(DT.verify(DominatorTree::VerificationLevel::Basic));
Adam Nemete340f852015-05-06 08:18:41 +0000374}
Chandler Carruth73523022014-01-13 13:07:17 +0000375
376void DominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const {
377 DT.print(OS);
378}
379