blob: d8ae1de7be0f76ab471af96eb8833d176187172e [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"
Chris Lattner55c10582002-10-03 20:38:41 +000011#include "llvm/Analysis/DSGraph.h"
Chris Lattner0d9bab82002-07-18 00:12:30 +000012#include "llvm/Module.h"
Chris Lattnerfccd06f2002-10-01 22:33:50 +000013#include "Support/Statistic.h"
Chris Lattner0d9bab82002-07-18 00:12:30 +000014using std::map;
15
Chris Lattnerae5f6032002-11-17 22:16:28 +000016namespace {
17 Statistic<> MaxSCC("budatastructure", "Maximum SCC Size in Call Graph");
18
19 RegisterAnalysis<BUDataStructures>
20 X("budatastructure", "Bottom-up Data Structure Analysis Closure");
21}
Chris Lattner0d9bab82002-07-18 00:12:30 +000022
Chris Lattnerb1060432002-11-07 05:20:53 +000023using namespace DS;
Chris Lattner55c10582002-10-03 20:38:41 +000024
Chris Lattnera9c9c022002-11-11 21:35:13 +000025// isCompleteNode - Return true if we know all of the targets of this node, and
26// if the call sites are not external.
27//
28static inline bool isCompleteNode(DSNode *N) {
29 if (N->NodeType & DSNode::Incomplete) return false;
30 const std::vector<GlobalValue*> &Callees = N->getGlobals();
31 for (unsigned i = 0, e = Callees.size(); i != e; ++i)
32 if (Callees[i]->isExternal()) {
33 GlobalValue &FI = cast<Function>(*Callees[i]);
34 if (FI.getName() != "printf" && FI.getName() != "sscanf" &&
35 FI.getName() != "fprintf" && FI.getName() != "open" &&
36 FI.getName() != "sprintf" && FI.getName() != "fputs")
37 return false; // External function found...
38 }
39 return true; // otherwise ok
40}
41
42struct CallSiteIterator {
43 // FCs are the edges out of the current node are the call site targets...
44 std::vector<DSCallSite> *FCs;
45 unsigned CallSite;
46 unsigned CallSiteEntry;
47
48 CallSiteIterator(std::vector<DSCallSite> &CS) : FCs(&CS) {
49 CallSite = 0; CallSiteEntry = 0;
50 advanceToNextValid();
51 }
52
53 // End iterator ctor...
54 CallSiteIterator(std::vector<DSCallSite> &CS, bool) : FCs(&CS) {
55 CallSite = FCs->size(); CallSiteEntry = 0;
56 }
57
58 void advanceToNextValid() {
59 while (CallSite < FCs->size()) {
60 if (DSNode *CalleeNode = (*FCs)[CallSite].getCallee().getNode()) {
61 if (CallSiteEntry || isCompleteNode(CalleeNode)) {
62 const std::vector<GlobalValue*> &Callees = CalleeNode->getGlobals();
63
64 if (CallSiteEntry < Callees.size())
65 return;
66 }
67 CallSiteEntry = 0;
68 ++CallSite;
69 }
70 }
71 }
72public:
73 static CallSiteIterator begin(DSGraph &G) { return G.getAuxFunctionCalls(); }
74 static CallSiteIterator end(DSGraph &G) {
75 return CallSiteIterator(G.getAuxFunctionCalls(), true);
76 }
77 static CallSiteIterator begin(std::vector<DSCallSite> &CSs) { return CSs; }
78 static CallSiteIterator end(std::vector<DSCallSite> &CSs) {
79 return CallSiteIterator(CSs, true);
80 }
81 bool operator==(const CallSiteIterator &CSI) const {
82 return CallSite == CSI.CallSite && CallSiteEntry == CSI.CallSiteEntry;
83 }
84 bool operator!=(const CallSiteIterator &CSI) const { return !operator==(CSI);}
85
86 unsigned getCallSiteIdx() const { return CallSite; }
87 DSCallSite &getCallSite() const { return (*FCs)[CallSite]; }
88
89 Function* operator*() const {
90 DSNode *Node = (*FCs)[CallSite].getCallee().getNode();
91 return cast<Function>(Node->getGlobals()[CallSiteEntry]);
92 }
93
94 CallSiteIterator& operator++() { // Preincrement
95 ++CallSiteEntry;
96 advanceToNextValid();
97 return *this;
98 }
99 CallSiteIterator operator++(int) { // Postincrement
100 CallSiteIterator tmp = *this; ++*this; return tmp;
101 }
102};
103
104
105
Chris Lattneraa0b4682002-11-09 21:12:07 +0000106// run - Calculate the bottom up data structure graphs for each function in the
107// program.
108//
109bool BUDataStructures::run(Module &M) {
110 GlobalsGraph = new DSGraph();
111
Chris Lattnera9c9c022002-11-11 21:35:13 +0000112 Function *MainFunc = M.getMainFunction();
113 if (MainFunc)
114 calculateReachableGraphs(MainFunc);
115
116 // Calculate the graphs for any functions that are unreachable from main...
Chris Lattneraa0b4682002-11-09 21:12:07 +0000117 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
Chris Lattnera9c9c022002-11-11 21:35:13 +0000118 if (!I->isExternal() && DSInfo.find(I) == DSInfo.end()) {
Chris Lattnerae5f6032002-11-17 22:16:28 +0000119#ifndef NDEBUG
Chris Lattnera9c9c022002-11-11 21:35:13 +0000120 if (MainFunc)
121 std::cerr << "*** Function unreachable from main: "
122 << I->getName() << "\n";
Chris Lattnerae5f6032002-11-17 22:16:28 +0000123#endif
Chris Lattnera9c9c022002-11-11 21:35:13 +0000124 calculateReachableGraphs(I); // Calculate all graphs...
125 }
Chris Lattneraa0b4682002-11-09 21:12:07 +0000126 return false;
127}
Chris Lattner55c10582002-10-03 20:38:41 +0000128
Chris Lattnera9c9c022002-11-11 21:35:13 +0000129void BUDataStructures::calculateReachableGraphs(Function *F) {
130 std::vector<Function*> Stack;
131 std::map<Function*, unsigned> ValMap;
132 unsigned NextID = 1;
133 calculateGraphs(F, Stack, NextID, ValMap);
134}
135
136DSGraph &BUDataStructures::getOrCreateGraph(Function *F) {
137 // Has the graph already been created?
138 DSGraph *&Graph = DSInfo[F];
139 if (Graph) return *Graph;
140
141 // Copy the local version into DSInfo...
142 Graph = new DSGraph(getAnalysis<LocalDataStructures>().getDSGraph(*F));
143
144 Graph->setGlobalsGraph(GlobalsGraph);
145 Graph->setPrintAuxCalls();
146
147 // Start with a copy of the original call sites...
148 Graph->getAuxFunctionCalls() = Graph->getFunctionCalls();
149 return *Graph;
150}
151
152unsigned BUDataStructures::calculateGraphs(Function *F,
153 std::vector<Function*> &Stack,
154 unsigned &NextID,
155 std::map<Function*, unsigned> &ValMap) {
156 assert(ValMap.find(F) == ValMap.end() && "Shouldn't revisit functions!");
157 unsigned Min = NextID++, MyID = Min;
158 ValMap[F] = Min;
159 Stack.push_back(F);
160
161 if (F->isExternal()) { // sprintf, fprintf, sscanf, etc...
162 // No callees!
163 Stack.pop_back();
164 ValMap[F] = ~0;
165 return Min;
166 }
167
168 DSGraph &Graph = getOrCreateGraph(F);
169
170 // The edges out of the current node are the call site targets...
171 for (CallSiteIterator I = CallSiteIterator::begin(Graph),
172 E = CallSiteIterator::end(Graph); I != E; ++I) {
173 Function *Callee = *I;
174 unsigned M;
175 // Have we visited the destination function yet?
176 std::map<Function*, unsigned>::iterator It = ValMap.find(Callee);
177 if (It == ValMap.end()) // No, visit it now.
178 M = calculateGraphs(Callee, Stack, NextID, ValMap);
179 else // Yes, get it's number.
180 M = It->second;
181 if (M < Min) Min = M;
182 }
183
184 assert(ValMap[F] == MyID && "SCC construction assumption wrong!");
185 if (Min != MyID)
186 return Min; // This is part of a larger SCC!
187
188 // If this is a new SCC, process it now.
189 if (Stack.back() == F) { // Special case the single "SCC" case here.
190 DEBUG(std::cerr << "Visiting single node SCC #: " << MyID << " fn: "
191 << F->getName() << "\n");
192 Stack.pop_back();
193 DSGraph &G = calculateGraph(*F);
194
Chris Lattnerae5f6032002-11-17 22:16:28 +0000195 if (MaxSCC < 1) MaxSCC = 1;
196
Chris Lattnera9c9c022002-11-11 21:35:13 +0000197 // Should we revisit the graph?
198 if (CallSiteIterator::begin(G) != CallSiteIterator::end(G)) {
199 ValMap.erase(F);
200 return calculateGraphs(F, Stack, NextID, ValMap);
201 } else {
202 ValMap[F] = ~0U;
203 }
204 return MyID;
205
206 } else {
207 // SCCFunctions - Keep track of the functions in the current SCC
208 //
209 std::set<Function*> SCCFunctions;
210
211 Function *NF;
212 std::vector<Function*>::iterator FirstInSCC = Stack.end();
213 do {
214 NF = *--FirstInSCC;
215 ValMap[NF] = ~0U;
216 SCCFunctions.insert(NF);
217 } while (NF != F);
218
219 std::cerr << "Identified SCC #: " << MyID << " of size: "
220 << (Stack.end()-FirstInSCC) << "\n";
221
Chris Lattnerae5f6032002-11-17 22:16:28 +0000222 // Compute the Max SCC Size...
223 if (MaxSCC < unsigned(Stack.end()-FirstInSCC))
224 MaxSCC = Stack.end()-FirstInSCC;
225
Chris Lattnera9c9c022002-11-11 21:35:13 +0000226 std::vector<Function*>::iterator I = Stack.end();
227 do {
228 --I;
Chris Lattner5f1f2c62002-11-12 15:58:08 +0000229#ifndef NDEBUG
Chris Lattnera9c9c022002-11-11 21:35:13 +0000230 /*DEBUG*/(std::cerr << " Fn #" << (Stack.end()-I) << "/"
231 << (Stack.end()-FirstInSCC) << " in SCC: "
232 << (*I)->getName());
233 DSGraph &G = getDSGraph(**I);
234 std::cerr << " [" << G.getGraphSize() << "+"
Chris Lattner5f1f2c62002-11-12 15:58:08 +0000235 << G.getAuxFunctionCalls().size() << "] ";
236#endif
Chris Lattnera9c9c022002-11-11 21:35:13 +0000237
Chris Lattner5f1f2c62002-11-12 15:58:08 +0000238 // Eliminate all call sites in the SCC that are not to functions that are
239 // in the SCC.
240 inlineNonSCCGraphs(**I, SCCFunctions);
241
242#ifndef NDEBUG
243 std::cerr << "after Non-SCC's [" << G.getGraphSize() << "+"
244 << G.getAuxFunctionCalls().size() << "]\n";
245#endif
246 } while (I != FirstInSCC);
247
248 I = Stack.end();
249 do {
250 --I;
251#ifndef NDEBUG
252 /*DEBUG*/(std::cerr << " Fn #" << (Stack.end()-I) << "/"
253 << (Stack.end()-FirstInSCC) << " in SCC: "
254 << (*I)->getName());
255 DSGraph &G = getDSGraph(**I);
256 std::cerr << " [" << G.getGraphSize() << "+"
257 << G.getAuxFunctionCalls().size() << "] ";
258#endif
259 // Inline all graphs into the SCC nodes...
Chris Lattnera9c9c022002-11-11 21:35:13 +0000260 calculateSCCGraph(**I, SCCFunctions);
261
Chris Lattner5f1f2c62002-11-12 15:58:08 +0000262#ifndef NDEBUG
Chris Lattnera9c9c022002-11-11 21:35:13 +0000263 std::cerr << "after [" << G.getGraphSize() << "+"
264 << G.getAuxFunctionCalls().size() << "]\n";
Chris Lattner5f1f2c62002-11-12 15:58:08 +0000265#endif
Chris Lattnera9c9c022002-11-11 21:35:13 +0000266 } while (I != FirstInSCC);
267
268
269 std::cerr << "DONE with SCC #: " << MyID << "\n";
270
271 // We never have to revisit "SCC" processed functions...
272
273 // Drop the stuff we don't need from the end of the stack
274 Stack.erase(FirstInSCC, Stack.end());
275 return MyID;
276 }
277
278 return MyID; // == Min
279}
280
281
Chris Lattner0d9bab82002-07-18 00:12:30 +0000282// releaseMemory - If the pass pipeline is done with this pass, we can release
283// our memory... here...
284//
285void BUDataStructures::releaseMemory() {
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000286 for (map<const Function*, DSGraph*>::iterator I = DSInfo.begin(),
Chris Lattner0d9bab82002-07-18 00:12:30 +0000287 E = DSInfo.end(); I != E; ++I)
288 delete I->second;
289
290 // Empty map so next time memory is released, data structures are not
291 // re-deleted.
292 DSInfo.clear();
Chris Lattneraa0b4682002-11-09 21:12:07 +0000293 delete GlobalsGraph;
294 GlobalsGraph = 0;
Chris Lattner0d9bab82002-07-18 00:12:30 +0000295}
296
Chris Lattnera9c9c022002-11-11 21:35:13 +0000297DSGraph &BUDataStructures::calculateGraph(Function &F) {
298 DSGraph &Graph = getDSGraph(F);
299 DEBUG(std::cerr << " [BU] Calculating graph for: " << F.getName() << "\n");
Chris Lattner8a5db462002-11-11 00:01:34 +0000300
Chris Lattnera9c9c022002-11-11 21:35:13 +0000301 // Move our call site list into TempFCs so that inline call sites go into the
302 // new call site list and doesn't invalidate our iterators!
303 std::vector<DSCallSite> TempFCs;
304 std::vector<DSCallSite> &AuxCallsList = Graph.getAuxFunctionCalls();
305 TempFCs.swap(AuxCallsList);
Chris Lattner8a5db462002-11-11 00:01:34 +0000306
Chris Lattnera9c9c022002-11-11 21:35:13 +0000307 // Loop over all of the resolvable call sites
308 unsigned LastCallSiteIdx = ~0U;
309 for (CallSiteIterator I = CallSiteIterator::begin(TempFCs),
310 E = CallSiteIterator::end(TempFCs); I != E; ++I) {
311 // If we skipped over any call sites, they must be unresolvable, copy them
312 // to the real call site list.
313 LastCallSiteIdx++;
314 for (; LastCallSiteIdx < I.getCallSiteIdx(); ++LastCallSiteIdx)
315 AuxCallsList.push_back(TempFCs[LastCallSiteIdx]);
316 LastCallSiteIdx = I.getCallSiteIdx();
Chris Lattnera1079052002-11-10 06:52:47 +0000317
Chris Lattnera9c9c022002-11-11 21:35:13 +0000318 // Resolve the current call...
319 Function *Callee = *I;
320 DSCallSite &CS = I.getCallSite();
Chris Lattner0d9bab82002-07-18 00:12:30 +0000321
Chris Lattnera9c9c022002-11-11 21:35:13 +0000322 if (Callee->isExternal()) {
323 // Ignore this case, simple varargs functions we cannot stub out!
324 } else if (Callee == &F) {
325 // Self recursion... simply link up the formal arguments with the
326 // actual arguments...
327 DEBUG(std::cerr << " Self Inlining: " << F.getName() << "\n");
328
329 // Handle self recursion by resolving the arguments and return value
330 Graph.mergeInGraph(CS, Graph, 0);
331
332 } else {
333 // Get the data structure graph for the called function.
334 //
335 DSGraph &GI = getDSGraph(*Callee); // Graph to inline
336
337 DEBUG(std::cerr << " Inlining graph for " << Callee->getName()
338 << " in: " << F.getName() << "[" << GI.getGraphSize() << "+"
339 << GI.getAuxFunctionCalls().size() << "]\n");
Chris Lattnerae5f6032002-11-17 22:16:28 +0000340
341#if 0
342 Graph.writeGraphToFile(std::cerr, "bu_" + F.getName() + "_before_" +
343 Callee->getName());
344#endif
Chris Lattnera9c9c022002-11-11 21:35:13 +0000345
346 // Handle self recursion by resolving the arguments and return value
347 Graph.mergeInGraph(CS, GI, DSGraph::StripAllocaBit |
348 DSGraph::DontCloneCallNodes);
Chris Lattnerae5f6032002-11-17 22:16:28 +0000349
350#if 0
351 Graph.writeGraphToFile(std::cerr, "bu_" + F.getName() + "_after_" +
352 Callee->getName());
353#endif
Chris Lattnera9c9c022002-11-11 21:35:13 +0000354 }
355 }
356
357 // Make sure to catch any leftover unresolvable calls...
358 for (++LastCallSiteIdx; LastCallSiteIdx < TempFCs.size(); ++LastCallSiteIdx)
359 AuxCallsList.push_back(TempFCs[LastCallSiteIdx]);
360
361 TempFCs.clear();
362
363 // Recompute the Incomplete markers. If there are any function calls left
364 // now that are complete, we must loop!
365 Graph.maskIncompleteMarkers();
366 Graph.markIncompleteNodes();
367 Graph.removeDeadNodes();
368
369 DEBUG(std::cerr << " [BU] Done inlining: " << F.getName() << " ["
Chris Lattner8a5db462002-11-11 00:01:34 +0000370 << Graph.getGraphSize() << "+" << Graph.getAuxFunctionCalls().size()
Chris Lattner221c9792002-08-07 21:41:11 +0000371 << "]\n");
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000372
Chris Lattnera9c9c022002-11-11 21:35:13 +0000373 //Graph.writeGraphToFile(std::cerr, "bu_" + F.getName());
374
375 return Graph;
376}
377
378
Chris Lattner5f1f2c62002-11-12 15:58:08 +0000379// inlineNonSCCGraphs - This method is almost like the other two calculate graph
380// methods. This one is used to inline function graphs (from functions outside
381// of the SCC) into functions in the SCC. It is not supposed to touch functions
382// IN the SCC at all.
383//
384DSGraph &BUDataStructures::inlineNonSCCGraphs(Function &F,
385 std::set<Function*> &SCCFunctions){
386 DSGraph &Graph = getDSGraph(F);
387 DEBUG(std::cerr << " [BU] Inlining Non-SCC graphs for: "
388 << F.getName() << "\n");
389
390 // Move our call site list into TempFCs so that inline call sites go into the
391 // new call site list and doesn't invalidate our iterators!
392 std::vector<DSCallSite> TempFCs;
393 std::vector<DSCallSite> &AuxCallsList = Graph.getAuxFunctionCalls();
394 TempFCs.swap(AuxCallsList);
395
396 // Loop over all of the resolvable call sites
397 unsigned LastCallSiteIdx = ~0U;
398 for (CallSiteIterator I = CallSiteIterator::begin(TempFCs),
399 E = CallSiteIterator::end(TempFCs); I != E; ++I) {
400 // If we skipped over any call sites, they must be unresolvable, copy them
401 // to the real call site list.
402 LastCallSiteIdx++;
403 for (; LastCallSiteIdx < I.getCallSiteIdx(); ++LastCallSiteIdx)
404 AuxCallsList.push_back(TempFCs[LastCallSiteIdx]);
405 LastCallSiteIdx = I.getCallSiteIdx();
406
407 // Resolve the current call...
408 Function *Callee = *I;
409 DSCallSite &CS = I.getCallSite();
410
411 if (Callee->isExternal()) {
412 // Ignore this case, simple varargs functions we cannot stub out!
413 } else if (SCCFunctions.count(Callee)) {
414 // Calling a function in the SCC, ignore it for now!
415 DEBUG(std::cerr << " SCC CallSite for: " << Callee->getName() << "\n");
416 AuxCallsList.push_back(CS);
417 } else {
418 // Get the data structure graph for the called function.
419 //
420 DSGraph &GI = getDSGraph(*Callee); // Graph to inline
421
422 DEBUG(std::cerr << " Inlining graph for " << Callee->getName()
423 << " in: " << F.getName() << "[" << GI.getGraphSize() << "+"
424 << GI.getAuxFunctionCalls().size() << "]\n");
Chris Lattnerae5f6032002-11-17 22:16:28 +0000425
Chris Lattner5f1f2c62002-11-12 15:58:08 +0000426 // Handle self recursion by resolving the arguments and return value
427 Graph.mergeInGraph(CS, GI, DSGraph::StripAllocaBit |
428 DSGraph::DontCloneCallNodes);
429 }
430 }
431
432 // Make sure to catch any leftover unresolvable calls...
433 for (++LastCallSiteIdx; LastCallSiteIdx < TempFCs.size(); ++LastCallSiteIdx)
434 AuxCallsList.push_back(TempFCs[LastCallSiteIdx]);
435
436 TempFCs.clear();
437
438 // Recompute the Incomplete markers. If there are any function calls left
439 // now that are complete, we must loop!
440 Graph.maskIncompleteMarkers();
441 Graph.markIncompleteNodes();
442 Graph.removeDeadNodes();
443
444 DEBUG(std::cerr << " [BU] Done Non-SCC inlining: " << F.getName() << " ["
445 << Graph.getGraphSize() << "+" << Graph.getAuxFunctionCalls().size()
446 << "]\n");
447
Chris Lattner5f1f2c62002-11-12 15:58:08 +0000448 return Graph;
449}
450
451
Chris Lattnera9c9c022002-11-11 21:35:13 +0000452DSGraph &BUDataStructures::calculateSCCGraph(Function &F,
Chris Lattner5f1f2c62002-11-12 15:58:08 +0000453 std::set<Function*> &SCCFunctions){
Chris Lattnera9c9c022002-11-11 21:35:13 +0000454 DSGraph &Graph = getDSGraph(F);
455 DEBUG(std::cerr << " [BU] Calculating SCC graph for: " << F.getName()<<"\n");
456
457 std::vector<DSCallSite> UnresolvableCalls;
458 std::map<Function*, DSCallSite> SCCCallSiteMap;
459 std::vector<DSCallSite> &AuxCallsList = Graph.getAuxFunctionCalls();
460
461 while (1) { // Loop until we run out of resolvable call sites!
462 // Move our call site list into TempFCs so that inline call sites go into
463 // the new call site list and doesn't invalidate our iterators!
464 std::vector<DSCallSite> TempFCs;
465 TempFCs.swap(AuxCallsList);
466
467 // Loop over all of the resolvable call sites
468 unsigned LastCallSiteIdx = ~0U;
469 CallSiteIterator I = CallSiteIterator::begin(TempFCs),
470 E = CallSiteIterator::end(TempFCs);
471 if (I == E) {
472 TempFCs.swap(AuxCallsList);
473 break; // Done when no resolvable call sites exist
474 }
475
476 for (; I != E; ++I) {
477 // If we skipped over any call sites, they must be unresolvable, copy them
478 // to the unresolvable site list.
479 LastCallSiteIdx++;
480 for (; LastCallSiteIdx < I.getCallSiteIdx(); ++LastCallSiteIdx)
481 UnresolvableCalls.push_back(TempFCs[LastCallSiteIdx]);
482 LastCallSiteIdx = I.getCallSiteIdx();
483
484 // Resolve the current call...
485 Function *Callee = *I;
486 DSCallSite &CS = I.getCallSite();
487
488 if (Callee->isExternal()) {
489 // Ignore this case, simple varargs functions we cannot stub out!
490 } else if (Callee == &F) {
491 // Self recursion... simply link up the formal arguments with the
492 // actual arguments...
493 DEBUG(std::cerr << " Self Inlining: " << F.getName() << "\n");
494
495 // Handle self recursion by resolving the arguments and return value
496 Graph.mergeInGraph(CS, Graph, 0);
497 } else if (SCCCallSiteMap.count(Callee)) {
498 // We have already seen a call site in the SCC for this function, just
499 // merge the two call sites together and we are done.
500 SCCCallSiteMap.find(Callee)->second.mergeWith(CS);
501 } else {
502 // Get the data structure graph for the called function.
503 //
504 DSGraph &GI = getDSGraph(*Callee); // Graph to inline
505
506 DEBUG(std::cerr << " Inlining graph for " << Callee->getName()
507 << " in: " << F.getName() << "[" << GI.getGraphSize() << "+"
508 << GI.getAuxFunctionCalls().size() << "]\n");
509
510 // Handle self recursion by resolving the arguments and return value
511 Graph.mergeInGraph(CS, GI, DSGraph::StripAllocaBit |
512 DSGraph::DontCloneCallNodes);
513
Chris Lattner5f1f2c62002-11-12 15:58:08 +0000514 if (SCCFunctions.count(Callee))
Chris Lattnera9c9c022002-11-11 21:35:13 +0000515 SCCCallSiteMap.insert(std::make_pair(Callee, CS));
516 }
517 }
518
519 // Make sure to catch any leftover unresolvable calls...
520 for (++LastCallSiteIdx; LastCallSiteIdx < TempFCs.size(); ++LastCallSiteIdx)
521 UnresolvableCalls.push_back(TempFCs[LastCallSiteIdx]);
522 }
523
524 // Reset the SCCCallSiteMap...
525 SCCCallSiteMap.clear();
526
527 AuxCallsList.insert(AuxCallsList.end(), UnresolvableCalls.begin(),
528 UnresolvableCalls.end());
529 UnresolvableCalls.clear();
530
531
532 // Recompute the Incomplete markers. If there are any function calls left
533 // now that are complete, we must loop!
534 Graph.maskIncompleteMarkers();
535 Graph.markIncompleteNodes();
536 Graph.removeDeadNodes();
537
538 DEBUG(std::cerr << " [BU] Done inlining: " << F.getName() << " ["
539 << Graph.getGraphSize() << "+" << Graph.getAuxFunctionCalls().size()
540 << "]\n");
Chris Lattnera9c9c022002-11-11 21:35:13 +0000541 //Graph.writeGraphToFile(std::cerr, "bu_" + F.getName());
Chris Lattnera1079052002-11-10 06:52:47 +0000542
Chris Lattner8a5db462002-11-11 00:01:34 +0000543 return Graph;
Chris Lattner0d9bab82002-07-18 00:12:30 +0000544}