blob: c449997e74085daf61a1f367762945316e3f096e [file] [log] [blame]
Chris Lattner55c10582002-10-03 20:38:41 +00001//===- BottomUpClosure.cpp - Compute bottom-up interprocedural closure ----===//
Chris Lattner0d9bab82002-07-18 00:12:30 +00002//
3// This file implements the BUDataStructures class, which represents the
4// Bottom-Up Interprocedural closure of the data structure graph over the
5// program. This is useful for applications like pool allocation, but **not**
Chris Lattner55c10582002-10-03 20:38:41 +00006// applications like alias analysis.
Chris Lattner0d9bab82002-07-18 00:12:30 +00007//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/Analysis/DataStructure.h"
11#include "llvm/Module.h"
Chris Lattnerfccd06f2002-10-01 22:33:50 +000012#include "Support/Statistic.h"
Chris Lattner5d5b6d62003-07-01 16:04:18 +000013#include "DSCallSiteIterator.h"
Chris Lattner0d9bab82002-07-18 00:12:30 +000014
Chris Lattnerae5f6032002-11-17 22:16:28 +000015namespace {
16 Statistic<> MaxSCC("budatastructure", "Maximum SCC Size in Call Graph");
17
18 RegisterAnalysis<BUDataStructures>
Chris Lattner312edd32003-06-28 22:14:55 +000019 X("budatastructure", "Bottom-up Data Structure Analysis");
Chris Lattnerae5f6032002-11-17 22:16:28 +000020}
Chris Lattner0d9bab82002-07-18 00:12:30 +000021
Chris Lattnerb1060432002-11-07 05:20:53 +000022using namespace DS;
Chris Lattner55c10582002-10-03 20:38:41 +000023
Chris Lattneraa0b4682002-11-09 21:12:07 +000024// run - Calculate the bottom up data structure graphs for each function in the
25// program.
26//
27bool BUDataStructures::run(Module &M) {
Chris Lattner312edd32003-06-28 22:14:55 +000028 LocalDataStructures &LocalDSA = getAnalysis<LocalDataStructures>();
29 GlobalsGraph = new DSGraph(LocalDSA.getGlobalsGraph());
Chris Lattner20167e32003-02-03 19:11:38 +000030 GlobalsGraph->setPrintAuxCalls();
Chris Lattneraa0b4682002-11-09 21:12:07 +000031
Chris Lattnera9c9c022002-11-11 21:35:13 +000032 Function *MainFunc = M.getMainFunction();
33 if (MainFunc)
34 calculateReachableGraphs(MainFunc);
35
36 // Calculate the graphs for any functions that are unreachable from main...
Chris Lattneraa0b4682002-11-09 21:12:07 +000037 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
Chris Lattner5d5b6d62003-07-01 16:04:18 +000038 if (!I->isExternal() && !DSInfo.count(I)) {
Chris Lattnerae5f6032002-11-17 22:16:28 +000039#ifndef NDEBUG
Chris Lattnera9c9c022002-11-11 21:35:13 +000040 if (MainFunc)
41 std::cerr << "*** Function unreachable from main: "
42 << I->getName() << "\n";
Chris Lattnerae5f6032002-11-17 22:16:28 +000043#endif
Chris Lattnera9c9c022002-11-11 21:35:13 +000044 calculateReachableGraphs(I); // Calculate all graphs...
45 }
Chris Lattneraa0b4682002-11-09 21:12:07 +000046 return false;
47}
Chris Lattner55c10582002-10-03 20:38:41 +000048
Chris Lattnera9c9c022002-11-11 21:35:13 +000049void BUDataStructures::calculateReachableGraphs(Function *F) {
50 std::vector<Function*> Stack;
Chris Lattner41c04f72003-02-01 04:52:08 +000051 hash_map<Function*, unsigned> ValMap;
Chris Lattnera9c9c022002-11-11 21:35:13 +000052 unsigned NextID = 1;
53 calculateGraphs(F, Stack, NextID, ValMap);
54}
55
56DSGraph &BUDataStructures::getOrCreateGraph(Function *F) {
57 // Has the graph already been created?
58 DSGraph *&Graph = DSInfo[F];
59 if (Graph) return *Graph;
60
61 // Copy the local version into DSInfo...
62 Graph = new DSGraph(getAnalysis<LocalDataStructures>().getDSGraph(*F));
63
64 Graph->setGlobalsGraph(GlobalsGraph);
65 Graph->setPrintAuxCalls();
66
67 // Start with a copy of the original call sites...
68 Graph->getAuxFunctionCalls() = Graph->getFunctionCalls();
69 return *Graph;
70}
71
72unsigned BUDataStructures::calculateGraphs(Function *F,
73 std::vector<Function*> &Stack,
74 unsigned &NextID,
Chris Lattner41c04f72003-02-01 04:52:08 +000075 hash_map<Function*, unsigned> &ValMap) {
Chris Lattnera9c9c022002-11-11 21:35:13 +000076 assert(ValMap.find(F) == ValMap.end() && "Shouldn't revisit functions!");
77 unsigned Min = NextID++, MyID = Min;
78 ValMap[F] = Min;
79 Stack.push_back(F);
80
81 if (F->isExternal()) { // sprintf, fprintf, sscanf, etc...
82 // No callees!
83 Stack.pop_back();
84 ValMap[F] = ~0;
85 return Min;
86 }
87
88 DSGraph &Graph = getOrCreateGraph(F);
89
90 // The edges out of the current node are the call site targets...
Chris Lattner2b4c8df2003-06-30 05:27:53 +000091 for (DSCallSiteIterator I = DSCallSiteIterator::begin_aux(Graph),
92 E = DSCallSiteIterator::end_aux(Graph); I != E; ++I) {
Chris Lattnera9c9c022002-11-11 21:35:13 +000093 Function *Callee = *I;
94 unsigned M;
95 // Have we visited the destination function yet?
Chris Lattner41c04f72003-02-01 04:52:08 +000096 hash_map<Function*, unsigned>::iterator It = ValMap.find(Callee);
Chris Lattnera9c9c022002-11-11 21:35:13 +000097 if (It == ValMap.end()) // No, visit it now.
98 M = calculateGraphs(Callee, Stack, NextID, ValMap);
99 else // Yes, get it's number.
100 M = It->second;
101 if (M < Min) Min = M;
102 }
103
104 assert(ValMap[F] == MyID && "SCC construction assumption wrong!");
105 if (Min != MyID)
106 return Min; // This is part of a larger SCC!
107
108 // If this is a new SCC, process it now.
109 if (Stack.back() == F) { // Special case the single "SCC" case here.
110 DEBUG(std::cerr << "Visiting single node SCC #: " << MyID << " fn: "
111 << F->getName() << "\n");
112 Stack.pop_back();
Chris Lattner0eea6182003-06-30 05:09:58 +0000113 DSGraph &G = getDSGraph(*F);
114 DEBUG(std::cerr << " [BU] Calculating graph for: " << F->getName()<< "\n");
115 calculateGraph(G);
116 DEBUG(std::cerr << " [BU] Done inlining: " << F->getName() << " ["
117 << G.getGraphSize() << "+" << G.getAuxFunctionCalls().size()
118 << "]\n");
Chris Lattnera9c9c022002-11-11 21:35:13 +0000119
Chris Lattnerae5f6032002-11-17 22:16:28 +0000120 if (MaxSCC < 1) MaxSCC = 1;
121
Chris Lattnera9c9c022002-11-11 21:35:13 +0000122 // Should we revisit the graph?
Chris Lattner2b4c8df2003-06-30 05:27:53 +0000123 if (DSCallSiteIterator::begin_aux(G) != DSCallSiteIterator::end_aux(G)) {
Chris Lattnera9c9c022002-11-11 21:35:13 +0000124 ValMap.erase(F);
125 return calculateGraphs(F, Stack, NextID, ValMap);
126 } else {
127 ValMap[F] = ~0U;
128 }
129 return MyID;
130
131 } else {
132 // SCCFunctions - Keep track of the functions in the current SCC
133 //
Chris Lattner41c04f72003-02-01 04:52:08 +0000134 hash_set<Function*> SCCFunctions;
Chris Lattnera9c9c022002-11-11 21:35:13 +0000135
136 Function *NF;
137 std::vector<Function*>::iterator FirstInSCC = Stack.end();
Chris Lattner0eea6182003-06-30 05:09:58 +0000138 DSGraph *SCCGraph = 0;
Chris Lattnera9c9c022002-11-11 21:35:13 +0000139 do {
140 NF = *--FirstInSCC;
141 ValMap[NF] = ~0U;
142 SCCFunctions.insert(NF);
Chris Lattner0eea6182003-06-30 05:09:58 +0000143
144 // Figure out which graph is the largest one, in order to speed things up
145 // a bit in situations where functions in the SCC have widely different
146 // graph sizes.
147 DSGraph &NFGraph = getDSGraph(*NF);
148 if (!SCCGraph || SCCGraph->getGraphSize() < NFGraph.getGraphSize())
149 SCCGraph = &NFGraph;
Chris Lattnera9c9c022002-11-11 21:35:13 +0000150 } while (NF != F);
151
Chris Lattner0eea6182003-06-30 05:09:58 +0000152 std::cerr << "Calculating graph for SCC #: " << MyID << " of size: "
153 << SCCFunctions.size() << "\n";
Chris Lattnera9c9c022002-11-11 21:35:13 +0000154
Chris Lattnerae5f6032002-11-17 22:16:28 +0000155 // Compute the Max SCC Size...
Chris Lattner0eea6182003-06-30 05:09:58 +0000156 if (MaxSCC < SCCFunctions.size())
157 MaxSCC = SCCFunctions.size();
Chris Lattnerae5f6032002-11-17 22:16:28 +0000158
Chris Lattner0eea6182003-06-30 05:09:58 +0000159 // First thing first, collapse all of the DSGraphs into a single graph for
160 // the entire SCC. We computed the largest graph, so clone all of the other
161 // (smaller) graphs into it. Discard all of the old graphs.
162 //
163 for (hash_set<Function*>::iterator I = SCCFunctions.begin(),
164 E = SCCFunctions.end(); I != E; ++I) {
Chris Lattnera9c9c022002-11-11 21:35:13 +0000165 DSGraph &G = getDSGraph(**I);
Chris Lattner0eea6182003-06-30 05:09:58 +0000166 if (&G != SCCGraph) {
167 DSGraph::NodeMapTy NodeMap;
168 SCCGraph->cloneInto(G, SCCGraph->getScalarMap(),
169 SCCGraph->getReturnNodes(), NodeMap, 0);
170 // Update the DSInfo map and delete the old graph...
171 DSInfo[*I] = SCCGraph;
172 delete &G;
173 }
174 }
Chris Lattnera9c9c022002-11-11 21:35:13 +0000175
Chris Lattner744f9392003-07-02 04:37:48 +0000176 // Clean up the graph before we start inlining a bunch again...
177 SCCGraph->removeTriviallyDeadNodes();
178
Chris Lattner0eea6182003-06-30 05:09:58 +0000179 // Now that we have one big happy family, resolve all of the call sites in
180 // the graph...
181 calculateGraph(*SCCGraph);
182 DEBUG(std::cerr << " [BU] Done inlining SCC [" << SCCGraph->getGraphSize()
183 << "+" << SCCGraph->getAuxFunctionCalls().size() << "]\n");
Chris Lattnera9c9c022002-11-11 21:35:13 +0000184
185 std::cerr << "DONE with SCC #: " << MyID << "\n";
186
187 // We never have to revisit "SCC" processed functions...
188
189 // Drop the stuff we don't need from the end of the stack
190 Stack.erase(FirstInSCC, Stack.end());
191 return MyID;
192 }
193
194 return MyID; // == Min
195}
196
197
Chris Lattner0d9bab82002-07-18 00:12:30 +0000198// releaseMemory - If the pass pipeline is done with this pass, we can release
199// our memory... here...
200//
201void BUDataStructures::releaseMemory() {
Chris Lattner0eea6182003-06-30 05:09:58 +0000202 for (hash_map<Function*, DSGraph*>::iterator I = DSInfo.begin(),
203 E = DSInfo.end(); I != E; ++I) {
204 I->second->getReturnNodes().erase(I->first);
205 if (I->second->getReturnNodes().empty())
206 delete I->second;
207 }
Chris Lattner0d9bab82002-07-18 00:12:30 +0000208
209 // Empty map so next time memory is released, data structures are not
210 // re-deleted.
211 DSInfo.clear();
Chris Lattneraa0b4682002-11-09 21:12:07 +0000212 delete GlobalsGraph;
213 GlobalsGraph = 0;
Chris Lattner0d9bab82002-07-18 00:12:30 +0000214}
215
Chris Lattner0eea6182003-06-30 05:09:58 +0000216void BUDataStructures::calculateGraph(DSGraph &Graph) {
Chris Lattnera9c9c022002-11-11 21:35:13 +0000217 // Move our call site list into TempFCs so that inline call sites go into the
218 // new call site list and doesn't invalidate our iterators!
219 std::vector<DSCallSite> TempFCs;
220 std::vector<DSCallSite> &AuxCallsList = Graph.getAuxFunctionCalls();
221 TempFCs.swap(AuxCallsList);
Chris Lattner8a5db462002-11-11 00:01:34 +0000222
Chris Lattner0eea6182003-06-30 05:09:58 +0000223 DSGraph::ReturnNodesTy &ReturnNodes = Graph.getReturnNodes();
224
Chris Lattnera9c9c022002-11-11 21:35:13 +0000225 // Loop over all of the resolvable call sites
226 unsigned LastCallSiteIdx = ~0U;
Chris Lattner2b4c8df2003-06-30 05:27:53 +0000227 for (DSCallSiteIterator I = DSCallSiteIterator::begin(TempFCs),
228 E = DSCallSiteIterator::end(TempFCs); I != E; ++I) {
Chris Lattnera9c9c022002-11-11 21:35:13 +0000229 // If we skipped over any call sites, they must be unresolvable, copy them
230 // to the real call site list.
231 LastCallSiteIdx++;
232 for (; LastCallSiteIdx < I.getCallSiteIdx(); ++LastCallSiteIdx)
233 AuxCallsList.push_back(TempFCs[LastCallSiteIdx]);
234 LastCallSiteIdx = I.getCallSiteIdx();
Chris Lattnera1079052002-11-10 06:52:47 +0000235
Chris Lattnera9c9c022002-11-11 21:35:13 +0000236 // Resolve the current call...
237 Function *Callee = *I;
Chris Lattner744f9392003-07-02 04:37:48 +0000238 DSCallSite CS = I.getCallSite();
Chris Lattner0d9bab82002-07-18 00:12:30 +0000239
Chris Lattnera9c9c022002-11-11 21:35:13 +0000240 if (Callee->isExternal()) {
241 // Ignore this case, simple varargs functions we cannot stub out!
Chris Lattner0eea6182003-06-30 05:09:58 +0000242 } else if (ReturnNodes.find(Callee) != ReturnNodes.end()) {
Chris Lattnera9c9c022002-11-11 21:35:13 +0000243 // Self recursion... simply link up the formal arguments with the
244 // actual arguments...
Chris Lattner0eea6182003-06-30 05:09:58 +0000245 DEBUG(std::cerr << " Self Inlining: " << Callee->getName() << "\n");
Chris Lattnera9c9c022002-11-11 21:35:13 +0000246
247 // Handle self recursion by resolving the arguments and return value
Chris Lattner0eea6182003-06-30 05:09:58 +0000248 Graph.mergeInGraph(CS, *Callee, Graph, 0);
Chris Lattnera9c9c022002-11-11 21:35:13 +0000249
250 } else {
Chris Lattner744f9392003-07-02 04:37:48 +0000251 ActualCallees.insert(std::make_pair(&CS.getCallInst(), Callee));
252
Chris Lattnera9c9c022002-11-11 21:35:13 +0000253 // Get the data structure graph for the called function.
254 //
255 DSGraph &GI = getDSGraph(*Callee); // Graph to inline
256
257 DEBUG(std::cerr << " Inlining graph for " << Callee->getName()
Chris Lattner20167e32003-02-03 19:11:38 +0000258 << "[" << GI.getGraphSize() << "+"
Chris Lattner5d5b6d62003-07-01 16:04:18 +0000259 << GI.getAuxFunctionCalls().size() << "] into '"
260 << Graph.getFunctionNames() << "' [" << Graph.getGraphSize() << "+"
Chris Lattner20167e32003-02-03 19:11:38 +0000261 << Graph.getAuxFunctionCalls().size() << "]\n");
Chris Lattnera9c9c022002-11-11 21:35:13 +0000262
263 // Handle self recursion by resolving the arguments and return value
Chris Lattner5a540632003-06-30 03:15:25 +0000264 Graph.mergeInGraph(CS, *Callee, GI,
Vikram S. Adve61ff0292002-11-27 17:41:13 +0000265 DSGraph::KeepModRefBits |
266 DSGraph::StripAllocaBit | DSGraph::DontCloneCallNodes);
Chris Lattnerae5f6032002-11-17 22:16:28 +0000267
268#if 0
269 Graph.writeGraphToFile(std::cerr, "bu_" + F.getName() + "_after_" +
270 Callee->getName());
271#endif
Chris Lattnera9c9c022002-11-11 21:35:13 +0000272 }
273 }
274
275 // Make sure to catch any leftover unresolvable calls...
276 for (++LastCallSiteIdx; LastCallSiteIdx < TempFCs.size(); ++LastCallSiteIdx)
277 AuxCallsList.push_back(TempFCs[LastCallSiteIdx]);
278
279 TempFCs.clear();
280
281 // Recompute the Incomplete markers. If there are any function calls left
282 // now that are complete, we must loop!
283 Graph.maskIncompleteMarkers();
Chris Lattner394471f2003-01-23 22:05:33 +0000284 Graph.markIncompleteNodes(DSGraph::MarkFormalArgs);
Chris Lattner20167e32003-02-03 19:11:38 +0000285 // FIXME: materialize nodes from the globals graph as neccesary...
Chris Lattner394471f2003-01-23 22:05:33 +0000286 Graph.removeDeadNodes(DSGraph::KeepUnreachableGlobals);
Chris Lattnera9c9c022002-11-11 21:35:13 +0000287
Chris Lattnera9c9c022002-11-11 21:35:13 +0000288 //Graph.writeGraphToFile(std::cerr, "bu_" + F.getName());
Chris Lattnera9c9c022002-11-11 21:35:13 +0000289}
290