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