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