blob: 95c9d3cf5db9a33114604ecbd32fa14982047536 [file] [log] [blame]
Chris Lattner95724a42003-11-13 01:43:00 +00001//===- CompleteBottomUp.cpp - Complete Bottom-Up Data Structure Graphs ----===//
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 is the exact same as the bottom-up graphs, but we use take a completed
11// call graph and inline all indirect callees into their callers graphs, making
12// the result more useful for things like pool allocation.
13//
14//===----------------------------------------------------------------------===//
15
16#include "llvm/Analysis/DataStructure.h"
17#include "llvm/Module.h"
18#include "llvm/Analysis/DSGraph.h"
Chris Lattnerda5c5a52004-03-04 19:16:35 +000019#include "Support/Debug.h"
Chris Lattner79390d42003-11-13 05:05:41 +000020#include "Support/SCCIterator.h"
Chris Lattnerda5c5a52004-03-04 19:16:35 +000021#include "Support/Statistic.h"
Chris Lattner79390d42003-11-13 05:05:41 +000022#include "Support/STLExtras.h"
Chris Lattner95724a42003-11-13 01:43:00 +000023using namespace llvm;
24
25namespace {
26 RegisterAnalysis<CompleteBUDataStructures>
27 X("cbudatastructure", "'Complete' Bottom-up Data Structure Analysis");
Chris Lattnerda5c5a52004-03-04 19:16:35 +000028 Statistic<> NumCBUInlines("cbudatastructures", "Number of graphs inlined");
Chris Lattner95724a42003-11-13 01:43:00 +000029}
30
Chris Lattner95724a42003-11-13 01:43:00 +000031
32// run - Calculate the bottom up data structure graphs for each function in the
33// program.
34//
35bool CompleteBUDataStructures::run(Module &M) {
36 BUDataStructures &BU = getAnalysis<BUDataStructures>();
37 GlobalsGraph = new DSGraph(BU.getGlobalsGraph());
38 GlobalsGraph->setPrintAuxCalls();
39
40 // Our call graph is the same as the BU data structures call graph
41 ActualCallees = BU.getActualCallees();
42
43#if 1 // REMOVE ME EVENTUALLY
44 // FIXME: TEMPORARY (remove once finalization of indirect call sites in the
45 // globals graph has been implemented in the BU pass)
46 TDDataStructures &TD = getAnalysis<TDDataStructures>();
47
48 // The call graph extractable from the TD pass is _much more complete_ and
49 // trustable than that generated by the BU pass so far. Until this is fixed,
50 // we hack it like this:
51 for (Module::iterator MI = M.begin(), ME = M.end(); MI != ME; ++MI) {
52 if (MI->isExternal()) continue;
53 const std::vector<DSCallSite> &CSs = TD.getDSGraph(*MI).getFunctionCalls();
54
55 for (unsigned CSi = 0, e = CSs.size(); CSi != e; ++CSi) {
56 if (CSs[CSi].isIndirectCall()) {
57 Instruction *TheCall = CSs[CSi].getCallSite().getInstruction();
58
59 const std::vector<GlobalValue*> &Callees =
60 CSs[CSi].getCalleeNode()->getGlobals();
61 for (unsigned i = 0, e = Callees.size(); i != e; ++i)
62 if (Function *F = dyn_cast<Function>(Callees[i]))
63 ActualCallees.insert(std::make_pair(TheCall, F));
64 }
65 }
66 }
67#endif
68
Chris Lattner79390d42003-11-13 05:05:41 +000069 std::vector<DSGraph*> Stack;
70 hash_map<DSGraph*, unsigned> ValMap;
71 unsigned NextID = 1;
Chris Lattner95724a42003-11-13 01:43:00 +000072
Chris Lattner79390d42003-11-13 05:05:41 +000073 if (Function *Main = M.getMainFunction()) {
74 calculateSCCGraphs(getOrCreateGraph(*Main), Stack, NextID, ValMap);
75 } else {
76 std::cerr << "CBU-DSA: No 'main' function found!\n";
77 }
78
79 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
80 if (!I->isExternal() && !DSInfo.count(I))
81 calculateSCCGraphs(getOrCreateGraph(*I), Stack, NextID, ValMap);
Chris Lattner95724a42003-11-13 01:43:00 +000082
Chris Lattner2dea8d62004-02-08 01:53:10 +000083 GlobalsGraph->removeTriviallyDeadNodes();
Chris Lattner95724a42003-11-13 01:43:00 +000084 return false;
85}
Chris Lattner79390d42003-11-13 05:05:41 +000086
87DSGraph &CompleteBUDataStructures::getOrCreateGraph(Function &F) {
88 // Has the graph already been created?
89 DSGraph *&Graph = DSInfo[&F];
90 if (Graph) return *Graph;
91
92 // Copy the BU graph...
93 Graph = new DSGraph(getAnalysis<BUDataStructures>().getDSGraph(F));
94 Graph->setGlobalsGraph(GlobalsGraph);
95 Graph->setPrintAuxCalls();
96
97 // Make sure to update the DSInfo map for all of the functions currently in
98 // this graph!
99 for (DSGraph::ReturnNodesTy::iterator I = Graph->getReturnNodes().begin();
100 I != Graph->getReturnNodes().end(); ++I)
101 DSInfo[I->first] = Graph;
102
103 return *Graph;
104}
105
106
107
108unsigned CompleteBUDataStructures::calculateSCCGraphs(DSGraph &FG,
109 std::vector<DSGraph*> &Stack,
110 unsigned &NextID,
111 hash_map<DSGraph*, unsigned> &ValMap) {
112 assert(!ValMap.count(&FG) && "Shouldn't revisit functions!");
113 unsigned Min = NextID++, MyID = Min;
114 ValMap[&FG] = Min;
115 Stack.push_back(&FG);
116
117 // The edges out of the current node are the call site targets...
118 for (unsigned i = 0, e = FG.getFunctionCalls().size(); i != e; ++i) {
119 Instruction *Call = FG.getFunctionCalls()[i].getCallSite().getInstruction();
120
121 // Loop over all of the actually called functions...
122 ActualCalleesTy::iterator I, E;
Chris Lattnera366c982003-11-13 18:48:11 +0000123 for (tie(I, E) = ActualCallees.equal_range(Call); I != E; ++I)
124 if (!I->second->isExternal()) {
125 DSGraph &Callee = getOrCreateGraph(*I->second);
126 unsigned M;
127 // Have we visited the destination function yet?
128 hash_map<DSGraph*, unsigned>::iterator It = ValMap.find(&Callee);
129 if (It == ValMap.end()) // No, visit it now.
130 M = calculateSCCGraphs(Callee, Stack, NextID, ValMap);
131 else // Yes, get it's number.
132 M = It->second;
133 if (M < Min) Min = M;
134 }
Chris Lattner79390d42003-11-13 05:05:41 +0000135 }
136
137 assert(ValMap[&FG] == MyID && "SCC construction assumption wrong!");
138 if (Min != MyID)
139 return Min; // This is part of a larger SCC!
140
141 // If this is a new SCC, process it now.
142 bool IsMultiNodeSCC = false;
143 while (Stack.back() != &FG) {
144 DSGraph *NG = Stack.back();
145 ValMap[NG] = ~0U;
146
147 DSGraph::NodeMapTy NodeMap;
Chris Lattner825a02a2004-01-27 21:50:41 +0000148 FG.cloneInto(*NG, FG.getScalarMap(), FG.getReturnNodes(), NodeMap);
Chris Lattner79390d42003-11-13 05:05:41 +0000149
150 // Update the DSInfo map and delete the old graph...
151 for (DSGraph::ReturnNodesTy::iterator I = NG->getReturnNodes().begin();
152 I != NG->getReturnNodes().end(); ++I)
153 DSInfo[I->first] = &FG;
154 delete NG;
155
156 Stack.pop_back();
157 IsMultiNodeSCC = true;
158 }
159
160 // Clean up the graph before we start inlining a bunch again...
161 if (IsMultiNodeSCC)
162 FG.removeTriviallyDeadNodes();
163
164 Stack.pop_back();
165 processGraph(FG);
166 ValMap[&FG] = ~0U;
167 return MyID;
168}
169
170
171/// processGraph - Process the BU graphs for the program in bottom-up order on
172/// the SCC of the __ACTUAL__ call graph. This builds "complete" BU graphs.
173void CompleteBUDataStructures::processGraph(DSGraph &G) {
Chris Lattnerda5c5a52004-03-04 19:16:35 +0000174 hash_set<Instruction*> calls;
Chris Lattnerd10b5fd2004-02-20 23:52:15 +0000175
Chris Lattner79390d42003-11-13 05:05:41 +0000176 // The edges out of the current node are the call site targets...
177 for (unsigned i = 0, e = G.getFunctionCalls().size(); i != e; ++i) {
178 const DSCallSite &CS = G.getFunctionCalls()[i];
179 Instruction *TheCall = CS.getCallSite().getInstruction();
180
Chris Lattnerda5c5a52004-03-04 19:16:35 +0000181 assert(calls.insert(TheCall).second &&
182 "Call instruction occurs multiple times in graph??");
183
184
Chris Lattner79390d42003-11-13 05:05:41 +0000185 // The Normal BU pass will have taken care of direct calls well already,
186 // don't worry about them.
Chris Lattnerda5c5a52004-03-04 19:16:35 +0000187
188 // FIXME: if a direct callee had indirect callees, it seems like they could
189 // be updated and we would have to reinline even direct calls!
190
Chris Lattner79390d42003-11-13 05:05:41 +0000191 if (!CS.getCallSite().getCalledFunction()) {
192 // Loop over all of the actually called functions...
193 ActualCalleesTy::iterator I, E;
Chris Lattnerda5c5a52004-03-04 19:16:35 +0000194 tie(I, E) = ActualCallees.equal_range(TheCall);
195 unsigned TNum = 0, Num = std::distance(I, E);
196 for (; I != E; ++I, ++TNum) {
Chris Lattner79390d42003-11-13 05:05:41 +0000197 Function *CalleeFunc = I->second;
198 if (!CalleeFunc->isExternal()) {
199 // Merge the callee's graph into this graph. This works for normal
200 // calls or for self recursion within an SCC.
Chris Lattnerda5c5a52004-03-04 19:16:35 +0000201 DSGraph &GI = getOrCreateGraph(*CalleeFunc);
202 ++NumCBUInlines;
203 G.mergeInGraph(CS, *CalleeFunc, GI, DSGraph::KeepModRefBits |
204 DSGraph::StripAllocaBit | DSGraph::DontCloneCallNodes |
205 DSGraph::DontCloneAuxCallNodes);
206 DEBUG(std::cerr << " Inlining graph [" << i << "/" << e-1
207 << ":" << TNum << "/" << Num-1 << "] for "
208 << CalleeFunc->getName() << "["
209 << GI.getGraphSize() << "+" << GI.getAuxFunctionCalls().size()
210 << "] into '" /*<< G.getFunctionNames()*/ << "' ["
211 << G.getGraphSize() << "+" << G.getAuxFunctionCalls().size()
212 << "]\n");
Chris Lattner79390d42003-11-13 05:05:41 +0000213 }
214 }
215 }
216 }
217
Chris Lattner79390d42003-11-13 05:05:41 +0000218 // Recompute the Incomplete markers
Chris Lattnerd10b5fd2004-02-20 23:52:15 +0000219 assert(G.getInlinedGlobals().empty());
Chris Lattner79390d42003-11-13 05:05:41 +0000220 G.maskIncompleteMarkers();
221 G.markIncompleteNodes(DSGraph::MarkFormalArgs);
222
223 // Delete dead nodes. Treat globals that are unreachable but that can
224 // reach live nodes as live.
Chris Lattner4ab483c2004-03-04 21:36:57 +0000225 G.removeDeadNodes(DSGraph::KeepUnreachableGlobals);
Chris Lattner79390d42003-11-13 05:05:41 +0000226}