a80a3e66764c5ab6039d8a203ecc980b1bfae78f
[oota-llvm.git] / lib / Analysis / DataStructure / Steensgaard.cpp
1 //===- Steensgaard.cpp - Context Insensitive Alias Analysis ---------------===//
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 uses the data structure graphs to implement a simple context
11 // insensitive alias analysis.  It does this by computing the local analysis
12 // graphs for all of the functions, then merging them together into a single big
13 // graph without cloning.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #include "llvm/Analysis/DataStructure/DataStructure.h"
18 #include "llvm/Analysis/DataStructure/DSGraph.h"
19 #include "llvm/Analysis/AliasAnalysis.h"
20 #include "llvm/Analysis/Passes.h"
21 #include "llvm/Module.h"
22 #include "llvm/Support/Debug.h"
23 using namespace llvm;
24
25 namespace {
26   class Steens : public ModulePass, public AliasAnalysis {
27     DSGraph *ResultGraph;
28     DSGraph *GlobalsGraph;  // FIXME: Eliminate globals graph stuff from DNE
29
30     EquivalenceClasses<GlobalValue*> GlobalECs;  // Always empty
31   public:
32     Steens() : ResultGraph(0), GlobalsGraph(0) {}
33     ~Steens() {
34       releaseMyMemory();
35       assert(ResultGraph == 0 && "releaseMemory not called?");
36     }
37
38     //------------------------------------------------
39     // Implement the Pass API
40     //
41
42     // run - Build up the result graph, representing the pointer graph for the
43     // program.
44     //
45     bool runOnModule(Module &M);
46
47     virtual void releaseMyMemory() { delete ResultGraph; ResultGraph = 0; }
48
49     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
50       AliasAnalysis::getAnalysisUsage(AU);
51       AU.setPreservesAll();                    // Does not transform code...
52       AU.addRequired<LocalDataStructures>();   // Uses local dsgraph
53     }
54
55     // print - Implement the Pass::print method...
56     void print(std::ostream &O, const Module *M) const {
57       assert(ResultGraph && "Result graph has not yet been computed!");
58       ResultGraph->writeGraphToFile(O, "steensgaards");
59     }
60
61     //------------------------------------------------
62     // Implement the AliasAnalysis API
63     //  
64
65     // alias - This is the only method here that does anything interesting...
66     AliasResult alias(const Value *V1, unsigned V1Size,
67                       const Value *V2, unsigned V2Size);
68     
69   private:
70     void ResolveFunctionCall(Function *F, const DSCallSite &Call,
71                              DSNodeHandle &RetVal);
72   };
73
74   // Register the pass...
75   RegisterOpt<Steens> X("steens-aa",
76                         "Steensgaard's alias analysis (DSGraph based)");
77
78   // Register as an implementation of AliasAnalysis
79   RegisterAnalysisGroup<AliasAnalysis, Steens> Y;
80 }
81
82 ModulePass *llvm::createSteensgaardPass() { return new Steens(); }
83
84 /// ResolveFunctionCall - Resolve the actual arguments of a call to function F
85 /// with the specified call site descriptor.  This function links the arguments
86 /// and the return value for the call site context-insensitively.
87 ///
88 void Steens::ResolveFunctionCall(Function *F, const DSCallSite &Call,
89                                  DSNodeHandle &RetVal) {
90   assert(ResultGraph != 0 && "Result graph not allocated!");
91   DSGraph::ScalarMapTy &ValMap = ResultGraph->getScalarMap();
92
93   // Handle the return value of the function...
94   if (Call.getRetVal().getNode() && RetVal.getNode())
95     RetVal.mergeWith(Call.getRetVal());
96
97   // Loop over all pointer arguments, resolving them to their provided pointers
98   unsigned PtrArgIdx = 0;
99   for (Function::arg_iterator AI = F->arg_begin(), AE = F->arg_end();
100        AI != AE && PtrArgIdx < Call.getNumPtrArgs(); ++AI) {
101     DSGraph::ScalarMapTy::iterator I = ValMap.find(AI);
102     if (I != ValMap.end())    // If its a pointer argument...
103       I->second.mergeWith(Call.getPtrArg(PtrArgIdx++));
104   }
105 }
106
107
108 /// run - Build up the result graph, representing the pointer graph for the
109 /// program.
110 ///
111 bool Steens::runOnModule(Module &M) {
112   InitializeAliasAnalysis(this);
113   assert(ResultGraph == 0 && "Result graph already allocated!");
114   LocalDataStructures &LDS = getAnalysis<LocalDataStructures>();
115
116   // Create a new, empty, graph...
117   ResultGraph = new DSGraph(GlobalECs, getTargetData());
118   GlobalsGraph = new DSGraph(GlobalECs, getTargetData());
119   ResultGraph->setGlobalsGraph(GlobalsGraph);
120   ResultGraph->setPrintAuxCalls();
121
122   // Loop over the rest of the module, merging graphs for non-external functions
123   // into this graph.
124   //
125   for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
126     if (!I->isExternal())
127       ResultGraph->cloneInto(LDS.getDSGraph(*I));
128
129   ResultGraph->removeTriviallyDeadNodes();
130
131   // FIXME: Must recalculate and use the Incomplete markers!!
132
133   // Now that we have all of the graphs inlined, we can go about eliminating
134   // call nodes...
135   //
136   std::list<DSCallSite> &Calls = ResultGraph->getAuxFunctionCalls();
137   assert(Calls.empty() && "Aux call list is already in use??");
138
139   // Start with a copy of the original call sites.
140   Calls = ResultGraph->getFunctionCalls();
141
142   for (std::list<DSCallSite>::iterator CI = Calls.begin(), E = Calls.end();
143        CI != E;) {
144     DSCallSite &CurCall = *CI++;
145     
146     // Loop over the called functions, eliminating as many as possible...
147     std::vector<Function*> CallTargets;
148     if (CurCall.isDirectCall())
149       CallTargets.push_back(CurCall.getCalleeFunc());
150     else 
151       CurCall.getCalleeNode()->addFullFunctionList(CallTargets);
152
153     for (unsigned c = 0; c != CallTargets.size(); ) {
154       // If we can eliminate this function call, do so!
155       Function *F = CallTargets[c];
156       if (!F->isExternal()) {
157         ResolveFunctionCall(F, CurCall, ResultGraph->getReturnNodes()[F]);
158         CallTargets[c] = CallTargets.back();
159         CallTargets.pop_back();
160       } else
161         ++c;  // Cannot eliminate this call, skip over it...
162     }
163
164     if (CallTargets.empty()) {        // Eliminated all calls?
165       std::list<DSCallSite>::iterator I = CI;
166       Calls.erase(--I);               // Remove entry
167     }
168   }
169
170   // Remove our knowledge of what the return values of the functions are.
171   ResultGraph->getReturnNodes().clear();
172
173   // Update the "incomplete" markers on the nodes, ignoring unknownness due to
174   // incoming arguments...
175   ResultGraph->maskIncompleteMarkers();
176   ResultGraph->markIncompleteNodes(DSGraph::IgnoreFormalArgs);
177
178   // Remove any nodes that are dead after all of the merging we have done...
179   // FIXME: We should be able to disable the globals graph for steens!
180   ResultGraph->removeDeadNodes(DSGraph::KeepUnreachableGlobals);
181
182   DEBUG(print(std::cerr, &M));
183   return false;
184 }
185
186 // alias - This is the only method here that does anything interesting...
187 AliasAnalysis::AliasResult Steens::alias(const Value *V1, unsigned V1Size,
188                                          const Value *V2, unsigned V2Size) {
189   // FIXME: HANDLE Size argument!
190   assert(ResultGraph && "Result graph has not been computed yet!");
191
192   DSGraph::ScalarMapTy &GSM = ResultGraph->getScalarMap();
193
194   DSGraph::ScalarMapTy::iterator I = GSM.find(const_cast<Value*>(V1));
195   if (I != GSM.end() && !I->second.isNull() &&
196       I->second.getNode()->isComplete()) {
197     DSNodeHandle &V1H = I->second;
198     DSGraph::ScalarMapTy::iterator J=GSM.find(const_cast<Value*>(V2));
199     if (J != GSM.end() && !J->second.isNull() &&
200         J->second.getNode()->isComplete()) {
201       DSNodeHandle &V2H = J->second;
202       // If the two pointers point to different data structure graph nodes, they
203       // cannot alias!
204       if (V1H.getNode() != V2H.getNode())
205         return NoAlias;
206
207       // See if they point to different offsets...  if so, we may be able to
208       // determine that they do not alias...
209       unsigned O1 = I->second.getOffset(), O2 = J->second.getOffset();
210       if (O1 != O2) {
211         if (O2 < O1) {    // Ensure that O1 <= O2
212           std::swap(V1, V2);
213           std::swap(O1, O2);
214           std::swap(V1Size, V2Size);
215         }
216
217         if (O1+V1Size <= O2)
218           return NoAlias;
219       }
220     }
221   }
222
223   // If we cannot determine alias properties based on our graph, fall back on
224   // some other AA implementation.
225   //
226   return AliasAnalysis::alias(V1, V1Size, V2, V2Size);
227 }