Fix a crasher: we need to check that the function is non-null before using it!
[oota-llvm.git] / lib / Analysis / AliasAnalysis.cpp
1 //===- AliasAnalysis.cpp - Generic Alias Analysis Interface Implementation -==//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the generic AliasAnalysis interface which is used as the
11 // common interface used by all clients and implementations of alias analysis.
12 //
13 // This file also implements the default version of the AliasAnalysis interface
14 // that is to be used when no other implementation is specified.  This does some
15 // simple tests that detect obvious cases: two different global pointers cannot
16 // alias, a global cannot alias a malloc, two different mallocs cannot alias,
17 // etc.
18 //
19 // This alias analysis implementation really isn't very good for anything, but
20 // it is very fast, and makes a nice clean default implementation.  Because it
21 // handles lots of little corner cases, other, more complex, alias analysis
22 // implementations may choose to rely on this pass to resolve these simple and
23 // easy cases.
24 //
25 //===----------------------------------------------------------------------===//
26
27 #include "llvm/Analysis/AliasAnalysis.h"
28 #include "llvm/Pass.h"
29 #include "llvm/BasicBlock.h"
30 #include "llvm/Function.h"
31 #include "llvm/IntrinsicInst.h"
32 #include "llvm/Instructions.h"
33 #include "llvm/Type.h"
34 #include "llvm/Target/TargetData.h"
35 using namespace llvm;
36
37 // Register the AliasAnalysis interface, providing a nice name to refer to.
38 static RegisterAnalysisGroup<AliasAnalysis> Z("Alias Analysis");
39 char AliasAnalysis::ID = 0;
40
41 //===----------------------------------------------------------------------===//
42 // Default chaining methods
43 //===----------------------------------------------------------------------===//
44
45 AliasAnalysis::AliasResult
46 AliasAnalysis::alias(const Value *V1, unsigned V1Size,
47                      const Value *V2, unsigned V2Size) {
48   assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
49   return AA->alias(V1, V1Size, V2, V2Size);
50 }
51
52 void AliasAnalysis::getMustAliases(Value *P, std::vector<Value*> &RetVals) {
53   assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
54   return AA->getMustAliases(P, RetVals);
55 }
56
57 bool AliasAnalysis::pointsToConstantMemory(const Value *P) {
58   assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
59   return AA->pointsToConstantMemory(P);
60 }
61
62 bool AliasAnalysis::hasNoModRefInfoForCalls() const {
63   assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
64   return AA->hasNoModRefInfoForCalls();
65 }
66
67 void AliasAnalysis::deleteValue(Value *V) {
68   assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
69   AA->deleteValue(V);
70 }
71
72 void AliasAnalysis::copyValue(Value *From, Value *To) {
73   assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
74   AA->copyValue(From, To);
75 }
76
77 AliasAnalysis::ModRefResult
78 AliasAnalysis::getModRefInfo(CallSite CS1, CallSite CS2) {
79   // FIXME: we can do better.
80   assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
81   return AA->getModRefInfo(CS1, CS2);
82 }
83
84
85 //===----------------------------------------------------------------------===//
86 // AliasAnalysis non-virtual helper method implementation
87 //===----------------------------------------------------------------------===//
88
89 AliasAnalysis::ModRefResult
90 AliasAnalysis::getModRefInfo(LoadInst *L, Value *P, unsigned Size) {
91   return alias(L->getOperand(0), TD->getTypeStoreSize(L->getType()),
92                P, Size) ? Ref : NoModRef;
93 }
94
95 AliasAnalysis::ModRefResult
96 AliasAnalysis::getModRefInfo(StoreInst *S, Value *P, unsigned Size) {
97   // If the stored address cannot alias the pointer in question, then the
98   // pointer cannot be modified by the store.
99   if (!alias(S->getOperand(1),
100              TD->getTypeStoreSize(S->getOperand(0)->getType()), P, Size))
101     return NoModRef;
102
103   // If the pointer is a pointer to constant memory, then it could not have been
104   // modified by this store.
105   return pointsToConstantMemory(P) ? NoModRef : Mod;
106 }
107
108 AliasAnalysis::ModRefBehavior
109 AliasAnalysis::getModRefBehavior(CallSite CS,
110                                  std::vector<PointerAccessInfo> *Info) {
111   if (CS.doesNotAccessMemory())
112     // Can't do better than this.
113     return DoesNotAccessMemory;
114   ModRefBehavior MRB = getModRefBehavior(CS.getCalledFunction(), Info);
115   if (MRB != DoesNotAccessMemory && CS.onlyReadsMemory())
116     return OnlyReadsMemory;
117   return MRB;
118 }
119
120 AliasAnalysis::ModRefBehavior
121 AliasAnalysis::getModRefBehavior(Function *F,
122                                  std::vector<PointerAccessInfo> *Info) {
123   if (F && F->doesNotAccessMemory())
124     // Can't do better than this.
125     return DoesNotAccessMemory;
126   return UnknownModRefBehavior;
127 }
128
129 AliasAnalysis::ModRefResult
130 AliasAnalysis::getModRefInfo(CallSite CS, Value *P, unsigned Size) {
131   ModRefResult Mask = ModRef;
132   ModRefBehavior MRB = getModRefBehavior(CS);
133   if (MRB == OnlyReadsMemory)
134     Mask = Ref;
135   else if (MRB == DoesNotAccessMemory)
136     return NoModRef;
137   else if (MRB == AliasAnalysis::AccessesArguments) {
138     bool doesAlias = false;
139     for (CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
140          AI != AE; ++AI)
141       if (alias(*AI, ~0U, P, Size) != NoAlias) {
142         doesAlias = true;
143         break;
144       }
145     
146     if (!doesAlias)
147       return NoModRef;
148   }
149
150   if (!AA) return Mask;
151
152   // If P points to a constant memory location, the call definitely could not
153   // modify the memory location.
154   if ((Mask & Mod) && AA->pointsToConstantMemory(P))
155     Mask = ModRefResult(Mask & ~Mod);
156
157   return ModRefResult(Mask & AA->getModRefInfo(CS, P, Size));
158 }
159
160 // AliasAnalysis destructor: DO NOT move this to the header file for
161 // AliasAnalysis or else clients of the AliasAnalysis class may not depend on
162 // the AliasAnalysis.o file in the current .a file, causing alias analysis
163 // support to not be included in the tool correctly!
164 //
165 AliasAnalysis::~AliasAnalysis() {}
166
167 /// InitializeAliasAnalysis - Subclasses must call this method to initialize the
168 /// AliasAnalysis interface before any other methods are called.
169 ///
170 void AliasAnalysis::InitializeAliasAnalysis(Pass *P) {
171   TD = &P->getAnalysis<TargetData>();
172   AA = &P->getAnalysis<AliasAnalysis>();
173 }
174
175 // getAnalysisUsage - All alias analysis implementations should invoke this
176 // directly (using AliasAnalysis::getAnalysisUsage(AU)) to make sure that
177 // TargetData is required by the pass.
178 void AliasAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
179   AU.addRequired<TargetData>();            // All AA's need TargetData.
180   AU.addRequired<AliasAnalysis>();         // All AA's chain
181 }
182
183 /// canBasicBlockModify - Return true if it is possible for execution of the
184 /// specified basic block to modify the value pointed to by Ptr.
185 ///
186 bool AliasAnalysis::canBasicBlockModify(const BasicBlock &BB,
187                                         const Value *Ptr, unsigned Size) {
188   return canInstructionRangeModify(BB.front(), BB.back(), Ptr, Size);
189 }
190
191 /// canInstructionRangeModify - Return true if it is possible for the execution
192 /// of the specified instructions to modify the value pointed to by Ptr.  The
193 /// instructions to consider are all of the instructions in the range of [I1,I2]
194 /// INCLUSIVE.  I1 and I2 must be in the same basic block.
195 ///
196 bool AliasAnalysis::canInstructionRangeModify(const Instruction &I1,
197                                               const Instruction &I2,
198                                               const Value *Ptr, unsigned Size) {
199   assert(I1.getParent() == I2.getParent() &&
200          "Instructions not in same basic block!");
201   BasicBlock::iterator I = const_cast<Instruction*>(&I1);
202   BasicBlock::iterator E = const_cast<Instruction*>(&I2);
203   ++E;  // Convert from inclusive to exclusive range.
204
205   for (; I != E; ++I) // Check every instruction in range
206     if (getModRefInfo(I, const_cast<Value*>(Ptr), Size) & Mod)
207       return true;
208   return false;
209 }
210
211 /// isNoAliasCall - Return true if this pointer is returned by a noalias
212 /// function.
213 bool llvm::isNoAliasCall(const Value *V) {
214   if (isa<CallInst>(V) || isa<InvokeInst>(V))
215     return CallSite(const_cast<Instruction*>(cast<Instruction>(V)))
216       .paramHasAttr(0, Attribute::NoAlias);
217   return false;
218 }
219
220 /// isIdentifiedObject - Return true if this pointer refers to a distinct and
221 /// identifiable object.  This returns true for:
222 ///    Global Variables and Functions
223 ///    Allocas and Mallocs
224 ///    ByVal and NoAlias Arguments
225 ///    NoAlias returns
226 ///
227 bool llvm::isIdentifiedObject(const Value *V) {
228   if (isa<GlobalValue>(V) || isa<AllocationInst>(V) || isNoAliasCall(V))
229     return true;
230   if (const Argument *A = dyn_cast<Argument>(V))
231     return A->hasNoAliasAttr() || A->hasByValAttr();
232   return false;
233 }
234
235 // Because of the way .a files work, we must force the BasicAA implementation to
236 // be pulled in if the AliasAnalysis classes are pulled in.  Otherwise we run
237 // the risk of AliasAnalysis being used, but the default implementation not
238 // being linked into the tool that uses it.
239 DEFINING_FILE_FOR(AliasAnalysis)