Add a constructor for DataRefImpl and remove excess initialization.
[oota-llvm.git] / lib / VMCore / 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/Analysis/Dominators.h"
18 #include "llvm/Support/CFG.h"
19 #include "llvm/Support/Compiler.h"
20 #include "llvm/Support/Debug.h"
21 #include "llvm/ADT/DepthFirstIterator.h"
22 #include "llvm/ADT/SmallPtrSet.h"
23 #include "llvm/ADT/SmallVector.h"
24 #include "llvm/Analysis/DominatorInternals.h"
25 #include "llvm/Assembly/Writer.h"
26 #include "llvm/Instructions.h"
27 #include "llvm/Support/raw_ostream.h"
28 #include "llvm/Support/CommandLine.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 //===----------------------------------------------------------------------===//
43 //  DominatorTree Implementation
44 //===----------------------------------------------------------------------===//
45 //
46 // Provide public access to DominatorTree information.  Implementation details
47 // can be found in DominatorInternals.h.
48 //
49 //===----------------------------------------------------------------------===//
50
51 TEMPLATE_INSTANTIATION(class llvm::DomTreeNodeBase<BasicBlock>);
52 TEMPLATE_INSTANTIATION(class llvm::DominatorTreeBase<BasicBlock>);
53
54 char DominatorTree::ID = 0;
55 INITIALIZE_PASS(DominatorTree, "domtree",
56                 "Dominator Tree Construction", true, true)
57
58 bool DominatorTree::runOnFunction(Function &F) {
59   DT->recalculate(F);
60   return false;
61 }
62
63 void DominatorTree::verifyAnalysis() const {
64   if (!VerifyDomInfo) return;
65
66   Function &F = *getRoot()->getParent();
67
68   DominatorTree OtherDT;
69   OtherDT.getBase().recalculate(F);
70   if (compare(OtherDT)) {
71     errs() << "DominatorTree is not up to date!\nComputed:\n";
72     print(errs());
73     errs() << "\nActual:\n";
74     OtherDT.print(errs());
75     abort();
76   }
77 }
78
79 void DominatorTree::print(raw_ostream &OS, const Module *) const {
80   DT->print(OS);
81 }
82
83 // dominates - Return true if Def dominates a use in User. This performs
84 // the special checks necessary if Def and User are in the same basic block.
85 // Note that Def doesn't dominate a use in Def itself!
86 bool DominatorTree::dominates(const Instruction *Def,
87                               const Instruction *User) const {
88   const BasicBlock *UseBB = User->getParent();
89   const BasicBlock *DefBB = Def->getParent();
90
91   // Any unreachable use is dominated, even if Def == User.
92   if (!isReachableFromEntry(UseBB))
93     return true;
94
95   // Unreachable definitions don't dominate anything.
96   if (!isReachableFromEntry(DefBB))
97     return false;
98
99   // An instruction doesn't dominate a use in itself.
100   if (Def == User)
101     return false;
102
103   // The value defined by an invoke dominates an instruction only if
104   // it dominates every instruction in UseBB.
105   // A PHI is dominated only if the instruction dominates every possible use
106   // in the UseBB.
107   if (isa<InvokeInst>(Def) || isa<PHINode>(User))
108     return dominates(Def, UseBB);
109
110   if (DefBB != UseBB)
111     return dominates(DefBB, UseBB);
112
113   // Loop through the basic block until we find Def or User.
114   BasicBlock::const_iterator I = DefBB->begin();
115   for (; &*I != Def && &*I != User; ++I)
116     /*empty*/;
117
118   return &*I == Def;
119 }
120
121 // true if Def would dominate a use in any instruction in UseBB.
122 // note that dominates(Def, Def->getParent()) is false.
123 bool DominatorTree::dominates(const Instruction *Def,
124                               const BasicBlock *UseBB) const {
125   const BasicBlock *DefBB = Def->getParent();
126
127   // Any unreachable use is dominated, even if DefBB == UseBB.
128   if (!isReachableFromEntry(UseBB))
129     return true;
130
131   // Unreachable definitions don't dominate anything.
132   if (!isReachableFromEntry(DefBB))
133     return false;
134
135   if (DefBB == UseBB)
136     return false;
137
138   const InvokeInst *II = dyn_cast<InvokeInst>(Def);
139   if (!II)
140     return dominates(DefBB, UseBB);
141
142   // Invoke results are only usable in the normal destination, not in the
143   // exceptional destination.
144   BasicBlock *NormalDest = II->getNormalDest();
145   if (!dominates(NormalDest, UseBB))
146     return false;
147
148   // Simple case: if the normal destination has a single predecessor, the
149   // fact that it dominates the use block implies that we also do.
150   if (NormalDest->getSinglePredecessor())
151     return true;
152
153   // The normal edge from the invoke is critical. Conceptually, what we would
154   // like to do is split it and check if the new block dominates the use.
155   // With X being the new block, the graph would look like:
156   //
157   //        DefBB
158   //          /\      .  .
159   //         /  \     .  .
160   //        /    \    .  .
161   //       /      \   |  |
162   //      A        X  B  C
163   //      |         \ | /
164   //      .          \|/
165   //      .      NormalDest
166   //      .
167   //
168   // Given the definition of dominance, NormalDest is dominated by X iff X
169   // dominates all of NormalDest's predecessors (X, B, C in the example). X
170   // trivially dominates itself, so we only have to find if it dominates the
171   // other predecessors. Since the only way out of X is via NormalDest, X can
172   // only properly dominate a node if NormalDest dominates that node too.
173   for (pred_iterator PI = pred_begin(NormalDest),
174          E = pred_end(NormalDest); PI != E; ++PI) {
175     const BasicBlock *BB = *PI;
176     if (BB == DefBB)
177       continue;
178
179     if (!DT->isReachableFromEntry(BB))
180       continue;
181
182     if (!dominates(NormalDest, BB))
183       return false;
184   }
185   return true;
186 }