* Eliminate boolean arguments in favor of using enums
[oota-llvm.git] / include / llvm / Analysis / DataStructure / DSGraph.h
1 //===- DSGraph.h - Represent a collection of data structures ----*- C++ -*-===//
2 //
3 // This header defines the data structure graph.
4 //
5 //===----------------------------------------------------------------------===//
6
7 #ifndef LLVM_ANALYSIS_DSGRAPH_H
8 #define LLVM_ANALYSIS_DSGRAPH_H
9
10 #include "llvm/Analysis/DSNode.h"
11
12 //===----------------------------------------------------------------------===//
13 /// DSGraph - The graph that represents a function.
14 ///
15 class DSGraph {
16   Function *Func;          // Func - The LLVM function this graph corresponds to
17   DSGraph *GlobalsGraph;   // Pointer to the common graph of global objects
18   bool PrintAuxCalls;      // Should this graph print the Aux calls vector?
19
20   DSNodeHandle RetNode;    // The node that gets returned...
21   std::vector<DSNode*> Nodes;
22   std::map<Value*, DSNodeHandle> ScalarMap;
23
24   // FunctionCalls - This vector maintains a single entry for each call
25   // instruction in the current graph.  The first entry in the vector is the
26   // scalar that holds the return value for the call, the second is the function
27   // scalar being invoked, and the rest are pointer arguments to the function.
28   // This vector is built by the Local graph and is never modified after that.
29   //
30   std::vector<DSCallSite> FunctionCalls;
31
32   // AuxFunctionCalls - This vector contains call sites that have been processed
33   // by some mechanism.  In pratice, the BU Analysis uses this vector to hold
34   // the _unresolved_ call sites, because it cannot modify FunctionCalls.
35   //
36   std::vector<DSCallSite> AuxFunctionCalls;
37
38   void operator=(const DSGraph &); // DO NOT IMPLEMENT
39 public:
40   DSGraph() : Func(0), GlobalsGraph(0) {}      // Create a new, empty, DSGraph.
41   DSGraph(Function &F, DSGraph *GlobalsGraph); // Compute the local DSGraph
42
43   // Copy ctor - If you want to capture the node mapping between the source and
44   // destination graph, you may optionally do this by specifying a map to record
45   // this into.
46   //
47   // Note that a copied graph does not retain the GlobalsGraph pointer of the
48   // source.  You need to set a new GlobalsGraph with the setGlobalsGraph
49   // method.
50   //
51   DSGraph(const DSGraph &DSG);
52   DSGraph(const DSGraph &DSG, std::map<const DSNode*, DSNodeHandle> &NodeMap);
53   ~DSGraph();
54
55   bool hasFunction() const { return Func != 0; }
56   Function &getFunction() const { return *Func; }
57
58   DSGraph *getGlobalsGraph() const { return GlobalsGraph; }
59   void setGlobalsGraph(DSGraph *G) { GlobalsGraph = G; }
60
61   // setPrintAuxCalls - If you call this method, the auxillary call vector will
62   // be printed instead of the standard call vector to the dot file.
63   //
64   void setPrintAuxCalls() { PrintAuxCalls = true; }
65   bool shouldPrintAuxCalls() const { return PrintAuxCalls; }
66
67   /// getNodes - Get a vector of all the nodes in the graph
68   /// 
69   const std::vector<DSNode*> &getNodes() const { return Nodes; }
70         std::vector<DSNode*> &getNodes()       { return Nodes; }
71
72   /// addNode - Add a new node to the graph.
73   ///
74   void addNode(DSNode *N) { Nodes.push_back(N); }
75
76   /// getScalarMap - Get a map that describes what the nodes the scalars in this
77   /// function point to...
78   ///
79   std::map<Value*, DSNodeHandle> &getScalarMap() { return ScalarMap; }
80   const std::map<Value*, DSNodeHandle> &getScalarMap() const {return ScalarMap;}
81
82   /// getFunctionCalls - Return the list of call sites in the original local
83   /// graph...
84   ///
85   const std::vector<DSCallSite> &getFunctionCalls() const {
86     return FunctionCalls;
87   }
88
89   /// getAuxFunctionCalls - Get the call sites as modified by whatever passes
90   /// have been run.
91   ///
92   std::vector<DSCallSite> &getAuxFunctionCalls() {
93     return AuxFunctionCalls;
94   }
95   const std::vector<DSCallSite> &getAuxFunctionCalls() const {
96     return AuxFunctionCalls;
97   }
98
99   /// getNodeForValue - Given a value that is used or defined in the body of the
100   /// current function, return the DSNode that it points to.
101   ///
102   DSNodeHandle &getNodeForValue(Value *V) { return ScalarMap[V]; }
103
104   const DSNodeHandle &getNodeForValue(Value *V) const {
105     std::map<Value*, DSNodeHandle>::const_iterator I = ScalarMap.find(V);
106     assert(I != ScalarMap.end() &&
107            "Use non-const lookup function if node may not be in the map");
108     return I->second;
109   }
110
111   const DSNodeHandle &getRetNode() const { return RetNode; }
112         DSNodeHandle &getRetNode()       { return RetNode; }
113
114   unsigned getGraphSize() const {
115     return Nodes.size();
116   }
117
118   void print(std::ostream &O) const;
119   void dump() const;
120   void writeGraphToFile(std::ostream &O, const std::string &GraphName) const;
121
122   /// maskNodeTypes - Apply a mask to all of the node types in the graph.  This
123   /// is useful for clearing out markers like Incomplete.
124   ///
125   void maskNodeTypes(unsigned char Mask) {
126     for (unsigned i = 0, e = Nodes.size(); i != e; ++i)
127       Nodes[i]->NodeType &= Mask;
128   }
129   void maskIncompleteMarkers() { maskNodeTypes(~DSNode::Incomplete); }
130
131   // markIncompleteNodes - Traverse the graph, identifying nodes that may be
132   // modified by other functions that have not been resolved yet.  This marks
133   // nodes that are reachable through three sources of "unknownness":
134   //   Global Variables, Function Calls, and Incoming Arguments
135   //
136   // For any node that may have unknown components (because something outside
137   // the scope of current analysis may have modified it), the 'Incomplete' flag
138   // is added to the NodeType.
139   //
140   enum MarkIncompleteFlags {
141     MarkFormalArgs = 1, IgnoreFormalArgs = 0,
142   };
143   void markIncompleteNodes(unsigned Flags);
144
145   // removeDeadNodes - Use a reachability analysis to eliminate subgraphs that
146   // are unreachable.  This often occurs because the data structure doesn't
147   // "escape" into it's caller, and thus should be eliminated from the caller's
148   // graph entirely.  This is only appropriate to use when inlining graphs.
149   //
150   enum RemoveDeadNodesFlags {
151     RemoveUnreachableGlobals = 1, KeepUnreachableGlobals = 0,
152   };
153   void removeDeadNodes(unsigned Flags);
154
155   // CloneFlags enum - Bits that may be passed into the cloneInto method to
156   // specify how to clone the function graph.
157   enum CloneFlags {
158     StripAllocaBit        = 1 << 0, KeepAllocaBit     = 0 << 0,
159     DontCloneCallNodes    = 1 << 1, CloneCallNodes    = 0 << 0,
160     DontCloneAuxCallNodes = 1 << 2, CloneAuxCallNodes = 0 << 0,
161     StripModRefBits       = 1 << 3, KeepModRefBits    = 0 << 0,
162   };
163
164   // cloneInto - Clone the specified DSGraph into the current graph, returning
165   // the Return node of the graph.  The translated ScalarMap for the old
166   // function is filled into the OldValMap member.  If StripAllocas is set to
167   // 'StripAllocaBit', Alloca markers are removed from the graph as the graph is
168   // being cloned.
169   //
170   DSNodeHandle cloneInto(const DSGraph &G,
171                          std::map<Value*, DSNodeHandle> &OldValMap,
172                          std::map<const DSNode*, DSNodeHandle> &OldNodeMap,
173                          unsigned CloneFlags = 0);
174
175   /// mergeInGraph - The method is used for merging graphs together.  If the
176   /// argument graph is not *this, it makes a clone of the specified graph, then
177   /// merges the nodes specified in the call site with the formal arguments in
178   /// the graph.  If the StripAlloca's argument is 'StripAllocaBit' then Alloca
179   /// markers are removed from nodes.
180   ///
181   void mergeInGraph(DSCallSite &CS, const DSGraph &Graph, unsigned CloneFlags);
182
183 private:
184   bool isNodeDead(DSNode *N);
185
186 public:
187   // removeTriviallyDeadNodes - After the graph has been constructed, this
188   // method removes all unreachable nodes that are created because they got
189   // merged with other nodes in the graph.  This is used as the first step of
190   // removeDeadNodes.
191   //
192   void removeTriviallyDeadNodes();
193 };
194
195 #endif