blob: e04e1094500193b2c7d5828d0fdda0d65a634b59 [file] [log] [blame]
Vikram S. Adve895c0bd2002-11-06 17:02:03 +00001//===- IPModRef.cpp - Compute IP Mod/Ref information ------------*- C++ -*-===//
2//
3// See high-level comments in include/llvm/Analysis/IPModRef.h
4//
5//===----------------------------------------------------------------------===//
6
Chris Lattnerfc928242002-11-06 18:38:18 +00007#include "llvm/Analysis/IPModRef.h"
Vikram S. Adve895c0bd2002-11-06 17:02:03 +00008#include "llvm/Analysis/DataStructure.h"
9#include "llvm/Analysis/DSGraph.h"
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000010#include "llvm/Module.h"
Vikram S. Adve9a964282002-11-27 17:37:46 +000011#include "llvm/Function.h"
12#include "llvm/iMemory.h"
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000013#include "llvm/iOther.h"
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000014#include "Support/Statistic.h"
15#include "Support/STLExtras.h"
16#include "Support/StringExtras.h"
Vikram S. Adve9a964282002-11-27 17:37:46 +000017#include <vector>
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000018
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000019//----------------------------------------------------------------------------
20// Private constants and data
21//----------------------------------------------------------------------------
22
23static RegisterAnalysis<IPModRef>
24Z("ipmodref", "Interprocedural mod/ref analysis");
25
26
27//----------------------------------------------------------------------------
28// class ModRefInfo
29//----------------------------------------------------------------------------
30
Vikram S. Adve9a964282002-11-27 17:37:46 +000031void ModRefInfo::print(std::ostream &O,
32 const std::string& sprefix) const
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000033{
Vikram S. Adve9a964282002-11-27 17:37:46 +000034 O << sprefix << "Modified nodes = " << modNodeSet;
35 O << sprefix << "Referenced nodes = " << refNodeSet;
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000036}
37
38void ModRefInfo::dump() const
39{
40 print(std::cerr);
41}
42
43//----------------------------------------------------------------------------
44// class FunctionModRefInfo
45//----------------------------------------------------------------------------
46
47
48// This constructor computes a node numbering for the TD graph.
49//
50FunctionModRefInfo::FunctionModRefInfo(const Function& func,
Chris Lattner21108082002-11-06 19:07:13 +000051 IPModRef& ipmro,
Vikram S. Adve9a964282002-11-27 17:37:46 +000052 DSGraph* tdgClone)
Chris Lattner21108082002-11-06 19:07:13 +000053 : F(func), IPModRefObj(ipmro),
Vikram S. Adve9a964282002-11-27 17:37:46 +000054 funcTDGraph(tdgClone),
55 funcModRefInfo(tdgClone->getGraphSize())
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000056{
Vikram S. Adve9a964282002-11-27 17:37:46 +000057 for (unsigned i=0, N = funcTDGraph->getGraphSize(); i < N; ++i)
58 NodeIds[funcTDGraph->getNodes()[i]] = i;
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000059}
60
61
62FunctionModRefInfo::~FunctionModRefInfo()
63{
64 for(std::map<const CallInst*, ModRefInfo*>::iterator
65 I=callSiteModRefInfo.begin(), E=callSiteModRefInfo.end(); I != E; ++I)
66 delete(I->second);
67
68 // Empty map just to make problems easier to track down
69 callSiteModRefInfo.clear();
Vikram S. Adve9a964282002-11-27 17:37:46 +000070
71 delete funcTDGraph;
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000072}
73
Chris Lattnerfc928242002-11-06 18:38:18 +000074unsigned FunctionModRefInfo::getNodeId(const Value* value) const {
Vikram S. Adve9a964282002-11-27 17:37:46 +000075 return getNodeId(funcTDGraph->getNodeForValue(const_cast<Value*>(value))
Chris Lattnerfc928242002-11-06 18:38:18 +000076 .getNode());
77}
78
79
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000080
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000081// Compute Mod/Ref bit vectors for the entire function.
82// These are simply copies of the Read/Write flags from the nodes of
83// the top-down DS graph.
84//
85void FunctionModRefInfo::computeModRef(const Function &func)
86{
87 // Mark all nodes in the graph that are marked MOD as being mod
88 // and all those marked REF as being ref.
Vikram S. Adve9a964282002-11-27 17:37:46 +000089 for (unsigned i = 0, N = funcTDGraph->getGraphSize(); i < N; ++i)
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000090 {
Vikram S. Adve9a964282002-11-27 17:37:46 +000091 if (funcTDGraph->getNodes()[i]->isModified())
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000092 funcModRefInfo.setNodeIsMod(i);
Vikram S. Adve9a964282002-11-27 17:37:46 +000093 if (funcTDGraph->getNodes()[i]->isRead())
Vikram S. Adve895c0bd2002-11-06 17:02:03 +000094 funcModRefInfo.setNodeIsRef(i);
95 }
96
Vikram S. Adve9a964282002-11-27 17:37:46 +000097 // Compute the Mod/Ref info for all call sites within the function.
98 // The call sites are recorded in the TD graph.
99 const std::vector<DSCallSite>& callSites = funcTDGraph->getFunctionCalls();
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000100 for (unsigned i = 0, N = callSites.size(); i < N; ++i)
101 computeModRef(callSites[i].getCallInst());
102}
103
Vikram S. Adve9a964282002-11-27 17:37:46 +0000104
Chris Lattner268748a2002-11-06 19:38:43 +0000105// ResolveCallSiteModRefInfo - This method performs the following actions:
106//
107// 1. It clones the top-down graph for the current function
108// 2. It clears all of the mod/ref bits in the cloned graph
109// 3. It then merges the bottom-up graph(s) for the specified call-site into
110// the clone (bringing new mod/ref bits).
Chris Lattner4476ceb2002-11-06 19:59:33 +0000111// 4. It returns the clone, and a mapping of nodes from the original TDGraph to
112// the cloned graph with Mod/Ref info for the callsite.
Chris Lattner268748a2002-11-06 19:38:43 +0000113//
114// NOTE: Because this clones a dsgraph and returns it, the caller is responsible
115// for deleting the returned graph!
Chris Lattnered8e6492002-11-07 07:12:23 +0000116// NOTE: This method may return a null pointer if it is unable to determine the
117// requested information (because the call site calls an external
118// function or we cannot determine the complete set of functions invoked).
Chris Lattner268748a2002-11-06 19:38:43 +0000119//
Vikram S. Adve9a964282002-11-27 17:37:46 +0000120DSGraph* FunctionModRefInfo::ResolveCallSiteModRefInfo(CallInst &CI,
Chris Lattner41c04f72003-02-01 04:52:08 +0000121 hash_map<const DSNode*, DSNodeHandle> &NodeMap)
Vikram S. Adve9a964282002-11-27 17:37:46 +0000122{
123 // Step #0: Quick check if we are going to fail anyway: avoid
124 // all the graph cloning and map copying in steps #1 and #2.
125 //
126 if (const Function *F = CI.getCalledFunction())
127 {
128 if (F->isExternal())
129 return 0; // We cannot compute Mod/Ref info for this callsite...
130 }
131 else
132 {
133 // Eventually, should check here if any callee is external.
134 // For now we are not handling this case anyway.
135 std::cerr << "IP Mod/Ref indirect call not implemented yet: "
136 << "Being conservative\n";
137 return 0; // We cannot compute Mod/Ref info for this callsite...
138 }
Chris Lattner268748a2002-11-06 19:38:43 +0000139
Chris Lattner4476ceb2002-11-06 19:59:33 +0000140 // Step #1: Clone the top-down graph...
Vikram S. Adve9a964282002-11-27 17:37:46 +0000141 DSGraph *Result = new DSGraph(*funcTDGraph, NodeMap);
Chris Lattner4476ceb2002-11-06 19:59:33 +0000142
143 // Step #2: Clear Mod/Ref information...
144 Result->maskNodeTypes(~(DSNode::Modified | DSNode::Read));
145
Chris Lattnered8e6492002-11-07 07:12:23 +0000146 // Step #3: clone the bottom up graphs for the callees into the caller graph
Vikram S. Adve9a964282002-11-27 17:37:46 +0000147 if (const Function *F = CI.getCalledFunction())
148 {
149 assert(!F->isExternal());
150
151 // Build up a DSCallSite for our invocation point here...
152
153 // If the call returns a value, make sure to merge the nodes...
154 DSNodeHandle RetVal;
155 if (DS::isPointerType(CI.getType()))
156 RetVal = Result->getNodeForValue(&CI);
157
158 // Populate the arguments list...
159 std::vector<DSNodeHandle> Args;
160 for (unsigned i = 1, e = CI.getNumOperands(); i != e; ++i)
161 if (DS::isPointerType(CI.getOperand(i)->getType()))
162 Args.push_back(Result->getNodeForValue(CI.getOperand(i)));
163
164 // Build the call site...
165 DSCallSite CS(CI, RetVal, 0, Args);
166
167 // Perform the merging now of the graph for the callee, which will
168 // come with mod/ref bits set...
169 Result->mergeInGraph(CS, IPModRefObj.getBUDSGraph(*F),
170 DSGraph::StripAllocaBit
171 | DSGraph::DontCloneCallNodes
172 | DSGraph::DontCloneAuxCallNodes);
Chris Lattnered8e6492002-11-07 07:12:23 +0000173 }
Vikram S. Adve9a964282002-11-27 17:37:46 +0000174 else
175 assert(0 && "See error message");
Chris Lattner268748a2002-11-06 19:38:43 +0000176
Vikram S. Adve9a964282002-11-27 17:37:46 +0000177 // Remove dead nodes aggressively to match the caller's original graph.
Chris Lattner381977d2003-01-23 22:06:33 +0000178 Result->removeDeadNodes(DSGraph::KeepUnreachableGlobals);
Chris Lattnered8e6492002-11-07 07:12:23 +0000179
180 // Step #4: Return the clone + the mapping (by ref)
Chris Lattner268748a2002-11-06 19:38:43 +0000181 return Result;
182}
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000183
184// Compute Mod/Ref bit vectors for a single call site.
185// These are copies of the Read/Write flags from the nodes of
186// the graph produced by clearing all flags in teh caller's TD graph
187// and then inlining the callee's BU graph into the caller's TD graph.
188//
189void
190FunctionModRefInfo::computeModRef(const CallInst& callInst)
191{
192 // Allocate the mod/ref info for the call site. Bits automatically cleared.
Vikram S. Adve9a964282002-11-27 17:37:46 +0000193 ModRefInfo* callModRefInfo = new ModRefInfo(funcTDGraph->getGraphSize());
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000194 callSiteModRefInfo[&callInst] = callModRefInfo;
195
196 // Get a copy of the graph for the callee with the callee inlined
Chris Lattner41c04f72003-02-01 04:52:08 +0000197 hash_map<const DSNode*, DSNodeHandle> NodeMap;
Vikram S. Adve9a964282002-11-27 17:37:46 +0000198 DSGraph* csgp = ResolveCallSiteModRefInfo(const_cast<CallInst&>(callInst),
199 NodeMap);
200 if (!csgp)
201 { // Callee's side effects are unknown: mark all nodes Mod and Ref.
202 // Eventually this should only mark nodes visible to the callee, i.e.,
203 // exclude stack variables not reachable from any outgoing argument
204 // or any global.
205 callModRefInfo->getModSet().set();
206 callModRefInfo->getRefSet().set();
207 return;
208 }
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000209
210 // For all nodes in the graph, extract the mod/ref information
211 const std::vector<DSNode*>& csgNodes = csgp->getNodes();
Vikram S. Adve9a964282002-11-27 17:37:46 +0000212 const std::vector<DSNode*>& origNodes = funcTDGraph->getNodes();
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000213 assert(csgNodes.size() == origNodes.size());
Vikram S. Adve9a964282002-11-27 17:37:46 +0000214 for (unsigned i=0, N = origNodes.size(); i < N; ++i)
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000215 {
Vikram S. Adve9a964282002-11-27 17:37:46 +0000216 DSNode* csgNode = NodeMap[origNodes[i]].getNode();
217 assert(csgNode && "Inlined and original graphs do not correspond!");
218 if (csgNode->isModified())
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000219 callModRefInfo->setNodeIsMod(getNodeId(origNodes[i]));
Vikram S. Adve9a964282002-11-27 17:37:46 +0000220 if (csgNode->isRead())
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000221 callModRefInfo->setNodeIsRef(getNodeId(origNodes[i]));
222 }
Chris Lattnere83cb532002-11-07 05:00:35 +0000223
224 // Drop nodemap before we delete the graph...
225 NodeMap.clear();
Chris Lattner268748a2002-11-06 19:38:43 +0000226 delete csgp;
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000227}
228
229
Vikram S. Adve9a964282002-11-27 17:37:46 +0000230class DSGraphPrintHelper {
231 const DSGraph& tdGraph;
232 std::vector<std::vector<const Value*> > knownValues; // identifiable objects
233
234public:
235 /*ctor*/ DSGraphPrintHelper(const FunctionModRefInfo& fmrInfo)
236 : tdGraph(fmrInfo.getFuncGraph())
237 {
238 knownValues.resize(tdGraph.getGraphSize());
239
240 // For every identifiable value, save Value pointer in knownValues[i]
Chris Lattner41c04f72003-02-01 04:52:08 +0000241 for (hash_map<Value*, DSNodeHandle>::const_iterator
Vikram S. Adve9a964282002-11-27 17:37:46 +0000242 I = tdGraph.getScalarMap().begin(),
243 E = tdGraph.getScalarMap().end(); I != E; ++I)
244 if (isa<GlobalValue>(I->first) ||
245 isa<Argument>(I->first) ||
246 isa<LoadInst>(I->first) ||
247 isa<AllocaInst>(I->first) ||
248 isa<MallocInst>(I->first))
249 {
250 unsigned nodeId = fmrInfo.getNodeId(I->second.getNode());
251 knownValues[nodeId].push_back(I->first);
252 }
253 }
254
255 void printValuesInBitVec(std::ostream &O, const BitSetVector& bv) const
256 {
257 assert(bv.size() == knownValues.size());
258
259 if (bv.none())
260 { // No bits are set: just say so and return
261 O << "\tNONE.\n";
262 return;
263 }
264
265 if (bv.all())
266 { // All bits are set: just say so and return
267 O << "\tALL GRAPH NODES.\n";
268 return;
269 }
270
271 for (unsigned i=0, N=bv.size(); i < N; ++i)
272 if (bv.test(i))
273 {
274 O << "\tNode# " << i << " : ";
275 if (! knownValues[i].empty())
276 for (unsigned j=0, NV=knownValues[i].size(); j < NV; j++)
277 {
278 const Value* V = knownValues[i][j];
279
280 if (isa<GlobalValue>(V)) O << "(Global) ";
281 else if (isa<Argument>(V)) O << "(Target of FormalParm) ";
282 else if (isa<LoadInst>(V)) O << "(Target of LoadInst ) ";
283 else if (isa<AllocaInst>(V)) O << "(Target of AllocaInst) ";
284 else if (isa<MallocInst>(V)) O << "(Target of MallocInst) ";
285
286 if (V->hasName()) O << V->getName();
287 else if (isa<Instruction>(V)) O << *V;
288 else O << "(Value*) 0x" << (void*) V;
289
290 O << std::string((j < NV-1)? "; " : "\n");
291 }
292 else
293 tdGraph.getNodes()[i]->print(O, /*graph*/ NULL);
294 }
295 }
296};
297
298
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000299// Print the results of the pass.
300// Currently this just prints bit-vectors and is not very readable.
301//
302void FunctionModRefInfo::print(std::ostream &O) const
303{
Vikram S. Adve9a964282002-11-27 17:37:46 +0000304 DSGraphPrintHelper DPH(*this);
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000305
Vikram S. Adve9a964282002-11-27 17:37:46 +0000306 O << "========== Mod/ref information for function "
307 << F.getName() << "========== \n\n";
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000308
Vikram S. Adve9a964282002-11-27 17:37:46 +0000309 // First: Print Globals and Locals modified anywhere in the function.
310 //
311 O << " -----Mod/Ref in the body of function " << F.getName()<< ":\n";
312
313 O << " --Objects modified in the function body:\n";
314 DPH.printValuesInBitVec(O, funcModRefInfo.getModSet());
315
316 O << " --Objects referenced in the function body:\n";
317 DPH.printValuesInBitVec(O, funcModRefInfo.getRefSet());
318
319 O << " --Mod and Ref vectors for the nodes listed above:\n";
320 funcModRefInfo.print(O, "\t");
321
322 O << "\n";
323
324 // Second: Print Globals and Locals modified at each call site in function
325 //
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000326 for (std::map<const CallInst*, ModRefInfo*>::const_iterator
327 CI = callSiteModRefInfo.begin(), CE = callSiteModRefInfo.end();
328 CI != CE; ++CI)
329 {
Vikram S. Adve9a964282002-11-27 17:37:46 +0000330 O << " ----Mod/Ref information for call site\n" << CI->first;
331
332 O << " --Objects modified at call site:\n";
333 DPH.printValuesInBitVec(O, CI->second->getModSet());
334
335 O << " --Objects referenced at call site:\n";
336 DPH.printValuesInBitVec(O, CI->second->getRefSet());
337
338 O << " --Mod and Ref vectors for the nodes listed above:\n";
339 CI->second->print(O, "\t");
340
341 O << "\n";
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000342 }
343
344 O << "\n";
345}
346
347void FunctionModRefInfo::dump() const
348{
349 print(std::cerr);
350}
351
352
353//----------------------------------------------------------------------------
354// class IPModRef: An interprocedural pass that computes IP Mod/Ref info.
355//----------------------------------------------------------------------------
356
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000357// Free the FunctionModRefInfo objects cached in funcToModRefInfoMap.
358//
359void IPModRef::releaseMemory()
360{
361 for(std::map<const Function*, FunctionModRefInfo*>::iterator
362 I=funcToModRefInfoMap.begin(), E=funcToModRefInfoMap.end(); I != E; ++I)
363 delete(I->second);
364
365 // Clear map so memory is not re-released if we are called again
366 funcToModRefInfoMap.clear();
367}
368
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000369// Run the "interprocedural" pass on each function. This needs to do
370// NO real interprocedural work because all that has been done the
371// data structure analysis.
372//
373bool IPModRef::run(Module &theModule)
374{
375 M = &theModule;
Chris Lattnere83cb532002-11-07 05:00:35 +0000376
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000377 for (Module::const_iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI)
378 if (! FI->isExternal())
379 getFuncInfo(*FI, /*computeIfMissing*/ true);
380 return true;
381}
382
383
Chris Lattnerfc928242002-11-06 18:38:18 +0000384FunctionModRefInfo& IPModRef::getFuncInfo(const Function& func,
385 bool computeIfMissing)
386{
387 FunctionModRefInfo*& funcInfo = funcToModRefInfoMap[&func];
388 assert (funcInfo != NULL || computeIfMissing);
Chris Lattner21108082002-11-06 19:07:13 +0000389 if (funcInfo == NULL)
Vikram S. Adve9a964282002-11-27 17:37:46 +0000390 { // Create a new FunctionModRefInfo object.
391 // Clone the top-down graph and remove any dead nodes first, because
392 // otherwise original and merged graphs will not match.
393 // The memory for this graph clone will be freed by FunctionModRefInfo.
394 DSGraph* funcTDGraph =
395 new DSGraph(getAnalysis<TDDataStructures>().getDSGraph(func));
Chris Lattner381977d2003-01-23 22:06:33 +0000396 funcTDGraph->removeDeadNodes(DSGraph::KeepUnreachableGlobals);
Vikram S. Adve9a964282002-11-27 17:37:46 +0000397
398 funcInfo = new FunctionModRefInfo(func, *this, funcTDGraph); //auto-insert
399 funcInfo->computeModRef(func); // computes the mod/ref info
Chris Lattnerfc928242002-11-06 18:38:18 +0000400 }
401 return *funcInfo;
402}
403
Chris Lattnered8e6492002-11-07 07:12:23 +0000404/// getBUDSGraph - This method returns the BU data structure graph for F through
405/// the use of the BUDataStructures object.
406///
407const DSGraph &IPModRef::getBUDSGraph(const Function &F) {
408 return getAnalysis<BUDataStructures>().getDSGraph(F);
409}
410
411
Chris Lattnerfc928242002-11-06 18:38:18 +0000412// getAnalysisUsage - This pass requires top-down data structure graphs.
413// It modifies nothing.
414//
415void IPModRef::getAnalysisUsage(AnalysisUsage &AU) const {
416 AU.setPreservesAll();
417 AU.addRequired<LocalDataStructures>();
Chris Lattner21108082002-11-06 19:07:13 +0000418 AU.addRequired<BUDataStructures>();
Chris Lattnerfc928242002-11-06 18:38:18 +0000419 AU.addRequired<TDDataStructures>();
420}
421
422
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000423void IPModRef::print(std::ostream &O) const
424{
Vikram S. Adve9a964282002-11-27 17:37:46 +0000425 O << "\nRESULTS OF INTERPROCEDURAL MOD/REF ANALYSIS:\n\n";
Vikram S. Adve895c0bd2002-11-06 17:02:03 +0000426
427 for (std::map<const Function*, FunctionModRefInfo*>::const_iterator
428 mapI = funcToModRefInfoMap.begin(), mapE = funcToModRefInfoMap.end();
429 mapI != mapE; ++mapI)
430 mapI->second->print(O);
431
432 O << "\n";
433}
434
435
436void IPModRef::dump() const
437{
438 print(std::cerr);
439}