2002-08-02 16:43:03 +00:00
|
|
|
//===- Dominators.cpp - Dominator Calculation -----------------------------===//
|
2001-07-02 05:46:38 +00:00
|
|
|
//
|
2002-08-02 16:43:03 +00:00
|
|
|
// This file implements simple dominator construction algorithms for finding
|
|
|
|
// forward dominators. Postdominators are available in libanalysis, but are not
|
|
|
|
// included in libvmcore, because it's not needed. Forward dominators are
|
|
|
|
// needed to support the Verifier pass.
|
2001-07-02 05:46:38 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/Dominators.h"
|
2002-02-12 21:07:25 +00:00
|
|
|
#include "llvm/Support/CFG.h"
|
2002-07-27 01:12:17 +00:00
|
|
|
#include "llvm/Assembly/Writer.h"
|
2001-11-27 00:03:19 +00:00
|
|
|
#include "Support/DepthFirstIterator.h"
|
2002-02-05 03:35:31 +00:00
|
|
|
#include "Support/SetOperations.h"
|
2002-01-20 22:54:45 +00:00
|
|
|
|
2001-07-06 16:58:22 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-01-31 00:42:27 +00:00
|
|
|
// DominatorSet Implementation
|
2001-07-06 16:58:22 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-07-26 21:12:44 +00:00
|
|
|
static RegisterAnalysis<DominatorSet>
|
2002-07-30 16:27:52 +00:00
|
|
|
A("domset", "Dominator Set Construction", true);
|
2001-07-06 16:58:22 +00:00
|
|
|
|
2002-05-13 22:03:16 +00:00
|
|
|
// dominates - Return true if A dominates B. This performs the special checks
|
2003-08-18 14:43:39 +00:00
|
|
|
// necessary if A and B are in the same basic block.
|
2002-05-13 22:03:16 +00:00
|
|
|
//
|
2002-07-26 18:40:14 +00:00
|
|
|
bool DominatorSetBase::dominates(Instruction *A, Instruction *B) const {
|
2002-05-13 22:03:16 +00:00
|
|
|
BasicBlock *BBA = A->getParent(), *BBB = B->getParent();
|
|
|
|
if (BBA != BBB) return dominates(BBA, BBB);
|
|
|
|
|
|
|
|
// Loop through the basic block until we find A or B.
|
|
|
|
BasicBlock::iterator I = BBA->begin();
|
2002-06-25 16:13:24 +00:00
|
|
|
for (; &*I != A && &*I != B; ++I) /*empty*/;
|
2002-05-13 22:03:16 +00:00
|
|
|
|
|
|
|
// A dominates B if it is found first in the basic block...
|
2002-06-25 16:13:24 +00:00
|
|
|
return &*I == A;
|
2002-05-13 22:03:16 +00:00
|
|
|
}
|
2002-01-31 00:42:27 +00:00
|
|
|
|
2001-11-26 18:52:02 +00:00
|
|
|
|
2002-08-22 20:39:29 +00:00
|
|
|
void DominatorSet::calculateDominatorsFromBlock(BasicBlock *RootBB) {
|
2001-07-02 05:46:38 +00:00
|
|
|
bool Changed;
|
2002-08-22 20:39:29 +00:00
|
|
|
Doms[RootBB].insert(RootBB); // Root always dominates itself...
|
2001-07-02 05:46:38 +00:00
|
|
|
do {
|
|
|
|
Changed = false;
|
|
|
|
|
|
|
|
DomSetType WorkingSet;
|
2002-08-22 20:39:29 +00:00
|
|
|
df_iterator<BasicBlock*> It = df_begin(RootBB), End = df_end(RootBB);
|
2001-07-02 05:46:38 +00:00
|
|
|
for ( ; It != End; ++It) {
|
2002-04-28 00:15:57 +00:00
|
|
|
BasicBlock *BB = *It;
|
|
|
|
pred_iterator PI = pred_begin(BB), PEnd = pred_end(BB);
|
2001-07-02 05:46:38 +00:00
|
|
|
if (PI != PEnd) { // Is there SOME predecessor?
|
2003-08-18 22:11:16 +00:00
|
|
|
// Loop until we get to a predecessor that has had its dom set filled
|
2001-07-02 05:46:38 +00:00
|
|
|
// in at least once. We are guaranteed to have this because we are
|
2003-05-12 22:35:13 +00:00
|
|
|
// traversing the graph in DFO and have handled start nodes specially,
|
|
|
|
// except when there are unreachable blocks.
|
2001-07-02 05:46:38 +00:00
|
|
|
//
|
2003-05-12 22:35:13 +00:00
|
|
|
while (PI != PEnd && Doms[*PI].empty()) ++PI;
|
|
|
|
if (PI != PEnd) { // Not unreachable code case?
|
|
|
|
WorkingSet = Doms[*PI];
|
2001-07-02 05:46:38 +00:00
|
|
|
|
2003-05-12 22:35:13 +00:00
|
|
|
// Intersect all of the predecessor sets
|
|
|
|
for (++PI; PI != PEnd; ++PI) {
|
|
|
|
DomSetType &PredSet = Doms[*PI];
|
|
|
|
if (PredSet.size())
|
|
|
|
set_intersect(WorkingSet, PredSet);
|
|
|
|
}
|
|
|
|
}
|
2003-08-18 22:11:16 +00:00
|
|
|
} else {
|
2003-09-10 20:37:51 +00:00
|
|
|
assert(Roots.size() == 1 && BB == Roots[0] &&
|
|
|
|
"We got into unreachable code somehow!");
|
2001-07-02 05:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WorkingSet.insert(BB); // A block always dominates itself
|
|
|
|
DomSetType &BBSet = Doms[BB];
|
|
|
|
if (BBSet != WorkingSet) {
|
2003-08-18 22:11:16 +00:00
|
|
|
//assert(WorkingSet.size() > BBSet.size() && "Must only grow sets!");
|
2001-07-02 05:46:38 +00:00
|
|
|
BBSet.swap(WorkingSet); // Constant time operation!
|
|
|
|
Changed = true; // The sets changed.
|
|
|
|
}
|
|
|
|
WorkingSet.clear(); // Clear out the set for next iteration
|
|
|
|
}
|
|
|
|
} while (Changed);
|
2002-08-22 20:39:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// runOnFunction - This method calculates the forward dominator sets for the
|
|
|
|
// specified function.
|
|
|
|
//
|
|
|
|
bool DominatorSet::runOnFunction(Function &F) {
|
2003-09-20 14:39:18 +00:00
|
|
|
BasicBlock *Root = &F.getEntryBlock();
|
2003-09-10 20:37:51 +00:00
|
|
|
Roots.clear();
|
|
|
|
Roots.push_back(Root);
|
2002-08-22 20:39:29 +00:00
|
|
|
assert(pred_begin(Root) == pred_end(Root) &&
|
|
|
|
"Root node has predecessors in function!");
|
2002-10-08 19:12:08 +00:00
|
|
|
recalculate();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DominatorSet::recalculate() {
|
2003-09-10 20:37:51 +00:00
|
|
|
assert(Roots.size() == 1 && "DominatorSet should have single root block!");
|
2002-10-08 19:12:08 +00:00
|
|
|
Doms.clear(); // Reset from the last time we were run...
|
2002-08-22 20:39:29 +00:00
|
|
|
|
|
|
|
// Calculate dominator sets for the reachable basic blocks...
|
2003-09-10 20:37:51 +00:00
|
|
|
calculateDominatorsFromBlock(Roots[0]);
|
2002-08-02 16:51:27 +00:00
|
|
|
|
2003-08-18 22:11:16 +00:00
|
|
|
|
|
|
|
// Loop through the function, ensuring that every basic block has at least an
|
|
|
|
// empty set of nodes. This is important for the case when there is
|
2002-08-22 20:39:29 +00:00
|
|
|
// unreachable blocks.
|
2003-09-10 20:37:51 +00:00
|
|
|
Function *F = Roots[0]->getParent();
|
2003-08-18 22:11:16 +00:00
|
|
|
for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) Doms[I];
|
2001-07-06 16:58:22 +00:00
|
|
|
}
|
|
|
|
|
2002-07-26 18:40:14 +00:00
|
|
|
|
2003-05-22 21:47:17 +00:00
|
|
|
static std::ostream &operator<<(std::ostream &o,
|
|
|
|
const std::set<BasicBlock*> &BBs) {
|
|
|
|
for (std::set<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
|
2003-09-10 20:37:51 +00:00
|
|
|
I != E; ++I)
|
|
|
|
if (*I)
|
|
|
|
WriteAsOperand(o, *I, false);
|
|
|
|
else
|
|
|
|
o << " <<exit node>>";
|
2002-07-27 01:12:17 +00:00
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DominatorSetBase::print(std::ostream &o) const {
|
2002-09-29 21:42:42 +00:00
|
|
|
for (const_iterator I = begin(), E = end(); I != E; ++I) {
|
2003-09-10 20:37:51 +00:00
|
|
|
o << " DomSet For BB: ";
|
|
|
|
if (I->first)
|
|
|
|
WriteAsOperand(o, I->first, false);
|
|
|
|
else
|
|
|
|
o << " <<exit node>>";
|
|
|
|
o << " is:\t" << I->second << "\n";
|
2002-09-29 21:42:42 +00:00
|
|
|
}
|
2002-07-27 01:12:17 +00:00
|
|
|
}
|
2001-07-02 05:46:38 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ImmediateDominators Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-07-26 21:12:44 +00:00
|
|
|
static RegisterAnalysis<ImmediateDominators>
|
2002-07-30 16:27:52 +00:00
|
|
|
C("idom", "Immediate Dominators Construction", true);
|
2002-01-31 00:42:27 +00:00
|
|
|
|
2001-07-02 05:46:38 +00:00
|
|
|
// calcIDoms - Calculate the immediate dominator mapping, given a set of
|
|
|
|
// dominators for every basic block.
|
2002-07-26 18:40:14 +00:00
|
|
|
void ImmediateDominatorsBase::calcIDoms(const DominatorSetBase &DS) {
|
2001-07-02 05:46:38 +00:00
|
|
|
// Loop over all of the nodes that have dominators... figuring out the IDOM
|
|
|
|
// for each node...
|
|
|
|
//
|
|
|
|
for (DominatorSet::const_iterator DI = DS.begin(), DEnd = DS.end();
|
|
|
|
DI != DEnd; ++DI) {
|
2002-04-28 00:15:57 +00:00
|
|
|
BasicBlock *BB = DI->first;
|
2001-07-02 05:46:38 +00:00
|
|
|
const DominatorSet::DomSetType &Dominators = DI->second;
|
|
|
|
unsigned DomSetSize = Dominators.size();
|
|
|
|
if (DomSetSize == 1) continue; // Root node... IDom = null
|
|
|
|
|
|
|
|
// Loop over all dominators of this node. This corresponds to looping over
|
|
|
|
// nodes in the dominator chain, looking for a node whose dominator set is
|
|
|
|
// equal to the current nodes, except that the current node does not exist
|
|
|
|
// in it. This means that it is one level higher in the dom chain than the
|
|
|
|
// current node, and it is our idom!
|
|
|
|
//
|
|
|
|
DominatorSet::DomSetType::const_iterator I = Dominators.begin();
|
|
|
|
DominatorSet::DomSetType::const_iterator End = Dominators.end();
|
|
|
|
for (; I != End; ++I) { // Iterate over dominators...
|
|
|
|
// All of our dominators should form a chain, where the number of elements
|
|
|
|
// in the dominator set indicates what level the node is at in the chain.
|
|
|
|
// We want the node immediately above us, so it will have an identical
|
|
|
|
// dominator set, except that BB will not dominate it... therefore it's
|
|
|
|
// dominator set size will be one less than BB's...
|
|
|
|
//
|
|
|
|
if (DS.getDominators(*I).size() == DomSetSize - 1) {
|
|
|
|
IDoms[BB] = *I;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-31 19:32:01 +00:00
|
|
|
void ImmediateDominatorsBase::print(std::ostream &o) const {
|
2002-10-04 14:45:48 +00:00
|
|
|
for (const_iterator I = begin(), E = end(); I != E; ++I) {
|
2003-09-10 20:37:51 +00:00
|
|
|
o << " Immediate Dominator For Basic Block:";
|
|
|
|
if (I->first)
|
|
|
|
WriteAsOperand(o, I->first, false);
|
|
|
|
else
|
|
|
|
o << " <<exit node>>";
|
2002-10-04 14:45:48 +00:00
|
|
|
o << " is:";
|
2003-09-10 20:37:51 +00:00
|
|
|
if (I->second)
|
|
|
|
WriteAsOperand(o, I->second, false);
|
|
|
|
else
|
|
|
|
o << " <<exit node>>";
|
2002-10-04 14:45:48 +00:00
|
|
|
o << "\n";
|
|
|
|
}
|
2003-09-10 20:37:51 +00:00
|
|
|
o << "\n";
|
2002-07-27 01:12:17 +00:00
|
|
|
}
|
|
|
|
|
2001-07-02 05:46:38 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DominatorTree Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-07-26 21:12:44 +00:00
|
|
|
static RegisterAnalysis<DominatorTree>
|
2002-07-30 16:27:52 +00:00
|
|
|
E("domtree", "Dominator Tree Construction", true);
|
2002-01-31 00:42:27 +00:00
|
|
|
|
2002-07-26 18:40:14 +00:00
|
|
|
// DominatorTreeBase::reset - Free all of the tree node memory.
|
2001-07-02 05:46:38 +00:00
|
|
|
//
|
2002-07-26 18:40:14 +00:00
|
|
|
void DominatorTreeBase::reset() {
|
2001-07-02 05:46:38 +00:00
|
|
|
for (NodeMapType::iterator I = Nodes.begin(), E = Nodes.end(); I != E; ++I)
|
|
|
|
delete I->second;
|
2002-01-31 00:42:27 +00:00
|
|
|
Nodes.clear();
|
2003-09-10 20:37:51 +00:00
|
|
|
RootNode = 0;
|
2001-07-02 05:46:38 +00:00
|
|
|
}
|
|
|
|
|
2003-09-11 16:26:13 +00:00
|
|
|
void DominatorTreeBase::Node::setIDom(Node *NewIDom) {
|
2002-09-26 16:14:41 +00:00
|
|
|
assert(IDom && "No immediate dominator?");
|
|
|
|
if (IDom != NewIDom) {
|
|
|
|
std::vector<Node*>::iterator I =
|
|
|
|
std::find(IDom->Children.begin(), IDom->Children.end(), this);
|
|
|
|
assert(I != IDom->Children.end() &&
|
|
|
|
"Not in immediate dominator children set!");
|
|
|
|
// I am no longer your child...
|
|
|
|
IDom->Children.erase(I);
|
|
|
|
|
|
|
|
// Switch to new dominator
|
|
|
|
IDom = NewIDom;
|
|
|
|
IDom->Children.push_back(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-02 05:46:38 +00:00
|
|
|
|
2002-07-26 18:40:14 +00:00
|
|
|
void DominatorTree::calculate(const DominatorSet &DS) {
|
2003-09-10 20:37:51 +00:00
|
|
|
assert(Roots.size() == 1 && "DominatorTree should have 1 root block!");
|
|
|
|
BasicBlock *Root = Roots[0];
|
|
|
|
Nodes[Root] = RootNode = new Node(Root, 0); // Add a node for the root...
|
2001-07-02 05:46:38 +00:00
|
|
|
|
|
|
|
// Iterate over all nodes in depth first order...
|
2002-07-26 18:40:14 +00:00
|
|
|
for (df_iterator<BasicBlock*> I = df_begin(Root), E = df_end(Root);
|
|
|
|
I != E; ++I) {
|
|
|
|
BasicBlock *BB = *I;
|
|
|
|
const DominatorSet::DomSetType &Dominators = DS.getDominators(BB);
|
|
|
|
unsigned DomSetSize = Dominators.size();
|
|
|
|
if (DomSetSize == 1) continue; // Root node... IDom = null
|
|
|
|
|
|
|
|
// Loop over all dominators of this node. This corresponds to looping over
|
|
|
|
// nodes in the dominator chain, looking for a node whose dominator set is
|
|
|
|
// equal to the current nodes, except that the current node does not exist
|
|
|
|
// in it. This means that it is one level higher in the dom chain than the
|
|
|
|
// current node, and it is our idom! We know that we have already added
|
|
|
|
// a DominatorTree node for our idom, because the idom must be a
|
|
|
|
// predecessor in the depth first order that we are iterating through the
|
|
|
|
// function.
|
|
|
|
//
|
|
|
|
DominatorSet::DomSetType::const_iterator I = Dominators.begin();
|
|
|
|
DominatorSet::DomSetType::const_iterator End = Dominators.end();
|
|
|
|
for (; I != End; ++I) { // Iterate over dominators...
|
|
|
|
// All of our dominators should form a chain, where the number of
|
|
|
|
// elements in the dominator set indicates what level the node is at in
|
|
|
|
// the chain. We want the node immediately above us, so it will have
|
|
|
|
// an identical dominator set, except that BB will not dominate it...
|
|
|
|
// therefore it's dominator set size will be one less than BB's...
|
2001-07-02 05:46:38 +00:00
|
|
|
//
|
2002-07-26 18:40:14 +00:00
|
|
|
if (DS.getDominators(*I).size() == DomSetSize - 1) {
|
|
|
|
// We know that the immediate dominator should already have a node,
|
|
|
|
// because we are traversing the CFG in depth first order!
|
|
|
|
//
|
|
|
|
Node *IDomNode = Nodes[*I];
|
|
|
|
assert(IDomNode && "No node for IDOM?");
|
|
|
|
|
|
|
|
// Add a new tree node for this BasicBlock, and link it as a child of
|
|
|
|
// IDomNode
|
|
|
|
Nodes[BB] = IDomNode->addChild(new Node(BB, IDomNode));
|
|
|
|
break;
|
|
|
|
}
|
2001-07-02 05:46:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-26 18:40:14 +00:00
|
|
|
|
2002-07-31 19:32:01 +00:00
|
|
|
static std::ostream &operator<<(std::ostream &o,
|
|
|
|
const DominatorTreeBase::Node *Node) {
|
2003-09-11 16:26:13 +00:00
|
|
|
if (Node->getBlock())
|
|
|
|
WriteAsOperand(o, Node->getBlock(), false);
|
2003-09-10 20:37:51 +00:00
|
|
|
else
|
|
|
|
o << " <<exit node>>";
|
|
|
|
return o << "\n";
|
2002-07-27 01:12:17 +00:00
|
|
|
}
|
|
|
|
|
2002-07-31 19:32:01 +00:00
|
|
|
static void PrintDomTree(const DominatorTreeBase::Node *N, std::ostream &o,
|
2002-07-27 01:12:17 +00:00
|
|
|
unsigned Lev) {
|
2003-09-10 20:37:51 +00:00
|
|
|
o << std::string(2*Lev, ' ') << "[" << Lev << "] " << N;
|
2002-07-27 01:12:17 +00:00
|
|
|
for (DominatorTreeBase::Node::const_iterator I = N->begin(), E = N->end();
|
2003-09-10 20:37:51 +00:00
|
|
|
I != E; ++I)
|
2002-07-27 01:12:17 +00:00
|
|
|
PrintDomTree(*I, o, Lev+1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DominatorTreeBase::print(std::ostream &o) const {
|
|
|
|
o << "=============================--------------------------------\n"
|
|
|
|
<< "Inorder Dominator Tree:\n";
|
2003-09-10 20:37:51 +00:00
|
|
|
PrintDomTree(getRootNode(), o, 1);
|
2002-07-27 01:12:17 +00:00
|
|
|
}
|
2001-07-02 05:46:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DominanceFrontier Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-07-26 21:12:44 +00:00
|
|
|
static RegisterAnalysis<DominanceFrontier>
|
2002-07-30 16:27:52 +00:00
|
|
|
G("domfrontier", "Dominance Frontier Construction", true);
|
2002-01-31 00:42:27 +00:00
|
|
|
|
2002-04-28 16:21:30 +00:00
|
|
|
const DominanceFrontier::DomSetType &
|
2002-07-26 18:40:14 +00:00
|
|
|
DominanceFrontier::calculate(const DominatorTree &DT,
|
|
|
|
const DominatorTree::Node *Node) {
|
2001-07-02 05:46:38 +00:00
|
|
|
// Loop over CFG successors to calculate DFlocal[Node]
|
2003-09-11 16:26:13 +00:00
|
|
|
BasicBlock *BB = Node->getBlock();
|
2001-07-02 05:46:38 +00:00
|
|
|
DomSetType &S = Frontiers[BB]; // The new set to fill in...
|
|
|
|
|
2002-04-28 00:15:57 +00:00
|
|
|
for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB);
|
2002-02-12 22:39:50 +00:00
|
|
|
SI != SE; ++SI) {
|
2001-07-02 05:46:38 +00:00
|
|
|
// Does Node immediately dominate this successor?
|
|
|
|
if (DT[*SI]->getIDom() != Node)
|
|
|
|
S.insert(*SI);
|
|
|
|
}
|
|
|
|
|
|
|
|
// At this point, S is DFlocal. Now we union in DFup's of our children...
|
|
|
|
// Loop through and visit the nodes that Node immediately dominates (Node's
|
|
|
|
// children in the IDomTree)
|
|
|
|
//
|
|
|
|
for (DominatorTree::Node::const_iterator NI = Node->begin(), NE = Node->end();
|
|
|
|
NI != NE; ++NI) {
|
|
|
|
DominatorTree::Node *IDominee = *NI;
|
2002-07-26 18:40:14 +00:00
|
|
|
const DomSetType &ChildDF = calculate(DT, IDominee);
|
2001-07-02 05:46:38 +00:00
|
|
|
|
|
|
|
DomSetType::const_iterator CDFI = ChildDF.begin(), CDFE = ChildDF.end();
|
|
|
|
for (; CDFI != CDFE; ++CDFI) {
|
|
|
|
if (!Node->dominates(DT[*CDFI]))
|
|
|
|
S.insert(*CDFI);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return S;
|
|
|
|
}
|
2001-07-06 16:58:22 +00:00
|
|
|
|
2002-07-27 01:12:17 +00:00
|
|
|
void DominanceFrontierBase::print(std::ostream &o) const {
|
|
|
|
for (const_iterator I = begin(), E = end(); I != E; ++I) {
|
2003-09-10 20:37:51 +00:00
|
|
|
o << " DomFrontier for BB";
|
|
|
|
if (I->first)
|
|
|
|
WriteAsOperand(o, I->first, false);
|
|
|
|
else
|
|
|
|
o << " <<exit node>>";
|
|
|
|
o << " is:\t" << I->second << "\n";
|
2002-07-27 01:12:17 +00:00
|
|
|
}
|
|
|
|
}
|