blob: 1f244708bd350c193fd8bb724b5fbba51c8776f6 [file] [log] [blame]
Chris Lattner8105cfb2003-02-03 22:50:46 +00001//===- DataStructureAA.cpp - Data Structure Based Alias Analysis ----------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner8105cfb2003-02-03 22:50:46 +00009//
10// This pass uses the top-down data structure graphs to implement a simple
11// context sensitive alias analysis.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Analysis/DataStructure.h"
16#include "llvm/Analysis/DSGraph.h"
17#include "llvm/Analysis/AliasAnalysis.h"
18#include "llvm/Module.h"
Chris Lattner9a927292003-11-12 23:11:14 +000019using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000020
Chris Lattner8105cfb2003-02-03 22:50:46 +000021namespace {
22 class DSAA : public Pass, public AliasAnalysis {
23 TDDataStructures *TD;
24 public:
25 DSAA() : TD(0) {}
26
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) {
Chris Lattnera612afc2003-02-26 19:29:36 +000035 InitializeAliasAnalysis(this);
Chris Lattner8105cfb2003-02-03 22:50:46 +000036 TD = &getAnalysis<TDDataStructures>();
37 return false;
38 }
39
40 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnera612afc2003-02-26 19:29:36 +000041 AliasAnalysis::getAnalysisUsage(AU);
Chris Lattner8105cfb2003-02-03 22:50:46 +000042 AU.setPreservesAll(); // Does not transform code...
43 AU.addRequired<TDDataStructures>(); // Uses TD Datastructures
44 AU.addRequired<AliasAnalysis>(); // Chains to another AA impl...
45 }
46
47 //------------------------------------------------
48 // Implement the AliasAnalysis API
49 //
50
Chris Lattnera612afc2003-02-26 19:29:36 +000051 AliasResult alias(const Value *V1, unsigned V1Size,
52 const Value *V2, unsigned V2Size);
Chris Lattner5c70dc02003-06-29 00:54:08 +000053
54 void getMustAliases(Value *P, std::vector<Value*> &RetVals);
55
Chris Lattner92e41d52004-01-30 22:20:55 +000056 bool pointsToConstantMemory(const Value *P) {
57 return getAnalysis<AliasAnalysis>().pointsToConstantMemory(P);
58 }
59
Chris Lattner5c70dc02003-06-29 00:54:08 +000060 private:
61 DSGraph *getGraphForValue(const Value *V);
Chris Lattner8105cfb2003-02-03 22:50:46 +000062 };
63
64 // Register the pass...
65 RegisterOpt<DSAA> X("ds-aa", "Data Structure Graph Based Alias Analysis");
66
67 // Register as an implementation of AliasAnalysis
68 RegisterAnalysisGroup<AliasAnalysis, DSAA> Y;
69}
70
Chris Lattner5c70dc02003-06-29 00:54:08 +000071// getGraphForValue - Return the DSGraph to use for queries about the specified
72// value...
Chris Lattner8105cfb2003-02-03 22:50:46 +000073//
Chris Lattner5c70dc02003-06-29 00:54:08 +000074DSGraph *DSAA::getGraphForValue(const Value *V) {
Chris Lattner8105cfb2003-02-03 22:50:46 +000075 if (const Instruction *I = dyn_cast<Instruction>(V))
Chris Lattner5c70dc02003-06-29 00:54:08 +000076 return &TD->getDSGraph(*I->getParent()->getParent());
Chris Lattner8105cfb2003-02-03 22:50:46 +000077 else if (const Argument *A = dyn_cast<Argument>(V))
Chris Lattner5c70dc02003-06-29 00:54:08 +000078 return &TD->getDSGraph(*A->getParent());
Chris Lattner8105cfb2003-02-03 22:50:46 +000079 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattner5c70dc02003-06-29 00:54:08 +000080 return &TD->getDSGraph(*BB->getParent());
Chris Lattner8105cfb2003-02-03 22:50:46 +000081 return 0;
82}
83
Chris Lattner5c70dc02003-06-29 00:54:08 +000084// isSinglePhysicalObject - For now, the only case that we know that there is
85// only one memory object in the node is when there is a single global in the
86// node, and the only composition bit set is Global.
87//
88static bool isSinglePhysicalObject(DSNode *N) {
89 assert(N->isComplete() && "Can only tell if this is a complete object!");
90 return N->isGlobalNode() && N->getGlobals().size() == 1 &&
91 !N->isHeapNode() && !N->isAllocaNode() && !N->isUnknownNode();
92}
93
Chris Lattner8105cfb2003-02-03 22:50:46 +000094// alias - This is the only method here that does anything interesting...
Chris Lattnera612afc2003-02-26 19:29:36 +000095AliasAnalysis::AliasResult DSAA::alias(const Value *V1, unsigned V1Size,
96 const Value *V2, unsigned V2Size) {
Chris Lattnerbd92b732003-06-19 21:15:11 +000097 if (V1 == V2) return MustAlias;
98
Chris Lattner5c70dc02003-06-29 00:54:08 +000099 DSGraph *G1 = getGraphForValue(V1);
100 DSGraph *G2 = getGraphForValue(V2);
101 assert((!G1 || !G2 || G1 == G2) && "Alias query for 2 different functions?");
Chris Lattner8105cfb2003-02-03 22:50:46 +0000102
Chris Lattner5c70dc02003-06-29 00:54:08 +0000103 // Get the graph to use...
104 DSGraph &G = *(G1 ? G1 : (G2 ? G2 : &TD->getGlobalsGraph()));
Chris Lattnerbd92b732003-06-19 21:15:11 +0000105
Chris Lattner5c70dc02003-06-29 00:54:08 +0000106 const DSGraph::ScalarMapTy &GSM = G.getScalarMap();
107 DSGraph::ScalarMapTy::const_iterator I = GSM.find((Value*)V1);
108 if (I != GSM.end()) {
109 assert(I->second.getNode() && "Scalar map points to null node?");
110 DSGraph::ScalarMapTy::const_iterator J = GSM.find((Value*)V2);
111 if (J != GSM.end()) {
112 assert(J->second.getNode() && "Scalar map points to null node?");
113
114 DSNode *N1 = I->second.getNode(), *N2 = J->second.getNode();
115 unsigned O1 = I->second.getOffset(), O2 = J->second.getOffset();
Chris Lattnerbd92b732003-06-19 21:15:11 +0000116
Misha Brukman2f2d0652003-09-11 18:14:24 +0000117 // We can only make a judgment of one of the nodes is complete...
Chris Lattner5c70dc02003-06-29 00:54:08 +0000118 if (N1->isComplete() || N2->isComplete()) {
119 if (N1 != N2)
120 return NoAlias; // Completely different nodes.
Chris Lattnerbd92b732003-06-19 21:15:11 +0000121
Chris Lattner10c45d62003-07-02 23:56:51 +0000122#if 0 // This does not correctly handle arrays!
Chris Lattner5c70dc02003-06-29 00:54:08 +0000123 // Both point to the same node and same offset, and there is only one
124 // physical memory object represented in the node, return must alias.
125 //
126 // FIXME: This isn't correct because we do not handle array indexing
127 // correctly.
Chris Lattnerbd92b732003-06-19 21:15:11 +0000128
Chris Lattner5c70dc02003-06-29 00:54:08 +0000129 if (O1 == O2 && isSinglePhysicalObject(N1))
130 return MustAlias; // Exactly the same object & offset
Chris Lattner10c45d62003-07-02 23:56:51 +0000131#endif
Chris Lattnerbd92b732003-06-19 21:15:11 +0000132
Chris Lattner5c70dc02003-06-29 00:54:08 +0000133 // See if they point to different offsets... if so, we may be able to
134 // determine that they do not alias...
135 if (O1 != O2) {
136 if (O2 < O1) { // Ensure that O1 <= O2
137 std::swap(V1, V2);
138 std::swap(O1, O2);
139 std::swap(V1Size, V2Size);
Chris Lattnerbd92b732003-06-19 21:15:11 +0000140 }
Chris Lattner5c70dc02003-06-29 00:54:08 +0000141
142 // FIXME: This is not correct because we do not handle array
143 // indexing correctly with this check!
144 //if (O1+V1Size <= O2) return NoAlias;
Chris Lattner8105cfb2003-02-03 22:50:46 +0000145 }
146 }
147 }
148 }
149
150 // FIXME: we could improve on this by checking the globals graph for aliased
151 // global queries...
Chris Lattnera612afc2003-02-26 19:29:36 +0000152 return getAnalysis<AliasAnalysis>().alias(V1, V1Size, V2, V2Size);
Chris Lattner8105cfb2003-02-03 22:50:46 +0000153}
Chris Lattner5c70dc02003-06-29 00:54:08 +0000154
155
156/// getMustAliases - If there are any pointers known that must alias this
157/// pointer, return them now. This allows alias-set based alias analyses to
158/// perform a form a value numbering (which is exposed by load-vn). If an alias
159/// analysis supports this, it should ADD any must aliased pointers to the
160/// specified vector.
161///
162void DSAA::getMustAliases(Value *P, std::vector<Value*> &RetVals) {
Chris Lattner10c45d62003-07-02 23:56:51 +0000163#if 0 // This does not correctly handle arrays!
Chris Lattner9cd04842003-07-02 04:39:13 +0000164 // Currently the only must alias information we can provide is to say that
165 // something is equal to a global value. If we already have a global value,
166 // don't get worked up about it.
167 if (!isa<GlobalValue>(P)) {
168 DSGraph *G = getGraphForValue(P);
169 if (!G) G = &TD->getGlobalsGraph();
170
171 // The only must alias information we can currently determine occurs when
172 // the node for P is a global node with only one entry.
Chris Lattner02da0322004-01-27 21:51:19 +0000173 DSGraph::ScalarMapTy::const_iterator I = G->getScalarMap().find(P);
174 if (I != G->getScalarMap().end()) {
Chris Lattner9cd04842003-07-02 04:39:13 +0000175 DSNode *N = I->second.getNode();
176 if (N->isComplete() && isSinglePhysicalObject(N))
177 RetVals.push_back(N->getGlobals()[0]);
178 }
Chris Lattner5c70dc02003-06-29 00:54:08 +0000179 }
Chris Lattner10c45d62003-07-02 23:56:51 +0000180#endif
Chris Lattner5c70dc02003-06-29 00:54:08 +0000181 return getAnalysis<AliasAnalysis>().getMustAliases(P, RetVals);
182}
Brian Gaeked0fde302003-11-11 22:41:34 +0000183