blob: 8226657847099819db904b8b297ad1d650a516e3 [file] [log] [blame]
Chris Lattner1c7ce2c2002-10-01 22:34:12 +00001//===- Steensgaard.cpp - Context Insensitive Alias Analysis ---------------===//
2//
3// This pass uses the data structure graphs to implement a simple context
4// insensitive alias analysis. It does this by computing the local analysis
5// graphs for all of the functions, then merging them together into a single big
6// graph without cloning.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/Analysis/DataStructure.h"
Chris Lattnerc5f21de2002-10-02 22:14:38 +000011#include "llvm/Analysis/DSGraph.h"
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000012#include "llvm/Analysis/AliasAnalysis.h"
13#include "llvm/Module.h"
Chris Lattner47a307a2003-02-09 18:42:16 +000014#include "Support/Statistic.h"
Misha Brukmanf4445df2002-12-12 05:34:10 +000015
16namespace {
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000017 class Steens : public Pass, public AliasAnalysis {
18 DSGraph *ResultGraph;
Chris Lattnere6c0b5d2003-02-04 00:03:37 +000019 DSGraph *GlobalsGraph; // FIXME: Eliminate globals graph stuff from DNE
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000020 public:
Chris Lattnera612afc2003-02-26 19:29:36 +000021 Steens() : ResultGraph(0), GlobalsGraph(0) {}
Chris Lattnerbe1094e2003-02-13 21:44:18 +000022 ~Steens() {
23 releaseMyMemory();
24 assert(ResultGraph == 0 && "releaseMemory not called?");
25 }
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000026
27 //------------------------------------------------
28 // Implement the Pass API
29 //
30
31 // run - Build up the result graph, representing the pointer graph for the
32 // program.
33 //
34 bool run(Module &M);
35
Chris Lattnerbe1094e2003-02-13 21:44:18 +000036 virtual void releaseMyMemory() { delete ResultGraph; ResultGraph = 0; }
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000037
38 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnera612afc2003-02-26 19:29:36 +000039 AliasAnalysis::getAnalysisUsage(AU);
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000040 AU.setPreservesAll(); // Does not transform code...
41 AU.addRequired<LocalDataStructures>(); // Uses local dsgraph
42 AU.addRequired<AliasAnalysis>(); // Chains to another AA impl...
43 }
44
45 // print - Implement the Pass::print method...
46 void print(std::ostream &O, const Module *M) const {
47 assert(ResultGraph && "Result graph has not yet been computed!");
48 ResultGraph->writeGraphToFile(O, "steensgaards");
49 }
50
51 //------------------------------------------------
52 // Implement the AliasAnalysis API
53 //
54
55 // alias - This is the only method here that does anything interesting...
Chris Lattnera612afc2003-02-26 19:29:36 +000056 AliasResult alias(const Value *V1, unsigned V1Size,
57 const Value *V2, unsigned V2Size);
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000058
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000059 private:
Vikram S. Adve42fd1692002-10-20 18:07:37 +000060 void ResolveFunctionCall(Function *F, const DSCallSite &Call,
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000061 DSNodeHandle &RetVal);
62 };
63
64 // Register the pass...
65 RegisterOpt<Steens> X("steens-aa",
Chris Lattner6022ef42003-02-08 23:03:17 +000066 "Steensgaard's alias analysis (DSGraph based)");
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000067
68 // Register as an implementation of AliasAnalysis
69 RegisterAnalysisGroup<AliasAnalysis, Steens> Y;
70}
71
72
73/// ResolveFunctionCall - Resolve the actual arguments of a call to function F
74/// with the specified call site descriptor. This function links the arguments
75/// and the return value for the call site context-insensitively.
76///
Chris Lattnere6c0b5d2003-02-04 00:03:37 +000077void Steens::ResolveFunctionCall(Function *F, const DSCallSite &Call,
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000078 DSNodeHandle &RetVal) {
79 assert(ResultGraph != 0 && "Result graph not allocated!");
Chris Lattner8d327672003-06-30 03:36:09 +000080 DSGraph::ScalarMapTy &ValMap = ResultGraph->getScalarMap();
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000081
Vikram S. Adve42fd1692002-10-20 18:07:37 +000082 // Handle the return value of the function...
Chris Lattner0969c502002-10-21 02:08:03 +000083 if (Call.getRetVal().getNode() && RetVal.getNode())
84 RetVal.mergeWith(Call.getRetVal());
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000085
86 // Loop over all pointer arguments, resolving them to their provided pointers
Vikram S. Adve26b98262002-10-20 21:41:02 +000087 unsigned PtrArgIdx = 0;
Chris Lattner88c72942003-02-10 18:16:19 +000088 for (Function::aiterator AI = F->abegin(), AE = F->aend();
89 AI != AE && PtrArgIdx < Call.getNumPtrArgs(); ++AI) {
Chris Lattner8d327672003-06-30 03:36:09 +000090 DSGraph::ScalarMapTy::iterator I = ValMap.find(AI);
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000091 if (I != ValMap.end()) // If its a pointer argument...
Chris Lattnere6c0b5d2003-02-04 00:03:37 +000092 I->second.mergeWith(Call.getPtrArg(PtrArgIdx++));
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000093 }
Chris Lattner1c7ce2c2002-10-01 22:34:12 +000094}
95
96
97/// run - Build up the result graph, representing the pointer graph for the
98/// program.
99///
100bool Steens::run(Module &M) {
Chris Lattnera612afc2003-02-26 19:29:36 +0000101 InitializeAliasAnalysis(this);
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000102 assert(ResultGraph == 0 && "Result graph already allocated!");
103 LocalDataStructures &LDS = getAnalysis<LocalDataStructures>();
104
105 // Create a new, empty, graph...
106 ResultGraph = new DSGraph();
Chris Lattnere6c0b5d2003-02-04 00:03:37 +0000107 GlobalsGraph = new DSGraph();
108 ResultGraph->setGlobalsGraph(GlobalsGraph);
Chris Lattneraf283512003-02-09 19:26:47 +0000109 ResultGraph->setPrintAuxCalls();
110
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000111 // RetValMap - Keep track of the return values for all functions that return
112 // valid pointers.
113 //
Chris Lattner5a540632003-06-30 03:15:25 +0000114 DSGraph::ReturnNodesTy RetValMap;
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000115
116 // Loop over the rest of the module, merging graphs for non-external functions
117 // into this graph.
118 //
Chris Lattner0f777ab2003-02-10 00:14:57 +0000119 unsigned Count = 0;
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000120 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
121 if (!I->isExternal()) {
Chris Lattner5a540632003-06-30 03:15:25 +0000122 DSGraph::ScalarMapTy ValMap;
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000123 { // Scope to free NodeMap memory ASAP
Chris Lattner5a540632003-06-30 03:15:25 +0000124 DSGraph::NodeMapTy NodeMap;
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000125 const DSGraph &FDSG = LDS.getDSGraph(*I);
Chris Lattner5a540632003-06-30 03:15:25 +0000126 ResultGraph->cloneInto(FDSG, ValMap, RetValMap, NodeMap);
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000127 }
128
Chris Lattnerc875f022002-11-03 21:27:48 +0000129 // Incorporate the inlined Function's ScalarMap into the global
130 // ScalarMap...
Chris Lattner5a540632003-06-30 03:15:25 +0000131 DSGraph::ScalarMapTy &GVM = ResultGraph->getScalarMap();
Chris Lattner8d327672003-06-30 03:36:09 +0000132 for (DSGraph::ScalarMapTy::iterator I = ValMap.begin(),
Chris Lattnere6c0b5d2003-02-04 00:03:37 +0000133 E = ValMap.end(); I != E; ++I)
134 GVM[I->first].mergeWith(I->second);
Chris Lattner0f777ab2003-02-10 00:14:57 +0000135
136 if ((++Count & 1) == 0) // Prune nodes out every other time...
137 ResultGraph->removeTriviallyDeadNodes();
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000138 }
139
140 // FIXME: Must recalculate and use the Incomplete markers!!
141
142 // Now that we have all of the graphs inlined, we can go about eliminating
143 // call nodes...
144 //
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000145 std::vector<DSCallSite> &Calls =
Chris Lattner01fb0c72002-11-08 21:27:37 +0000146 ResultGraph->getAuxFunctionCalls();
147 assert(Calls.empty() && "Aux call list is already in use??");
148
149 // Start with a copy of the original call sites...
150 Calls = ResultGraph->getFunctionCalls();
151
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000152 for (unsigned i = 0; i != Calls.size(); ) {
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000153 DSCallSite &CurCall = Calls[i];
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000154
155 // Loop over the called functions, eliminating as many as possible...
Chris Lattner923fc052003-02-05 21:59:58 +0000156 std::vector<GlobalValue*> CallTargets;
157 if (CurCall.isDirectCall())
158 CallTargets.push_back(CurCall.getCalleeFunc());
159 else
160 CallTargets = CurCall.getCalleeNode()->getGlobals();
161
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000162 for (unsigned c = 0; c != CallTargets.size(); ) {
163 // If we can eliminate this function call, do so!
164 bool Eliminated = false;
165 if (Function *F = dyn_cast<Function>(CallTargets[c]))
166 if (!F->isExternal()) {
167 ResolveFunctionCall(F, CurCall, RetValMap[F]);
168 Eliminated = true;
169 }
Chris Lattner0f777ab2003-02-10 00:14:57 +0000170 if (Eliminated) {
171 CallTargets[c] = CallTargets.back();
172 CallTargets.pop_back();
173 } else
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000174 ++c; // Cannot eliminate this call, skip over it...
175 }
176
Chris Lattner0f777ab2003-02-10 00:14:57 +0000177 if (CallTargets.empty()) { // Eliminated all calls?
178 CurCall = Calls.back(); // Remove entry
179 Calls.pop_back();
180 } else
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000181 ++i; // Skip this call site...
182 }
183
Chris Lattner72d29a42003-02-11 23:11:51 +0000184 RetValMap.clear();
185
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000186 // Update the "incomplete" markers on the nodes, ignoring unknownness due to
187 // incoming arguments...
188 ResultGraph->maskIncompleteMarkers();
Chris Lattner394471f2003-01-23 22:05:33 +0000189 ResultGraph->markIncompleteNodes(DSGraph::IgnoreFormalArgs);
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000190
191 // Remove any nodes that are dead after all of the merging we have done...
Chris Lattnere6c0b5d2003-02-04 00:03:37 +0000192 // FIXME: We should be able to disable the globals graph for steens!
Chris Lattner394471f2003-01-23 22:05:33 +0000193 ResultGraph->removeDeadNodes(DSGraph::KeepUnreachableGlobals);
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000194
Chris Lattner47a307a2003-02-09 18:42:16 +0000195 DEBUG(print(std::cerr, &M));
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000196 return false;
197}
198
199// alias - This is the only method here that does anything interesting...
Chris Lattnera612afc2003-02-26 19:29:36 +0000200AliasAnalysis::AliasResult Steens::alias(const Value *V1, unsigned V1Size,
201 const Value *V2, unsigned V2Size) {
202 // FIXME: HANDLE Size argument!
Misha Brukmanf4445df2002-12-12 05:34:10 +0000203 assert(ResultGraph && "Result graph has not been computed yet!");
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000204
Chris Lattner8d327672003-06-30 03:36:09 +0000205 DSGraph::ScalarMapTy &GSM = ResultGraph->getScalarMap();
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000206
Chris Lattner8d327672003-06-30 03:36:09 +0000207 DSGraph::ScalarMapTy::iterator I = GSM.find(const_cast<Value*>(V1));
Chris Lattner0a91e632003-02-03 22:51:53 +0000208 if (I != GSM.end() && I->second.getNode()) {
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000209 DSNodeHandle &V1H = I->second;
Chris Lattner8d327672003-06-30 03:36:09 +0000210 DSGraph::ScalarMapTy::iterator J=GSM.find(const_cast<Value*>(V2));
Chris Lattner0a91e632003-02-03 22:51:53 +0000211 if (J != GSM.end() && J->second.getNode()) {
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000212 DSNodeHandle &V2H = J->second;
213 // If the two pointers point to different data structure graph nodes, they
214 // cannot alias!
Chris Lattner6022ef42003-02-08 23:03:17 +0000215 if (V1H.getNode() != V2H.getNode()) // FIXME: Handle incompleteness!
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000216 return NoAlias;
Chris Lattner6022ef42003-02-08 23:03:17 +0000217
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000218 // FIXME: If the two pointers point to the same node, and the offsets are
219 // different, and the LinkIndex vector doesn't alias the section, then the
220 // two pointers do not alias. We need access size information for the two
221 // accesses though!
222 //
223 }
224 }
225
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000226 // If we cannot determine alias properties based on our graph, fall back on
227 // some other AA implementation.
228 //
Chris Lattnera612afc2003-02-26 19:29:36 +0000229 return getAnalysis<AliasAnalysis>().alias(V1, V1Size, V2, V2Size);
Chris Lattner1c7ce2c2002-10-01 22:34:12 +0000230}