blob: c241646b636441346340b4475e91e8348d752612 [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 Lattner94108ab2001-07-06 16:58:22 +00008#include "llvm/Analysis/SimplifyCFG.h" // To get cfg::UnifyAllExitNodes
Chris Lattner3ff43872001-09-28 22:56:31 +00009#include "llvm/Support/DepthFirstIterator.h"
Chris Lattner57dbb3a2001-07-23 17:46:59 +000010#include "llvm/Support/STLExtras.h"
Chris Lattner3ff43872001-09-28 22:56:31 +000011#include "llvm/Method.h"
Chris Lattner17152292001-07-02 05:46:38 +000012#include <algorithm>
13
14//===----------------------------------------------------------------------===//
15// Helper Template
16//===----------------------------------------------------------------------===//
17
18// set_intersect - Identical to set_intersection, except that it works on
19// set<>'s and is nicer to use. Functionally, this iterates through S1,
20// removing elements that are not contained in S2.
21//
22template <class Ty, class Ty2>
23void set_intersect(set<Ty> &S1, const set<Ty2> &S2) {
24 for (typename set<Ty>::iterator I = S1.begin(); I != S1.end();) {
25 const Ty &E = *I;
26 ++I;
27 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2
28 }
29}
30
Chris Lattner94108ab2001-07-06 16:58:22 +000031//===----------------------------------------------------------------------===//
32// DominatorBase Implementation
33//===----------------------------------------------------------------------===//
34
35bool cfg::DominatorBase::isPostDominator() const {
Chris Lattner384e5b12001-08-23 17:07:19 +000036 // Root can be null if there is no exit node from the CFG and is postdom set
37 return Root == 0 || Root != Root->getParent()->front();
Chris Lattner94108ab2001-07-06 16:58:22 +000038}
39
Chris Lattner17152292001-07-02 05:46:38 +000040
41//===----------------------------------------------------------------------===//
42// DominatorSet Implementation
43//===----------------------------------------------------------------------===//
44
45// DominatorSet ctor - Build either the dominator set or the post-dominator
46// set for a method...
47//
Chris Lattner94108ab2001-07-06 16:58:22 +000048cfg::DominatorSet::DominatorSet(const Method *M) : DominatorBase(M->front()) {
49 calcForwardDominatorSet(M);
50}
51
52// calcForwardDominatorSet - This method calculates the forward dominator sets
53// for the specified method.
54//
55void cfg::DominatorSet::calcForwardDominatorSet(const Method *M) {
Chris Lattner17152292001-07-02 05:46:38 +000056 assert(Root && M && "Can't build dominator set of null method!");
Chris Lattner1b5499b2001-08-24 14:56:34 +000057 assert(Root->use_size() == 0 && "Root node has predecessors in method!");
Chris Lattner17152292001-07-02 05:46:38 +000058 bool Changed;
59 do {
60 Changed = false;
61
62 DomSetType WorkingSet;
Chris Lattner3ff43872001-09-28 22:56:31 +000063 df_iterator<const Method*> It = df_begin(M), End = df_end(M);
Chris Lattner17152292001-07-02 05:46:38 +000064 for ( ; It != End; ++It) {
65 const BasicBlock *BB = *It;
Chris Lattnerf0604b82001-10-01 13:19:53 +000066 BasicBlock::pred_const_iterator PI = BB->pred_begin(),
67 PEnd = BB->pred_end();
Chris Lattner17152292001-07-02 05:46:38 +000068 if (PI != PEnd) { // Is there SOME predecessor?
69 // Loop until we get to a predecessor that has had it's dom set filled
70 // in at least once. We are guaranteed to have this because we are
71 // traversing the graph in DFO and have handled start nodes specially.
72 //
73 while (Doms[*PI].size() == 0) ++PI;
74 WorkingSet = Doms[*PI];
75
76 for (++PI; PI != PEnd; ++PI) { // Intersect all of the predecessor sets
77 DomSetType &PredSet = Doms[*PI];
78 if (PredSet.size())
79 set_intersect(WorkingSet, PredSet);
80 }
81 }
82
83 WorkingSet.insert(BB); // A block always dominates itself
84 DomSetType &BBSet = Doms[BB];
85 if (BBSet != WorkingSet) {
86 BBSet.swap(WorkingSet); // Constant time operation!
87 Changed = true; // The sets changed.
88 }
89 WorkingSet.clear(); // Clear out the set for next iteration
90 }
91 } while (Changed);
Chris Lattner94108ab2001-07-06 16:58:22 +000092}
Chris Lattner17152292001-07-02 05:46:38 +000093
Chris Lattner94108ab2001-07-06 16:58:22 +000094// Postdominator set constructor. This ctor converts the specified method to
95// only have a single exit node (return stmt), then calculates the post
96// dominance sets for the method.
97//
98cfg::DominatorSet::DominatorSet(Method *M, bool PostDomSet)
99 : DominatorBase(M->front()) {
100 if (!PostDomSet) { calcForwardDominatorSet(M); return; }
101
102 Root = cfg::UnifyAllExitNodes(M);
Chris Lattner384e5b12001-08-23 17:07:19 +0000103 if (Root == 0) { // No exit node for the method? Postdomsets are all empty
104 for (Method::iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI)
105 Doms[*MI] = DomSetType();
106 return;
107 }
Chris Lattner94108ab2001-07-06 16:58:22 +0000108
109 bool Changed;
110 do {
111 Changed = false;
112
113 set<const BasicBlock*> Visited;
114 DomSetType WorkingSet;
Chris Lattner3ff43872001-09-28 22:56:31 +0000115 idf_iterator<const BasicBlock*> It = idf_begin(Root), End = idf_end(Root);
Chris Lattner94108ab2001-07-06 16:58:22 +0000116 for ( ; It != End; ++It) {
117 const BasicBlock *BB = *It;
Chris Lattnerf0604b82001-10-01 13:19:53 +0000118 BasicBlock::succ_const_iterator PI = BB->succ_begin(),
119 PEnd = BB->succ_end();
Chris Lattner94108ab2001-07-06 16:58:22 +0000120 if (PI != PEnd) { // Is there SOME predecessor?
121 // Loop until we get to a successor that has had it's dom set filled
122 // in at least once. We are guaranteed to have this because we are
123 // traversing the graph in DFO and have handled start nodes specially.
124 //
125 while (Doms[*PI].size() == 0) ++PI;
126 WorkingSet = Doms[*PI];
127
128 for (++PI; PI != PEnd; ++PI) { // Intersect all of the successor sets
129 DomSetType &PredSet = Doms[*PI];
130 if (PredSet.size())
131 set_intersect(WorkingSet, PredSet);
132 }
133 }
134
135 WorkingSet.insert(BB); // A block always dominates itself
136 DomSetType &BBSet = Doms[BB];
137 if (BBSet != WorkingSet) {
138 BBSet.swap(WorkingSet); // Constant time operation!
139 Changed = true; // The sets changed.
140 }
141 WorkingSet.clear(); // Clear out the set for next iteration
142 }
143 } while (Changed);
Chris Lattner17152292001-07-02 05:46:38 +0000144}
145
146
147//===----------------------------------------------------------------------===//
148// ImmediateDominators Implementation
149//===----------------------------------------------------------------------===//
150
151// calcIDoms - Calculate the immediate dominator mapping, given a set of
152// dominators for every basic block.
153void cfg::ImmediateDominators::calcIDoms(const DominatorSet &DS) {
154 // Loop over all of the nodes that have dominators... figuring out the IDOM
155 // for each node...
156 //
157 for (DominatorSet::const_iterator DI = DS.begin(), DEnd = DS.end();
158 DI != DEnd; ++DI) {
159 const BasicBlock *BB = DI->first;
160 const DominatorSet::DomSetType &Dominators = DI->second;
161 unsigned DomSetSize = Dominators.size();
162 if (DomSetSize == 1) continue; // Root node... IDom = null
163
164 // Loop over all dominators of this node. This corresponds to looping over
165 // nodes in the dominator chain, looking for a node whose dominator set is
166 // equal to the current nodes, except that the current node does not exist
167 // in it. This means that it is one level higher in the dom chain than the
168 // current node, and it is our idom!
169 //
170 DominatorSet::DomSetType::const_iterator I = Dominators.begin();
171 DominatorSet::DomSetType::const_iterator End = Dominators.end();
172 for (; I != End; ++I) { // Iterate over dominators...
173 // All of our dominators should form a chain, where the number of elements
174 // in the dominator set indicates what level the node is at in the chain.
175 // We want the node immediately above us, so it will have an identical
176 // dominator set, except that BB will not dominate it... therefore it's
177 // dominator set size will be one less than BB's...
178 //
179 if (DS.getDominators(*I).size() == DomSetSize - 1) {
180 IDoms[BB] = *I;
181 break;
182 }
183 }
184 }
185}
186
187
188//===----------------------------------------------------------------------===//
189// DominatorTree Implementation
190//===----------------------------------------------------------------------===//
191
192// DominatorTree dtor - Free all of the tree node memory.
193//
194cfg::DominatorTree::~DominatorTree() {
195 for (NodeMapType::iterator I = Nodes.begin(), E = Nodes.end(); I != E; ++I)
196 delete I->second;
197}
198
199
200cfg::DominatorTree::DominatorTree(const ImmediateDominators &IDoms)
Chris Lattner94108ab2001-07-06 16:58:22 +0000201 : DominatorBase(IDoms.getRoot()) {
Chris Lattner17152292001-07-02 05:46:38 +0000202 const Method *M = Root->getParent();
203
204 Nodes[Root] = new Node(Root, 0); // Add a node for the root...
205
206 // Iterate over all nodes in depth first order...
Chris Lattner3ff43872001-09-28 22:56:31 +0000207 for (df_iterator<const Method*> I = df_begin(M), E = df_end(M); I != E; ++I) {
Chris Lattner17152292001-07-02 05:46:38 +0000208 const BasicBlock *BB = *I, *IDom = IDoms[*I];
209
210 if (IDom != 0) { // Ignore the root node and other nasty nodes
211 // We know that the immediate dominator should already have a node,
212 // because we are traversing the CFG in depth first order!
213 //
214 assert(Nodes[IDom] && "No node for IDOM?");
215 Node *IDomNode = Nodes[IDom];
216
217 // Add a new tree node for this BasicBlock, and link it as a child of
218 // IDomNode
219 Nodes[BB] = IDomNode->addChild(new Node(BB, IDomNode));
220 }
221 }
222}
223
224void cfg::DominatorTree::calculate(const DominatorSet &DS) {
Chris Lattner17152292001-07-02 05:46:38 +0000225 Nodes[Root] = new Node(Root, 0); // Add a node for the root...
226
Chris Lattner94108ab2001-07-06 16:58:22 +0000227 if (!isPostDominator()) {
228 // Iterate over all nodes in depth first order...
Chris Lattner3ff43872001-09-28 22:56:31 +0000229 for (df_iterator<const BasicBlock*> I = df_begin(Root), E = df_end(Root);
230 I != E; ++I) {
Chris Lattner94108ab2001-07-06 16:58:22 +0000231 const BasicBlock *BB = *I;
232 const DominatorSet::DomSetType &Dominators = DS.getDominators(BB);
233 unsigned DomSetSize = Dominators.size();
234 if (DomSetSize == 1) continue; // Root node... IDom = null
235
Chris Lattner3ff43872001-09-28 22:56:31 +0000236 // Loop over all dominators of this node. This corresponds to looping over
Chris Lattner94108ab2001-07-06 16:58:22 +0000237 // nodes in the dominator chain, looking for a node whose dominator set is
238 // equal to the current nodes, except that the current node does not exist
Chris Lattner3ff43872001-09-28 22:56:31 +0000239 // in it. This means that it is one level higher in the dom chain than the
Chris Lattner94108ab2001-07-06 16:58:22 +0000240 // current node, and it is our idom! We know that we have already added
241 // a DominatorTree node for our idom, because the idom must be a
242 // predecessor in the depth first order that we are iterating through the
243 // method.
Chris Lattner17152292001-07-02 05:46:38 +0000244 //
Chris Lattner94108ab2001-07-06 16:58:22 +0000245 DominatorSet::DomSetType::const_iterator I = Dominators.begin();
246 DominatorSet::DomSetType::const_iterator End = Dominators.end();
247 for (; I != End; ++I) { // Iterate over dominators...
Chris Lattner3ff43872001-09-28 22:56:31 +0000248 // All of our dominators should form a chain, where the number of
249 // elements in the dominator set indicates what level the node is at in
250 // the chain. We want the node immediately above us, so it will have
251 // an identical dominator set, except that BB will not dominate it...
252 // therefore it's dominator set size will be one less than BB's...
Chris Lattner17152292001-07-02 05:46:38 +0000253 //
Chris Lattner94108ab2001-07-06 16:58:22 +0000254 if (DS.getDominators(*I).size() == DomSetSize - 1) {
255 // We know that the immediate dominator should already have a node,
256 // because we are traversing the CFG in depth first order!
257 //
258 Node *IDomNode = Nodes[*I];
259 assert(IDomNode && "No node for IDOM?");
260
261 // Add a new tree node for this BasicBlock, and link it as a child of
262 // IDomNode
263 Nodes[BB] = IDomNode->addChild(new Node(BB, IDomNode));
264 break;
265 }
266 }
267 }
Chris Lattner384e5b12001-08-23 17:07:19 +0000268 } else if (Root) {
Chris Lattner94108ab2001-07-06 16:58:22 +0000269 // Iterate over all nodes in depth first order...
Chris Lattner3ff43872001-09-28 22:56:31 +0000270 for (idf_iterator<const BasicBlock*> I = idf_begin(Root), E = idf_end(Root);
271 I != E; ++I) {
Chris Lattner94108ab2001-07-06 16:58:22 +0000272 const BasicBlock *BB = *I;
273 const DominatorSet::DomSetType &Dominators = DS.getDominators(BB);
274 unsigned DomSetSize = Dominators.size();
275 if (DomSetSize == 1) continue; // Root node... IDom = null
276
Chris Lattner3ff43872001-09-28 22:56:31 +0000277 // Loop over all dominators of this node. This corresponds to looping
278 // over nodes in the dominator chain, looking for a node whose dominator
279 // set is equal to the current nodes, except that the current node does
280 // not exist in it. This means that it is one level higher in the dom
281 // chain than the current node, and it is our idom! We know that we have
282 // already added a DominatorTree node for our idom, because the idom must
283 // be a predecessor in the depth first order that we are iterating through
284 // the method.
Chris Lattner94108ab2001-07-06 16:58:22 +0000285 //
286 DominatorSet::DomSetType::const_iterator I = Dominators.begin();
287 DominatorSet::DomSetType::const_iterator End = Dominators.end();
288 for (; I != End; ++I) { // Iterate over dominators...
289 // All of our dominators should form a chain, where the number of elements
290 // in the dominator set indicates what level the node is at in the chain.
291 // We want the node immediately above us, so it will have an identical
292 // dominator set, except that BB will not dominate it... therefore it's
293 // dominator set size will be one less than BB's...
294 //
295 if (DS.getDominators(*I).size() == DomSetSize - 1) {
296 // We know that the immediate dominator should already have a node,
297 // because we are traversing the CFG in depth first order!
298 //
299 Node *IDomNode = Nodes[*I];
300 assert(IDomNode && "No node for IDOM?");
301
302 // Add a new tree node for this BasicBlock, and link it as a child of
303 // IDomNode
304 Nodes[BB] = IDomNode->addChild(new Node(BB, IDomNode));
305 break;
306 }
Chris Lattner17152292001-07-02 05:46:38 +0000307 }
308 }
309 }
310}
311
312
313
314//===----------------------------------------------------------------------===//
315// DominanceFrontier Implementation
316//===----------------------------------------------------------------------===//
317
318const cfg::DominanceFrontier::DomSetType &
319cfg::DominanceFrontier::calcDomFrontier(const DominatorTree &DT,
320 const DominatorTree::Node *Node) {
321 // Loop over CFG successors to calculate DFlocal[Node]
322 const BasicBlock *BB = Node->getNode();
323 DomSetType &S = Frontiers[BB]; // The new set to fill in...
324
Chris Lattnerf0604b82001-10-01 13:19:53 +0000325 for (BasicBlock::succ_const_iterator SI = BB->succ_begin(),
326 SE = BB->succ_end(); SI != SE; ++SI) {
Chris Lattner17152292001-07-02 05:46:38 +0000327 // Does Node immediately dominate this successor?
328 if (DT[*SI]->getIDom() != Node)
329 S.insert(*SI);
330 }
331
332 // At this point, S is DFlocal. Now we union in DFup's of our children...
333 // Loop through and visit the nodes that Node immediately dominates (Node's
334 // children in the IDomTree)
335 //
336 for (DominatorTree::Node::const_iterator NI = Node->begin(), NE = Node->end();
337 NI != NE; ++NI) {
338 DominatorTree::Node *IDominee = *NI;
339 const DomSetType &ChildDF = calcDomFrontier(DT, IDominee);
340
341 DomSetType::const_iterator CDFI = ChildDF.begin(), CDFE = ChildDF.end();
342 for (; CDFI != CDFE; ++CDFI) {
343 if (!Node->dominates(DT[*CDFI]))
344 S.insert(*CDFI);
345 }
346 }
347
348 return S;
349}
Chris Lattner94108ab2001-07-06 16:58:22 +0000350
351const cfg::DominanceFrontier::DomSetType &
352cfg::DominanceFrontier::calcPostDomFrontier(const DominatorTree &DT,
353 const DominatorTree::Node *Node) {
354 // Loop over CFG successors to calculate DFlocal[Node]
355 const BasicBlock *BB = Node->getNode();
356 DomSetType &S = Frontiers[BB]; // The new set to fill in...
Chris Lattner384e5b12001-08-23 17:07:19 +0000357 if (!Root) return S;
Chris Lattner94108ab2001-07-06 16:58:22 +0000358
Chris Lattnerf0604b82001-10-01 13:19:53 +0000359 for (BasicBlock::pred_const_iterator SI = BB->pred_begin(),
360 SE = BB->pred_end(); SI != SE; ++SI) {
Chris Lattner94108ab2001-07-06 16:58:22 +0000361 // Does Node immediately dominate this predeccessor?
362 if (DT[*SI]->getIDom() != Node)
363 S.insert(*SI);
364 }
365
366 // At this point, S is DFlocal. Now we union in DFup's of our children...
367 // Loop through and visit the nodes that Node immediately dominates (Node's
368 // children in the IDomTree)
369 //
370 for (DominatorTree::Node::const_iterator NI = Node->begin(), NE = Node->end();
371 NI != NE; ++NI) {
372 DominatorTree::Node *IDominee = *NI;
Chris Lattner35908302001-07-08 05:54:09 +0000373 const DomSetType &ChildDF = calcPostDomFrontier(DT, IDominee);
Chris Lattner94108ab2001-07-06 16:58:22 +0000374
375 DomSetType::const_iterator CDFI = ChildDF.begin(), CDFE = ChildDF.end();
376 for (; CDFI != CDFE; ++CDFI) {
377 if (!Node->dominates(DT[*CDFI]))
378 S.insert(*CDFI);
379 }
380 }
381
382 return S;
383}