2001-07-02 05:45:17 +00:00
|
|
|
//===- llvm/Analysis/DominatorSet.h - Dominator Set Calculation --*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// This file defines the following classes:
|
|
|
|
// 1. DominatorSet: Calculates the [reverse] dominator set for a method
|
2001-07-03 05:35:23 +00:00
|
|
|
// 2. ImmediateDominators: Calculates and holds a mapping between BasicBlocks
|
|
|
|
// and their immediate dominator.
|
|
|
|
// 3. DominatorTree: Represent the ImmediateDominator as an explicit tree
|
|
|
|
// structure.
|
|
|
|
// 4. DominanceFrontier: Calculate and hold the dominance frontier for a
|
|
|
|
// method.
|
|
|
|
//
|
|
|
|
// These data structures are listed in increasing order of complexity. It
|
|
|
|
// takes longer to calculate the dominator frontier, for example, than the
|
|
|
|
// ImmediateDominator mapping.
|
2001-07-02 05:45:17 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2001-07-03 05:35:23 +00:00
|
|
|
#ifndef LLVM_DOMINATORS_H
|
|
|
|
#define LLVM_DOMINATORS_H
|
2001-07-02 05:45:17 +00:00
|
|
|
|
|
|
|
#include <set>
|
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
|
|
|
class Method;
|
|
|
|
class BasicBlock;
|
|
|
|
|
|
|
|
namespace cfg {
|
|
|
|
|
2001-07-06 16:57:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// DominatorBase - Base class that other, more interesting dominator analyses
|
|
|
|
// inherit from.
|
|
|
|
//
|
|
|
|
class DominatorBase {
|
|
|
|
protected:
|
|
|
|
const BasicBlock *Root;
|
|
|
|
inline DominatorBase(const BasicBlock *root = 0) : Root(root) {}
|
|
|
|
public:
|
|
|
|
inline const BasicBlock *getRoot() const { return Root; }
|
|
|
|
bool isPostDominator() const; // Returns true if analysis based of postdoms
|
|
|
|
};
|
|
|
|
|
2001-07-02 05:45:17 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// DominatorSet - Maintain a set<const BasicBlock*> for every basic block in a
|
|
|
|
// method, that represents the blocks that dominate the block.
|
|
|
|
//
|
2001-07-06 16:57:21 +00:00
|
|
|
class DominatorSet : public DominatorBase {
|
2001-07-02 05:45:17 +00:00
|
|
|
public:
|
|
|
|
typedef set<const BasicBlock*> DomSetType; // Dom set for a bb
|
|
|
|
typedef map<const BasicBlock *, DomSetType> DomSetMapType; // Map of dom sets
|
|
|
|
private:
|
|
|
|
DomSetMapType Doms;
|
2001-07-06 16:57:21 +00:00
|
|
|
|
|
|
|
void calcForwardDominatorSet(const Method *M);
|
2001-07-02 05:45:17 +00:00
|
|
|
public:
|
|
|
|
// DominatorSet ctor - Build either the dominator set or the post-dominator
|
2001-07-06 16:57:21 +00:00
|
|
|
// set for a method... Building the postdominator set may require the analysis
|
|
|
|
// routine to modify the method so that there is only a single return in the
|
|
|
|
// method.
|
2001-07-02 05:45:17 +00:00
|
|
|
//
|
2001-07-06 16:57:21 +00:00
|
|
|
DominatorSet(const Method *M);
|
|
|
|
DominatorSet( Method *M, bool PostDomSet);
|
2001-07-02 05:45:17 +00:00
|
|
|
|
|
|
|
// Accessor interface:
|
|
|
|
typedef DomSetMapType::const_iterator const_iterator;
|
|
|
|
inline const_iterator begin() const { return Doms.begin(); }
|
|
|
|
inline const_iterator end() const { return Doms.end(); }
|
|
|
|
inline const_iterator find(const BasicBlock* B) const { return Doms.find(B); }
|
|
|
|
|
|
|
|
// getDominators - Return the set of basic blocks that dominate the specified
|
|
|
|
// block.
|
|
|
|
//
|
|
|
|
inline const DomSetType &getDominators(const BasicBlock *BB) const {
|
|
|
|
const_iterator I = find(BB);
|
|
|
|
assert(I != end() && "BB not in method!");
|
|
|
|
return I->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
// dominates - Return true if A dominates B.
|
|
|
|
//
|
|
|
|
inline bool dominates(const BasicBlock *A, const BasicBlock *B) const {
|
|
|
|
return getDominators(B).count(A) != 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// ImmediateDominators - Calculate the immediate dominator for each node in a
|
|
|
|
// method.
|
|
|
|
//
|
2001-07-06 16:57:21 +00:00
|
|
|
class ImmediateDominators : public DominatorBase {
|
2001-07-02 05:45:17 +00:00
|
|
|
map<const BasicBlock*, const BasicBlock*> IDoms;
|
|
|
|
void calcIDoms(const DominatorSet &DS);
|
|
|
|
public:
|
|
|
|
|
|
|
|
// ImmediateDominators ctor - Calculate the idom mapping, for a method, or
|
|
|
|
// from a dominator set calculated for something else...
|
|
|
|
//
|
2001-07-06 16:57:21 +00:00
|
|
|
inline ImmediateDominators(const DominatorSet &DS)
|
|
|
|
: DominatorBase(DS.getRoot()) {
|
2001-07-02 05:45:17 +00:00
|
|
|
calcIDoms(DS); // Can be used to make rev-idoms
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accessor interface:
|
|
|
|
typedef map<const BasicBlock*, const BasicBlock*> IDomMapType;
|
|
|
|
typedef IDomMapType::const_iterator const_iterator;
|
|
|
|
inline const_iterator begin() const { return IDoms.begin(); }
|
|
|
|
inline const_iterator end() const { return IDoms.end(); }
|
|
|
|
inline const_iterator find(const BasicBlock* B) const { return IDoms.find(B);}
|
|
|
|
|
|
|
|
// operator[] - Return the idom for the specified basic block. The start
|
|
|
|
// node returns null, because it does not have an immediate dominator.
|
|
|
|
//
|
|
|
|
inline const BasicBlock *operator[](const BasicBlock *BB) const {
|
|
|
|
map<const BasicBlock*, const BasicBlock*>::const_iterator I =
|
|
|
|
IDoms.find(BB);
|
|
|
|
return I != IDoms.end() ? I->second : 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// DominatorTree - Calculate the immediate dominator tree for a method.
|
|
|
|
//
|
2001-07-06 16:57:21 +00:00
|
|
|
class DominatorTree : public DominatorBase {
|
2001-10-13 06:25:03 +00:00
|
|
|
class Node2;
|
|
|
|
public:
|
|
|
|
typedef Node2 Node;
|
|
|
|
private:
|
2001-07-02 05:45:17 +00:00
|
|
|
map<const BasicBlock*, Node*> Nodes;
|
|
|
|
void calculate(const DominatorSet &DS);
|
|
|
|
typedef map<const BasicBlock*, Node*> NodeMapType;
|
|
|
|
public:
|
2001-10-13 06:25:03 +00:00
|
|
|
class Node2 : public vector<Node*> {
|
2001-07-02 05:45:17 +00:00
|
|
|
friend class DominatorTree;
|
|
|
|
const BasicBlock *TheNode;
|
2001-10-13 06:25:03 +00:00
|
|
|
Node2 * const IDom;
|
2001-07-02 05:45:17 +00:00
|
|
|
public:
|
|
|
|
inline const BasicBlock *getNode() const { return TheNode; }
|
2001-10-13 06:25:03 +00:00
|
|
|
inline Node2 *getIDom() const { return IDom; }
|
2001-07-02 05:45:17 +00:00
|
|
|
inline const vector<Node*> &getChildren() const { return *this; }
|
|
|
|
|
|
|
|
// dominates - Returns true iff this dominates N. Note that this is not a
|
|
|
|
// constant time operation!
|
2001-10-13 06:25:03 +00:00
|
|
|
inline bool dominates(const Node2 *N) const {
|
|
|
|
const Node2 *IDom;
|
2001-07-02 05:45:17 +00:00
|
|
|
while ((IDom = N->getIDom()) != 0 && IDom != this)
|
|
|
|
N = IDom; // Walk up the tree
|
|
|
|
return IDom != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2001-10-13 06:25:03 +00:00
|
|
|
inline Node2(const BasicBlock *node, Node *iDom)
|
2001-07-02 05:45:17 +00:00
|
|
|
: TheNode(node), IDom(iDom) {}
|
2001-10-13 06:25:03 +00:00
|
|
|
inline Node2 *addChild(Node *C) { push_back(C); return C; }
|
2001-07-02 05:45:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
// DominatorTree ctors - Compute a dominator tree, given various amounts of
|
|
|
|
// previous knowledge...
|
2001-07-06 16:57:21 +00:00
|
|
|
inline DominatorTree(const DominatorSet &DS) : DominatorBase(DS.getRoot()) {
|
2001-07-02 05:45:17 +00:00
|
|
|
calculate(DS);
|
|
|
|
}
|
|
|
|
|
|
|
|
DominatorTree(const ImmediateDominators &IDoms);
|
|
|
|
~DominatorTree();
|
|
|
|
|
|
|
|
inline const Node *operator[](const BasicBlock *BB) const {
|
|
|
|
NodeMapType::const_iterator i = Nodes.find(BB);
|
|
|
|
return (i != Nodes.end()) ? i->second : 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// DominanceFrontier - Calculate the dominance frontiers for a method.
|
|
|
|
//
|
2001-07-06 16:57:21 +00:00
|
|
|
class DominanceFrontier : public DominatorBase {
|
2001-10-13 06:25:03 +00:00
|
|
|
public:
|
2001-07-02 05:45:17 +00:00
|
|
|
typedef set<const BasicBlock*> DomSetType; // Dom set for a bb
|
|
|
|
typedef map<const BasicBlock *, DomSetType> DomSetMapType; // Map of dom sets
|
|
|
|
private:
|
|
|
|
DomSetMapType Frontiers;
|
|
|
|
const DomSetType &calcDomFrontier(const DominatorTree &DT,
|
|
|
|
const DominatorTree::Node *Node);
|
2001-07-06 16:57:21 +00:00
|
|
|
const DomSetType &calcPostDomFrontier(const DominatorTree &DT,
|
|
|
|
const DominatorTree::Node *Node);
|
2001-07-02 05:45:17 +00:00
|
|
|
public:
|
2001-07-06 16:57:21 +00:00
|
|
|
DominanceFrontier(const DominatorSet &DS) : DominatorBase(DS.getRoot()) {
|
2001-07-02 05:45:17 +00:00
|
|
|
const DominatorTree DT(DS);
|
2001-07-06 16:57:21 +00:00
|
|
|
if (isPostDominator())
|
|
|
|
calcPostDomFrontier(DT, DT[Root]);
|
|
|
|
else
|
|
|
|
calcDomFrontier(DT, DT[Root]);
|
2001-07-02 05:45:17 +00:00
|
|
|
}
|
2001-07-06 16:57:21 +00:00
|
|
|
DominanceFrontier(const ImmediateDominators &ID)
|
|
|
|
: DominatorBase(ID.getRoot()) {
|
2001-07-02 05:45:17 +00:00
|
|
|
const DominatorTree DT(ID);
|
2001-07-06 16:57:21 +00:00
|
|
|
if (isPostDominator())
|
|
|
|
calcPostDomFrontier(DT, DT[Root]);
|
|
|
|
else
|
|
|
|
calcDomFrontier(DT, DT[Root]);
|
2001-07-02 05:45:17 +00:00
|
|
|
}
|
2001-07-06 16:57:21 +00:00
|
|
|
DominanceFrontier(const DominatorTree &DT) : DominatorBase(DT.getRoot()) {
|
|
|
|
if (isPostDominator())
|
|
|
|
calcPostDomFrontier(DT, DT[Root]);
|
|
|
|
else
|
|
|
|
calcDomFrontier(DT, DT[Root]);
|
2001-07-02 05:45:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Accessor interface:
|
|
|
|
typedef DomSetMapType::const_iterator const_iterator;
|
|
|
|
inline const_iterator begin() const { return Frontiers.begin(); }
|
|
|
|
inline const_iterator end() const { return Frontiers.end(); }
|
|
|
|
inline const_iterator find(const BasicBlock* B) const { return Frontiers.find(B);}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End namespace cfg
|
|
|
|
|
|
|
|
#endif
|