Fix batch of converting RegisterPass<> to INTIALIZE_PASS().
[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/SetOperations.h"
23 #include "llvm/ADT/SmallPtrSet.h"
24 #include "llvm/ADT/SmallVector.h"
25 #include "llvm/Analysis/DominatorInternals.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 DominatorCalculation.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   assert(!compare(OtherDT) && "Invalid DominatorTree info!");
71 }
72
73 void DominatorTree::print(raw_ostream &OS, const Module *) const {
74   DT->print(OS);
75 }
76
77 // dominates - Return true if A dominates a use in B. This performs the
78 // special checks necessary if A and B are in the same basic block.
79 bool DominatorTree::dominates(const Instruction *A, const Instruction *B) const{
80   const BasicBlock *BBA = A->getParent(), *BBB = B->getParent();
81   
82   // If A is an invoke instruction, its value is only available in this normal
83   // successor block.
84   if (const InvokeInst *II = dyn_cast<InvokeInst>(A))
85     BBA = II->getNormalDest();
86   
87   if (BBA != BBB) return dominates(BBA, BBB);
88   
89   // It is not possible to determine dominance between two PHI nodes 
90   // based on their ordering.
91   if (isa<PHINode>(A) && isa<PHINode>(B)) 
92     return false;
93   
94   // Loop through the basic block until we find A or B.
95   BasicBlock::const_iterator I = BBA->begin();
96   for (; &*I != A && &*I != B; ++I)
97     /*empty*/;
98   
99   return &*I == A;
100 }
101
102
103
104 //===----------------------------------------------------------------------===//
105 //  DominanceFrontier Implementation
106 //===----------------------------------------------------------------------===//
107
108 char DominanceFrontier::ID = 0;
109 INITIALIZE_PASS(DominanceFrontier, "domfrontier",
110                 "Dominance Frontier Construction", true, true);
111
112 void DominanceFrontier::verifyAnalysis() const {
113   if (!VerifyDomInfo) return;
114
115   DominatorTree &DT = getAnalysis<DominatorTree>();
116
117   DominanceFrontier OtherDF;
118   const std::vector<BasicBlock*> &DTRoots = DT.getRoots();
119   OtherDF.calculate(DT, DT.getNode(DTRoots[0]));
120   assert(!compare(OtherDF) && "Invalid DominanceFrontier info!");
121 }
122
123 // NewBB is split and now it has one successor. Update dominance frontier to
124 // reflect this change.
125 void DominanceFrontier::splitBlock(BasicBlock *NewBB) {
126   assert(NewBB->getTerminator()->getNumSuccessors() == 1
127          && "NewBB should have a single successor!");
128   BasicBlock *NewBBSucc = NewBB->getTerminator()->getSuccessor(0);
129
130   SmallVector<BasicBlock*, 8> PredBlocks;
131   for (pred_iterator PI = pred_begin(NewBB), PE = pred_end(NewBB);
132        PI != PE; ++PI)
133     PredBlocks.push_back(*PI);  
134
135   if (PredBlocks.empty())
136     // If NewBB does not have any predecessors then it is a entry block.
137     // In this case, NewBB and its successor NewBBSucc dominates all
138     // other blocks.
139     return;
140
141   // NewBBSucc inherits original NewBB frontier.
142   DominanceFrontier::iterator NewBBI = find(NewBB);
143   if (NewBBI != end()) {
144     DominanceFrontier::DomSetType NewBBSet = NewBBI->second;
145     DominanceFrontier::DomSetType NewBBSuccSet;
146     NewBBSuccSet.insert(NewBBSet.begin(), NewBBSet.end());
147     addBasicBlock(NewBBSucc, NewBBSuccSet);
148   }
149
150   // If NewBB dominates NewBBSucc, then DF(NewBB) is now going to be the
151   // DF(NewBBSucc) without the stuff that the new block does not dominate
152   // a predecessor of.
153   DominatorTree &DT = getAnalysis<DominatorTree>();
154   if (DT.dominates(NewBB, NewBBSucc)) {
155     DominanceFrontier::iterator DFI = find(NewBBSucc);
156     if (DFI != end()) {
157       DominanceFrontier::DomSetType Set = DFI->second;
158       // Filter out stuff in Set that we do not dominate a predecessor of.
159       for (DominanceFrontier::DomSetType::iterator SetI = Set.begin(),
160              E = Set.end(); SetI != E;) {
161         bool DominatesPred = false;
162         for (pred_iterator PI = pred_begin(*SetI), E = pred_end(*SetI);
163              PI != E; ++PI)
164           if (DT.dominates(NewBB, *PI))
165             DominatesPred = true;
166         if (!DominatesPred)
167           Set.erase(SetI++);
168         else
169           ++SetI;
170       }
171
172       if (NewBBI != end()) {
173         for (DominanceFrontier::DomSetType::iterator SetI = Set.begin(),
174                E = Set.end(); SetI != E; ++SetI) {
175           BasicBlock *SB = *SetI;
176           addToFrontier(NewBBI, SB);
177         }
178       } else 
179         addBasicBlock(NewBB, Set);
180     }
181     
182   } else {
183     // DF(NewBB) is {NewBBSucc} because NewBB does not strictly dominate
184     // NewBBSucc, but it does dominate itself (and there is an edge (NewBB ->
185     // NewBBSucc)).  NewBBSucc is the single successor of NewBB.
186     DominanceFrontier::DomSetType NewDFSet;
187     NewDFSet.insert(NewBBSucc);
188     addBasicBlock(NewBB, NewDFSet);
189   }
190   
191   // Now we must loop over all of the dominance frontiers in the function,
192   // replacing occurrences of NewBBSucc with NewBB in some cases.  All
193   // blocks that dominate a block in PredBlocks and contained NewBBSucc in
194   // their dominance frontier must be updated to contain NewBB instead.
195   //
196   for (Function::iterator FI = NewBB->getParent()->begin(),
197          FE = NewBB->getParent()->end(); FI != FE; ++FI) {
198     DominanceFrontier::iterator DFI = find(FI);
199     if (DFI == end()) continue;  // unreachable block.
200     
201     // Only consider nodes that have NewBBSucc in their dominator frontier.
202     if (!DFI->second.count(NewBBSucc)) continue;
203
204     // Verify whether this block dominates a block in predblocks.  If not, do
205     // not update it.
206     bool BlockDominatesAny = false;
207     for (SmallVectorImpl<BasicBlock*>::const_iterator BI = PredBlocks.begin(), 
208            BE = PredBlocks.end(); BI != BE; ++BI) {
209       if (DT.dominates(FI, *BI)) {
210         BlockDominatesAny = true;
211         break;
212       }
213     }
214
215     // If NewBBSucc should not stay in our dominator frontier, remove it.
216     // We remove it unless there is a predecessor of NewBBSucc that we
217     // dominate, but we don't strictly dominate NewBBSucc.
218     bool ShouldRemove = true;
219     if ((BasicBlock*)FI == NewBBSucc || !DT.dominates(FI, NewBBSucc)) {
220       // Okay, we know that PredDom does not strictly dominate NewBBSucc.
221       // Check to see if it dominates any predecessors of NewBBSucc.
222       for (pred_iterator PI = pred_begin(NewBBSucc),
223            E = pred_end(NewBBSucc); PI != E; ++PI)
224         if (DT.dominates(FI, *PI)) {
225           ShouldRemove = false;
226           break;
227         }
228     }
229     
230     if (ShouldRemove)
231       removeFromFrontier(DFI, NewBBSucc);
232     if (BlockDominatesAny && (&*FI == NewBB || !DT.dominates(FI, NewBB)))
233       addToFrontier(DFI, NewBB);
234   }
235 }
236
237 namespace {
238   class DFCalculateWorkObject {
239   public:
240     DFCalculateWorkObject(BasicBlock *B, BasicBlock *P, 
241                           const DomTreeNode *N,
242                           const DomTreeNode *PN)
243     : currentBB(B), parentBB(P), Node(N), parentNode(PN) {}
244     BasicBlock *currentBB;
245     BasicBlock *parentBB;
246     const DomTreeNode *Node;
247     const DomTreeNode *parentNode;
248   };
249 }
250
251 const DominanceFrontier::DomSetType &
252 DominanceFrontier::calculate(const DominatorTree &DT,
253                              const DomTreeNode *Node) {
254   BasicBlock *BB = Node->getBlock();
255   DomSetType *Result = NULL;
256
257   std::vector<DFCalculateWorkObject> workList;
258   SmallPtrSet<BasicBlock *, 32> visited;
259
260   workList.push_back(DFCalculateWorkObject(BB, NULL, Node, NULL));
261   do {
262     DFCalculateWorkObject *currentW = &workList.back();
263     assert (currentW && "Missing work object.");
264
265     BasicBlock *currentBB = currentW->currentBB;
266     BasicBlock *parentBB = currentW->parentBB;
267     const DomTreeNode *currentNode = currentW->Node;
268     const DomTreeNode *parentNode = currentW->parentNode;
269     assert (currentBB && "Invalid work object. Missing current Basic Block");
270     assert (currentNode && "Invalid work object. Missing current Node");
271     DomSetType &S = Frontiers[currentBB];
272
273     // Visit each block only once.
274     if (visited.count(currentBB) == 0) {
275       visited.insert(currentBB);
276
277       // Loop over CFG successors to calculate DFlocal[currentNode]
278       for (succ_iterator SI = succ_begin(currentBB), SE = succ_end(currentBB);
279            SI != SE; ++SI) {
280         // Does Node immediately dominate this successor?
281         if (DT[*SI]->getIDom() != currentNode)
282           S.insert(*SI);
283       }
284     }
285
286     // At this point, S is DFlocal.  Now we union in DFup's of our children...
287     // Loop through and visit the nodes that Node immediately dominates (Node's
288     // children in the IDomTree)
289     bool visitChild = false;
290     for (DomTreeNode::const_iterator NI = currentNode->begin(), 
291            NE = currentNode->end(); NI != NE; ++NI) {
292       DomTreeNode *IDominee = *NI;
293       BasicBlock *childBB = IDominee->getBlock();
294       if (visited.count(childBB) == 0) {
295         workList.push_back(DFCalculateWorkObject(childBB, currentBB,
296                                                  IDominee, currentNode));
297         visitChild = true;
298       }
299     }
300
301     // If all children are visited or there is any child then pop this block
302     // from the workList.
303     if (!visitChild) {
304
305       if (!parentBB) {
306         Result = &S;
307         break;
308       }
309
310       DomSetType::const_iterator CDFI = S.begin(), CDFE = S.end();
311       DomSetType &parentSet = Frontiers[parentBB];
312       for (; CDFI != CDFE; ++CDFI) {
313         if (!DT.properlyDominates(parentNode, DT[*CDFI]))
314           parentSet.insert(*CDFI);
315       }
316       workList.pop_back();
317     }
318
319   } while (!workList.empty());
320
321   return *Result;
322 }
323
324 void DominanceFrontierBase::print(raw_ostream &OS, const Module* ) const {
325   for (const_iterator I = begin(), E = end(); I != E; ++I) {
326     OS << "  DomFrontier for BB ";
327     if (I->first)
328       WriteAsOperand(OS, I->first, false);
329     else
330       OS << " <<exit node>>";
331     OS << " is:\t";
332     
333     const std::set<BasicBlock*> &BBs = I->second;
334     
335     for (std::set<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
336          I != E; ++I) {
337       OS << ' ';
338       if (*I)
339         WriteAsOperand(OS, *I, false);
340       else
341         OS << "<<exit node>>";
342     }
343     OS << "\n";
344   }
345 }
346
347 void DominanceFrontierBase::dump() const {
348   print(dbgs());
349 }
350