Chris Lattner | d43023a | 2002-08-02 16:43:03 +0000 | [diff] [blame] | 1 | //===- Dominators.cpp - Dominator Calculation -----------------------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 081aabc | 2001-07-02 05:46:38 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | d43023a | 2002-08-02 16:43:03 +0000 | [diff] [blame] | 10 | // 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 Lattner | 081aabc | 2001-07-02 05:46:38 +0000 | [diff] [blame] | 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 17 | #include "llvm/IR/Dominators.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/DepthFirstIterator.h" |
Devang Patel | 5a1bd40 | 2007-03-27 20:50:46 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallPtrSet.h" |
Chandler Carruth | 1305dc3 | 2014-03-04 11:45:46 +0000 | [diff] [blame] | 20 | #include "llvm/IR/CFG.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Instructions.h" |
Chandler Carruth | 64764b4 | 2015-01-14 10:19:28 +0000 | [diff] [blame] | 22 | #include "llvm/IR/PassManager.h" |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 23 | #include "llvm/Support/CommandLine.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 24 | #include "llvm/Support/Debug.h" |
Chandler Carruth | e509db4 | 2014-01-13 10:52:56 +0000 | [diff] [blame] | 25 | #include "llvm/Support/GenericDomTreeConstruction.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 26 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | c5e0be6 | 2004-06-05 00:24:59 +0000 | [diff] [blame] | 27 | #include <algorithm> |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 28 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 29 | |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 30 | // Always verify dominfo if expensive checking is enabled. |
Filipe Cabecinhas | 0da9937 | 2016-04-29 15:22:48 +0000 | [diff] [blame] | 31 | #ifdef EXPENSIVE_CHECKS |
Serge Pavlov | 69b3ff9 | 2017-01-24 05:52:07 +0000 | [diff] [blame] | 32 | bool llvm::VerifyDomInfo = true; |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 33 | #else |
Serge Pavlov | 69b3ff9 | 2017-01-24 05:52:07 +0000 | [diff] [blame] | 34 | bool llvm::VerifyDomInfo = false; |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 35 | #endif |
| 36 | static cl::opt<bool,true> |
| 37 | VerifyDomInfoX("verify-dom-info", cl::location(VerifyDomInfo), |
| 38 | cl::desc("Verify dominator info (time consuming)")); |
| 39 | |
Rafael Espindola | cc80cde | 2012-08-16 15:09:43 +0000 | [diff] [blame] | 40 | bool 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 Espindola | 1187077 | 2012-08-10 14:05:55 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Chris Lattner | c385beb | 2001-07-06 16:58:22 +0000 | [diff] [blame] | 53 | //===----------------------------------------------------------------------===// |
Owen Anderson | f35a1db | 2007-04-15 08:47:27 +0000 | [diff] [blame] | 54 | // DominatorTree Implementation |
Chris Lattner | 00f5167 | 2003-12-07 00:38:08 +0000 | [diff] [blame] | 55 | //===----------------------------------------------------------------------===// |
| 56 | // |
Owen Anderson | 84c357f | 2007-09-23 21:31:44 +0000 | [diff] [blame] | 57 | // Provide public access to DominatorTree information. Implementation details |
Chandler Carruth | e509db4 | 2014-01-13 10:52:56 +0000 | [diff] [blame] | 58 | // can be found in Dominators.h, GenericDomTree.h, and |
| 59 | // GenericDomTreeConstruction.h. |
Chris Lattner | 00f5167 | 2003-12-07 00:38:08 +0000 | [diff] [blame] | 60 | // |
| 61 | //===----------------------------------------------------------------------===// |
| 62 | |
Benjamin Kramer | a667d1a | 2015-07-13 17:21:31 +0000 | [diff] [blame] | 63 | template class llvm::DomTreeNodeBase<BasicBlock>; |
Jakub Kuderski | b292c22 | 2017-07-14 18:26:09 +0000 | [diff] [blame^] | 64 | template class llvm::DominatorTreeBase<BasicBlock, false>; // DomTreeBase |
| 65 | template class llvm::DominatorTreeBase<BasicBlock, true>; // PostDomTreeBase |
Owen Anderson | 4187801 | 2007-10-16 19:59:25 +0000 | [diff] [blame] | 66 | |
Jakub Kuderski | 5af07f5 | 2017-07-13 20:45:32 +0000 | [diff] [blame] | 67 | template void |
| 68 | llvm::DomTreeBuilder::Calculate<DomTreeBuilder::BBDomTree, Function>( |
| 69 | DomTreeBuilder::BBDomTree &DT, Function &F); |
Jakub Kuderski | b292c22 | 2017-07-14 18:26:09 +0000 | [diff] [blame^] | 70 | template void |
| 71 | llvm::DomTreeBuilder::Calculate<DomTreeBuilder::BBPostDomTree, Function>( |
| 72 | DomTreeBuilder::BBPostDomTree &DT, Function &F); |
Jakub Kuderski | 5af07f5 | 2017-07-13 20:45:32 +0000 | [diff] [blame] | 73 | |
| 74 | template bool llvm::DomTreeBuilder::Verify<DomTreeBuilder::BBDomTree>( |
| 75 | const DomTreeBuilder::BBDomTree &DT); |
Jakub Kuderski | b292c22 | 2017-07-14 18:26:09 +0000 | [diff] [blame^] | 76 | template bool llvm::DomTreeBuilder::Verify<DomTreeBuilder::BBPostDomTree>( |
| 77 | const DomTreeBuilder::BBPostDomTree &DT); |
Rafael Espindola | 3061636 | 2014-02-14 22:36:16 +0000 | [diff] [blame] | 78 | |
Chandler Carruth | ca68a3e | 2017-01-15 06:32:49 +0000 | [diff] [blame] | 79 | bool DominatorTree::invalidate(Function &F, const PreservedAnalyses &PA, |
| 80 | FunctionAnalysisManager::Invalidator &) { |
| 81 | // Check whether the analysis, all analyses on functions, or the function's |
| 82 | // CFG have been preserved. |
| 83 | auto PAC = PA.getChecker<DominatorTreeAnalysis>(); |
| 84 | return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>() || |
| 85 | PAC.preservedSet<CFGAnalyses>()); |
| 86 | } |
| 87 | |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 88 | // dominates - Return true if Def dominates a use in User. This performs |
| 89 | // the special checks necessary if Def and User are in the same basic block. |
| 90 | // Note that Def doesn't dominate a use in Def itself! |
| 91 | bool DominatorTree::dominates(const Instruction *Def, |
| 92 | const Instruction *User) const { |
| 93 | const BasicBlock *UseBB = User->getParent(); |
| 94 | const BasicBlock *DefBB = Def->getParent(); |
Rafael Espindola | 082d482 | 2012-02-18 19:46:02 +0000 | [diff] [blame] | 95 | |
Rafael Espindola | a53c46a | 2012-03-30 16:46:21 +0000 | [diff] [blame] | 96 | // Any unreachable use is dominated, even if Def == User. |
| 97 | if (!isReachableFromEntry(UseBB)) |
| 98 | return true; |
| 99 | |
| 100 | // Unreachable definitions don't dominate anything. |
| 101 | if (!isReachableFromEntry(DefBB)) |
| 102 | return false; |
Rafael Espindola | 082d482 | 2012-02-18 19:46:02 +0000 | [diff] [blame] | 103 | |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 104 | // An instruction doesn't dominate a use in itself. |
| 105 | if (Def == User) |
Chris Lattner | 22151ce | 2009-09-21 22:30:50 +0000 | [diff] [blame] | 106 | return false; |
Rafael Espindola | 082d482 | 2012-02-18 19:46:02 +0000 | [diff] [blame] | 107 | |
David Majnemer | 8a1c45d | 2015-12-12 05:38:55 +0000 | [diff] [blame] | 108 | // The value defined by an invoke dominates an instruction only if it |
| 109 | // dominates every instruction in UseBB. |
| 110 | // A PHI is dominated only if the instruction dominates every possible use in |
| 111 | // the UseBB. |
| 112 | if (isa<InvokeInst>(Def) || isa<PHINode>(User)) |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 113 | return dominates(Def, UseBB); |
| 114 | |
| 115 | if (DefBB != UseBB) |
| 116 | return dominates(DefBB, UseBB); |
| 117 | |
| 118 | // Loop through the basic block until we find Def or User. |
| 119 | BasicBlock::const_iterator I = DefBB->begin(); |
| 120 | for (; &*I != Def && &*I != User; ++I) |
Chris Lattner | 22151ce | 2009-09-21 22:30:50 +0000 | [diff] [blame] | 121 | /*empty*/; |
Rafael Espindola | 082d482 | 2012-02-18 19:46:02 +0000 | [diff] [blame] | 122 | |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 123 | return &*I == Def; |
| 124 | } |
| 125 | |
| 126 | // true if Def would dominate a use in any instruction in UseBB. |
| 127 | // note that dominates(Def, Def->getParent()) is false. |
| 128 | bool DominatorTree::dominates(const Instruction *Def, |
| 129 | const BasicBlock *UseBB) const { |
| 130 | const BasicBlock *DefBB = Def->getParent(); |
| 131 | |
Rafael Espindola | a53c46a | 2012-03-30 16:46:21 +0000 | [diff] [blame] | 132 | // Any unreachable use is dominated, even if DefBB == UseBB. |
| 133 | if (!isReachableFromEntry(UseBB)) |
| 134 | return true; |
| 135 | |
| 136 | // Unreachable definitions don't dominate anything. |
| 137 | if (!isReachableFromEntry(DefBB)) |
| 138 | return false; |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 139 | |
| 140 | if (DefBB == UseBB) |
| 141 | return false; |
| 142 | |
David Majnemer | 8a1c45d | 2015-12-12 05:38:55 +0000 | [diff] [blame] | 143 | // Invoke results are only usable in the normal destination, not in the |
| 144 | // exceptional destination. |
David Majnemer | 0bc0eef | 2015-08-15 02:46:08 +0000 | [diff] [blame] | 145 | if (const auto *II = dyn_cast<InvokeInst>(Def)) { |
| 146 | BasicBlock *NormalDest = II->getNormalDest(); |
| 147 | BasicBlockEdge E(DefBB, NormalDest); |
| 148 | return dominates(E, UseBB); |
| 149 | } |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 150 | |
David Majnemer | 0bc0eef | 2015-08-15 02:46:08 +0000 | [diff] [blame] | 151 | return dominates(DefBB, UseBB); |
Rafael Espindola | 5956407 | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | bool DominatorTree::dominates(const BasicBlockEdge &BBE, |
| 155 | const BasicBlock *UseBB) const { |
| 156 | // If the BB the edge ends in doesn't dominate the use BB, then the |
| 157 | // edge also doesn't. |
| 158 | const BasicBlock *Start = BBE.getStart(); |
| 159 | const BasicBlock *End = BBE.getEnd(); |
| 160 | if (!dominates(End, UseBB)) |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 161 | return false; |
| 162 | |
Rafael Espindola | 5956407 | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 163 | // Simple case: if the end BB has a single predecessor, the fact that it |
| 164 | // dominates the use block implies that the edge also does. |
| 165 | if (End->getSinglePredecessor()) |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 166 | return true; |
| 167 | |
| 168 | // The normal edge from the invoke is critical. Conceptually, what we would |
| 169 | // like to do is split it and check if the new block dominates the use. |
| 170 | // With X being the new block, the graph would look like: |
| 171 | // |
| 172 | // DefBB |
| 173 | // /\ . . |
| 174 | // / \ . . |
| 175 | // / \ . . |
| 176 | // / \ | | |
| 177 | // A X B C |
| 178 | // | \ | / |
| 179 | // . \|/ |
| 180 | // . NormalDest |
| 181 | // . |
| 182 | // |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 183 | // Given the definition of dominance, NormalDest is dominated by X iff X |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 184 | // dominates all of NormalDest's predecessors (X, B, C in the example). X |
| 185 | // trivially dominates itself, so we only have to find if it dominates the |
| 186 | // other predecessors. Since the only way out of X is via NormalDest, X can |
| 187 | // only properly dominate a node if NormalDest dominates that node too. |
Adam Nemet | 4ef096b | 2017-06-05 16:27:09 +0000 | [diff] [blame] | 188 | int IsDuplicateEdge = 0; |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 189 | for (const_pred_iterator PI = pred_begin(End), E = pred_end(End); |
| 190 | PI != E; ++PI) { |
| 191 | const BasicBlock *BB = *PI; |
Adam Nemet | 4ef096b | 2017-06-05 16:27:09 +0000 | [diff] [blame] | 192 | if (BB == Start) { |
| 193 | // If there are multiple edges between Start and End, by definition they |
| 194 | // can't dominate anything. |
| 195 | if (IsDuplicateEdge++) |
| 196 | return false; |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 197 | continue; |
Adam Nemet | 4ef096b | 2017-06-05 16:27:09 +0000 | [diff] [blame] | 198 | } |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 199 | |
Rafael Espindola | 5956407 | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 200 | if (!dominates(End, BB)) |
Rafael Espindola | 94df267 | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 201 | return false; |
| 202 | } |
| 203 | return true; |
Chris Lattner | 22151ce | 2009-09-21 22:30:50 +0000 | [diff] [blame] | 204 | } |
Dan Gohman | 7327327 | 2012-04-12 23:31:46 +0000 | [diff] [blame] | 205 | |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 206 | bool DominatorTree::dominates(const BasicBlockEdge &BBE, const Use &U) const { |
Rafael Espindola | 5956407 | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 207 | Instruction *UserInst = cast<Instruction>(U.getUser()); |
| 208 | // A PHI in the end of the edge is dominated by it. |
| 209 | PHINode *PN = dyn_cast<PHINode>(UserInst); |
| 210 | if (PN && PN->getParent() == BBE.getEnd() && |
| 211 | PN->getIncomingBlock(U) == BBE.getStart()) |
| 212 | return true; |
| 213 | |
| 214 | // Otherwise use the edge-dominates-block query, which |
| 215 | // handles the crazy critical edge cases properly. |
| 216 | const BasicBlock *UseBB; |
| 217 | if (PN) |
| 218 | UseBB = PN->getIncomingBlock(U); |
| 219 | else |
| 220 | UseBB = UserInst->getParent(); |
| 221 | return dominates(BBE, UseBB); |
| 222 | } |
| 223 | |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 224 | bool DominatorTree::dominates(const Instruction *Def, const Use &U) const { |
Rafael Espindola | 5956407 | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 225 | Instruction *UserInst = cast<Instruction>(U.getUser()); |
Dan Gohman | 7327327 | 2012-04-12 23:31:46 +0000 | [diff] [blame] | 226 | const BasicBlock *DefBB = Def->getParent(); |
| 227 | |
| 228 | // Determine the block in which the use happens. PHI nodes use |
| 229 | // their operands on edges; simulate this by thinking of the use |
| 230 | // happening at the end of the predecessor block. |
| 231 | const BasicBlock *UseBB; |
| 232 | if (PHINode *PN = dyn_cast<PHINode>(UserInst)) |
| 233 | UseBB = PN->getIncomingBlock(U); |
| 234 | else |
| 235 | UseBB = UserInst->getParent(); |
| 236 | |
| 237 | // Any unreachable use is dominated, even if Def == User. |
| 238 | if (!isReachableFromEntry(UseBB)) |
| 239 | return true; |
| 240 | |
| 241 | // Unreachable definitions don't dominate anything. |
| 242 | if (!isReachableFromEntry(DefBB)) |
| 243 | return false; |
| 244 | |
David Majnemer | 8a1c45d | 2015-12-12 05:38:55 +0000 | [diff] [blame] | 245 | // Invoke instructions define their return values on the edges to their normal |
| 246 | // successors, so we have to handle them specially. |
Dan Gohman | 7327327 | 2012-04-12 23:31:46 +0000 | [diff] [blame] | 247 | // Among other things, this means they don't dominate anything in |
| 248 | // their own block, except possibly a phi, so we don't need to |
| 249 | // walk the block in any case. |
| 250 | if (const InvokeInst *II = dyn_cast<InvokeInst>(Def)) { |
Rafael Espindola | 5956407 | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 251 | BasicBlock *NormalDest = II->getNormalDest(); |
| 252 | BasicBlockEdge E(DefBB, NormalDest); |
| 253 | return dominates(E, U); |
Dan Gohman | 7327327 | 2012-04-12 23:31:46 +0000 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | // If the def and use are in different blocks, do a simple CFG dominator |
| 257 | // tree query. |
| 258 | if (DefBB != UseBB) |
| 259 | return dominates(DefBB, UseBB); |
| 260 | |
| 261 | // Ok, def and use are in the same block. If the def is an invoke, it |
| 262 | // doesn't dominate anything in the block. If it's a PHI, it dominates |
| 263 | // everything in the block. |
| 264 | if (isa<PHINode>(UserInst)) |
| 265 | return true; |
| 266 | |
| 267 | // Otherwise, just loop through the basic block until we find Def or User. |
| 268 | BasicBlock::const_iterator I = DefBB->begin(); |
| 269 | for (; &*I != Def && &*I != UserInst; ++I) |
| 270 | /*empty*/; |
| 271 | |
| 272 | return &*I != UserInst; |
| 273 | } |
| 274 | |
| 275 | bool DominatorTree::isReachableFromEntry(const Use &U) const { |
| 276 | Instruction *I = dyn_cast<Instruction>(U.getUser()); |
| 277 | |
| 278 | // ConstantExprs aren't really reachable from the entry block, but they |
| 279 | // don't need to be treated like unreachable code either. |
| 280 | if (!I) return true; |
| 281 | |
| 282 | // PHI nodes use their operands on their incoming edges. |
| 283 | if (PHINode *PN = dyn_cast<PHINode>(I)) |
| 284 | return isReachableFromEntry(PN->getIncomingBlock(U)); |
| 285 | |
| 286 | // Everything else uses their operands in their own block. |
| 287 | return isReachableFromEntry(I->getParent()); |
| 288 | } |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 289 | |
| 290 | void DominatorTree::verifyDomTree() const { |
Jakub Kuderski | 069e5cfa | 2017-06-30 16:33:04 +0000 | [diff] [blame] | 291 | // Perform the expensive checks only when VerifyDomInfo is set. |
| 292 | if (VerifyDomInfo && !verify()) { |
Jakub Kuderski | f922336 | 2017-06-29 17:45:51 +0000 | [diff] [blame] | 293 | errs() << "\n~~~~~~~~~~~\n\t\tDomTree verification failed!\n~~~~~~~~~~~\n"; |
| 294 | print(errs()); |
| 295 | abort(); |
| 296 | } |
| 297 | |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 298 | Function &F = *getRoot()->getParent(); |
| 299 | |
| 300 | DominatorTree OtherDT; |
| 301 | OtherDT.recalculate(F); |
| 302 | if (compare(OtherDT)) { |
| 303 | errs() << "DominatorTree is not up to date!\nComputed:\n"; |
| 304 | print(errs()); |
| 305 | errs() << "\nActual:\n"; |
| 306 | OtherDT.print(errs()); |
| 307 | abort(); |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | //===----------------------------------------------------------------------===// |
Chandler Carruth | 64764b4 | 2015-01-14 10:19:28 +0000 | [diff] [blame] | 312 | // DominatorTreeAnalysis and related pass implementations |
| 313 | //===----------------------------------------------------------------------===// |
| 314 | // |
| 315 | // This implements the DominatorTreeAnalysis which is used with the new pass |
| 316 | // manager. It also implements some methods from utility passes. |
| 317 | // |
| 318 | //===----------------------------------------------------------------------===// |
| 319 | |
Chandler Carruth | 164a2aa6 | 2016-06-17 00:11:01 +0000 | [diff] [blame] | 320 | DominatorTree DominatorTreeAnalysis::run(Function &F, |
Sean Silva | 36e0d01 | 2016-08-09 00:28:15 +0000 | [diff] [blame] | 321 | FunctionAnalysisManager &) { |
Chandler Carruth | 64764b4 | 2015-01-14 10:19:28 +0000 | [diff] [blame] | 322 | DominatorTree DT; |
| 323 | DT.recalculate(F); |
| 324 | return DT; |
| 325 | } |
| 326 | |
Chandler Carruth | dab4eae | 2016-11-23 17:53:26 +0000 | [diff] [blame] | 327 | AnalysisKey DominatorTreeAnalysis::Key; |
NAKAMURA Takumi | df0cd72 | 2016-02-28 17:17:00 +0000 | [diff] [blame] | 328 | |
Chandler Carruth | 64764b4 | 2015-01-14 10:19:28 +0000 | [diff] [blame] | 329 | DominatorTreePrinterPass::DominatorTreePrinterPass(raw_ostream &OS) : OS(OS) {} |
| 330 | |
| 331 | PreservedAnalyses DominatorTreePrinterPass::run(Function &F, |
Chandler Carruth | b47f801 | 2016-03-11 11:05:24 +0000 | [diff] [blame] | 332 | FunctionAnalysisManager &AM) { |
Chandler Carruth | 64764b4 | 2015-01-14 10:19:28 +0000 | [diff] [blame] | 333 | OS << "DominatorTree for function: " << F.getName() << "\n"; |
Chandler Carruth | b47f801 | 2016-03-11 11:05:24 +0000 | [diff] [blame] | 334 | AM.getResult<DominatorTreeAnalysis>(F).print(OS); |
Chandler Carruth | 64764b4 | 2015-01-14 10:19:28 +0000 | [diff] [blame] | 335 | |
| 336 | return PreservedAnalyses::all(); |
| 337 | } |
| 338 | |
| 339 | PreservedAnalyses DominatorTreeVerifierPass::run(Function &F, |
Chandler Carruth | b47f801 | 2016-03-11 11:05:24 +0000 | [diff] [blame] | 340 | FunctionAnalysisManager &AM) { |
| 341 | AM.getResult<DominatorTreeAnalysis>(F).verifyDomTree(); |
Chandler Carruth | 64764b4 | 2015-01-14 10:19:28 +0000 | [diff] [blame] | 342 | |
| 343 | return PreservedAnalyses::all(); |
| 344 | } |
| 345 | |
| 346 | //===----------------------------------------------------------------------===// |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 347 | // DominatorTreeWrapperPass Implementation |
| 348 | //===----------------------------------------------------------------------===// |
| 349 | // |
Chandler Carruth | 64764b4 | 2015-01-14 10:19:28 +0000 | [diff] [blame] | 350 | // The implementation details of the wrapper pass that holds a DominatorTree |
| 351 | // suitable for use with the legacy pass manager. |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 352 | // |
| 353 | //===----------------------------------------------------------------------===// |
| 354 | |
| 355 | char DominatorTreeWrapperPass::ID = 0; |
| 356 | INITIALIZE_PASS(DominatorTreeWrapperPass, "domtree", |
| 357 | "Dominator Tree Construction", true, true) |
| 358 | |
| 359 | bool DominatorTreeWrapperPass::runOnFunction(Function &F) { |
| 360 | DT.recalculate(F); |
| 361 | return false; |
| 362 | } |
| 363 | |
Adam Nemet | e340f85 | 2015-05-06 08:18:41 +0000 | [diff] [blame] | 364 | void DominatorTreeWrapperPass::verifyAnalysis() const { |
| 365 | if (VerifyDomInfo) |
| 366 | DT.verifyDomTree(); |
| 367 | } |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 368 | |
| 369 | void DominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const { |
| 370 | DT.print(OS); |
| 371 | } |
| 372 | |