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