1 //===- Dominators.cpp - Dominator Calculation -----------------------------===// 2 // 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 6 // 7 //===----------------------------------------------------------------------===// 8 // 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. 13 // 14 //===----------------------------------------------------------------------===// 15 16 #include "llvm/IR/Dominators.h" 17 #include "llvm/ADT/DepthFirstIterator.h" 18 #include "llvm/ADT/SmallPtrSet.h" 19 #include "llvm/Config/llvm-config.h" 20 #include "llvm/IR/CFG.h" 21 #include "llvm/IR/Constants.h" 22 #include "llvm/IR/Instructions.h" 23 #include "llvm/IR/PassManager.h" 24 #include "llvm/InitializePasses.h" 25 #include "llvm/Support/CommandLine.h" 26 #include "llvm/Support/Debug.h" 27 #include "llvm/Support/GenericDomTreeConstruction.h" 28 #include "llvm/Support/raw_ostream.h" 29 #include <algorithm> 30 using namespace llvm; 31 32 bool llvm::VerifyDomInfo = false; 33 static cl::opt<bool, true> 34 VerifyDomInfoX("verify-dom-info", cl::location(VerifyDomInfo), cl::Hidden, 35 cl::desc("Verify dominator info (time consuming)")); 36 37 #ifdef EXPENSIVE_CHECKS 38 static constexpr bool ExpensiveChecksEnabled = true; 39 #else 40 static constexpr bool ExpensiveChecksEnabled = false; 41 #endif 42 43 bool BasicBlockEdge::isSingleEdge() const { 44 const Instruction *TI = Start->getTerminator(); 45 unsigned NumEdgesToEnd = 0; 46 for (unsigned int i = 0, n = TI->getNumSuccessors(); i < n; ++i) { 47 if (TI->getSuccessor(i) == End) 48 ++NumEdgesToEnd; 49 if (NumEdgesToEnd >= 2) 50 return false; 51 } 52 assert(NumEdgesToEnd == 1); 53 return true; 54 } 55 56 //===----------------------------------------------------------------------===// 57 // DominatorTree Implementation 58 //===----------------------------------------------------------------------===// 59 // 60 // Provide public access to DominatorTree information. Implementation details 61 // can be found in Dominators.h, GenericDomTree.h, and 62 // GenericDomTreeConstruction.h. 63 // 64 //===----------------------------------------------------------------------===// 65 66 template class llvm::DomTreeNodeBase<BasicBlock>; 67 template class llvm::DominatorTreeBase<BasicBlock, false>; // DomTreeBase 68 template class llvm::DominatorTreeBase<BasicBlock, true>; // PostDomTreeBase 69 70 template class llvm::cfg::Update<BasicBlock *>; 71 72 template void llvm::DomTreeBuilder::Calculate<DomTreeBuilder::BBDomTree>( 73 DomTreeBuilder::BBDomTree &DT); 74 template void 75 llvm::DomTreeBuilder::CalculateWithUpdates<DomTreeBuilder::BBDomTree>( 76 DomTreeBuilder::BBDomTree &DT, BBUpdates U); 77 78 template void llvm::DomTreeBuilder::Calculate<DomTreeBuilder::BBPostDomTree>( 79 DomTreeBuilder::BBPostDomTree &DT); 80 // No CalculateWithUpdates<PostDomTree> instantiation, unless a usecase arises. 81 82 template void llvm::DomTreeBuilder::InsertEdge<DomTreeBuilder::BBDomTree>( 83 DomTreeBuilder::BBDomTree &DT, BasicBlock *From, BasicBlock *To); 84 template void llvm::DomTreeBuilder::InsertEdge<DomTreeBuilder::BBPostDomTree>( 85 DomTreeBuilder::BBPostDomTree &DT, BasicBlock *From, BasicBlock *To); 86 87 template void llvm::DomTreeBuilder::DeleteEdge<DomTreeBuilder::BBDomTree>( 88 DomTreeBuilder::BBDomTree &DT, BasicBlock *From, BasicBlock *To); 89 template void llvm::DomTreeBuilder::DeleteEdge<DomTreeBuilder::BBPostDomTree>( 90 DomTreeBuilder::BBPostDomTree &DT, BasicBlock *From, BasicBlock *To); 91 92 template void llvm::DomTreeBuilder::ApplyUpdates<DomTreeBuilder::BBDomTree>( 93 DomTreeBuilder::BBDomTree &DT, DomTreeBuilder::BBUpdates); 94 template void llvm::DomTreeBuilder::ApplyUpdates<DomTreeBuilder::BBPostDomTree>( 95 DomTreeBuilder::BBPostDomTree &DT, DomTreeBuilder::BBUpdates); 96 97 template bool llvm::DomTreeBuilder::Verify<DomTreeBuilder::BBDomTree>( 98 const DomTreeBuilder::BBDomTree &DT, 99 DomTreeBuilder::BBDomTree::VerificationLevel VL); 100 template bool llvm::DomTreeBuilder::Verify<DomTreeBuilder::BBPostDomTree>( 101 const DomTreeBuilder::BBPostDomTree &DT, 102 DomTreeBuilder::BBPostDomTree::VerificationLevel VL); 103 104 bool DominatorTree::invalidate(Function &F, const PreservedAnalyses &PA, 105 FunctionAnalysisManager::Invalidator &) { 106 // Check whether the analysis, all analyses on functions, or the function's 107 // CFG have been preserved. 108 auto PAC = PA.getChecker<DominatorTreeAnalysis>(); 109 return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>() || 110 PAC.preservedSet<CFGAnalyses>()); 111 } 112 113 // dominates - Return true if Def dominates a use in User. This performs 114 // the special checks necessary if Def and User are in the same basic block. 115 // Note that Def doesn't dominate a use in Def itself! 116 bool DominatorTree::dominates(const Instruction *Def, 117 const Instruction *User) const { 118 const BasicBlock *UseBB = User->getParent(); 119 const BasicBlock *DefBB = Def->getParent(); 120 121 // Any unreachable use is dominated, even if Def == User. 122 if (!isReachableFromEntry(UseBB)) 123 return true; 124 125 // Unreachable definitions don't dominate anything. 126 if (!isReachableFromEntry(DefBB)) 127 return false; 128 129 // An instruction doesn't dominate a use in itself. 130 if (Def == User) 131 return false; 132 133 // The value defined by an invoke dominates an instruction only if it 134 // dominates every instruction in UseBB. 135 // A PHI is dominated only if the instruction dominates every possible use in 136 // the UseBB. 137 if (isa<InvokeInst>(Def) || isa<CallBrInst>(Def) || isa<PHINode>(User)) 138 return dominates(Def, UseBB); 139 140 if (DefBB != UseBB) 141 return dominates(DefBB, UseBB); 142 143 return Def->comesBefore(User); 144 } 145 146 // true if Def would dominate a use in any instruction in UseBB. 147 // note that dominates(Def, Def->getParent()) is false. 148 bool DominatorTree::dominates(const Instruction *Def, 149 const BasicBlock *UseBB) const { 150 const BasicBlock *DefBB = Def->getParent(); 151 152 // Any unreachable use is dominated, even if DefBB == UseBB. 153 if (!isReachableFromEntry(UseBB)) 154 return true; 155 156 // Unreachable definitions don't dominate anything. 157 if (!isReachableFromEntry(DefBB)) 158 return false; 159 160 if (DefBB == UseBB) 161 return false; 162 163 // Invoke results are only usable in the normal destination, not in the 164 // exceptional destination. 165 if (const auto *II = dyn_cast<InvokeInst>(Def)) { 166 BasicBlock *NormalDest = II->getNormalDest(); 167 BasicBlockEdge E(DefBB, NormalDest); 168 return dominates(E, UseBB); 169 } 170 171 // Callbr results are similarly only usable in the default destination. 172 if (const auto *CBI = dyn_cast<CallBrInst>(Def)) { 173 BasicBlock *NormalDest = CBI->getDefaultDest(); 174 BasicBlockEdge E(DefBB, NormalDest); 175 return dominates(E, UseBB); 176 } 177 178 return dominates(DefBB, UseBB); 179 } 180 181 bool DominatorTree::dominates(const BasicBlockEdge &BBE, 182 const BasicBlock *UseBB) const { 183 // If the BB the edge ends in doesn't dominate the use BB, then the 184 // edge also doesn't. 185 const BasicBlock *Start = BBE.getStart(); 186 const BasicBlock *End = BBE.getEnd(); 187 if (!dominates(End, UseBB)) 188 return false; 189 190 // Simple case: if the end BB has a single predecessor, the fact that it 191 // dominates the use block implies that the edge also does. 192 if (End->getSinglePredecessor()) 193 return true; 194 195 // The normal edge from the invoke is critical. Conceptually, what we would 196 // like to do is split it and check if the new block dominates the use. 197 // With X being the new block, the graph would look like: 198 // 199 // DefBB 200 // /\ . . 201 // / \ . . 202 // / \ . . 203 // / \ | | 204 // A X B C 205 // | \ | / 206 // . \|/ 207 // . NormalDest 208 // . 209 // 210 // Given the definition of dominance, NormalDest is dominated by X iff X 211 // dominates all of NormalDest's predecessors (X, B, C in the example). X 212 // trivially dominates itself, so we only have to find if it dominates the 213 // other predecessors. Since the only way out of X is via NormalDest, X can 214 // only properly dominate a node if NormalDest dominates that node too. 215 int IsDuplicateEdge = 0; 216 for (const_pred_iterator PI = pred_begin(End), E = pred_end(End); 217 PI != E; ++PI) { 218 const BasicBlock *BB = *PI; 219 if (BB == Start) { 220 // If there are multiple edges between Start and End, by definition they 221 // can't dominate anything. 222 if (IsDuplicateEdge++) 223 return false; 224 continue; 225 } 226 227 if (!dominates(End, BB)) 228 return false; 229 } 230 return true; 231 } 232 233 bool DominatorTree::dominates(const BasicBlockEdge &BBE, const Use &U) const { 234 Instruction *UserInst = cast<Instruction>(U.getUser()); 235 // A PHI in the end of the edge is dominated by it. 236 PHINode *PN = dyn_cast<PHINode>(UserInst); 237 if (PN && PN->getParent() == BBE.getEnd() && 238 PN->getIncomingBlock(U) == BBE.getStart()) 239 return true; 240 241 // Otherwise use the edge-dominates-block query, which 242 // handles the crazy critical edge cases properly. 243 const BasicBlock *UseBB; 244 if (PN) 245 UseBB = PN->getIncomingBlock(U); 246 else 247 UseBB = UserInst->getParent(); 248 return dominates(BBE, UseBB); 249 } 250 251 bool DominatorTree::dominates(const Instruction *Def, const Use &U) const { 252 Instruction *UserInst = cast<Instruction>(U.getUser()); 253 const BasicBlock *DefBB = Def->getParent(); 254 255 // Determine the block in which the use happens. PHI nodes use 256 // their operands on edges; simulate this by thinking of the use 257 // happening at the end of the predecessor block. 258 const BasicBlock *UseBB; 259 if (PHINode *PN = dyn_cast<PHINode>(UserInst)) 260 UseBB = PN->getIncomingBlock(U); 261 else 262 UseBB = UserInst->getParent(); 263 264 // Any unreachable use is dominated, even if Def == User. 265 if (!isReachableFromEntry(UseBB)) 266 return true; 267 268 // Unreachable definitions don't dominate anything. 269 if (!isReachableFromEntry(DefBB)) 270 return false; 271 272 // Invoke instructions define their return values on the edges to their normal 273 // successors, so we have to handle them specially. 274 // Among other things, this means they don't dominate anything in 275 // their own block, except possibly a phi, so we don't need to 276 // walk the block in any case. 277 if (const InvokeInst *II = dyn_cast<InvokeInst>(Def)) { 278 BasicBlock *NormalDest = II->getNormalDest(); 279 BasicBlockEdge E(DefBB, NormalDest); 280 return dominates(E, U); 281 } 282 283 // Callbr results are similarly only usable in the default destination. 284 if (const auto *CBI = dyn_cast<CallBrInst>(Def)) { 285 BasicBlock *NormalDest = CBI->getDefaultDest(); 286 BasicBlockEdge E(DefBB, NormalDest); 287 return dominates(E, U); 288 } 289 290 // If the def and use are in different blocks, do a simple CFG dominator 291 // tree query. 292 if (DefBB != UseBB) 293 return dominates(DefBB, UseBB); 294 295 // Ok, def and use are in the same block. If the def is an invoke, it 296 // doesn't dominate anything in the block. If it's a PHI, it dominates 297 // everything in the block. 298 if (isa<PHINode>(UserInst)) 299 return true; 300 301 return Def->comesBefore(UserInst); 302 } 303 304 bool DominatorTree::isReachableFromEntry(const Use &U) const { 305 Instruction *I = dyn_cast<Instruction>(U.getUser()); 306 307 // ConstantExprs aren't really reachable from the entry block, but they 308 // don't need to be treated like unreachable code either. 309 if (!I) return true; 310 311 // PHI nodes use their operands on their incoming edges. 312 if (PHINode *PN = dyn_cast<PHINode>(I)) 313 return isReachableFromEntry(PN->getIncomingBlock(U)); 314 315 // Everything else uses their operands in their own block. 316 return isReachableFromEntry(I->getParent()); 317 } 318 319 // Edge BBE1 dominates edge BBE2 if they match or BBE1 dominates start of BBE2. 320 bool DominatorTree::dominates(const BasicBlockEdge &BBE1, 321 const BasicBlockEdge &BBE2) const { 322 if (BBE1.getStart() == BBE2.getStart() && BBE1.getEnd() == BBE2.getEnd()) 323 return true; 324 return dominates(BBE1, BBE2.getStart()); 325 } 326 327 //===----------------------------------------------------------------------===// 328 // DominatorTreeAnalysis and related pass implementations 329 //===----------------------------------------------------------------------===// 330 // 331 // This implements the DominatorTreeAnalysis which is used with the new pass 332 // manager. It also implements some methods from utility passes. 333 // 334 //===----------------------------------------------------------------------===// 335 336 DominatorTree DominatorTreeAnalysis::run(Function &F, 337 FunctionAnalysisManager &) { 338 DominatorTree DT; 339 DT.recalculate(F); 340 return DT; 341 } 342 343 AnalysisKey DominatorTreeAnalysis::Key; 344 345 DominatorTreePrinterPass::DominatorTreePrinterPass(raw_ostream &OS) : OS(OS) {} 346 347 PreservedAnalyses DominatorTreePrinterPass::run(Function &F, 348 FunctionAnalysisManager &AM) { 349 OS << "DominatorTree for function: " << F.getName() << "\n"; 350 AM.getResult<DominatorTreeAnalysis>(F).print(OS); 351 352 return PreservedAnalyses::all(); 353 } 354 355 PreservedAnalyses DominatorTreeVerifierPass::run(Function &F, 356 FunctionAnalysisManager &AM) { 357 auto &DT = AM.getResult<DominatorTreeAnalysis>(F); 358 assert(DT.verify()); 359 (void)DT; 360 return PreservedAnalyses::all(); 361 } 362 363 //===----------------------------------------------------------------------===// 364 // DominatorTreeWrapperPass Implementation 365 //===----------------------------------------------------------------------===// 366 // 367 // The implementation details of the wrapper pass that holds a DominatorTree 368 // suitable for use with the legacy pass manager. 369 // 370 //===----------------------------------------------------------------------===// 371 372 char DominatorTreeWrapperPass::ID = 0; 373 374 DominatorTreeWrapperPass::DominatorTreeWrapperPass() : FunctionPass(ID) { 375 initializeDominatorTreeWrapperPassPass(*PassRegistry::getPassRegistry()); 376 } 377 378 INITIALIZE_PASS(DominatorTreeWrapperPass, "domtree", 379 "Dominator Tree Construction", true, true) 380 381 bool DominatorTreeWrapperPass::runOnFunction(Function &F) { 382 DT.recalculate(F); 383 return false; 384 } 385 386 void DominatorTreeWrapperPass::verifyAnalysis() const { 387 if (VerifyDomInfo) 388 assert(DT.verify(DominatorTree::VerificationLevel::Full)); 389 else if (ExpensiveChecksEnabled) 390 assert(DT.verify(DominatorTree::VerificationLevel::Basic)); 391 } 392 393 void DominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const { 394 DT.print(OS); 395 } 396