blob: 02b7fb7d824aa8c59c7471f598fc803ed5bce35c [file] [log] [blame]
Chris Lattner2dd9a092005-03-12 11:51:30 +00001//===- EquivClassGraphs.cpp - Merge equiv-class graphs & inline bottom-up -===//
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 pass is the same as the complete bottom-up graphs, but
11// with functions partitioned into equivalence classes and a single merged
12// DS graph for all functions in an equivalence class. After this merging,
13// graphs are inlined bottom-up on the SCCs of the final (CBU) call graph.
14//
15//===----------------------------------------------------------------------===//
16
17#define DEBUG_TYPE "ECGraphs"
18#include "llvm/Analysis/DataStructure/EquivClassGraphs.h"
Chris Lattnerd31a3d02005-03-15 17:14:09 +000019#include "llvm/DerivedTypes.h"
Chris Lattner2dd9a092005-03-12 11:51:30 +000020#include "llvm/Module.h"
21#include "llvm/Pass.h"
22#include "llvm/Analysis/DataStructure/DSGraph.h"
23#include "llvm/Analysis/DataStructure/DataStructure.h"
24#include "llvm/Support/CallSite.h"
25#include "llvm/Support/Debug.h"
26#include "llvm/ADT/SCCIterator.h"
27#include "llvm/ADT/Statistic.h"
28#include "llvm/ADT/EquivalenceClasses.h"
29#include "llvm/ADT/STLExtras.h"
30using namespace llvm;
31
32namespace {
Chris Lattner68c3cac2005-03-13 19:51:24 +000033 RegisterAnalysis<EquivClassGraphs> X("eqdatastructure",
Chris Lattner2dd9a092005-03-12 11:51:30 +000034 "Equivalence-class Bottom-up Data Structure Analysis");
35 Statistic<> NumEquivBUInlines("equivdatastructures",
36 "Number of graphs inlined");
37 Statistic<> NumFoldGraphInlines("Inline equiv-class graphs bottom up",
38 "Number of graphs inlined");
39}
40
41#ifndef NDEBUG
42template<typename GT>
43static void CheckAllGraphs(Module *M, GT &ECGraphs) {
44 DSGraph &GG = ECGraphs.getGlobalsGraph();
45
46 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
47 if (!I->isExternal()) {
48 DSGraph &G = ECGraphs.getDSGraph(*I);
Chris Lattner92d0c1c1b2005-03-15 16:55:04 +000049 if (G.retnodes_begin()->first != I)
Chris Lattner1bdb8b72005-03-14 19:22:47 +000050 continue; // Only check a graph once.
Chris Lattner2dd9a092005-03-12 11:51:30 +000051
52 DSGraph::NodeMapTy GlobalsGraphNodeMapping;
Chris Lattner26415d72005-03-15 00:58:16 +000053 G.computeGToGGMapping(GlobalsGraphNodeMapping);
Chris Lattner2dd9a092005-03-12 11:51:30 +000054 }
55}
56#endif
57
58// getSomeCalleeForCallSite - Return any one callee function at a call site.
59//
Chris Lattner68c3cac2005-03-13 19:51:24 +000060Function *EquivClassGraphs::getSomeCalleeForCallSite(const CallSite &CS) const{
Chris Lattner2dd9a092005-03-12 11:51:30 +000061 Function *thisFunc = CS.getCaller();
62 assert(thisFunc && "getSomeCalleeForCallSite(): Not a valid call site?");
63 DSGraph &DSG = getDSGraph(*thisFunc);
64 DSNode *calleeNode = DSG.getNodeForValue(CS.getCalledValue()).getNode();
65 std::map<DSNode*, Function *>::const_iterator I =
66 OneCalledFunction.find(calleeNode);
67 return (I == OneCalledFunction.end())? NULL : I->second;
68}
69
70// runOnModule - Calculate the bottom up data structure graphs for each function
71// in the program.
72//
Chris Lattnerdd6bcbe2005-03-12 12:08:52 +000073bool EquivClassGraphs::runOnModule(Module &M) {
Chris Lattner2dd9a092005-03-12 11:51:30 +000074 CBU = &getAnalysis<CompleteBUDataStructures>();
75 DEBUG(CheckAllGraphs(&M, *CBU));
76
77 GlobalsGraph = new DSGraph(CBU->getGlobalsGraph());
78 GlobalsGraph->setPrintAuxCalls();
79
80 ActualCallees = CBU->getActualCallees();
81
82 // Find equivalence classes of functions called from common call sites.
83 // Fold the CBU graphs for all functions in an equivalence class.
84 buildIndirectFunctionSets(M);
85
86 // Stack of functions used for Tarjan's SCC-finding algorithm.
87 std::vector<DSGraph*> Stack;
88 std::map<DSGraph*, unsigned> ValMap;
89 unsigned NextID = 1;
90
Chris Lattner2eff9702005-03-13 20:15:06 +000091 Function *MainFunc = M.getMainFunction();
92 if (MainFunc && !MainFunc->isExternal()) {
93 processSCC(getOrCreateGraph(*MainFunc), Stack, NextID, ValMap);
Chris Lattner2dd9a092005-03-12 11:51:30 +000094 } else {
95 std::cerr << "Fold Graphs: No 'main' function found!\n";
96 }
97
98 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
99 if (!I->isExternal())
100 processSCC(getOrCreateGraph(*I), Stack, NextID, ValMap);
101
102 DEBUG(CheckAllGraphs(&M, *this));
103
104 getGlobalsGraph().removeTriviallyDeadNodes();
Chris Lattnerf9013552005-03-15 22:47:18 +0000105 getGlobalsGraph().markIncompleteNodes(DSGraph::IgnoreGlobals);
Chris Lattner2eff9702005-03-13 20:15:06 +0000106
107 // Merge the globals variables (not the calls) from the globals graph back
108 // into the main function's graph so that the main function contains all of
109 // the information about global pools and GV usage in the program.
Chris Lattner21a79ed2005-03-15 22:10:04 +0000110 if (MainFunc && !MainFunc->isExternal()) {
Chris Lattner2eff9702005-03-13 20:15:06 +0000111 DSGraph &MainGraph = getOrCreateGraph(*MainFunc);
112 const DSGraph &GG = *MainGraph.getGlobalsGraph();
113 ReachabilityCloner RC(MainGraph, GG,
114 DSGraph::DontCloneCallNodes |
115 DSGraph::DontCloneAuxCallNodes);
116
117 // Clone the global nodes into this graph.
118 for (DSScalarMap::global_iterator I = GG.getScalarMap().global_begin(),
119 E = GG.getScalarMap().global_end(); I != E; ++I)
120 if (isa<GlobalVariable>(*I))
121 RC.getClonedNH(GG.getNodeForValue(*I));
122
Chris Lattnerb9e2a4d2005-03-13 20:32:26 +0000123 MainGraph.maskIncompleteMarkers();
Chris Lattner2eff9702005-03-13 20:15:06 +0000124 MainGraph.markIncompleteNodes(DSGraph::MarkFormalArgs |
125 DSGraph::IgnoreGlobals);
126 }
127
Chris Lattnerd31a3d02005-03-15 17:14:09 +0000128 // Final processing. Note that dead node elimination may actually remove
129 // globals from a function graph that are immediately used. If there are no
130 // scalars pointing to the node (e.g. because the only use is a direct store
131 // to a scalar global) we have to make sure to rematerialize the globals back
132 // into the graphs here, or clients will break!
133 for (Module::global_iterator GI = M.global_begin(), E = M.global_end();
134 GI != E; ++GI)
135 // This only happens to first class typed globals.
136 if (GI->getType()->getElementType()->isFirstClassType())
137 for (Value::use_iterator UI = GI->use_begin(), E = GI->use_end();
138 UI != E; ++UI)
139 // This only happens to direct uses by instructions.
140 if (Instruction *User = dyn_cast<Instruction>(*UI)) {
141 DSGraph &DSG = getOrCreateGraph(*User->getParent()->getParent());
142 if (!DSG.getScalarMap().count(GI)) {
143 // If this global does not exist in the graph, but it is immediately
144 // used by an instruction in the graph, clone it over from the
145 // globals graph.
146 ReachabilityCloner RC(DSG, *GlobalsGraph, 0);
147 RC.getClonedNH(GlobalsGraph->getNodeForValue(GI));
148 }
149 }
150
Chris Lattner2dd9a092005-03-12 11:51:30 +0000151 return false;
152}
153
154
155// buildIndirectFunctionSets - Iterate over the module looking for indirect
156// calls to functions. If a call site can invoke any functions [F1, F2... FN],
157// unify the N functions together in the FuncECs set.
158//
Chris Lattnerdd6bcbe2005-03-12 12:08:52 +0000159void EquivClassGraphs::buildIndirectFunctionSets(Module &M) {
Chris Lattner2dd9a092005-03-12 11:51:30 +0000160 const ActualCalleesTy& AC = CBU->getActualCallees();
161
162 // Loop over all of the indirect calls in the program. If a call site can
163 // call multiple different functions, we need to unify all of the callees into
164 // the same equivalence class.
165 Instruction *LastInst = 0;
166 Function *FirstFunc = 0;
167 for (ActualCalleesTy::const_iterator I=AC.begin(), E=AC.end(); I != E; ++I) {
168 if (I->second->isExternal())
169 continue; // Ignore functions we cannot modify
170
171 CallSite CS = CallSite::get(I->first);
172
173 if (CS.getCalledFunction()) { // Direct call:
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000174 FuncECs.insert(I->second); // -- Make sure function has equiv class
Chris Lattner2dd9a092005-03-12 11:51:30 +0000175 FirstFunc = I->second; // -- First callee at this site
176 } else { // Else indirect call
177 // DEBUG(std::cerr << "CALLEE: " << I->second->getName()
178 // << " from : " << I->first);
179 if (I->first != LastInst) {
180 // This is the first callee from this call site.
181 LastInst = I->first;
182 FirstFunc = I->second;
183 // Instead of storing the lastInst For Indirection call Sites we store
184 // the DSNode for the function ptr arguemnt
185 Function *thisFunc = LastInst->getParent()->getParent();
186 DSGraph &TFG = CBU->getDSGraph(*thisFunc);
187 DSNode *calleeNode = TFG.getNodeForValue(CS.getCalledValue()).getNode();
188 OneCalledFunction[calleeNode] = FirstFunc;
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000189 FuncECs.insert(I->second);
Chris Lattner2dd9a092005-03-12 11:51:30 +0000190 } else {
191 // This is not the first possible callee from a particular call site.
192 // Union the callee in with the other functions.
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000193 FuncECs.unionSets(FirstFunc, I->second);
Chris Lattner2dd9a092005-03-12 11:51:30 +0000194#ifndef NDEBUG
195 Function *thisFunc = LastInst->getParent()->getParent();
196 DSGraph &TFG = CBU->getDSGraph(*thisFunc);
197 DSNode *calleeNode = TFG.getNodeForValue(CS.getCalledValue()).getNode();
198 assert(OneCalledFunction.count(calleeNode) > 0 && "Missed a call?");
199#endif
200 }
201 }
202
203 // Now include all functions that share a graph with any function in the
204 // equivalence class. More precisely, if F is in the class, and G(F) is
205 // its graph, then we include all other functions that are also in G(F).
206 // Currently, that is just the functions in the same call-graph-SCC as F.
207 //
208 DSGraph& funcDSGraph = CBU->getDSGraph(*I->second);
Chris Lattner92d0c1c1b2005-03-15 16:55:04 +0000209 for (DSGraph::retnodes_iterator RI = funcDSGraph.retnodes_begin(),
210 RE = funcDSGraph.retnodes_end(); RI != RE; ++RI)
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000211 FuncECs.unionSets(FirstFunc, RI->first);
Chris Lattner2dd9a092005-03-12 11:51:30 +0000212 }
213
214 // Now that all of the equivalences have been built, merge the graphs for
215 // each equivalence class.
216 //
Chris Lattner2dd9a092005-03-12 11:51:30 +0000217 DEBUG(std::cerr << "\nIndirect Function Equivalence Sets:\n");
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000218 for (EquivalenceClasses<Function*>::iterator EQSI = FuncECs.begin(), E =
219 FuncECs.end(); EQSI != E; ++EQSI) {
220 if (!EQSI->isLeader()) continue;
Chris Lattner2dd9a092005-03-12 11:51:30 +0000221
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000222 EquivalenceClasses<Function*>::member_iterator SI =
223 FuncECs.member_begin(EQSI);
224 assert(SI != FuncECs.member_end() && "Empty equiv set??");
225 EquivalenceClasses<Function*>::member_iterator SN = SI;
226 ++SN;
227 if (SN == FuncECs.member_end())
228 continue; // Single function equivalence set, no merging to do.
Chris Lattner2dd9a092005-03-12 11:51:30 +0000229
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000230 Function* LF = *SI;
231
Chris Lattner2dd9a092005-03-12 11:51:30 +0000232#ifndef NDEBUG
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000233 DEBUG(std::cerr <<" Equivalence set for leader " << LF->getName() <<" = ");
234 for (SN = SI; SN != FuncECs.member_end(); ++SN)
235 DEBUG(std::cerr << " " << (*SN)->getName() << "," );
236 DEBUG(std::cerr << "\n");
Chris Lattner2dd9a092005-03-12 11:51:30 +0000237#endif
238
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000239 // This equiv class has multiple functions: merge their graphs. First,
240 // clone the CBU graph for the leader and make it the common graph for the
241 // equivalence graph.
242 DSGraph &MergedG = getOrCreateGraph(*LF);
Chris Lattner2dd9a092005-03-12 11:51:30 +0000243
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000244 // Record the argument nodes for use in merging later below.
245 std::vector<DSNodeHandle> ArgNodes;
Chris Lattner2dd9a092005-03-12 11:51:30 +0000246
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000247 for (Function::arg_iterator AI = LF->arg_begin(), E = LF->arg_end();
248 AI != E; ++AI)
249 if (DS::isPointerType(AI->getType()))
250 ArgNodes.push_back(MergedG.getNodeForValue(AI));
Chris Lattner2dd9a092005-03-12 11:51:30 +0000251
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000252 // Merge in the graphs of all other functions in this equiv. class. Note
253 // that two or more functions may have the same graph, and it only needs
254 // to be merged in once.
255 std::set<DSGraph*> GraphsMerged;
256 GraphsMerged.insert(&CBU->getDSGraph(*LF));
257
258 for (++SI; SI != FuncECs.member_end(); ++SI) {
259 Function *F = *SI;
260 DSGraph *&FG = DSInfo[F];
261
262 DSGraph &CBUGraph = CBU->getDSGraph(*F);
263 if (GraphsMerged.insert(&CBUGraph).second) {
Chris Lattner2dd9a092005-03-12 11:51:30 +0000264 // Record the "folded" graph for the function.
Chris Lattner92d0c1c1b2005-03-15 16:55:04 +0000265 for (DSGraph::retnodes_iterator I = CBUGraph.retnodes_begin(),
266 E = CBUGraph.retnodes_end(); I != E; ++I) {
Chris Lattner2dd9a092005-03-12 11:51:30 +0000267 assert(DSInfo[I->first] == 0 && "Graph already exists for Fn!");
268 DSInfo[I->first] = &MergedG;
269 }
270
271 // Clone this member of the equivalence class into MergedG.
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000272 {
273 DSGraph::NodeMapTy NodeMap;
274 MergedG.cloneInto(CBUGraph, MergedG.getScalarMap(),
275 MergedG.getReturnNodes(), NodeMap, 0);
276 }
Chris Lattner2dd9a092005-03-12 11:51:30 +0000277 }
Chris Lattnerc1b9b562005-03-19 05:15:27 +0000278
279 // Merge the return nodes of all functions together.
280 MergedG.getReturnNodes()[LF].mergeWith(MergedG.getReturnNodes()[F]);
281
282 // Merge the function arguments with all argument nodes found so far.
283 // If there are extra function args, add them to the vector of argNodes
284 Function::arg_iterator AI2 = F->arg_begin(), AI2end = F->arg_end();
285 for (unsigned arg = 0, numArgs = ArgNodes.size();
286 arg != numArgs && AI2 != AI2end; ++AI2, ++arg)
287 if (DS::isPointerType(AI2->getType()))
288 ArgNodes[arg].mergeWith(MergedG.getNodeForValue(AI2));
289
290 for ( ; AI2 != AI2end; ++AI2)
291 if (DS::isPointerType(AI2->getType()))
292 ArgNodes.push_back(MergedG.getNodeForValue(AI2));
293 DEBUG(MergedG.AssertGraphOK());
Chris Lattner2dd9a092005-03-12 11:51:30 +0000294 }
295 }
296 DEBUG(std::cerr << "\n");
297}
298
299
Chris Lattnerdd6bcbe2005-03-12 12:08:52 +0000300DSGraph &EquivClassGraphs::getOrCreateGraph(Function &F) {
Chris Lattner2dd9a092005-03-12 11:51:30 +0000301 // Has the graph already been created?
302 DSGraph *&Graph = DSInfo[&F];
303 if (Graph) return *Graph;
304
305 DSGraph &CBUGraph = CBU->getDSGraph(F);
306
307 // Copy the CBU graph...
308 Graph = new DSGraph(CBUGraph); // updates the map via reference
309 Graph->setGlobalsGraph(&getGlobalsGraph());
310 Graph->setPrintAuxCalls();
311
312 // Make sure to update the DSInfo map for all functions in the graph!
Chris Lattner92d0c1c1b2005-03-15 16:55:04 +0000313 for (DSGraph::retnodes_iterator I = Graph->retnodes_begin();
314 I != Graph->retnodes_end(); ++I)
Chris Lattner2dd9a092005-03-12 11:51:30 +0000315 if (I->first != &F) {
316 DSGraph *&FG = DSInfo[I->first];
317 assert(FG == 0 && "Merging function in SCC twice?");
318 FG = Graph;
319 }
320
321 return *Graph;
322}
323
324
Chris Lattnerdd6bcbe2005-03-12 12:08:52 +0000325unsigned EquivClassGraphs::
Chris Lattner2dd9a092005-03-12 11:51:30 +0000326processSCC(DSGraph &FG, std::vector<DSGraph*> &Stack, unsigned &NextID,
327 std::map<DSGraph*, unsigned> &ValMap) {
328 std::map<DSGraph*, unsigned>::iterator It = ValMap.lower_bound(&FG);
329 if (It != ValMap.end() && It->first == &FG)
330 return It->second;
331
332 DEBUG(std::cerr << " ProcessSCC for function " << FG.getFunctionNames()
333 << "\n");
334
335 unsigned Min = NextID++, MyID = Min;
336 ValMap[&FG] = Min;
337 Stack.push_back(&FG);
338
339 // The edges out of the current node are the call site targets...
Chris Lattner451fa322005-03-15 06:29:12 +0000340 for (DSGraph::fc_iterator CI = FG.fc_begin(), CE = FG.fc_end();
341 CI != CE; ++CI) {
Chris Lattner2dd9a092005-03-12 11:51:30 +0000342 Instruction *Call = CI->getCallSite().getInstruction();
343
344 // Loop over all of the actually called functions...
345 ActualCalleesTy::const_iterator I, E;
346 for (tie(I, E) = getActualCallees().equal_range(Call); I != E; ++I)
347 if (!I->second->isExternal()) {
348 // Process the callee as necessary.
349 unsigned M = processSCC(getOrCreateGraph(*I->second),
350 Stack, NextID, ValMap);
351 if (M < Min) Min = M;
352 }
353 }
354
355 assert(ValMap[&FG] == MyID && "SCC construction assumption wrong!");
356 if (Min != MyID)
357 return Min; // This is part of a larger SCC!
358
359 // If this is a new SCC, process it now.
360 bool MergedGraphs = false;
361 while (Stack.back() != &FG) {
362 DSGraph *NG = Stack.back();
363 ValMap[NG] = ~0U;
364
365 // If the SCC found is not the same as those found in CBU, make sure to
366 // merge the graphs as appropriate.
367 DSGraph::NodeMapTy NodeMap;
368 FG.cloneInto(*NG, FG.getScalarMap(), FG.getReturnNodes(), NodeMap);
369
370 // Update the DSInfo map and delete the old graph...
Chris Lattner92d0c1c1b2005-03-15 16:55:04 +0000371 for (DSGraph::retnodes_iterator I = NG->retnodes_begin();
372 I != NG->retnodes_end(); ++I)
Chris Lattner2dd9a092005-03-12 11:51:30 +0000373 DSInfo[I->first] = &FG;
374
375 // Remove NG from the ValMap since the pointer may get recycled.
376 ValMap.erase(NG);
377 delete NG;
378 MergedGraphs = true;
379 Stack.pop_back();
380 }
381
382 // Clean up the graph before we start inlining a bunch again.
383 if (MergedGraphs)
384 FG.removeTriviallyDeadNodes();
385
386 Stack.pop_back();
387
388 processGraph(FG);
389 ValMap[&FG] = ~0U;
390 return MyID;
391}
392
393
394/// processGraph - Process the CBU graphs for the program in bottom-up order on
395/// the SCC of the __ACTUAL__ call graph. This builds final folded CBU graphs.
Chris Lattnerdd6bcbe2005-03-12 12:08:52 +0000396void EquivClassGraphs::processGraph(DSGraph &G) {
Chris Lattner2dd9a092005-03-12 11:51:30 +0000397 DEBUG(std::cerr << " ProcessGraph for function "
398 << G.getFunctionNames() << "\n");
399
400 hash_set<Instruction*> calls;
401
402 // Else we need to inline some callee graph. Visit all call sites.
403 // The edges out of the current node are the call site targets...
404 unsigned i = 0;
Chris Lattner451fa322005-03-15 06:29:12 +0000405 for (DSGraph::fc_iterator CI = G.fc_begin(), CE = G.fc_end(); CI != CE;
Chris Lattner2dd9a092005-03-12 11:51:30 +0000406 ++CI, ++i) {
407 const DSCallSite &CS = *CI;
408 Instruction *TheCall = CS.getCallSite().getInstruction();
409
410 assert(calls.insert(TheCall).second &&
411 "Call instruction occurs multiple times in graph??");
412
Chris Lattnerbed1c182005-03-18 23:19:47 +0000413 if (CS.getRetVal().isNull() && CS.getNumPtrArgs() == 0)
414 continue;
415
Chris Lattner2dd9a092005-03-12 11:51:30 +0000416 // Inline the common callee graph into the current graph, if the callee
417 // graph has not changed. Note that all callees should have the same
418 // graph so we only need to do this once.
419 //
420 DSGraph* CalleeGraph = NULL;
421 ActualCalleesTy::const_iterator I, E;
422 tie(I, E) = getActualCallees().equal_range(TheCall);
423 unsigned TNum, Num;
424
425 // Loop over all potential callees to find the first non-external callee.
426 for (TNum = 0, Num = std::distance(I, E); I != E; ++I, ++TNum)
427 if (!I->second->isExternal())
428 break;
429
430 // Now check if the graph has changed and if so, clone and inline it.
431 if (I != E) {
432 Function *CalleeFunc = I->second;
433
434 // Merge the callee's graph into this graph, if not already the same.
435 // Callees in the same equivalence class (which subsumes those
436 // in the same SCCs) have the same graph. Note that all recursion
437 // including self-recursion have been folded in the equiv classes.
438 //
439 CalleeGraph = &getOrCreateGraph(*CalleeFunc);
440 if (CalleeGraph != &G) {
441 ++NumFoldGraphInlines;
442 G.mergeInGraph(CS, *CalleeFunc, *CalleeGraph,
443 DSGraph::KeepModRefBits | DSGraph::StripAllocaBit |
444 DSGraph::DontCloneCallNodes |
445 DSGraph::DontCloneAuxCallNodes);
446 DEBUG(std::cerr << " Inlining graph [" << i << "/"
447 << G.getFunctionCalls().size()-1
448 << ":" << TNum << "/" << Num-1 << "] for "
449 << CalleeFunc->getName() << "["
450 << CalleeGraph->getGraphSize() << "+"
451 << CalleeGraph->getAuxFunctionCalls().size()
452 << "] into '" /*<< G.getFunctionNames()*/ << "' ["
453 << G.getGraphSize() << "+" << G.getAuxFunctionCalls().size()
454 << "]\n");
455 }
456 }
457
458#ifndef NDEBUG
459 // Now loop over the rest of the callees and make sure they have the
460 // same graph as the one inlined above.
461 if (CalleeGraph)
462 for (++I, ++TNum; I != E; ++I, ++TNum)
463 if (!I->second->isExternal())
464 assert(CalleeGraph == &getOrCreateGraph(*I->second) &&
465 "Callees at a call site have different graphs?");
466#endif
467 }
468
469 // Recompute the Incomplete markers.
470 assert(G.getInlinedGlobals().empty());
471 G.maskIncompleteMarkers();
472 G.markIncompleteNodes(DSGraph::MarkFormalArgs);
473
474 // Delete dead nodes. Treat globals that are unreachable but that can
475 // reach live nodes as live.
476 G.removeDeadNodes(DSGraph::KeepUnreachableGlobals);
477
478 // When this graph is finalized, clone the globals in the graph into the
479 // globals graph to make sure it has everything, from all graphs.
480 ReachabilityCloner RC(*G.getGlobalsGraph(), G, DSGraph::StripAllocaBit);
481
482 // Clone everything reachable from globals in the function graph into the
483 // globals graph.
484 DSScalarMap &MainSM = G.getScalarMap();
485 for (DSScalarMap::global_iterator I = MainSM.global_begin(),
486 E = MainSM.global_end(); I != E; ++I)
487 RC.getClonedNH(MainSM[*I]);
488
489 DEBUG(std::cerr << " -- DONE ProcessGraph for function "
490 << G.getFunctionNames() << "\n");
491}