blob: 48cc86fcaf542dc3612e1f1d6046112ad84ce7a2 [file] [log] [blame]
Chris Lattner17152292001-07-02 05:46:38 +00001//===- DominatorSet.cpp - Dominator Set Calculation --------------*- C++ -*--=//
2//
3// This file provides a simple class to calculate the dominator set of a method.
4//
5//===----------------------------------------------------------------------===//
6
7#include "llvm/Analysis/Dominators.h"
Chris Lattner93193f82002-01-31 00:42:27 +00008#include "llvm/Transforms/UnifyMethodExitNodes.h"
Chris Lattner3ff43872001-09-28 22:56:31 +00009#include "llvm/Method.h"
Chris Lattner221d6882002-02-12 21:07:25 +000010#include "llvm/Support/CFG.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000011#include "Support/DepthFirstIterator.h"
12#include "Support/STLExtras.h"
Chris Lattnereb5230c2002-02-05 03:35:31 +000013#include "Support/SetOperations.h"
Chris Lattner17152292001-07-02 05:46:38 +000014#include <algorithm>
Chris Lattner697954c2002-01-20 22:54:45 +000015using std::set;
16
Chris Lattner94108ab2001-07-06 16:58:22 +000017//===----------------------------------------------------------------------===//
Chris Lattner17152292001-07-02 05:46:38 +000018// DominatorSet Implementation
19//===----------------------------------------------------------------------===//
20
Chris Lattner93193f82002-01-31 00:42:27 +000021AnalysisID cfg::DominatorSet::ID(AnalysisID::create<cfg::DominatorSet>());
22AnalysisID cfg::DominatorSet::PostDomID(AnalysisID::create<cfg::DominatorSet>());
23
24bool cfg::DominatorSet::runOnMethod(Method *M) {
25 Doms.clear(); // Reset from the last time we were run...
26
27 if (isPostDominator())
28 calcPostDominatorSet(M);
29 else
30 calcForwardDominatorSet(M);
31 return false;
Chris Lattner94108ab2001-07-06 16:58:22 +000032}
33
Chris Lattner93193f82002-01-31 00:42:27 +000034
Chris Lattner94108ab2001-07-06 16:58:22 +000035// calcForwardDominatorSet - This method calculates the forward dominator sets
36// for the specified method.
37//
Chris Lattner93193f82002-01-31 00:42:27 +000038void cfg::DominatorSet::calcForwardDominatorSet(Method *M) {
39 Root = M->getEntryNode();
Chris Lattner455889a2002-02-12 22:39:50 +000040 assert(pred_begin(Root) == pred_end(Root) &&
Chris Lattnerff5a8c42001-11-26 18:52:02 +000041 "Root node has predecessors in method!");
42
Chris Lattner17152292001-07-02 05:46:38 +000043 bool Changed;
44 do {
45 Changed = false;
46
47 DomSetType WorkingSet;
Chris Lattner93193f82002-01-31 00:42:27 +000048 df_iterator<Method*> It = df_begin(M), End = df_end(M);
Chris Lattner17152292001-07-02 05:46:38 +000049 for ( ; It != End; ++It) {
50 const BasicBlock *BB = *It;
Chris Lattner455889a2002-02-12 22:39:50 +000051 pred_const_iterator PI = pred_begin(BB), PEnd = pred_end(BB);
Chris Lattner17152292001-07-02 05:46:38 +000052 if (PI != PEnd) { // Is there SOME predecessor?
53 // Loop until we get to a predecessor that has had it's dom set filled
54 // in at least once. We are guaranteed to have this because we are
55 // traversing the graph in DFO and have handled start nodes specially.
56 //
57 while (Doms[*PI].size() == 0) ++PI;
58 WorkingSet = Doms[*PI];
59
60 for (++PI; PI != PEnd; ++PI) { // Intersect all of the predecessor sets
61 DomSetType &PredSet = Doms[*PI];
62 if (PredSet.size())
63 set_intersect(WorkingSet, PredSet);
64 }
65 }
66
67 WorkingSet.insert(BB); // A block always dominates itself
68 DomSetType &BBSet = Doms[BB];
69 if (BBSet != WorkingSet) {
70 BBSet.swap(WorkingSet); // Constant time operation!
71 Changed = true; // The sets changed.
72 }
73 WorkingSet.clear(); // Clear out the set for next iteration
74 }
75 } while (Changed);
Chris Lattner94108ab2001-07-06 16:58:22 +000076}
Chris Lattner17152292001-07-02 05:46:38 +000077
Chris Lattner94108ab2001-07-06 16:58:22 +000078// Postdominator set constructor. This ctor converts the specified method to
79// only have a single exit node (return stmt), then calculates the post
80// dominance sets for the method.
81//
Chris Lattner93193f82002-01-31 00:42:27 +000082void cfg::DominatorSet::calcPostDominatorSet(Method *M) {
83 // Since we require that the unify all exit nodes pass has been run, we know
84 // that there can be at most one return instruction in the method left.
85 // Get it.
86 //
87 Root = getAnalysis<UnifyMethodExitNodes>().getExitNode();
Chris Lattner94108ab2001-07-06 16:58:22 +000088
Chris Lattner384e5b12001-08-23 17:07:19 +000089 if (Root == 0) { // No exit node for the method? Postdomsets are all empty
Chris Lattner93193f82002-01-31 00:42:27 +000090 for (Method::const_iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI)
Chris Lattner384e5b12001-08-23 17:07:19 +000091 Doms[*MI] = DomSetType();
92 return;
93 }
Chris Lattner94108ab2001-07-06 16:58:22 +000094
95 bool Changed;
96 do {
97 Changed = false;
98
99 set<const BasicBlock*> Visited;
100 DomSetType WorkingSet;
Chris Lattner93193f82002-01-31 00:42:27 +0000101 idf_iterator<BasicBlock*> It = idf_begin(Root), End = idf_end(Root);
Chris Lattner94108ab2001-07-06 16:58:22 +0000102 for ( ; It != End; ++It) {
103 const BasicBlock *BB = *It;
Chris Lattner455889a2002-02-12 22:39:50 +0000104 succ_const_iterator PI = succ_begin(BB), PEnd = succ_end(BB);
Chris Lattner94108ab2001-07-06 16:58:22 +0000105 if (PI != PEnd) { // Is there SOME predecessor?
106 // Loop until we get to a successor that has had it's dom set filled
107 // in at least once. We are guaranteed to have this because we are
108 // traversing the graph in DFO and have handled start nodes specially.
109 //
110 while (Doms[*PI].size() == 0) ++PI;
111 WorkingSet = Doms[*PI];
112
113 for (++PI; PI != PEnd; ++PI) { // Intersect all of the successor sets
114 DomSetType &PredSet = Doms[*PI];
115 if (PredSet.size())
116 set_intersect(WorkingSet, PredSet);
117 }
118 }
119
120 WorkingSet.insert(BB); // A block always dominates itself
121 DomSetType &BBSet = Doms[BB];
122 if (BBSet != WorkingSet) {
123 BBSet.swap(WorkingSet); // Constant time operation!
124 Changed = true; // The sets changed.
125 }
126 WorkingSet.clear(); // Clear out the set for next iteration
127 }
128 } while (Changed);
Chris Lattner17152292001-07-02 05:46:38 +0000129}
130
Chris Lattner93193f82002-01-31 00:42:27 +0000131// getAnalysisUsageInfo - This obviously provides a dominator set, but it also
132// uses the UnifyMethodExitNodes pass if building post-dominators
133//
134void cfg::DominatorSet::getAnalysisUsageInfo(Pass::AnalysisSet &Requires,
135 Pass::AnalysisSet &Destroyed,
136 Pass::AnalysisSet &Provided) {
Chris Lattner65b97092002-01-31 18:29:24 +0000137 if (isPostDominator()) {
138 Provided.push_back(PostDomID);
Chris Lattner93193f82002-01-31 00:42:27 +0000139 Requires.push_back(UnifyMethodExitNodes::ID);
Chris Lattner65b97092002-01-31 18:29:24 +0000140 } else {
141 Provided.push_back(ID);
142 }
Chris Lattner93193f82002-01-31 00:42:27 +0000143}
144
Chris Lattner17152292001-07-02 05:46:38 +0000145
146//===----------------------------------------------------------------------===//
147// ImmediateDominators Implementation
148//===----------------------------------------------------------------------===//
149
Chris Lattner93193f82002-01-31 00:42:27 +0000150AnalysisID cfg::ImmediateDominators::ID(AnalysisID::create<cfg::ImmediateDominators>());
151AnalysisID cfg::ImmediateDominators::PostDomID(AnalysisID::create<cfg::ImmediateDominators>());
152
Chris Lattner17152292001-07-02 05:46:38 +0000153// calcIDoms - Calculate the immediate dominator mapping, given a set of
154// dominators for every basic block.
155void cfg::ImmediateDominators::calcIDoms(const DominatorSet &DS) {
156 // Loop over all of the nodes that have dominators... figuring out the IDOM
157 // for each node...
158 //
159 for (DominatorSet::const_iterator DI = DS.begin(), DEnd = DS.end();
160 DI != DEnd; ++DI) {
161 const BasicBlock *BB = DI->first;
162 const DominatorSet::DomSetType &Dominators = DI->second;
163 unsigned DomSetSize = Dominators.size();
164 if (DomSetSize == 1) continue; // Root node... IDom = null
165
166 // Loop over all dominators of this node. This corresponds to looping over
167 // nodes in the dominator chain, looking for a node whose dominator set is
168 // equal to the current nodes, except that the current node does not exist
169 // in it. This means that it is one level higher in the dom chain than the
170 // current node, and it is our idom!
171 //
172 DominatorSet::DomSetType::const_iterator I = Dominators.begin();
173 DominatorSet::DomSetType::const_iterator End = Dominators.end();
174 for (; I != End; ++I) { // Iterate over dominators...
175 // All of our dominators should form a chain, where the number of elements
176 // in the dominator set indicates what level the node is at in the chain.
177 // We want the node immediately above us, so it will have an identical
178 // dominator set, except that BB will not dominate it... therefore it's
179 // dominator set size will be one less than BB's...
180 //
181 if (DS.getDominators(*I).size() == DomSetSize - 1) {
182 IDoms[BB] = *I;
183 break;
184 }
185 }
186 }
187}
188
189
190//===----------------------------------------------------------------------===//
191// DominatorTree Implementation
192//===----------------------------------------------------------------------===//
193
Chris Lattner93193f82002-01-31 00:42:27 +0000194AnalysisID cfg::DominatorTree::ID(AnalysisID::create<cfg::DominatorTree>());
195AnalysisID cfg::DominatorTree::PostDomID(AnalysisID::create<cfg::DominatorTree>());
196
197// DominatorTree::reset - Free all of the tree node memory.
Chris Lattner17152292001-07-02 05:46:38 +0000198//
Chris Lattner93193f82002-01-31 00:42:27 +0000199void cfg::DominatorTree::reset() {
Chris Lattner17152292001-07-02 05:46:38 +0000200 for (NodeMapType::iterator I = Nodes.begin(), E = Nodes.end(); I != E; ++I)
201 delete I->second;
Chris Lattner93193f82002-01-31 00:42:27 +0000202 Nodes.clear();
Chris Lattner17152292001-07-02 05:46:38 +0000203}
204
205
Chris Lattner93193f82002-01-31 00:42:27 +0000206#if 0
207// Given immediate dominators, we can also calculate the dominator tree
Chris Lattner17152292001-07-02 05:46:38 +0000208cfg::DominatorTree::DominatorTree(const ImmediateDominators &IDoms)
Chris Lattner94108ab2001-07-06 16:58:22 +0000209 : DominatorBase(IDoms.getRoot()) {
Chris Lattner17152292001-07-02 05:46:38 +0000210 const Method *M = Root->getParent();
211
212 Nodes[Root] = new Node(Root, 0); // Add a node for the root...
213
214 // Iterate over all nodes in depth first order...
Chris Lattner3ff43872001-09-28 22:56:31 +0000215 for (df_iterator<const Method*> I = df_begin(M), E = df_end(M); I != E; ++I) {
Chris Lattner17152292001-07-02 05:46:38 +0000216 const BasicBlock *BB = *I, *IDom = IDoms[*I];
217
218 if (IDom != 0) { // Ignore the root node and other nasty nodes
219 // We know that the immediate dominator should already have a node,
220 // because we are traversing the CFG in depth first order!
221 //
222 assert(Nodes[IDom] && "No node for IDOM?");
223 Node *IDomNode = Nodes[IDom];
224
225 // Add a new tree node for this BasicBlock, and link it as a child of
226 // IDomNode
227 Nodes[BB] = IDomNode->addChild(new Node(BB, IDomNode));
228 }
229 }
230}
Chris Lattner93193f82002-01-31 00:42:27 +0000231#endif
Chris Lattner17152292001-07-02 05:46:38 +0000232
233void cfg::DominatorTree::calculate(const DominatorSet &DS) {
Chris Lattner17152292001-07-02 05:46:38 +0000234 Nodes[Root] = new Node(Root, 0); // Add a node for the root...
235
Chris Lattner94108ab2001-07-06 16:58:22 +0000236 if (!isPostDominator()) {
237 // Iterate over all nodes in depth first order...
Chris Lattner93193f82002-01-31 00:42:27 +0000238 for (df_iterator<BasicBlock*> I = df_begin(Root), E = df_end(Root);
Chris Lattner3ff43872001-09-28 22:56:31 +0000239 I != E; ++I) {
Chris Lattner94108ab2001-07-06 16:58:22 +0000240 const BasicBlock *BB = *I;
241 const DominatorSet::DomSetType &Dominators = DS.getDominators(BB);
242 unsigned DomSetSize = Dominators.size();
243 if (DomSetSize == 1) continue; // Root node... IDom = null
244
Chris Lattner3ff43872001-09-28 22:56:31 +0000245 // Loop over all dominators of this node. This corresponds to looping over
Chris Lattner94108ab2001-07-06 16:58:22 +0000246 // nodes in the dominator chain, looking for a node whose dominator set is
247 // equal to the current nodes, except that the current node does not exist
Chris Lattner3ff43872001-09-28 22:56:31 +0000248 // in it. This means that it is one level higher in the dom chain than the
Chris Lattner94108ab2001-07-06 16:58:22 +0000249 // current node, and it is our idom! We know that we have already added
250 // a DominatorTree node for our idom, because the idom must be a
251 // predecessor in the depth first order that we are iterating through the
252 // method.
Chris Lattner17152292001-07-02 05:46:38 +0000253 //
Chris Lattner94108ab2001-07-06 16:58:22 +0000254 DominatorSet::DomSetType::const_iterator I = Dominators.begin();
255 DominatorSet::DomSetType::const_iterator End = Dominators.end();
256 for (; I != End; ++I) { // Iterate over dominators...
Chris Lattner3ff43872001-09-28 22:56:31 +0000257 // All of our dominators should form a chain, where the number of
258 // elements in the dominator set indicates what level the node is at in
259 // the chain. We want the node immediately above us, so it will have
260 // an identical dominator set, except that BB will not dominate it...
261 // therefore it's dominator set size will be one less than BB's...
Chris Lattner17152292001-07-02 05:46:38 +0000262 //
Chris Lattner94108ab2001-07-06 16:58:22 +0000263 if (DS.getDominators(*I).size() == DomSetSize - 1) {
264 // We know that the immediate dominator should already have a node,
265 // because we are traversing the CFG in depth first order!
266 //
267 Node *IDomNode = Nodes[*I];
268 assert(IDomNode && "No node for IDOM?");
269
270 // Add a new tree node for this BasicBlock, and link it as a child of
271 // IDomNode
272 Nodes[BB] = IDomNode->addChild(new Node(BB, IDomNode));
273 break;
274 }
275 }
276 }
Chris Lattner384e5b12001-08-23 17:07:19 +0000277 } else if (Root) {
Chris Lattner94108ab2001-07-06 16:58:22 +0000278 // Iterate over all nodes in depth first order...
Chris Lattner93193f82002-01-31 00:42:27 +0000279 for (idf_iterator<BasicBlock*> I = idf_begin(Root), E = idf_end(Root);
Chris Lattner3ff43872001-09-28 22:56:31 +0000280 I != E; ++I) {
Chris Lattner94108ab2001-07-06 16:58:22 +0000281 const BasicBlock *BB = *I;
282 const DominatorSet::DomSetType &Dominators = DS.getDominators(BB);
283 unsigned DomSetSize = Dominators.size();
284 if (DomSetSize == 1) continue; // Root node... IDom = null
285
Chris Lattner3ff43872001-09-28 22:56:31 +0000286 // Loop over all dominators of this node. This corresponds to looping
287 // over nodes in the dominator chain, looking for a node whose dominator
288 // set is equal to the current nodes, except that the current node does
289 // not exist in it. This means that it is one level higher in the dom
290 // chain than the current node, and it is our idom! We know that we have
291 // already added a DominatorTree node for our idom, because the idom must
292 // be a predecessor in the depth first order that we are iterating through
293 // the method.
Chris Lattner94108ab2001-07-06 16:58:22 +0000294 //
295 DominatorSet::DomSetType::const_iterator I = Dominators.begin();
296 DominatorSet::DomSetType::const_iterator End = Dominators.end();
297 for (; I != End; ++I) { // Iterate over dominators...
Chris Lattner93193f82002-01-31 00:42:27 +0000298 // All of our dominators should form a chain, where the number
299 // of elements in the dominator set indicates what level the
300 // node is at in the chain. We want the node immediately
301 // above us, so it will have an identical dominator set,
302 // except that BB will not dominate it... therefore it's
Chris Lattner94108ab2001-07-06 16:58:22 +0000303 // dominator set size will be one less than BB's...
304 //
305 if (DS.getDominators(*I).size() == DomSetSize - 1) {
306 // We know that the immediate dominator should already have a node,
307 // because we are traversing the CFG in depth first order!
308 //
309 Node *IDomNode = Nodes[*I];
310 assert(IDomNode && "No node for IDOM?");
311
312 // Add a new tree node for this BasicBlock, and link it as a child of
313 // IDomNode
314 Nodes[BB] = IDomNode->addChild(new Node(BB, IDomNode));
315 break;
316 }
Chris Lattner17152292001-07-02 05:46:38 +0000317 }
318 }
319 }
320}
321
322
323
324//===----------------------------------------------------------------------===//
325// DominanceFrontier Implementation
326//===----------------------------------------------------------------------===//
327
Chris Lattner93193f82002-01-31 00:42:27 +0000328AnalysisID cfg::DominanceFrontier::ID(AnalysisID::create<cfg::DominanceFrontier>());
329AnalysisID cfg::DominanceFrontier::PostDomID(AnalysisID::create<cfg::DominanceFrontier>());
330
Chris Lattner17152292001-07-02 05:46:38 +0000331const cfg::DominanceFrontier::DomSetType &
332cfg::DominanceFrontier::calcDomFrontier(const DominatorTree &DT,
333 const DominatorTree::Node *Node) {
334 // Loop over CFG successors to calculate DFlocal[Node]
335 const BasicBlock *BB = Node->getNode();
336 DomSetType &S = Frontiers[BB]; // The new set to fill in...
337
Chris Lattner455889a2002-02-12 22:39:50 +0000338 for (succ_const_iterator SI = succ_begin(BB), SE = succ_end(BB);
339 SI != SE; ++SI) {
Chris Lattner17152292001-07-02 05:46:38 +0000340 // Does Node immediately dominate this successor?
341 if (DT[*SI]->getIDom() != Node)
342 S.insert(*SI);
343 }
344
345 // At this point, S is DFlocal. Now we union in DFup's of our children...
346 // Loop through and visit the nodes that Node immediately dominates (Node's
347 // children in the IDomTree)
348 //
349 for (DominatorTree::Node::const_iterator NI = Node->begin(), NE = Node->end();
350 NI != NE; ++NI) {
351 DominatorTree::Node *IDominee = *NI;
352 const DomSetType &ChildDF = calcDomFrontier(DT, IDominee);
353
354 DomSetType::const_iterator CDFI = ChildDF.begin(), CDFE = ChildDF.end();
355 for (; CDFI != CDFE; ++CDFI) {
356 if (!Node->dominates(DT[*CDFI]))
357 S.insert(*CDFI);
358 }
359 }
360
361 return S;
362}
Chris Lattner94108ab2001-07-06 16:58:22 +0000363
364const cfg::DominanceFrontier::DomSetType &
365cfg::DominanceFrontier::calcPostDomFrontier(const DominatorTree &DT,
366 const DominatorTree::Node *Node) {
367 // Loop over CFG successors to calculate DFlocal[Node]
368 const BasicBlock *BB = Node->getNode();
369 DomSetType &S = Frontiers[BB]; // The new set to fill in...
Chris Lattner384e5b12001-08-23 17:07:19 +0000370 if (!Root) return S;
Chris Lattner94108ab2001-07-06 16:58:22 +0000371
Chris Lattner455889a2002-02-12 22:39:50 +0000372 for (pred_const_iterator SI = pred_begin(BB), SE = pred_end(BB);
373 SI != SE; ++SI) {
Chris Lattner94108ab2001-07-06 16:58:22 +0000374 // Does Node immediately dominate this predeccessor?
375 if (DT[*SI]->getIDom() != Node)
376 S.insert(*SI);
377 }
378
379 // At this point, S is DFlocal. Now we union in DFup's of our children...
380 // Loop through and visit the nodes that Node immediately dominates (Node's
381 // children in the IDomTree)
382 //
383 for (DominatorTree::Node::const_iterator NI = Node->begin(), NE = Node->end();
384 NI != NE; ++NI) {
385 DominatorTree::Node *IDominee = *NI;
Chris Lattner35908302001-07-08 05:54:09 +0000386 const DomSetType &ChildDF = calcPostDomFrontier(DT, IDominee);
Chris Lattner94108ab2001-07-06 16:58:22 +0000387
388 DomSetType::const_iterator CDFI = ChildDF.begin(), CDFE = ChildDF.end();
389 for (; CDFI != CDFE; ++CDFI) {
390 if (!Node->dominates(DT[*CDFI]))
391 S.insert(*CDFI);
392 }
393 }
394
395 return S;
396}