blob: 1755c8574fc23fcc843eb82ab6a11941dffeecc8 [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 Lattner79390d42003-11-13 05:05:41 +000019#include "Support/SCCIterator.h"
20#include "Support/STLExtras.h"
Chris Lattner95724a42003-11-13 01:43:00 +000021using namespace llvm;
22
23namespace {
24 RegisterAnalysis<CompleteBUDataStructures>
25 X("cbudatastructure", "'Complete' Bottom-up Data Structure Analysis");
26}
27
Chris Lattner95724a42003-11-13 01:43:00 +000028
29// run - Calculate the bottom up data structure graphs for each function in the
30// program.
31//
32bool CompleteBUDataStructures::run(Module &M) {
33 BUDataStructures &BU = getAnalysis<BUDataStructures>();
34 GlobalsGraph = new DSGraph(BU.getGlobalsGraph());
35 GlobalsGraph->setPrintAuxCalls();
36
37 // Our call graph is the same as the BU data structures call graph
38 ActualCallees = BU.getActualCallees();
39
40#if 1 // REMOVE ME EVENTUALLY
41 // FIXME: TEMPORARY (remove once finalization of indirect call sites in the
42 // globals graph has been implemented in the BU pass)
43 TDDataStructures &TD = getAnalysis<TDDataStructures>();
44
45 // The call graph extractable from the TD pass is _much more complete_ and
46 // trustable than that generated by the BU pass so far. Until this is fixed,
47 // we hack it like this:
48 for (Module::iterator MI = M.begin(), ME = M.end(); MI != ME; ++MI) {
49 if (MI->isExternal()) continue;
50 const std::vector<DSCallSite> &CSs = TD.getDSGraph(*MI).getFunctionCalls();
51
52 for (unsigned CSi = 0, e = CSs.size(); CSi != e; ++CSi) {
53 if (CSs[CSi].isIndirectCall()) {
54 Instruction *TheCall = CSs[CSi].getCallSite().getInstruction();
55
56 const std::vector<GlobalValue*> &Callees =
57 CSs[CSi].getCalleeNode()->getGlobals();
58 for (unsigned i = 0, e = Callees.size(); i != e; ++i)
59 if (Function *F = dyn_cast<Function>(Callees[i]))
60 ActualCallees.insert(std::make_pair(TheCall, F));
61 }
62 }
63 }
64#endif
65
Chris Lattner79390d42003-11-13 05:05:41 +000066 std::vector<DSGraph*> Stack;
67 hash_map<DSGraph*, unsigned> ValMap;
68 unsigned NextID = 1;
Chris Lattner95724a42003-11-13 01:43:00 +000069
Chris Lattner79390d42003-11-13 05:05:41 +000070 if (Function *Main = M.getMainFunction()) {
71 calculateSCCGraphs(getOrCreateGraph(*Main), Stack, NextID, ValMap);
72 } else {
73 std::cerr << "CBU-DSA: No 'main' function found!\n";
74 }
75
76 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
77 if (!I->isExternal() && !DSInfo.count(I))
78 calculateSCCGraphs(getOrCreateGraph(*I), Stack, NextID, ValMap);
Chris Lattner95724a42003-11-13 01:43:00 +000079
Chris Lattner2dea8d62004-02-08 01:53:10 +000080 GlobalsGraph->removeTriviallyDeadNodes();
Chris Lattner95724a42003-11-13 01:43:00 +000081 return false;
82}
Chris Lattner79390d42003-11-13 05:05:41 +000083
84DSGraph &CompleteBUDataStructures::getOrCreateGraph(Function &F) {
85 // Has the graph already been created?
86 DSGraph *&Graph = DSInfo[&F];
87 if (Graph) return *Graph;
88
89 // Copy the BU graph...
90 Graph = new DSGraph(getAnalysis<BUDataStructures>().getDSGraph(F));
91 Graph->setGlobalsGraph(GlobalsGraph);
92 Graph->setPrintAuxCalls();
93
94 // Make sure to update the DSInfo map for all of the functions currently in
95 // this graph!
96 for (DSGraph::ReturnNodesTy::iterator I = Graph->getReturnNodes().begin();
97 I != Graph->getReturnNodes().end(); ++I)
98 DSInfo[I->first] = Graph;
99
100 return *Graph;
101}
102
103
104
105unsigned CompleteBUDataStructures::calculateSCCGraphs(DSGraph &FG,
106 std::vector<DSGraph*> &Stack,
107 unsigned &NextID,
108 hash_map<DSGraph*, unsigned> &ValMap) {
109 assert(!ValMap.count(&FG) && "Shouldn't revisit functions!");
110 unsigned Min = NextID++, MyID = Min;
111 ValMap[&FG] = Min;
112 Stack.push_back(&FG);
113
114 // The edges out of the current node are the call site targets...
115 for (unsigned i = 0, e = FG.getFunctionCalls().size(); i != e; ++i) {
116 Instruction *Call = FG.getFunctionCalls()[i].getCallSite().getInstruction();
117
118 // Loop over all of the actually called functions...
119 ActualCalleesTy::iterator I, E;
Chris Lattnera366c982003-11-13 18:48:11 +0000120 for (tie(I, E) = ActualCallees.equal_range(Call); I != E; ++I)
121 if (!I->second->isExternal()) {
122 DSGraph &Callee = getOrCreateGraph(*I->second);
123 unsigned M;
124 // Have we visited the destination function yet?
125 hash_map<DSGraph*, unsigned>::iterator It = ValMap.find(&Callee);
126 if (It == ValMap.end()) // No, visit it now.
127 M = calculateSCCGraphs(Callee, Stack, NextID, ValMap);
128 else // Yes, get it's number.
129 M = It->second;
130 if (M < Min) Min = M;
131 }
Chris Lattner79390d42003-11-13 05:05:41 +0000132 }
133
134 assert(ValMap[&FG] == MyID && "SCC construction assumption wrong!");
135 if (Min != MyID)
136 return Min; // This is part of a larger SCC!
137
138 // If this is a new SCC, process it now.
139 bool IsMultiNodeSCC = false;
140 while (Stack.back() != &FG) {
141 DSGraph *NG = Stack.back();
142 ValMap[NG] = ~0U;
143
144 DSGraph::NodeMapTy NodeMap;
Chris Lattner825a02a2004-01-27 21:50:41 +0000145 FG.cloneInto(*NG, FG.getScalarMap(), FG.getReturnNodes(), NodeMap);
Chris Lattner79390d42003-11-13 05:05:41 +0000146
147 // Update the DSInfo map and delete the old graph...
148 for (DSGraph::ReturnNodesTy::iterator I = NG->getReturnNodes().begin();
149 I != NG->getReturnNodes().end(); ++I)
150 DSInfo[I->first] = &FG;
151 delete NG;
152
153 Stack.pop_back();
154 IsMultiNodeSCC = true;
155 }
156
157 // Clean up the graph before we start inlining a bunch again...
158 if (IsMultiNodeSCC)
159 FG.removeTriviallyDeadNodes();
160
161 Stack.pop_back();
162 processGraph(FG);
163 ValMap[&FG] = ~0U;
164 return MyID;
165}
166
167
168/// processGraph - Process the BU graphs for the program in bottom-up order on
169/// the SCC of the __ACTUAL__ call graph. This builds "complete" BU graphs.
170void CompleteBUDataStructures::processGraph(DSGraph &G) {
171 // The edges out of the current node are the call site targets...
172 for (unsigned i = 0, e = G.getFunctionCalls().size(); i != e; ++i) {
173 const DSCallSite &CS = G.getFunctionCalls()[i];
174 Instruction *TheCall = CS.getCallSite().getInstruction();
175
176 // The Normal BU pass will have taken care of direct calls well already,
177 // don't worry about them.
178 if (!CS.getCallSite().getCalledFunction()) {
179 // Loop over all of the actually called functions...
180 ActualCalleesTy::iterator I, E;
181 for (tie(I, E) = ActualCallees.equal_range(TheCall); I != E; ++I) {
182 Function *CalleeFunc = I->second;
183 if (!CalleeFunc->isExternal()) {
184 // Merge the callee's graph into this graph. This works for normal
185 // calls or for self recursion within an SCC.
186 G.mergeInGraph(CS, *CalleeFunc, getOrCreateGraph(*CalleeFunc),
187 DSGraph::KeepModRefBits |
188 DSGraph::StripAllocaBit |
189 DSGraph::DontCloneCallNodes);
190 }
191 }
192 }
193 }
194
195 // Re-materialize nodes from the globals graph.
196 // Do not ignore globals inlined from callees -- they are not up-to-date!
Chris Lattner825a02a2004-01-27 21:50:41 +0000197 assert(G.getInlinedGlobals().empty());
Chris Lattner79390d42003-11-13 05:05:41 +0000198 G.updateFromGlobalGraph();
199
200 // Recompute the Incomplete markers
201 G.maskIncompleteMarkers();
202 G.markIncompleteNodes(DSGraph::MarkFormalArgs);
203
204 // Delete dead nodes. Treat globals that are unreachable but that can
205 // reach live nodes as live.
206 G.removeDeadNodes(DSGraph::KeepUnreachableGlobals);
207}