Substantial revamp: DSGraphs now may contain the graphs for multiple functions

in the same graph


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6991 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2003-06-30 03:14:23 +00:00
parent 1a36443c2f
commit 17fefa3ac3
2 changed files with 82 additions and 48 deletions

View File

@ -15,16 +15,25 @@
struct DSGraph { struct DSGraph {
// Public data-type declarations... // Public data-type declarations...
typedef hash_map<Value*, DSNodeHandle> ScalarMapTy; typedef hash_map<Value*, DSNodeHandle> ScalarMapTy;
typedef hash_map<Function*, DSNodeHandle> ReturnNodesTy;
/// NodeMapTy - This data type is used when cloning one graph into another to
/// keep track of the correspondence between the nodes in the old and new
/// graphs.
typedef hash_map<const DSNode*, DSNodeHandle> NodeMapTy;
private: private:
Function *Func; // Func - The LLVM function this graph corresponds to
DSGraph *GlobalsGraph; // Pointer to the common graph of global objects DSGraph *GlobalsGraph; // Pointer to the common graph of global objects
bool PrintAuxCalls; // Should this graph print the Aux calls vector? bool PrintAuxCalls; // Should this graph print the Aux calls vector?
DSNodeHandle RetNode; // The node that gets returned...
std::vector<DSNode*> Nodes; std::vector<DSNode*> Nodes;
ScalarMapTy ScalarMap; ScalarMapTy ScalarMap;
// ReturnNodes - A return value for every function merged into this graph.
// Each DSGraph may have multiple functions merged into it at any time, which
// is used for representing SCCs.
//
ReturnNodesTy ReturnNodes;
// FunctionCalls - This vector maintains a single entry for each call // FunctionCalls - This vector maintains a single entry for each call
// instruction in the current graph. The first entry in the vector is the // instruction in the current graph. The first entry in the vector is the
// scalar that holds the return value for the call, the second is the function // scalar that holds the return value for the call, the second is the function
@ -42,7 +51,7 @@ private:
void operator=(const DSGraph &); // DO NOT IMPLEMENT void operator=(const DSGraph &); // DO NOT IMPLEMENT
public: public:
// Create a new, empty, DSGraph. // Create a new, empty, DSGraph.
DSGraph() : Func(0), GlobalsGraph(0), PrintAuxCalls(false) {} DSGraph() : GlobalsGraph(0), PrintAuxCalls(false) {}
DSGraph(Function &F, DSGraph *GlobalsGraph); // Compute the local DSGraph DSGraph(Function &F, DSGraph *GlobalsGraph); // Compute the local DSGraph
// Copy ctor - If you want to capture the node mapping between the source and // Copy ctor - If you want to capture the node mapping between the source and
@ -54,15 +63,9 @@ public:
// method. // method.
// //
DSGraph(const DSGraph &DSG); DSGraph(const DSGraph &DSG);
DSGraph(const DSGraph &DSG, hash_map<const DSNode*, DSNodeHandle> &NodeMap); DSGraph(const DSGraph &DSG, NodeMapTy &NodeMap);
~DSGraph(); ~DSGraph();
bool hasFunction() const { return Func != 0; }
Function &getFunction() const {
assert(hasFunction() && "Cannot call getFunction on graph without a fn!");
return *Func;
}
DSGraph *getGlobalsGraph() const { return GlobalsGraph; } DSGraph *getGlobalsGraph() const { return GlobalsGraph; }
void setGlobalsGraph(DSGraph *G) { GlobalsGraph = G; } void setGlobalsGraph(DSGraph *G) { GlobalsGraph = G; }
@ -116,14 +119,27 @@ public:
return I->second; return I->second;
} }
const DSNodeHandle &getRetNode() const { return RetNode; } /// getReturnNodes - Return the mapping of functions to their return nodes for
DSNodeHandle &getRetNode() { return RetNode; } /// this graph.
const ReturnNodesTy &getReturnNodes() const { return ReturnNodes; }
ReturnNodesTy &getReturnNodes() { return ReturnNodes; }
/// getReturnNodeFor - Return the return node for the specified function.
///
DSNodeHandle &getReturnNodeFor(Function &F) {
ReturnNodesTy::iterator I = ReturnNodes.find(&F);
assert(I != ReturnNodes.end() && "F not in this DSGraph!");
return I->second;
}
/// getGraphSize - Return the number of nodes in this graph.
///
unsigned getGraphSize() const { unsigned getGraphSize() const {
return Nodes.size(); return Nodes.size();
} }
/// print - Print a dot graph to the specified ostream... /// print - Print a dot graph to the specified ostream...
///
void print(std::ostream &O) const; void print(std::ostream &O) const;
/// dump - call print(std::cerr), for use from the debugger... /// dump - call print(std::cerr), for use from the debugger...
@ -170,8 +186,8 @@ public:
}; };
void removeDeadNodes(unsigned Flags); void removeDeadNodes(unsigned Flags);
// CloneFlags enum - Bits that may be passed into the cloneInto method to /// CloneFlags enum - Bits that may be passed into the cloneInto method to
// specify how to clone the function graph. /// specify how to clone the function graph.
enum CloneFlags { enum CloneFlags {
StripAllocaBit = 1 << 0, KeepAllocaBit = 0 << 0, StripAllocaBit = 1 << 0, KeepAllocaBit = 0 << 0,
DontCloneCallNodes = 1 << 1, CloneCallNodes = 0 << 0, DontCloneCallNodes = 1 << 1, CloneCallNodes = 0 << 0,
@ -179,14 +195,14 @@ public:
StripModRefBits = 1 << 3, KeepModRefBits = 0 << 0, StripModRefBits = 1 << 3, KeepModRefBits = 0 << 0,
}; };
// cloneInto - Clone the specified DSGraph into the current graph, returning /// cloneInto - Clone the specified DSGraph into the current graph. The
// the Return node of the graph. The translated ScalarMap for the old /// translated ScalarMap for the old function is filled into the OldValMap
// function is filled into the OldValMap member. If StripAllocas is set to /// member, and the translated ReturnNodes map is returned into ReturnNodes.
// 'StripAllocaBit', Alloca markers are removed from the graph as the graph is ///
// being cloned. /// The CloneFlags member controls various aspects of the cloning process.
// ///
DSNodeHandle cloneInto(const DSGraph &G, ScalarMapTy &OldValMap, void cloneInto(const DSGraph &G, ScalarMapTy &OldValMap,
hash_map<const DSNode*, DSNodeHandle> &OldNodeMap, ReturnNodesTy &OldReturnNodes, NodeMapTy &OldNodeMap,
unsigned CloneFlags = 0); unsigned CloneFlags = 0);
/// mergeInGraph - The method is used for merging graphs together. If the /// mergeInGraph - The method is used for merging graphs together. If the
@ -195,7 +211,8 @@ public:
/// the graph. If the StripAlloca's argument is 'StripAllocaBit' then Alloca /// the graph. If the StripAlloca's argument is 'StripAllocaBit' then Alloca
/// markers are removed from nodes. /// markers are removed from nodes.
/// ///
void mergeInGraph(DSCallSite &CS, const DSGraph &Graph, unsigned CloneFlags); void mergeInGraph(DSCallSite &CS, Function &F, const DSGraph &Graph,
unsigned CloneFlags);
// Methods for checking to make sure graphs are well formed... // Methods for checking to make sure graphs are well formed...
void AssertNodeInGraph(const DSNode *N) const { void AssertNodeInGraph(const DSNode *N) const {

View File

@ -15,16 +15,25 @@
struct DSGraph { struct DSGraph {
// Public data-type declarations... // Public data-type declarations...
typedef hash_map<Value*, DSNodeHandle> ScalarMapTy; typedef hash_map<Value*, DSNodeHandle> ScalarMapTy;
typedef hash_map<Function*, DSNodeHandle> ReturnNodesTy;
/// NodeMapTy - This data type is used when cloning one graph into another to
/// keep track of the correspondence between the nodes in the old and new
/// graphs.
typedef hash_map<const DSNode*, DSNodeHandle> NodeMapTy;
private: private:
Function *Func; // Func - The LLVM function this graph corresponds to
DSGraph *GlobalsGraph; // Pointer to the common graph of global objects DSGraph *GlobalsGraph; // Pointer to the common graph of global objects
bool PrintAuxCalls; // Should this graph print the Aux calls vector? bool PrintAuxCalls; // Should this graph print the Aux calls vector?
DSNodeHandle RetNode; // The node that gets returned...
std::vector<DSNode*> Nodes; std::vector<DSNode*> Nodes;
ScalarMapTy ScalarMap; ScalarMapTy ScalarMap;
// ReturnNodes - A return value for every function merged into this graph.
// Each DSGraph may have multiple functions merged into it at any time, which
// is used for representing SCCs.
//
ReturnNodesTy ReturnNodes;
// FunctionCalls - This vector maintains a single entry for each call // FunctionCalls - This vector maintains a single entry for each call
// instruction in the current graph. The first entry in the vector is the // instruction in the current graph. The first entry in the vector is the
// scalar that holds the return value for the call, the second is the function // scalar that holds the return value for the call, the second is the function
@ -42,7 +51,7 @@ private:
void operator=(const DSGraph &); // DO NOT IMPLEMENT void operator=(const DSGraph &); // DO NOT IMPLEMENT
public: public:
// Create a new, empty, DSGraph. // Create a new, empty, DSGraph.
DSGraph() : Func(0), GlobalsGraph(0), PrintAuxCalls(false) {} DSGraph() : GlobalsGraph(0), PrintAuxCalls(false) {}
DSGraph(Function &F, DSGraph *GlobalsGraph); // Compute the local DSGraph DSGraph(Function &F, DSGraph *GlobalsGraph); // Compute the local DSGraph
// Copy ctor - If you want to capture the node mapping between the source and // Copy ctor - If you want to capture the node mapping between the source and
@ -54,15 +63,9 @@ public:
// method. // method.
// //
DSGraph(const DSGraph &DSG); DSGraph(const DSGraph &DSG);
DSGraph(const DSGraph &DSG, hash_map<const DSNode*, DSNodeHandle> &NodeMap); DSGraph(const DSGraph &DSG, NodeMapTy &NodeMap);
~DSGraph(); ~DSGraph();
bool hasFunction() const { return Func != 0; }
Function &getFunction() const {
assert(hasFunction() && "Cannot call getFunction on graph without a fn!");
return *Func;
}
DSGraph *getGlobalsGraph() const { return GlobalsGraph; } DSGraph *getGlobalsGraph() const { return GlobalsGraph; }
void setGlobalsGraph(DSGraph *G) { GlobalsGraph = G; } void setGlobalsGraph(DSGraph *G) { GlobalsGraph = G; }
@ -116,14 +119,27 @@ public:
return I->second; return I->second;
} }
const DSNodeHandle &getRetNode() const { return RetNode; } /// getReturnNodes - Return the mapping of functions to their return nodes for
DSNodeHandle &getRetNode() { return RetNode; } /// this graph.
const ReturnNodesTy &getReturnNodes() const { return ReturnNodes; }
ReturnNodesTy &getReturnNodes() { return ReturnNodes; }
/// getReturnNodeFor - Return the return node for the specified function.
///
DSNodeHandle &getReturnNodeFor(Function &F) {
ReturnNodesTy::iterator I = ReturnNodes.find(&F);
assert(I != ReturnNodes.end() && "F not in this DSGraph!");
return I->second;
}
/// getGraphSize - Return the number of nodes in this graph.
///
unsigned getGraphSize() const { unsigned getGraphSize() const {
return Nodes.size(); return Nodes.size();
} }
/// print - Print a dot graph to the specified ostream... /// print - Print a dot graph to the specified ostream...
///
void print(std::ostream &O) const; void print(std::ostream &O) const;
/// dump - call print(std::cerr), for use from the debugger... /// dump - call print(std::cerr), for use from the debugger...
@ -170,8 +186,8 @@ public:
}; };
void removeDeadNodes(unsigned Flags); void removeDeadNodes(unsigned Flags);
// CloneFlags enum - Bits that may be passed into the cloneInto method to /// CloneFlags enum - Bits that may be passed into the cloneInto method to
// specify how to clone the function graph. /// specify how to clone the function graph.
enum CloneFlags { enum CloneFlags {
StripAllocaBit = 1 << 0, KeepAllocaBit = 0 << 0, StripAllocaBit = 1 << 0, KeepAllocaBit = 0 << 0,
DontCloneCallNodes = 1 << 1, CloneCallNodes = 0 << 0, DontCloneCallNodes = 1 << 1, CloneCallNodes = 0 << 0,
@ -179,14 +195,14 @@ public:
StripModRefBits = 1 << 3, KeepModRefBits = 0 << 0, StripModRefBits = 1 << 3, KeepModRefBits = 0 << 0,
}; };
// cloneInto - Clone the specified DSGraph into the current graph, returning /// cloneInto - Clone the specified DSGraph into the current graph. The
// the Return node of the graph. The translated ScalarMap for the old /// translated ScalarMap for the old function is filled into the OldValMap
// function is filled into the OldValMap member. If StripAllocas is set to /// member, and the translated ReturnNodes map is returned into ReturnNodes.
// 'StripAllocaBit', Alloca markers are removed from the graph as the graph is ///
// being cloned. /// The CloneFlags member controls various aspects of the cloning process.
// ///
DSNodeHandle cloneInto(const DSGraph &G, ScalarMapTy &OldValMap, void cloneInto(const DSGraph &G, ScalarMapTy &OldValMap,
hash_map<const DSNode*, DSNodeHandle> &OldNodeMap, ReturnNodesTy &OldReturnNodes, NodeMapTy &OldNodeMap,
unsigned CloneFlags = 0); unsigned CloneFlags = 0);
/// mergeInGraph - The method is used for merging graphs together. If the /// mergeInGraph - The method is used for merging graphs together. If the
@ -195,7 +211,8 @@ public:
/// the graph. If the StripAlloca's argument is 'StripAllocaBit' then Alloca /// the graph. If the StripAlloca's argument is 'StripAllocaBit' then Alloca
/// markers are removed from nodes. /// markers are removed from nodes.
/// ///
void mergeInGraph(DSCallSite &CS, const DSGraph &Graph, unsigned CloneFlags); void mergeInGraph(DSCallSite &CS, Function &F, const DSGraph &Graph,
unsigned CloneFlags);
// Methods for checking to make sure graphs are well formed... // Methods for checking to make sure graphs are well formed...
void AssertNodeInGraph(const DSNode *N) const { void AssertNodeInGraph(const DSNode *N) const {