Chris Lattner | 4c9df7c | 2002-08-02 16:43:03 +0000 | [diff] [blame] | 1 | //===- Dominators.cpp - Dominator Calculation -----------------------------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 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 | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 1715229 | 2001-07-02 05:46:38 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 4c9df7c | 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 | 1715229 | 2001-07-02 05:46:38 +0000 | [diff] [blame] | 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Cameron Zwarich | 4676599 | 2011-01-18 06:06:27 +0000 | [diff] [blame] | 17 | #include "llvm/Analysis/Dominators.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/DepthFirstIterator.h" |
Devang Patel | 2ad28e6 | 2007-03-27 20:50:46 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallPtrSet.h" |
Chris Lattner | 3e089ae | 2007-08-08 05:51:24 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallVector.h" |
Owen Anderson | 9cb7f49 | 2007-10-03 21:25:45 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/DominatorInternals.h" |
Chris Lattner | 9fc5cdf | 2011-01-02 22:09:33 +0000 | [diff] [blame] | 22 | #include "llvm/Assembly/Writer.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 23 | #include "llvm/IR/Instructions.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 24 | #include "llvm/Support/CFG.h" |
Dan Gohman | 9450b0e | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 25 | #include "llvm/Support/CommandLine.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Compiler.h" |
| 27 | #include "llvm/Support/Debug.h" |
| 28 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | 8e72749 | 2004-06-05 00:24:59 +0000 | [diff] [blame] | 29 | #include <algorithm> |
Chris Lattner | 31f8499 | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 30 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 31 | |
Dan Gohman | 9450b0e | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 32 | // Always verify dominfo if expensive checking is enabled. |
| 33 | #ifdef XDEBUG |
Dan Gohman | b357983 | 2010-04-15 17:08:50 +0000 | [diff] [blame] | 34 | static bool VerifyDomInfo = true; |
Dan Gohman | 9450b0e | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 35 | #else |
Dan Gohman | b357983 | 2010-04-15 17:08:50 +0000 | [diff] [blame] | 36 | static bool VerifyDomInfo = false; |
Dan Gohman | 9450b0e | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 37 | #endif |
| 38 | static cl::opt<bool,true> |
| 39 | VerifyDomInfoX("verify-dom-info", cl::location(VerifyDomInfo), |
| 40 | cl::desc("Verify dominator info (time consuming)")); |
| 41 | |
Rafael Espindola | 0513059 | 2012-08-16 15:09:43 +0000 | [diff] [blame] | 42 | bool BasicBlockEdge::isSingleEdge() const { |
| 43 | const TerminatorInst *TI = Start->getTerminator(); |
| 44 | unsigned NumEdgesToEnd = 0; |
| 45 | for (unsigned int i = 0, n = TI->getNumSuccessors(); i < n; ++i) { |
| 46 | if (TI->getSuccessor(i) == End) |
| 47 | ++NumEdgesToEnd; |
| 48 | if (NumEdgesToEnd >= 2) |
| 49 | return false; |
| 50 | } |
| 51 | assert(NumEdgesToEnd == 1); |
| 52 | return true; |
Rafael Espindola | 25ac751 | 2012-08-10 14:05:55 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Chris Lattner | 94108ab | 2001-07-06 16:58:22 +0000 | [diff] [blame] | 55 | //===----------------------------------------------------------------------===// |
Owen Anderson | 3dc6776 | 2007-04-15 08:47:27 +0000 | [diff] [blame] | 56 | // DominatorTree Implementation |
Chris Lattner | 16addf8 | 2003-12-07 00:38:08 +0000 | [diff] [blame] | 57 | //===----------------------------------------------------------------------===// |
| 58 | // |
Owen Anderson | d20c824 | 2007-09-23 21:31:44 +0000 | [diff] [blame] | 59 | // Provide public access to DominatorTree information. Implementation details |
Cameron Zwarich | a9ba456 | 2011-01-20 03:58:43 +0000 | [diff] [blame] | 60 | // can be found in DominatorInternals.h. |
Chris Lattner | 16addf8 | 2003-12-07 00:38:08 +0000 | [diff] [blame] | 61 | // |
| 62 | //===----------------------------------------------------------------------===// |
| 63 | |
John McCall | c63ca0a | 2009-12-19 00:55:12 +0000 | [diff] [blame] | 64 | TEMPLATE_INSTANTIATION(class llvm::DomTreeNodeBase<BasicBlock>); |
| 65 | TEMPLATE_INSTANTIATION(class llvm::DominatorTreeBase<BasicBlock>); |
Owen Anderson | 49b653a | 2007-10-16 19:59:25 +0000 | [diff] [blame] | 66 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 67 | char DominatorTree::ID = 0; |
Owen Anderson | d13db2c | 2010-07-21 22:09:45 +0000 | [diff] [blame] | 68 | INITIALIZE_PASS(DominatorTree, "domtree", |
Owen Anderson | ce665bd | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 69 | "Dominator Tree Construction", true, true) |
Chris Lattner | 16addf8 | 2003-12-07 00:38:08 +0000 | [diff] [blame] | 70 | |
Owen Anderson | 3dc6776 | 2007-04-15 08:47:27 +0000 | [diff] [blame] | 71 | bool DominatorTree::runOnFunction(Function &F) { |
Owen Anderson | d20cc14 | 2007-10-23 20:58:37 +0000 | [diff] [blame] | 72 | DT->recalculate(F); |
Owen Anderson | 3dc6776 | 2007-04-15 08:47:27 +0000 | [diff] [blame] | 73 | return false; |
| 74 | } |
Chris Lattner | 1715229 | 2001-07-02 05:46:38 +0000 | [diff] [blame] | 75 | |
Dan Gohman | 9450b0e | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 76 | void DominatorTree::verifyAnalysis() const { |
Dan Gohman | a9245d6 | 2009-09-28 00:44:15 +0000 | [diff] [blame] | 77 | if (!VerifyDomInfo) return; |
Dan Gohman | 9450b0e | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 78 | |
| 79 | Function &F = *getRoot()->getParent(); |
| 80 | |
| 81 | DominatorTree OtherDT; |
| 82 | OtherDT.getBase().recalculate(F); |
Chris Lattner | 57863b8 | 2011-01-08 19:55:55 +0000 | [diff] [blame] | 83 | if (compare(OtherDT)) { |
Bill Wendling | 0f41587 | 2011-03-29 04:28:26 +0000 | [diff] [blame] | 84 | errs() << "DominatorTree is not up to date!\nComputed:\n"; |
Chris Lattner | 57863b8 | 2011-01-08 19:55:55 +0000 | [diff] [blame] | 85 | print(errs()); |
Chris Lattner | 57863b8 | 2011-01-08 19:55:55 +0000 | [diff] [blame] | 86 | errs() << "\nActual:\n"; |
| 87 | OtherDT.print(errs()); |
| 88 | abort(); |
| 89 | } |
Dan Gohman | 9450b0e | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Chris Lattner | 45cfe54 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 92 | void DominatorTree::print(raw_ostream &OS, const Module *) const { |
| 93 | DT->print(OS); |
Chris Lattner | 791102f | 2009-08-23 05:17:37 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Rafael Espindola | c9ae8cc | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 96 | // dominates - Return true if Def dominates a use in User. This performs |
| 97 | // the special checks necessary if Def and User are in the same basic block. |
| 98 | // Note that Def doesn't dominate a use in Def itself! |
| 99 | bool DominatorTree::dominates(const Instruction *Def, |
| 100 | const Instruction *User) const { |
| 101 | const BasicBlock *UseBB = User->getParent(); |
| 102 | const BasicBlock *DefBB = Def->getParent(); |
Rafael Espindola | b155c23 | 2012-02-18 19:46:02 +0000 | [diff] [blame] | 103 | |
Rafael Espindola | 092c5cc | 2012-03-30 16:46:21 +0000 | [diff] [blame] | 104 | // Any unreachable use is dominated, even if Def == User. |
| 105 | if (!isReachableFromEntry(UseBB)) |
| 106 | return true; |
| 107 | |
| 108 | // Unreachable definitions don't dominate anything. |
| 109 | if (!isReachableFromEntry(DefBB)) |
| 110 | return false; |
Rafael Espindola | b155c23 | 2012-02-18 19:46:02 +0000 | [diff] [blame] | 111 | |
Rafael Espindola | c9ae8cc | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 112 | // An instruction doesn't dominate a use in itself. |
| 113 | if (Def == User) |
Chris Lattner | 75c7c99 | 2009-09-21 22:30:50 +0000 | [diff] [blame] | 114 | return false; |
Rafael Espindola | b155c23 | 2012-02-18 19:46:02 +0000 | [diff] [blame] | 115 | |
Rafael Espindola | c9ae8cc | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 116 | // The value defined by an invoke dominates an instruction only if |
| 117 | // it dominates every instruction in UseBB. |
| 118 | // A PHI is dominated only if the instruction dominates every possible use |
| 119 | // in the UseBB. |
| 120 | if (isa<InvokeInst>(Def) || isa<PHINode>(User)) |
| 121 | return dominates(Def, UseBB); |
| 122 | |
| 123 | if (DefBB != UseBB) |
| 124 | return dominates(DefBB, UseBB); |
| 125 | |
| 126 | // Loop through the basic block until we find Def or User. |
| 127 | BasicBlock::const_iterator I = DefBB->begin(); |
| 128 | for (; &*I != Def && &*I != User; ++I) |
Chris Lattner | 75c7c99 | 2009-09-21 22:30:50 +0000 | [diff] [blame] | 129 | /*empty*/; |
Rafael Espindola | b155c23 | 2012-02-18 19:46:02 +0000 | [diff] [blame] | 130 | |
Rafael Espindola | c9ae8cc | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 131 | return &*I == Def; |
| 132 | } |
| 133 | |
| 134 | // true if Def would dominate a use in any instruction in UseBB. |
| 135 | // note that dominates(Def, Def->getParent()) is false. |
| 136 | bool DominatorTree::dominates(const Instruction *Def, |
| 137 | const BasicBlock *UseBB) const { |
| 138 | const BasicBlock *DefBB = Def->getParent(); |
| 139 | |
Rafael Espindola | 092c5cc | 2012-03-30 16:46:21 +0000 | [diff] [blame] | 140 | // Any unreachable use is dominated, even if DefBB == UseBB. |
| 141 | if (!isReachableFromEntry(UseBB)) |
| 142 | return true; |
| 143 | |
| 144 | // Unreachable definitions don't dominate anything. |
| 145 | if (!isReachableFromEntry(DefBB)) |
| 146 | return false; |
Rafael Espindola | c9ae8cc | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 147 | |
| 148 | if (DefBB == UseBB) |
| 149 | return false; |
| 150 | |
| 151 | const InvokeInst *II = dyn_cast<InvokeInst>(Def); |
| 152 | if (!II) |
| 153 | return dominates(DefBB, UseBB); |
| 154 | |
| 155 | // Invoke results are only usable in the normal destination, not in the |
| 156 | // exceptional destination. |
| 157 | BasicBlock *NormalDest = II->getNormalDest(); |
Rafael Espindola | 702bcce | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 158 | BasicBlockEdge E(DefBB, NormalDest); |
| 159 | return dominates(E, UseBB); |
| 160 | } |
| 161 | |
| 162 | bool DominatorTree::dominates(const BasicBlockEdge &BBE, |
| 163 | const BasicBlock *UseBB) const { |
Rafael Espindola | d5118c8 | 2012-08-17 18:21:28 +0000 | [diff] [blame] | 164 | // Assert that we have a single edge. We could handle them by simply |
| 165 | // returning false, but since isSingleEdge is linear on the number of |
| 166 | // edges, the callers can normally handle them more efficiently. |
| 167 | assert(BBE.isSingleEdge()); |
| 168 | |
Rafael Espindola | 702bcce | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 169 | // If the BB the edge ends in doesn't dominate the use BB, then the |
| 170 | // edge also doesn't. |
| 171 | const BasicBlock *Start = BBE.getStart(); |
| 172 | const BasicBlock *End = BBE.getEnd(); |
| 173 | if (!dominates(End, UseBB)) |
Rafael Espindola | c9ae8cc | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 174 | return false; |
| 175 | |
Rafael Espindola | 702bcce | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 176 | // Simple case: if the end BB has a single predecessor, the fact that it |
| 177 | // dominates the use block implies that the edge also does. |
| 178 | if (End->getSinglePredecessor()) |
Rafael Espindola | c9ae8cc | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 179 | return true; |
| 180 | |
| 181 | // The normal edge from the invoke is critical. Conceptually, what we would |
| 182 | // like to do is split it and check if the new block dominates the use. |
| 183 | // With X being the new block, the graph would look like: |
| 184 | // |
| 185 | // DefBB |
| 186 | // /\ . . |
| 187 | // / \ . . |
| 188 | // / \ . . |
| 189 | // / \ | | |
| 190 | // A X B C |
| 191 | // | \ | / |
| 192 | // . \|/ |
| 193 | // . NormalDest |
| 194 | // . |
| 195 | // |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 196 | // Given the definition of dominance, NormalDest is dominated by X iff X |
Rafael Espindola | c9ae8cc | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 197 | // dominates all of NormalDest's predecessors (X, B, C in the example). X |
| 198 | // trivially dominates itself, so we only have to find if it dominates the |
| 199 | // other predecessors. Since the only way out of X is via NormalDest, X can |
| 200 | // only properly dominate a node if NormalDest dominates that node too. |
Rafael Espindola | 702bcce | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 201 | for (const_pred_iterator PI = pred_begin(End), E = pred_end(End); |
| 202 | PI != E; ++PI) { |
Rafael Espindola | c9ae8cc | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 203 | const BasicBlock *BB = *PI; |
Rafael Espindola | 702bcce | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 204 | if (BB == Start) |
Rafael Espindola | c9ae8cc | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 205 | continue; |
| 206 | |
Rafael Espindola | 702bcce | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 207 | if (!dominates(End, BB)) |
Rafael Espindola | c9ae8cc | 2012-02-26 02:19:19 +0000 | [diff] [blame] | 208 | return false; |
| 209 | } |
| 210 | return true; |
Chris Lattner | 75c7c99 | 2009-09-21 22:30:50 +0000 | [diff] [blame] | 211 | } |
Dan Gohman | 558ece2 | 2012-04-12 23:31:46 +0000 | [diff] [blame] | 212 | |
Rafael Espindola | 702bcce | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 213 | bool DominatorTree::dominates(const BasicBlockEdge &BBE, |
| 214 | const Use &U) const { |
Rafael Espindola | d5118c8 | 2012-08-17 18:21:28 +0000 | [diff] [blame] | 215 | // Assert that we have a single edge. We could handle them by simply |
| 216 | // returning false, but since isSingleEdge is linear on the number of |
| 217 | // edges, the callers can normally handle them more efficiently. |
| 218 | assert(BBE.isSingleEdge()); |
| 219 | |
Rafael Espindola | 702bcce | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 220 | Instruction *UserInst = cast<Instruction>(U.getUser()); |
| 221 | // A PHI in the end of the edge is dominated by it. |
| 222 | PHINode *PN = dyn_cast<PHINode>(UserInst); |
| 223 | if (PN && PN->getParent() == BBE.getEnd() && |
| 224 | PN->getIncomingBlock(U) == BBE.getStart()) |
| 225 | return true; |
| 226 | |
| 227 | // Otherwise use the edge-dominates-block query, which |
| 228 | // handles the crazy critical edge cases properly. |
| 229 | const BasicBlock *UseBB; |
| 230 | if (PN) |
| 231 | UseBB = PN->getIncomingBlock(U); |
| 232 | else |
| 233 | UseBB = UserInst->getParent(); |
| 234 | return dominates(BBE, UseBB); |
| 235 | } |
| 236 | |
Dan Gohman | 558ece2 | 2012-04-12 23:31:46 +0000 | [diff] [blame] | 237 | bool DominatorTree::dominates(const Instruction *Def, |
| 238 | const Use &U) const { |
Rafael Espindola | 702bcce | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 239 | Instruction *UserInst = cast<Instruction>(U.getUser()); |
Dan Gohman | 558ece2 | 2012-04-12 23:31:46 +0000 | [diff] [blame] | 240 | const BasicBlock *DefBB = Def->getParent(); |
| 241 | |
| 242 | // Determine the block in which the use happens. PHI nodes use |
| 243 | // their operands on edges; simulate this by thinking of the use |
| 244 | // happening at the end of the predecessor block. |
| 245 | const BasicBlock *UseBB; |
| 246 | if (PHINode *PN = dyn_cast<PHINode>(UserInst)) |
| 247 | UseBB = PN->getIncomingBlock(U); |
| 248 | else |
| 249 | UseBB = UserInst->getParent(); |
| 250 | |
| 251 | // Any unreachable use is dominated, even if Def == User. |
| 252 | if (!isReachableFromEntry(UseBB)) |
| 253 | return true; |
| 254 | |
| 255 | // Unreachable definitions don't dominate anything. |
| 256 | if (!isReachableFromEntry(DefBB)) |
| 257 | return false; |
| 258 | |
| 259 | // Invoke instructions define their return values on the edges |
| 260 | // to their normal successors, so we have to handle them specially. |
| 261 | // Among other things, this means they don't dominate anything in |
| 262 | // their own block, except possibly a phi, so we don't need to |
| 263 | // walk the block in any case. |
| 264 | if (const InvokeInst *II = dyn_cast<InvokeInst>(Def)) { |
Rafael Espindola | 702bcce | 2012-08-07 17:30:46 +0000 | [diff] [blame] | 265 | BasicBlock *NormalDest = II->getNormalDest(); |
| 266 | BasicBlockEdge E(DefBB, NormalDest); |
| 267 | return dominates(E, U); |
Dan Gohman | 558ece2 | 2012-04-12 23:31:46 +0000 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | // If the def and use are in different blocks, do a simple CFG dominator |
| 271 | // tree query. |
| 272 | if (DefBB != UseBB) |
| 273 | return dominates(DefBB, UseBB); |
| 274 | |
| 275 | // Ok, def and use are in the same block. If the def is an invoke, it |
| 276 | // doesn't dominate anything in the block. If it's a PHI, it dominates |
| 277 | // everything in the block. |
| 278 | if (isa<PHINode>(UserInst)) |
| 279 | return true; |
| 280 | |
| 281 | // Otherwise, just loop through the basic block until we find Def or User. |
| 282 | BasicBlock::const_iterator I = DefBB->begin(); |
| 283 | for (; &*I != Def && &*I != UserInst; ++I) |
| 284 | /*empty*/; |
| 285 | |
| 286 | return &*I != UserInst; |
| 287 | } |
| 288 | |
| 289 | bool DominatorTree::isReachableFromEntry(const Use &U) const { |
| 290 | Instruction *I = dyn_cast<Instruction>(U.getUser()); |
| 291 | |
| 292 | // ConstantExprs aren't really reachable from the entry block, but they |
| 293 | // don't need to be treated like unreachable code either. |
| 294 | if (!I) return true; |
| 295 | |
| 296 | // PHI nodes use their operands on their incoming edges. |
| 297 | if (PHINode *PN = dyn_cast<PHINode>(I)) |
| 298 | return isReachableFromEntry(PN->getIncomingBlock(U)); |
| 299 | |
| 300 | // Everything else uses their operands in their own block. |
| 301 | return isReachableFromEntry(I->getParent()); |
| 302 | } |