Instead of callign removeTriviallyDeadNodes on the global graph every time
[oota-llvm.git] / lib / Analysis / DataStructure / BottomUpClosure.cpp
1 //===- BottomUpClosure.cpp - Compute bottom-up interprocedural closure ----===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the BUDataStructures class, which represents the
11 // Bottom-Up Interprocedural closure of the data structure graph over the
12 // program.  This is useful for applications like pool allocation, but **not**
13 // applications like alias analysis.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #include "llvm/Analysis/DataStructure.h"
18 #include "llvm/Module.h"
19 #include "Support/Statistic.h"
20 #include "Support/Debug.h"
21 #include "DSCallSiteIterator.h"
22 using namespace llvm;
23
24 namespace {
25   Statistic<> MaxSCC("budatastructure", "Maximum SCC Size in Call Graph");
26   Statistic<> NumBUInlines("budatastructures", "Number of graphs inlined");
27   Statistic<> NumCallEdges("budatastructures", "Number of 'actual' call edges");
28   
29   RegisterAnalysis<BUDataStructures>
30   X("budatastructure", "Bottom-up Data Structure Analysis");
31 }
32
33 using namespace DS;
34
35 // run - Calculate the bottom up data structure graphs for each function in the
36 // program.
37 //
38 bool BUDataStructures::run(Module &M) {
39   LocalDataStructures &LocalDSA = getAnalysis<LocalDataStructures>();
40   GlobalsGraph = new DSGraph(LocalDSA.getGlobalsGraph());
41   GlobalsGraph->setPrintAuxCalls();
42
43   Function *MainFunc = M.getMainFunction();
44   if (MainFunc)
45     calculateReachableGraphs(MainFunc);
46
47   // Calculate the graphs for any functions that are unreachable from main...
48   for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
49     if (!I->isExternal() && !DSInfo.count(I)) {
50 #ifndef NDEBUG
51       if (MainFunc)
52         std::cerr << "*** Function unreachable from main: "
53                   << I->getName() << "\n";
54 #endif
55       calculateReachableGraphs(I);    // Calculate all graphs...
56     }
57
58   NumCallEdges += ActualCallees.size();
59
60   // At the end of the bottom-up pass, the globals graph becomes complete.
61   // FIXME: This is not the right way to do this, but it is sorta better than
62   // nothing!  In particular, externally visible globals and unresolvable call
63   // nodes at the end of the BU phase should make things that they point to
64   // incomplete in the globals graph.
65   // 
66   GlobalsGraph->removeTriviallyDeadNodes();
67   GlobalsGraph->maskIncompleteMarkers();
68   return false;
69 }
70
71 void BUDataStructures::calculateReachableGraphs(Function *F) {
72   std::vector<Function*> Stack;
73   hash_map<Function*, unsigned> ValMap;
74   unsigned NextID = 1;
75   calculateGraphs(F, Stack, NextID, ValMap);
76 }
77
78 DSGraph &BUDataStructures::getOrCreateGraph(Function *F) {
79   // Has the graph already been created?
80   DSGraph *&Graph = DSInfo[F];
81   if (Graph) return *Graph;
82
83   // Copy the local version into DSInfo...
84   Graph = new DSGraph(getAnalysis<LocalDataStructures>().getDSGraph(*F));
85
86   Graph->setGlobalsGraph(GlobalsGraph);
87   Graph->setPrintAuxCalls();
88
89   // Start with a copy of the original call sites...
90   Graph->getAuxFunctionCalls() = Graph->getFunctionCalls();
91   return *Graph;
92 }
93
94 unsigned BUDataStructures::calculateGraphs(Function *F,
95                                            std::vector<Function*> &Stack,
96                                            unsigned &NextID, 
97                                      hash_map<Function*, unsigned> &ValMap) {
98   assert(!ValMap.count(F) && "Shouldn't revisit functions!");
99   unsigned Min = NextID++, MyID = Min;
100   ValMap[F] = Min;
101   Stack.push_back(F);
102
103   if (F->isExternal()) {   // sprintf, fprintf, sscanf, etc...
104     // No callees!
105     Stack.pop_back();
106     ValMap[F] = ~0;
107     return Min;
108   }
109
110   DSGraph &Graph = getOrCreateGraph(F);
111
112   // The edges out of the current node are the call site targets...
113   for (DSCallSiteIterator I = DSCallSiteIterator::begin_aux(Graph),
114          E = DSCallSiteIterator::end_aux(Graph); I != E; ++I) {
115     Function *Callee = *I;
116     unsigned M;
117     // Have we visited the destination function yet?
118     hash_map<Function*, unsigned>::iterator It = ValMap.find(Callee);
119     if (It == ValMap.end())  // No, visit it now.
120       M = calculateGraphs(Callee, Stack, NextID, ValMap);
121     else                    // Yes, get it's number.
122       M = It->second;
123     if (M < Min) Min = M;
124   }
125
126   assert(ValMap[F] == MyID && "SCC construction assumption wrong!");
127   if (Min != MyID)
128     return Min;         // This is part of a larger SCC!
129
130   // If this is a new SCC, process it now.
131   if (Stack.back() == F) {           // Special case the single "SCC" case here.
132     DEBUG(std::cerr << "Visiting single node SCC #: " << MyID << " fn: "
133                     << F->getName() << "\n");
134     Stack.pop_back();
135     DSGraph &G = getDSGraph(*F);
136     DEBUG(std::cerr << "  [BU] Calculating graph for: " << F->getName()<< "\n");
137     calculateGraph(G);
138     DEBUG(std::cerr << "  [BU] Done inlining: " << F->getName() << " ["
139                     << G.getGraphSize() << "+" << G.getAuxFunctionCalls().size()
140                     << "]\n");
141
142     if (MaxSCC < 1) MaxSCC = 1;
143
144     // Should we revisit the graph?
145     if (DSCallSiteIterator::begin_aux(G) != DSCallSiteIterator::end_aux(G)) {
146       ValMap.erase(F);
147       return calculateGraphs(F, Stack, NextID, ValMap);
148     } else {
149       ValMap[F] = ~0U;
150     }
151     return MyID;
152
153   } else {
154     // SCCFunctions - Keep track of the functions in the current SCC
155     //
156     hash_set<DSGraph*> SCCGraphs;
157
158     Function *NF;
159     std::vector<Function*>::iterator FirstInSCC = Stack.end();
160     DSGraph *SCCGraph = 0;
161     do {
162       NF = *--FirstInSCC;
163       ValMap[NF] = ~0U;
164
165       // Figure out which graph is the largest one, in order to speed things up
166       // a bit in situations where functions in the SCC have widely different
167       // graph sizes.
168       DSGraph &NFGraph = getDSGraph(*NF);
169       SCCGraphs.insert(&NFGraph);
170       if (!SCCGraph || SCCGraph->getGraphSize() < NFGraph.getGraphSize())
171         SCCGraph = &NFGraph;
172     } while (NF != F);
173
174     std::cerr << "Calculating graph for SCC #: " << MyID << " of size: "
175               << SCCGraphs.size() << "\n";
176
177     // Compute the Max SCC Size...
178     if (MaxSCC < SCCGraphs.size())
179       MaxSCC = SCCGraphs.size();
180
181     // First thing first, collapse all of the DSGraphs into a single graph for
182     // the entire SCC.  We computed the largest graph, so clone all of the other
183     // (smaller) graphs into it.  Discard all of the old graphs.
184     //
185     for (hash_set<DSGraph*>::iterator I = SCCGraphs.begin(),
186            E = SCCGraphs.end(); I != E; ++I) {
187       DSGraph &G = **I;
188       if (&G != SCCGraph) {
189         DSGraph::NodeMapTy NodeMap;
190         SCCGraph->cloneInto(G, SCCGraph->getScalarMap(),
191                             SCCGraph->getReturnNodes(), NodeMap);
192         // Update the DSInfo map and delete the old graph...
193         for (DSGraph::ReturnNodesTy::iterator I = G.getReturnNodes().begin(),
194                E = G.getReturnNodes().end(); I != E; ++I)
195           DSInfo[I->first] = SCCGraph;
196         delete &G;
197       }
198     }
199
200     // Clean up the graph before we start inlining a bunch again...
201     SCCGraph->removeDeadNodes(DSGraph::RemoveUnreachableGlobals);
202
203     // Now that we have one big happy family, resolve all of the call sites in
204     // the graph...
205     calculateGraph(*SCCGraph);
206     DEBUG(std::cerr << "  [BU] Done inlining SCC  [" << SCCGraph->getGraphSize()
207                     << "+" << SCCGraph->getAuxFunctionCalls().size() << "]\n");
208
209     std::cerr << "DONE with SCC #: " << MyID << "\n";
210
211     // We never have to revisit "SCC" processed functions...
212     
213     // Drop the stuff we don't need from the end of the stack
214     Stack.erase(FirstInSCC, Stack.end());
215     return MyID;
216   }
217
218   return MyID;  // == Min
219 }
220
221
222 // releaseMemory - If the pass pipeline is done with this pass, we can release
223 // our memory... here...
224 //
225 void BUDataStructures::releaseMemory() {
226   for (hash_map<Function*, DSGraph*>::iterator I = DSInfo.begin(),
227          E = DSInfo.end(); I != E; ++I) {
228     I->second->getReturnNodes().erase(I->first);
229     if (I->second->getReturnNodes().empty())
230       delete I->second;
231   }
232
233   // Empty map so next time memory is released, data structures are not
234   // re-deleted.
235   DSInfo.clear();
236   delete GlobalsGraph;
237   GlobalsGraph = 0;
238 }
239
240 void BUDataStructures::calculateGraph(DSGraph &Graph) {
241   // Move our call site list into TempFCs so that inline call sites go into the
242   // new call site list and doesn't invalidate our iterators!
243   std::vector<DSCallSite> TempFCs;
244   std::vector<DSCallSite> &AuxCallsList = Graph.getAuxFunctionCalls();
245   TempFCs.swap(AuxCallsList);
246
247   DSGraph::ReturnNodesTy &ReturnNodes = Graph.getReturnNodes();
248
249   // Loop over all of the resolvable call sites
250   unsigned LastCallSiteIdx = ~0U;
251   for (DSCallSiteIterator I = DSCallSiteIterator::begin(TempFCs),
252          E = DSCallSiteIterator::end(TempFCs); I != E; ++I) {
253     // If we skipped over any call sites, they must be unresolvable, copy them
254     // to the real call site list.
255     LastCallSiteIdx++;
256     for (; LastCallSiteIdx < I.getCallSiteIdx(); ++LastCallSiteIdx)
257       AuxCallsList.push_back(TempFCs[LastCallSiteIdx]);
258     LastCallSiteIdx = I.getCallSiteIdx();
259     
260     // Resolve the current call...
261     Function *Callee = *I;
262     DSCallSite CS = I.getCallSite();
263
264     if (Callee->isExternal()) {
265       // Ignore this case, simple varargs functions we cannot stub out!
266     } else if (ReturnNodes.count(Callee)) {
267       // Self recursion... simply link up the formal arguments with the
268       // actual arguments...
269       DEBUG(std::cerr << "    Self Inlining: " << Callee->getName() << "\n");
270
271       // Handle self recursion by resolving the arguments and return value
272       Graph.mergeInGraph(CS, *Callee, Graph, 0);
273
274     } else {
275       ActualCallees.insert(std::make_pair(CS.getCallSite().getInstruction(),
276                                           Callee));
277
278       // Get the data structure graph for the called function.
279       //
280       DSGraph &GI = getDSGraph(*Callee);  // Graph to inline
281       
282       DEBUG(std::cerr << "    Inlining graph for " << Callee->getName()
283             << "[" << GI.getGraphSize() << "+"
284             << GI.getAuxFunctionCalls().size() << "] into '"
285             << Graph.getFunctionNames() << "' [" << Graph.getGraphSize() << "+"
286             << Graph.getAuxFunctionCalls().size() << "]\n");
287       
288       Graph.mergeInGraph(CS, *Callee, GI,
289                          DSGraph::KeepModRefBits | 
290                          DSGraph::StripAllocaBit | DSGraph::DontCloneCallNodes);
291       ++NumBUInlines;
292
293 #if 0
294       Graph.writeGraphToFile(std::cerr, "bu_" + F.getName() + "_after_" +
295                              Callee->getName());
296 #endif
297     }
298   }
299
300   // Make sure to catch any leftover unresolvable calls...
301   for (++LastCallSiteIdx; LastCallSiteIdx < TempFCs.size(); ++LastCallSiteIdx)
302     AuxCallsList.push_back(TempFCs[LastCallSiteIdx]);
303
304   TempFCs.clear();
305
306   // Re-materialize nodes from the globals graph.
307   // Do not ignore globals inlined from callees -- they are not up-to-date!
308   assert(Graph.getInlinedGlobals().empty());
309   Graph.updateFromGlobalGraph();
310
311   // Recompute the Incomplete markers
312   Graph.maskIncompleteMarkers();
313   Graph.markIncompleteNodes(DSGraph::MarkFormalArgs);
314
315   // Delete dead nodes.  Treat globals that are unreachable but that can
316   // reach live nodes as live.
317   Graph.removeDeadNodes(DSGraph::KeepUnreachableGlobals);
318
319   //Graph.writeGraphToFile(std::cerr, "bu_" + F.getName());
320 }