1 //===- Dominators.cpp - Dominator Calculation -----------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
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.
14 //
15 //===----------------------------------------------------------------------===//
16 
17 #include "llvm/IR/Dominators.h"
18 #include "llvm/ADT/DepthFirstIterator.h"
19 #include "llvm/ADT/SmallPtrSet.h"
20 #include "llvm/IR/CFG.h"
21 #include "llvm/IR/Instructions.h"
22 #include "llvm/IR/PassManager.h"
23 #include "llvm/Support/CommandLine.h"
24 #include "llvm/Support/Debug.h"
25 #include "llvm/Support/GenericDomTreeConstruction.h"
26 #include "llvm/Support/raw_ostream.h"
27 #include <algorithm>
28 using namespace llvm;
29 
30 // Always verify dominfo if expensive checking is enabled.
31 #ifdef EXPENSIVE_CHECKS
32 bool llvm::VerifyDomInfo = true;
33 #else
34 bool llvm::VerifyDomInfo = false;
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 
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;
51 }
52 
53 //===----------------------------------------------------------------------===//
54 //  DominatorTree Implementation
55 //===----------------------------------------------------------------------===//
56 //
57 // Provide public access to DominatorTree information.  Implementation details
58 // can be found in Dominators.h, GenericDomTree.h, and
59 // GenericDomTreeConstruction.h.
60 //
61 //===----------------------------------------------------------------------===//
62 
63 template class llvm::DomTreeNodeBase<BasicBlock>;
64 template class llvm::DominatorTreeBase<BasicBlock>;
65 
66 template void llvm::DomTreeBuilder::Calculate<Function, BasicBlock *>(
67     DominatorTreeBase<
68         typename std::remove_pointer<GraphTraits<BasicBlock *>::NodeRef>::type>
69         &DT,
70     Function &F);
71 template void llvm::DomTreeBuilder::Calculate<Function, Inverse<BasicBlock *>>(
72     DominatorTreeBase<typename std::remove_pointer<
73         GraphTraits<Inverse<BasicBlock *>>::NodeRef>::type> &DT,
74     Function &F);
75 template bool llvm::DomTreeBuilder::Verify<BasicBlock *>(
76     const DominatorTreeBase<
77         typename std::remove_pointer<GraphTraits<BasicBlock *>::NodeRef>::type>
78         &DT);
79 template bool llvm::DomTreeBuilder::Verify<Inverse<BasicBlock *>>(
80     const DominatorTreeBase<typename std::remove_pointer<
81         GraphTraits<Inverse<BasicBlock *>>::NodeRef>::type> &DT);
82 
83 bool DominatorTree::invalidate(Function &F, const PreservedAnalyses &PA,
84                                FunctionAnalysisManager::Invalidator &) {
85   // Check whether the analysis, all analyses on functions, or the function's
86   // CFG have been preserved.
87   auto PAC = PA.getChecker<DominatorTreeAnalysis>();
88   return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>() ||
89            PAC.preservedSet<CFGAnalyses>());
90 }
91 
92 // dominates - Return true if Def dominates a use in User. This performs
93 // the special checks necessary if Def and User are in the same basic block.
94 // Note that Def doesn't dominate a use in Def itself!
95 bool DominatorTree::dominates(const Instruction *Def,
96                               const Instruction *User) const {
97   const BasicBlock *UseBB = User->getParent();
98   const BasicBlock *DefBB = Def->getParent();
99 
100   // Any unreachable use is dominated, even if Def == User.
101   if (!isReachableFromEntry(UseBB))
102     return true;
103 
104   // Unreachable definitions don't dominate anything.
105   if (!isReachableFromEntry(DefBB))
106     return false;
107 
108   // An instruction doesn't dominate a use in itself.
109   if (Def == User)
110     return false;
111 
112   // The value defined by an invoke dominates an instruction only if it
113   // dominates every instruction in UseBB.
114   // A PHI is dominated only if the instruction dominates every possible use in
115   // the UseBB.
116   if (isa<InvokeInst>(Def) || isa<PHINode>(User))
117     return dominates(Def, UseBB);
118 
119   if (DefBB != UseBB)
120     return dominates(DefBB, UseBB);
121 
122   // Loop through the basic block until we find Def or User.
123   BasicBlock::const_iterator I = DefBB->begin();
124   for (; &*I != Def && &*I != User; ++I)
125     /*empty*/;
126 
127   return &*I == Def;
128 }
129 
130 // true if Def would dominate a use in any instruction in UseBB.
131 // note that dominates(Def, Def->getParent()) is false.
132 bool DominatorTree::dominates(const Instruction *Def,
133                               const BasicBlock *UseBB) const {
134   const BasicBlock *DefBB = Def->getParent();
135 
136   // Any unreachable use is dominated, even if DefBB == UseBB.
137   if (!isReachableFromEntry(UseBB))
138     return true;
139 
140   // Unreachable definitions don't dominate anything.
141   if (!isReachableFromEntry(DefBB))
142     return false;
143 
144   if (DefBB == UseBB)
145     return false;
146 
147   // Invoke results are only usable in the normal destination, not in the
148   // exceptional destination.
149   if (const auto *II = dyn_cast<InvokeInst>(Def)) {
150     BasicBlock *NormalDest = II->getNormalDest();
151     BasicBlockEdge E(DefBB, NormalDest);
152     return dominates(E, UseBB);
153   }
154 
155   return dominates(DefBB, UseBB);
156 }
157 
158 bool DominatorTree::dominates(const BasicBlockEdge &BBE,
159                               const BasicBlock *UseBB) const {
160   // If the BB the edge ends in doesn't dominate the use BB, then the
161   // edge also doesn't.
162   const BasicBlock *Start = BBE.getStart();
163   const BasicBlock *End = BBE.getEnd();
164   if (!dominates(End, UseBB))
165     return false;
166 
167   // Simple case: if the end BB has a single predecessor, the fact that it
168   // dominates the use block implies that the edge also does.
169   if (End->getSinglePredecessor())
170     return true;
171 
172   // The normal edge from the invoke is critical. Conceptually, what we would
173   // like to do is split it and check if the new block dominates the use.
174   // With X being the new block, the graph would look like:
175   //
176   //        DefBB
177   //          /\      .  .
178   //         /  \     .  .
179   //        /    \    .  .
180   //       /      \   |  |
181   //      A        X  B  C
182   //      |         \ | /
183   //      .          \|/
184   //      .      NormalDest
185   //      .
186   //
187   // Given the definition of dominance, NormalDest is dominated by X iff X
188   // dominates all of NormalDest's predecessors (X, B, C in the example). X
189   // trivially dominates itself, so we only have to find if it dominates the
190   // other predecessors. Since the only way out of X is via NormalDest, X can
191   // only properly dominate a node if NormalDest dominates that node too.
192   int IsDuplicateEdge = 0;
193   for (const_pred_iterator PI = pred_begin(End), E = pred_end(End);
194        PI != E; ++PI) {
195     const BasicBlock *BB = *PI;
196     if (BB == Start) {
197       // If there are multiple edges between Start and End, by definition they
198       // can't dominate anything.
199       if (IsDuplicateEdge++)
200         return false;
201       continue;
202     }
203 
204     if (!dominates(End, BB))
205       return false;
206   }
207   return true;
208 }
209 
210 bool DominatorTree::dominates(const BasicBlockEdge &BBE, const Use &U) const {
211   Instruction *UserInst = cast<Instruction>(U.getUser());
212   // A PHI in the end of the edge is dominated by it.
213   PHINode *PN = dyn_cast<PHINode>(UserInst);
214   if (PN && PN->getParent() == BBE.getEnd() &&
215       PN->getIncomingBlock(U) == BBE.getStart())
216     return true;
217 
218   // Otherwise use the edge-dominates-block query, which
219   // handles the crazy critical edge cases properly.
220   const BasicBlock *UseBB;
221   if (PN)
222     UseBB = PN->getIncomingBlock(U);
223   else
224     UseBB = UserInst->getParent();
225   return dominates(BBE, UseBB);
226 }
227 
228 bool DominatorTree::dominates(const Instruction *Def, const Use &U) const {
229   Instruction *UserInst = cast<Instruction>(U.getUser());
230   const BasicBlock *DefBB = Def->getParent();
231 
232   // Determine the block in which the use happens. PHI nodes use
233   // their operands on edges; simulate this by thinking of the use
234   // happening at the end of the predecessor block.
235   const BasicBlock *UseBB;
236   if (PHINode *PN = dyn_cast<PHINode>(UserInst))
237     UseBB = PN->getIncomingBlock(U);
238   else
239     UseBB = UserInst->getParent();
240 
241   // Any unreachable use is dominated, even if Def == User.
242   if (!isReachableFromEntry(UseBB))
243     return true;
244 
245   // Unreachable definitions don't dominate anything.
246   if (!isReachableFromEntry(DefBB))
247     return false;
248 
249   // Invoke instructions define their return values on the edges to their normal
250   // successors, so we have to handle them specially.
251   // Among other things, this means they don't dominate anything in
252   // their own block, except possibly a phi, so we don't need to
253   // walk the block in any case.
254   if (const InvokeInst *II = dyn_cast<InvokeInst>(Def)) {
255     BasicBlock *NormalDest = II->getNormalDest();
256     BasicBlockEdge E(DefBB, NormalDest);
257     return dominates(E, U);
258   }
259 
260   // If the def and use are in different blocks, do a simple CFG dominator
261   // tree query.
262   if (DefBB != UseBB)
263     return dominates(DefBB, UseBB);
264 
265   // Ok, def and use are in the same block. If the def is an invoke, it
266   // doesn't dominate anything in the block. If it's a PHI, it dominates
267   // everything in the block.
268   if (isa<PHINode>(UserInst))
269     return true;
270 
271   // Otherwise, just loop through the basic block until we find Def or User.
272   BasicBlock::const_iterator I = DefBB->begin();
273   for (; &*I != Def && &*I != UserInst; ++I)
274     /*empty*/;
275 
276   return &*I != UserInst;
277 }
278 
279 bool DominatorTree::isReachableFromEntry(const Use &U) const {
280   Instruction *I = dyn_cast<Instruction>(U.getUser());
281 
282   // ConstantExprs aren't really reachable from the entry block, but they
283   // don't need to be treated like unreachable code either.
284   if (!I) return true;
285 
286   // PHI nodes use their operands on their incoming edges.
287   if (PHINode *PN = dyn_cast<PHINode>(I))
288     return isReachableFromEntry(PN->getIncomingBlock(U));
289 
290   // Everything else uses their operands in their own block.
291   return isReachableFromEntry(I->getParent());
292 }
293 
294 void DominatorTree::verifyDomTree() const {
295   // Perform the expensive checks only when VerifyDomInfo is set.
296   if (VerifyDomInfo && !verify()) {
297     errs() << "\n~~~~~~~~~~~\n\t\tDomTree verification failed!\n~~~~~~~~~~~\n";
298     print(errs());
299     abort();
300   }
301 
302   Function &F = *getRoot()->getParent();
303 
304   DominatorTree OtherDT;
305   OtherDT.recalculate(F);
306   if (compare(OtherDT)) {
307     errs() << "DominatorTree is not up to date!\nComputed:\n";
308     print(errs());
309     errs() << "\nActual:\n";
310     OtherDT.print(errs());
311     abort();
312   }
313 }
314 
315 //===----------------------------------------------------------------------===//
316 //  DominatorTreeAnalysis and related pass implementations
317 //===----------------------------------------------------------------------===//
318 //
319 // This implements the DominatorTreeAnalysis which is used with the new pass
320 // manager. It also implements some methods from utility passes.
321 //
322 //===----------------------------------------------------------------------===//
323 
324 DominatorTree DominatorTreeAnalysis::run(Function &F,
325                                          FunctionAnalysisManager &) {
326   DominatorTree DT;
327   DT.recalculate(F);
328   return DT;
329 }
330 
331 AnalysisKey DominatorTreeAnalysis::Key;
332 
333 DominatorTreePrinterPass::DominatorTreePrinterPass(raw_ostream &OS) : OS(OS) {}
334 
335 PreservedAnalyses DominatorTreePrinterPass::run(Function &F,
336                                                 FunctionAnalysisManager &AM) {
337   OS << "DominatorTree for function: " << F.getName() << "\n";
338   AM.getResult<DominatorTreeAnalysis>(F).print(OS);
339 
340   return PreservedAnalyses::all();
341 }
342 
343 PreservedAnalyses DominatorTreeVerifierPass::run(Function &F,
344                                                  FunctionAnalysisManager &AM) {
345   AM.getResult<DominatorTreeAnalysis>(F).verifyDomTree();
346 
347   return PreservedAnalyses::all();
348 }
349 
350 //===----------------------------------------------------------------------===//
351 //  DominatorTreeWrapperPass Implementation
352 //===----------------------------------------------------------------------===//
353 //
354 // The implementation details of the wrapper pass that holds a DominatorTree
355 // suitable for use with the legacy pass manager.
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 
368 void DominatorTreeWrapperPass::verifyAnalysis() const {
369     if (VerifyDomInfo)
370       DT.verifyDomTree();
371 }
372 
373 void DominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const {
374   DT.print(OS);
375 }
376 
377