blob: c1789ef44a7f0fb5ce39b8041ef4cbee0f41dc5e [file] [log] [blame]
Vikram S. Advec5204fb2004-05-23 07:54:02 +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"
Chris Lattner7aed7172005-03-12 11:51:30 +000018#include "llvm/Analysis/DataStructure/EquivClassGraphs.h"
Chris Lattner2af8c512005-03-15 17:14:09 +000019#include "llvm/DerivedTypes.h"
Vikram S. Advec5204fb2004-05-23 07:54:02 +000020#include "llvm/Module.h"
21#include "llvm/Pass.h"
Chris Lattnereaef5682004-07-07 06:22:54 +000022#include "llvm/Analysis/DataStructure/DSGraph.h"
23#include "llvm/Analysis/DataStructure/DataStructure.h"
Vikram S. Advec5204fb2004-05-23 07:54:02 +000024#include "llvm/Support/CallSite.h"
Chris Lattnerc9b93802004-10-11 20:53:28 +000025#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"
Vikram S. Advec5204fb2004-05-23 07:54:02 +000030using namespace llvm;
31
Vikram S. Advec5204fb2004-05-23 07:54:02 +000032namespace {
Chris Lattneradfd5f12005-03-13 19:51:24 +000033 RegisterAnalysis<EquivClassGraphs> X("eqdatastructure",
Vikram S. Advec5204fb2004-05-23 07:54:02 +000034 "Equivalence-class Bottom-up Data Structure Analysis");
Chris Lattnerab8544a2004-10-31 21:56:11 +000035 Statistic<> NumEquivBUInlines("equivdatastructures",
36 "Number of graphs inlined");
Chris Lattner15d879e2004-10-12 16:52:09 +000037 Statistic<> NumFoldGraphInlines("Inline equiv-class graphs bottom up",
38 "Number of graphs inlined");
Vikram S. Advec5204fb2004-05-23 07:54:02 +000039}
40
Chris Lattner31d3f672004-10-31 23:41:26 +000041#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 Lattnera5f47ea2005-03-15 16:55:04 +000049 if (G.retnodes_begin()->first != I)
Chris Lattnerb2b17bb2005-03-14 19:22:47 +000050 continue; // Only check a graph once.
Chris Lattner31d3f672004-10-31 23:41:26 +000051
52 DSGraph::NodeMapTy GlobalsGraphNodeMapping;
Chris Lattnerb0f92e32005-03-15 00:58:16 +000053 G.computeGToGGMapping(GlobalsGraphNodeMapping);
Chris Lattner31d3f672004-10-31 23:41:26 +000054 }
55}
56#endif
57
Chris Lattner4457f7e2004-11-01 21:07:05 +000058// getSomeCalleeForCallSite - Return any one callee function at a call site.
Vikram S. Advec5204fb2004-05-23 07:54:02 +000059//
Chris Lattneradfd5f12005-03-13 19:51:24 +000060Function *EquivClassGraphs::getSomeCalleeForCallSite(const CallSite &CS) const{
Vikram S. Advec5204fb2004-05-23 07:54:02 +000061 Function *thisFunc = CS.getCaller();
Chris Lattner4457f7e2004-11-01 21:07:05 +000062 assert(thisFunc && "getSomeCalleeForCallSite(): Not a valid call site?");
Chris Lattnerab8544a2004-10-31 21:56:11 +000063 DSGraph &DSG = getDSGraph(*thisFunc);
64 DSNode *calleeNode = DSG.getNodeForValue(CS.getCalledValue()).getNode();
Vikram S. Advec5204fb2004-05-23 07:54:02 +000065 std::map<DSNode*, Function *>::const_iterator I =
66 OneCalledFunction.find(calleeNode);
67 return (I == OneCalledFunction.end())? NULL : I->second;
68}
69
Chris Lattnerab8544a2004-10-31 21:56:11 +000070// runOnModule - Calculate the bottom up data structure graphs for each function
71// in the program.
Vikram S. Advec5204fb2004-05-23 07:54:02 +000072//
Chris Lattnerb25959a2005-03-12 12:08:52 +000073bool EquivClassGraphs::runOnModule(Module &M) {
Vikram S. Advec5204fb2004-05-23 07:54:02 +000074 CBU = &getAnalysis<CompleteBUDataStructures>();
Chris Lattner04252fe2004-11-11 22:11:17 +000075 DEBUG(CheckAllGraphs(&M, *CBU));
Vikram S. Advec5204fb2004-05-23 07:54:02 +000076
Chris Lattnerab8544a2004-10-31 21:56:11 +000077 GlobalsGraph = new DSGraph(CBU->getGlobalsGraph());
78 GlobalsGraph->setPrintAuxCalls();
79
Chris Lattner31d3f672004-10-31 23:41:26 +000080 ActualCallees = CBU->getActualCallees();
81
Vikram S. Advec5204fb2004-05-23 07:54:02 +000082 // 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.
Chris Lattner033a7d52004-11-02 17:51:11 +000087 std::vector<DSGraph*> Stack;
88 std::map<DSGraph*, unsigned> ValMap;
Vikram S. Advec5204fb2004-05-23 07:54:02 +000089 unsigned NextID = 1;
90
Chris Lattnera66e3532005-03-13 20:15:06 +000091 Function *MainFunc = M.getMainFunction();
92 if (MainFunc && !MainFunc->isExternal()) {
93 processSCC(getOrCreateGraph(*MainFunc), Stack, NextID, ValMap);
Vikram S. Advec5204fb2004-05-23 07:54:02 +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)
Chris Lattner033a7d52004-11-02 17:51:11 +000099 if (!I->isExternal())
100 processSCC(getOrCreateGraph(*I), Stack, NextID, ValMap);
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000101
Chris Lattner31d3f672004-10-31 23:41:26 +0000102 DEBUG(CheckAllGraphs(&M, *this));
103
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000104 getGlobalsGraph().removeTriviallyDeadNodes();
Chris Lattner38065a72005-03-15 22:47:18 +0000105 getGlobalsGraph().markIncompleteNodes(DSGraph::IgnoreGlobals);
Chris Lattnera66e3532005-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 Lattner49e88e82005-03-15 22:10:04 +0000110 if (MainFunc && !MainFunc->isExternal()) {
Chris Lattnera66e3532005-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 Lattner270cf502005-03-13 20:32:26 +0000123 MainGraph.maskIncompleteMarkers();
Chris Lattnera66e3532005-03-13 20:15:06 +0000124 MainGraph.markIncompleteNodes(DSGraph::MarkFormalArgs |
125 DSGraph::IgnoreGlobals);
126 }
127
Chris Lattner2af8c512005-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 Lattnerab8544a2004-10-31 21:56:11 +0000151 return false;
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000152}
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 Lattnerb25959a2005-03-12 12:08:52 +0000159void EquivClassGraphs::buildIndirectFunctionSets(Module &M) {
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000160 const ActualCalleesTy& AC = CBU->getActualCallees();
Chris Lattner77408b82004-11-01 20:37:00 +0000161
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000162 // 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:
174 FuncECs.addElement(I->second); // -- Make sure function has equiv class
175 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();
Chris Lattner15d879e2004-10-12 16:52:09 +0000186 DSGraph &TFG = CBU->getDSGraph(*thisFunc);
187 DSNode *calleeNode = TFG.getNodeForValue(CS.getCalledValue()).getNode();
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000188 OneCalledFunction[calleeNode] = FirstFunc;
189 FuncECs.addElement(I->second);
190 } else {
191 // This is not the first possible callee from a particular call site.
192 // Union the callee in with the other functions.
193 FuncECs.unionSetsWith(FirstFunc, I->second);
194#ifndef NDEBUG
195 Function *thisFunc = LastInst->getParent()->getParent();
Chris Lattner15d879e2004-10-12 16:52:09 +0000196 DSGraph &TFG = CBU->getDSGraph(*thisFunc);
197 DSNode *calleeNode = TFG.getNodeForValue(CS.getCalledValue()).getNode();
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000198 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 Lattnera5f47ea2005-03-15 16:55:04 +0000209 for (DSGraph::retnodes_iterator RI = funcDSGraph.retnodes_begin(),
210 RE = funcDSGraph.retnodes_end(); RI != RE; ++RI)
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000211 FuncECs.unionSetsWith(FirstFunc, RI->first);
212 }
213
214 // Now that all of the equivalences have been built, merge the graphs for
215 // each equivalence class.
216 //
217 std::set<Function*> &leaderSet = FuncECs.getLeaderSet();
218 DEBUG(std::cerr << "\nIndirect Function Equivalence Sets:\n");
219 for (std::set<Function*>::iterator LI = leaderSet.begin(),
220 LE = leaderSet.end(); LI != LE; ++LI) {
221
222 Function* LF = *LI;
223 const std::set<Function*>& EqClass = FuncECs.getEqClass(LF);
224
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000225 if (EqClass.size() > 1) {
Chris Lattner983baf42004-11-02 06:38:58 +0000226#ifndef NDEBUG
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000227 DEBUG(std::cerr <<" Equivalence set for leader " <<LF->getName()<<" = ");
228 for (std::set<Function*>::const_iterator EqI = EqClass.begin(),
229 EqEnd = EqClass.end(); EqI != EqEnd; ++EqI)
230 DEBUG(std::cerr << " " << (*EqI)->getName() << ",");
231 DEBUG(std::cerr << "\n");
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000232#endif
233
Chris Lattnerab8544a2004-10-31 21:56:11 +0000234 // This equiv class has multiple functions: merge their graphs. First,
235 // clone the CBU graph for the leader and make it the common graph for the
236 // equivalence graph.
Chris Lattner983baf42004-11-02 06:38:58 +0000237 DSGraph &MergedG = getOrCreateGraph(*LF);
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000238
Chris Lattner77408b82004-11-01 20:37:00 +0000239 // Record the argument nodes for use in merging later below.
240 std::vector<DSNodeHandle> ArgNodes;
241
Chris Lattnere4d5c442005-03-15 04:54:21 +0000242 for (Function::arg_iterator AI1 = LF->arg_begin(); AI1 != LF->arg_end(); ++AI1)
Chris Lattnerf4985682004-10-31 18:13:19 +0000243 if (DS::isPointerType(AI1->getType()))
Chris Lattner983baf42004-11-02 06:38:58 +0000244 ArgNodes.push_back(MergedG.getNodeForValue(AI1));
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000245
Chris Lattnerab8544a2004-10-31 21:56:11 +0000246 // Merge in the graphs of all other functions in this equiv. class. Note
247 // that two or more functions may have the same graph, and it only needs
Chris Lattner983baf42004-11-02 06:38:58 +0000248 // to be merged in once.
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000249 std::set<DSGraph*> GraphsMerged;
Chris Lattner983baf42004-11-02 06:38:58 +0000250 GraphsMerged.insert(&CBU->getDSGraph(*LF));
Chris Lattner113cde82004-10-31 17:47:48 +0000251
Chris Lattner983baf42004-11-02 06:38:58 +0000252 for (std::set<Function*>::const_iterator EqI = EqClass.begin(),
253 E = EqClass.end(); EqI != E; ++EqI) {
254 Function *F = *EqI;
255 DSGraph *&FG = DSInfo[F];
256
257 DSGraph &CBUGraph = CBU->getDSGraph(*F);
258 if (!GraphsMerged.insert(&CBUGraph).second)
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000259 continue;
260
261 // Record the "folded" graph for the function.
Chris Lattnera5f47ea2005-03-15 16:55:04 +0000262 for (DSGraph::retnodes_iterator I = CBUGraph.retnodes_begin(),
263 E = CBUGraph.retnodes_end(); I != E; ++I) {
Chris Lattnerf1de30a2004-11-02 20:31:06 +0000264 assert(DSInfo[I->first] == 0 && "Graph already exists for Fn!");
265 DSInfo[I->first] = &MergedG;
266 }
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000267
Chris Lattner983baf42004-11-02 06:38:58 +0000268 // Clone this member of the equivalence class into MergedG.
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000269 DSGraph::NodeMapTy NodeMap;
Chris Lattner113cde82004-10-31 17:47:48 +0000270
Chris Lattner983baf42004-11-02 06:38:58 +0000271 MergedG.cloneInto(CBUGraph, MergedG.getScalarMap(),
Chris Lattnerf1de30a2004-11-02 20:31:06 +0000272 MergedG.getReturnNodes(), NodeMap, 0);
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000273
274 // Merge the return nodes of all functions together.
Chris Lattner983baf42004-11-02 06:38:58 +0000275 MergedG.getReturnNodes()[LF].mergeWith(MergedG.getReturnNodes()[F]);
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000276
277 // Merge the function arguments with all argument nodes found so far.
278 // If there are extra function args, add them to the vector of argNodes
Chris Lattnere4d5c442005-03-15 04:54:21 +0000279 Function::arg_iterator AI2 = F->arg_begin(), AI2end = F->arg_end();
Chris Lattner77408b82004-11-01 20:37:00 +0000280 for (unsigned arg=0, numArgs = ArgNodes.size();
Chris Lattner113cde82004-10-31 17:47:48 +0000281 arg != numArgs && AI2 != AI2end; ++AI2, ++arg)
282 if (DS::isPointerType(AI2->getType()))
Chris Lattner983baf42004-11-02 06:38:58 +0000283 ArgNodes[arg].mergeWith(MergedG.getNodeForValue(AI2));
Chris Lattner113cde82004-10-31 17:47:48 +0000284
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000285 for ( ; AI2 != AI2end; ++AI2)
Chris Lattner113cde82004-10-31 17:47:48 +0000286 if (DS::isPointerType(AI2->getType()))
Chris Lattner983baf42004-11-02 06:38:58 +0000287 ArgNodes.push_back(MergedG.getNodeForValue(AI2));
288 DEBUG(MergedG.AssertGraphOK());
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000289 }
290 }
291 }
292 DEBUG(std::cerr << "\n");
293}
294
295
Chris Lattnerb25959a2005-03-12 12:08:52 +0000296DSGraph &EquivClassGraphs::getOrCreateGraph(Function &F) {
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000297 // Has the graph already been created?
Chris Lattnerfcb7d952004-11-01 21:02:23 +0000298 DSGraph *&Graph = DSInfo[&F];
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000299 if (Graph) return *Graph;
300
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000301 DSGraph &CBUGraph = CBU->getDSGraph(F);
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000302
303 // Copy the CBU graph...
304 Graph = new DSGraph(CBUGraph); // updates the map via reference
305 Graph->setGlobalsGraph(&getGlobalsGraph());
306 Graph->setPrintAuxCalls();
307
Chris Lattnerfcb7d952004-11-01 21:02:23 +0000308 // Make sure to update the DSInfo map for all functions in the graph!
Chris Lattnera5f47ea2005-03-15 16:55:04 +0000309 for (DSGraph::retnodes_iterator I = Graph->retnodes_begin();
310 I != Graph->retnodes_end(); ++I)
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000311 if (I->first != &F) {
Chris Lattnerfcb7d952004-11-01 21:02:23 +0000312 DSGraph *&FG = DSInfo[I->first];
Chris Lattner983baf42004-11-02 06:38:58 +0000313 assert(FG == 0 && "Merging function in SCC twice?");
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000314 FG = Graph;
315 }
316
Chris Lattner68f96582004-11-01 19:54:06 +0000317 return *Graph;
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000318}
319
320
Chris Lattnerb25959a2005-03-12 12:08:52 +0000321unsigned EquivClassGraphs::
Chris Lattner033a7d52004-11-02 17:51:11 +0000322processSCC(DSGraph &FG, std::vector<DSGraph*> &Stack, unsigned &NextID,
323 std::map<DSGraph*, unsigned> &ValMap) {
324 std::map<DSGraph*, unsigned>::iterator It = ValMap.lower_bound(&FG);
325 if (It != ValMap.end() && It->first == &FG)
Chris Lattner4bbf3df2004-10-31 23:01:34 +0000326 return It->second;
327
Chris Lattner033a7d52004-11-02 17:51:11 +0000328 DEBUG(std::cerr << " ProcessSCC for function " << FG.getFunctionNames()
329 << "\n");
330
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000331 unsigned Min = NextID++, MyID = Min;
Chris Lattner033a7d52004-11-02 17:51:11 +0000332 ValMap[&FG] = Min;
333 Stack.push_back(&FG);
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000334
335 // The edges out of the current node are the call site targets...
Chris Lattner5d85f8f2005-03-15 06:29:12 +0000336 for (DSGraph::fc_iterator CI = FG.fc_begin(), CE = FG.fc_end();
337 CI != CE; ++CI) {
Chris Lattner6538f422005-01-30 23:51:25 +0000338 Instruction *Call = CI->getCallSite().getInstruction();
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000339
340 // Loop over all of the actually called functions...
341 ActualCalleesTy::const_iterator I, E;
342 for (tie(I, E) = getActualCallees().equal_range(Call); I != E; ++I)
343 if (!I->second->isExternal()) {
Chris Lattner31d3f672004-10-31 23:41:26 +0000344 // Process the callee as necessary.
Chris Lattner033a7d52004-11-02 17:51:11 +0000345 unsigned M = processSCC(getOrCreateGraph(*I->second),
Chris Lattner31d3f672004-10-31 23:41:26 +0000346 Stack, NextID, ValMap);
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000347 if (M < Min) Min = M;
348 }
349 }
350
Chris Lattner033a7d52004-11-02 17:51:11 +0000351 assert(ValMap[&FG] == MyID && "SCC construction assumption wrong!");
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000352 if (Min != MyID)
353 return Min; // This is part of a larger SCC!
354
355 // If this is a new SCC, process it now.
Chris Lattnercaa35bc2004-11-02 19:29:59 +0000356 bool MergedGraphs = false;
Chris Lattner033a7d52004-11-02 17:51:11 +0000357 while (Stack.back() != &FG) {
358 DSGraph *NG = Stack.back();
359 ValMap[NG] = ~0U;
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000360
Chris Lattnercaa35bc2004-11-02 19:29:59 +0000361 // If the SCC found is not the same as those found in CBU, make sure to
362 // merge the graphs as appropriate.
363 DSGraph::NodeMapTy NodeMap;
364 FG.cloneInto(*NG, FG.getScalarMap(), FG.getReturnNodes(), NodeMap);
365
366 // Update the DSInfo map and delete the old graph...
Chris Lattnera5f47ea2005-03-15 16:55:04 +0000367 for (DSGraph::retnodes_iterator I = NG->retnodes_begin();
368 I != NG->retnodes_end(); ++I)
Chris Lattnercaa35bc2004-11-02 19:29:59 +0000369 DSInfo[I->first] = &FG;
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000370
Chris Lattnercaa35bc2004-11-02 19:29:59 +0000371 // Remove NG from the ValMap since the pointer may get recycled.
372 ValMap.erase(NG);
373 delete NG;
374 MergedGraphs = true;
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000375 Stack.pop_back();
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000376 }
377
Chris Lattnercaa35bc2004-11-02 19:29:59 +0000378 // Clean up the graph before we start inlining a bunch again.
379 if (MergedGraphs)
380 FG.removeTriviallyDeadNodes();
381
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000382 Stack.pop_back();
Chris Lattner113cde82004-10-31 17:47:48 +0000383
Chris Lattner033a7d52004-11-02 17:51:11 +0000384 processGraph(FG);
385 ValMap[&FG] = ~0U;
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000386 return MyID;
387}
388
389
390/// processGraph - Process the CBU graphs for the program in bottom-up order on
391/// the SCC of the __ACTUAL__ call graph. This builds final folded CBU graphs.
Chris Lattnerb25959a2005-03-12 12:08:52 +0000392void EquivClassGraphs::processGraph(DSGraph &G) {
Chris Lattner033a7d52004-11-02 17:51:11 +0000393 DEBUG(std::cerr << " ProcessGraph for function "
394 << G.getFunctionNames() << "\n");
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000395
396 hash_set<Instruction*> calls;
397
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000398 // Else we need to inline some callee graph. Visit all call sites.
399 // The edges out of the current node are the call site targets...
Chris Lattner6538f422005-01-30 23:51:25 +0000400 unsigned i = 0;
Chris Lattner5d85f8f2005-03-15 06:29:12 +0000401 for (DSGraph::fc_iterator CI = G.fc_begin(), CE = G.fc_end(); CI != CE;
Chris Lattner6538f422005-01-30 23:51:25 +0000402 ++CI, ++i) {
403 const DSCallSite &CS = *CI;
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000404 Instruction *TheCall = CS.getCallSite().getInstruction();
405
406 assert(calls.insert(TheCall).second &&
407 "Call instruction occurs multiple times in graph??");
408
Chris Lattner5021b8c2005-03-18 23:19:47 +0000409 if (CS.getRetVal().isNull() && CS.getNumPtrArgs() == 0)
410 continue;
411
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000412 // Inline the common callee graph into the current graph, if the callee
413 // graph has not changed. Note that all callees should have the same
414 // graph so we only need to do this once.
415 //
416 DSGraph* CalleeGraph = NULL;
417 ActualCalleesTy::const_iterator I, E;
418 tie(I, E) = getActualCallees().equal_range(TheCall);
419 unsigned TNum, Num;
420
421 // Loop over all potential callees to find the first non-external callee.
422 for (TNum = 0, Num = std::distance(I, E); I != E; ++I, ++TNum)
423 if (!I->second->isExternal())
424 break;
425
426 // Now check if the graph has changed and if so, clone and inline it.
Chris Lattnerab8544a2004-10-31 21:56:11 +0000427 if (I != E) {
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000428 Function *CalleeFunc = I->second;
429
430 // Merge the callee's graph into this graph, if not already the same.
431 // Callees in the same equivalence class (which subsumes those
432 // in the same SCCs) have the same graph. Note that all recursion
433 // including self-recursion have been folded in the equiv classes.
434 //
435 CalleeGraph = &getOrCreateGraph(*CalleeFunc);
Chris Lattner033a7d52004-11-02 17:51:11 +0000436 if (CalleeGraph != &G) {
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000437 ++NumFoldGraphInlines;
Chris Lattner033a7d52004-11-02 17:51:11 +0000438 G.mergeInGraph(CS, *CalleeFunc, *CalleeGraph,
439 DSGraph::KeepModRefBits | DSGraph::StripAllocaBit |
440 DSGraph::DontCloneCallNodes |
441 DSGraph::DontCloneAuxCallNodes);
Chris Lattner6538f422005-01-30 23:51:25 +0000442 DEBUG(std::cerr << " Inlining graph [" << i << "/"
443 << G.getFunctionCalls().size()-1
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000444 << ":" << TNum << "/" << Num-1 << "] for "
445 << CalleeFunc->getName() << "["
446 << CalleeGraph->getGraphSize() << "+"
447 << CalleeGraph->getAuxFunctionCalls().size()
Chris Lattner033a7d52004-11-02 17:51:11 +0000448 << "] into '" /*<< G.getFunctionNames()*/ << "' ["
449 << G.getGraphSize() << "+" << G.getAuxFunctionCalls().size()
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000450 << "]\n");
451 }
452 }
453
454#ifndef NDEBUG
455 // Now loop over the rest of the callees and make sure they have the
456 // same graph as the one inlined above.
457 if (CalleeGraph)
458 for (++I, ++TNum; I != E; ++I, ++TNum)
459 if (!I->second->isExternal())
460 assert(CalleeGraph == &getOrCreateGraph(*I->second) &&
461 "Callees at a call site have different graphs?");
462#endif
463 }
464
Chris Lattner31d3f672004-10-31 23:41:26 +0000465 // Recompute the Incomplete markers.
Chris Lattner033a7d52004-11-02 17:51:11 +0000466 assert(G.getInlinedGlobals().empty());
467 G.maskIncompleteMarkers();
468 G.markIncompleteNodes(DSGraph::MarkFormalArgs);
Chris Lattner31d3f672004-10-31 23:41:26 +0000469
470 // Delete dead nodes. Treat globals that are unreachable but that can
471 // reach live nodes as live.
Chris Lattner033a7d52004-11-02 17:51:11 +0000472 G.removeDeadNodes(DSGraph::KeepUnreachableGlobals);
Chris Lattnerab8544a2004-10-31 21:56:11 +0000473
474 // When this graph is finalized, clone the globals in the graph into the
475 // globals graph to make sure it has everything, from all graphs.
Chris Lattner033a7d52004-11-02 17:51:11 +0000476 ReachabilityCloner RC(*G.getGlobalsGraph(), G, DSGraph::StripAllocaBit);
Chris Lattnerab8544a2004-10-31 21:56:11 +0000477
478 // Clone everything reachable from globals in the function graph into the
479 // globals graph.
Chris Lattner033a7d52004-11-02 17:51:11 +0000480 DSScalarMap &MainSM = G.getScalarMap();
Chris Lattnerab8544a2004-10-31 21:56:11 +0000481 for (DSScalarMap::global_iterator I = MainSM.global_begin(),
482 E = MainSM.global_end(); I != E; ++I)
483 RC.getClonedNH(MainSM[*I]);
484
Chris Lattner31d3f672004-10-31 23:41:26 +0000485 DEBUG(std::cerr << " -- DONE ProcessGraph for function "
Chris Lattner033a7d52004-11-02 17:51:11 +0000486 << G.getFunctionNames() << "\n");
Vikram S. Advec5204fb2004-05-23 07:54:02 +0000487}