blob: ab12b0df31d826b014c5dd5f6f20a09850dc23eb [file] [log] [blame]
Chris Lattner53ad0ed2002-08-22 18:25:32 +00001//===- AliasAnalysis.cpp - Generic Alias Analysis Interface Implementation -==//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner53ad0ed2002-08-22 18:25:32 +00009//
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
Chris Lattnerd501c132003-02-26 19:41:54 +000027#include "llvm/Analysis/AliasAnalysis.h"
Reid Spencer6df60a92006-06-07 20:00:19 +000028#include "llvm/Pass.h"
Chris Lattner53ad0ed2002-08-22 18:25:32 +000029#include "llvm/BasicBlock.h"
Duncan Sandsdff67102007-12-01 07:51:45 +000030#include "llvm/Function.h"
Owen Andersoncd895252009-02-03 06:27:22 +000031#include "llvm/IntrinsicInst.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000032#include "llvm/Instructions.h"
Dan Gohmanb2143b62010-09-14 21:25:10 +000033#include "llvm/LLVMContext.h"
Chris Lattner5b3a4552005-03-17 15:38:16 +000034#include "llvm/Type.h"
Chris Lattner14ac8772003-02-26 19:26:51 +000035#include "llvm/Target/TargetData.h"
Chris Lattner992860c2004-03-15 04:07:29 +000036using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000037
Chris Lattner53ad0ed2002-08-22 18:25:32 +000038// Register the AliasAnalysis interface, providing a nice name to refer to.
Owen Anderson081c34b2010-10-19 17:21:58 +000039INITIALIZE_ANALYSIS_GROUP(AliasAnalysis, "Alias Analysis", NoAA)
Devang Patel19974732007-05-03 01:11:54 +000040char AliasAnalysis::ID = 0;
Chris Lattner53ad0ed2002-08-22 18:25:32 +000041
Chris Lattner5a24d702004-05-23 21:15:48 +000042//===----------------------------------------------------------------------===//
43// Default chaining methods
44//===----------------------------------------------------------------------===//
45
46AliasAnalysis::AliasResult
Dan Gohmanb2143b62010-09-14 21:25:10 +000047AliasAnalysis::alias(const Location &LocA, const Location &LocB) {
Chris Lattner5a24d702004-05-23 21:15:48 +000048 assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
Dan Gohmanb2143b62010-09-14 21:25:10 +000049 return AA->alias(LocA, LocB);
Chris Lattner5a24d702004-05-23 21:15:48 +000050}
51
Dan Gohmanb2143b62010-09-14 21:25:10 +000052bool AliasAnalysis::pointsToConstantMemory(const Location &Loc) {
Chris Lattner5a24d702004-05-23 21:15:48 +000053 assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
Dan Gohmanb2143b62010-09-14 21:25:10 +000054 return AA->pointsToConstantMemory(Loc);
Chris Lattner5a24d702004-05-23 21:15:48 +000055}
56
Chris Lattner5a24d702004-05-23 21:15:48 +000057void AliasAnalysis::deleteValue(Value *V) {
58 assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
59 AA->deleteValue(V);
60}
61
62void AliasAnalysis::copyValue(Value *From, Value *To) {
63 assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
64 AA->copyValue(From, To);
65}
66
67AliasAnalysis::ModRefResult
Dan Gohman6ce9d8b2010-08-06 01:25:49 +000068AliasAnalysis::getModRefInfo(ImmutableCallSite CS,
Dan Gohmanb2143b62010-09-14 21:25:10 +000069 const Location &Loc) {
Dan Gohman6ce9d8b2010-08-06 01:25:49 +000070 // Don't assert AA because BasicAA calls us in order to make use of the
71 // logic here.
72
73 ModRefBehavior MRB = getModRefBehavior(CS);
74 if (MRB == DoesNotAccessMemory)
75 return NoModRef;
76
77 ModRefResult Mask = ModRef;
78 if (MRB == OnlyReadsMemory)
79 Mask = Ref;
80 else if (MRB == AliasAnalysis::AccessesArguments) {
81 bool doesAlias = false;
82 for (ImmutableCallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
83 AI != AE; ++AI)
Dan Gohmanb2143b62010-09-14 21:25:10 +000084 if (!isNoAlias(Location(*AI), Loc)) {
Dan Gohman6ce9d8b2010-08-06 01:25:49 +000085 doesAlias = true;
86 break;
87 }
88
89 if (!doesAlias)
90 return NoModRef;
91 }
92
Dan Gohmanb2143b62010-09-14 21:25:10 +000093 // If Loc is a constant memory location, the call definitely could not
Dan Gohman6ce9d8b2010-08-06 01:25:49 +000094 // modify the memory location.
Dan Gohmanb2143b62010-09-14 21:25:10 +000095 if ((Mask & Mod) && pointsToConstantMemory(Loc))
Dan Gohman6ce9d8b2010-08-06 01:25:49 +000096 Mask = ModRefResult(Mask & ~Mod);
97
98 // If this is BasicAA, don't forward.
99 if (!AA) return Mask;
100
101 // Otherwise, fall back to the next AA in the chain. But we can merge
102 // in any mask we've managed to compute.
Dan Gohmanb2143b62010-09-14 21:25:10 +0000103 return ModRefResult(AA->getModRefInfo(CS, Loc) & Mask);
Dan Gohman6ce9d8b2010-08-06 01:25:49 +0000104}
105
106AliasAnalysis::ModRefResult
Dan Gohman79fca6f2010-08-03 21:48:53 +0000107AliasAnalysis::getModRefInfo(ImmutableCallSite CS1, ImmutableCallSite CS2) {
Dan Gohman6ce9d8b2010-08-06 01:25:49 +0000108 // Don't assert AA because BasicAA calls us in order to make use of the
109 // logic here.
110
111 // If CS1 or CS2 are readnone, they don't interact.
112 ModRefBehavior CS1B = getModRefBehavior(CS1);
113 if (CS1B == DoesNotAccessMemory) return NoModRef;
114
115 ModRefBehavior CS2B = getModRefBehavior(CS2);
116 if (CS2B == DoesNotAccessMemory) return NoModRef;
117
118 // If they both only read from memory, there is no dependence.
119 if (CS1B == OnlyReadsMemory && CS2B == OnlyReadsMemory)
120 return NoModRef;
121
122 AliasAnalysis::ModRefResult Mask = ModRef;
123
124 // If CS1 only reads memory, the only dependence on CS2 can be
125 // from CS1 reading memory written by CS2.
126 if (CS1B == OnlyReadsMemory)
127 Mask = ModRefResult(Mask & Ref);
128
129 // If CS2 only access memory through arguments, accumulate the mod/ref
130 // information from CS1's references to the memory referenced by
131 // CS2's arguments.
132 if (CS2B == AccessesArguments) {
133 AliasAnalysis::ModRefResult R = NoModRef;
134 for (ImmutableCallSite::arg_iterator
135 I = CS2.arg_begin(), E = CS2.arg_end(); I != E; ++I) {
136 R = ModRefResult((R | getModRefInfo(CS1, *I, UnknownSize)) & Mask);
137 if (R == Mask)
138 break;
139 }
140 return R;
141 }
142
143 // If CS1 only accesses memory through arguments, check if CS2 references
144 // any of the memory referenced by CS1's arguments. If not, return NoModRef.
145 if (CS1B == AccessesArguments) {
146 AliasAnalysis::ModRefResult R = NoModRef;
147 for (ImmutableCallSite::arg_iterator
148 I = CS1.arg_begin(), E = CS1.arg_end(); I != E; ++I)
149 if (getModRefInfo(CS2, *I, UnknownSize) != NoModRef) {
150 R = Mask;
151 break;
152 }
153 if (R == NoModRef)
154 return R;
155 }
156
157 // If this is BasicAA, don't forward.
158 if (!AA) return Mask;
159
160 // Otherwise, fall back to the next AA in the chain. But we can merge
161 // in any mask we've managed to compute.
162 return ModRefResult(AA->getModRefInfo(CS1, CS2) & Mask);
163}
164
165AliasAnalysis::ModRefBehavior
166AliasAnalysis::getModRefBehavior(ImmutableCallSite CS) {
167 // Don't assert AA because BasicAA calls us in order to make use of the
168 // logic here.
169
170 ModRefBehavior Min = UnknownModRefBehavior;
171
172 // Call back into the alias analysis with the other form of getModRefBehavior
173 // to see if it can give a better response.
174 if (const Function *F = CS.getCalledFunction())
175 Min = getModRefBehavior(F);
176
177 // If this is BasicAA, don't forward.
178 if (!AA) return Min;
179
180 // Otherwise, fall back to the next AA in the chain. But we can merge
181 // in any result we've managed to compute.
182 return std::min(AA->getModRefBehavior(CS), Min);
183}
184
185AliasAnalysis::ModRefBehavior
186AliasAnalysis::getModRefBehavior(const Function *F) {
Chris Lattner5a24d702004-05-23 21:15:48 +0000187 assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
Dan Gohman6ce9d8b2010-08-06 01:25:49 +0000188 return AA->getModRefBehavior(F);
Chris Lattner5a24d702004-05-23 21:15:48 +0000189}
190
Chris Lattner5a24d702004-05-23 21:15:48 +0000191//===----------------------------------------------------------------------===//
192// AliasAnalysis non-virtual helper method implementation
193//===----------------------------------------------------------------------===//
194
Chris Lattner14ac8772003-02-26 19:26:51 +0000195AliasAnalysis::ModRefResult
Dan Gohmanb2143b62010-09-14 21:25:10 +0000196AliasAnalysis::getModRefInfo(const LoadInst *L, const Location &Loc) {
Dan Gohmanb9db52d2010-08-06 18:11:28 +0000197 // Be conservative in the face of volatile.
198 if (L->isVolatile())
199 return ModRef;
200
Dan Gohman14a498a2010-08-03 17:27:43 +0000201 // If the load address doesn't alias the given address, it doesn't read
202 // or write the specified memory.
Dan Gohmanb2143b62010-09-14 21:25:10 +0000203 if (!alias(Location(L->getOperand(0),
204 getTypeStoreSize(L->getType()),
205 L->getMetadata(LLVMContext::MD_tbaa)),
206 Loc))
Dan Gohman14a498a2010-08-03 17:27:43 +0000207 return NoModRef;
208
Dan Gohman14a498a2010-08-03 17:27:43 +0000209 // Otherwise, a load just reads.
210 return Ref;
Chris Lattner53ad0ed2002-08-22 18:25:32 +0000211}
212
Chris Lattner14ac8772003-02-26 19:26:51 +0000213AliasAnalysis::ModRefResult
Dan Gohmanb2143b62010-09-14 21:25:10 +0000214AliasAnalysis::getModRefInfo(const StoreInst *S, const Location &Loc) {
Dan Gohmanb9db52d2010-08-06 18:11:28 +0000215 // Be conservative in the face of volatile.
216 if (S->isVolatile())
217 return ModRef;
218
Dan Gohman9b8639c2010-08-06 18:10:45 +0000219 // If the store address cannot alias the pointer in question, then the
220 // specified memory cannot be modified by the store.
Dan Gohmanb2143b62010-09-14 21:25:10 +0000221 if (!alias(Location(S->getOperand(1),
222 getTypeStoreSize(S->getOperand(0)->getType()),
223 S->getMetadata(LLVMContext::MD_tbaa)),
224 Loc))
Chris Lattnerf4d904d2004-01-30 22:16:42 +0000225 return NoModRef;
226
227 // If the pointer is a pointer to constant memory, then it could not have been
228 // modified by this store.
Dan Gohmanb2143b62010-09-14 21:25:10 +0000229 if (pointsToConstantMemory(Loc))
Dan Gohman14a498a2010-08-03 17:27:43 +0000230 return NoModRef;
231
232 // Otherwise, a store just writes.
233 return Mod;
Chris Lattner14ac8772003-02-26 19:26:51 +0000234}
235
Dan Gohmane26a7b52010-08-06 18:24:38 +0000236AliasAnalysis::ModRefResult
Dan Gohmanb2143b62010-09-14 21:25:10 +0000237AliasAnalysis::getModRefInfo(const VAArgInst *V, const Location &Loc) {
Dan Gohmane26a7b52010-08-06 18:24:38 +0000238 // If the va_arg address cannot alias the pointer in question, then the
239 // specified memory cannot be accessed by the va_arg.
Dan Gohmanb2143b62010-09-14 21:25:10 +0000240 if (!alias(Location(V->getOperand(0),
241 UnknownSize,
242 V->getMetadata(LLVMContext::MD_tbaa)),
243 Loc))
Dan Gohmane26a7b52010-08-06 18:24:38 +0000244 return NoModRef;
245
246 // If the pointer is a pointer to constant memory, then it could not have been
247 // modified by this va_arg.
Dan Gohmanb2143b62010-09-14 21:25:10 +0000248 if (pointsToConstantMemory(Loc))
Dan Gohmane26a7b52010-08-06 18:24:38 +0000249 return NoModRef;
250
251 // Otherwise, a va_arg reads and writes.
252 return ModRef;
253}
254
Duncan Sandsdff67102007-12-01 07:51:45 +0000255AliasAnalysis::ModRefBehavior
Dan Gohman79fca6f2010-08-03 21:48:53 +0000256AliasAnalysis::getIntrinsicModRefBehavior(unsigned iid) {
Duncan Sandsd869b382009-02-14 10:56:35 +0000257#define GET_INTRINSIC_MODREF_BEHAVIOR
258#include "llvm/Intrinsics.gen"
259#undef GET_INTRINSIC_MODREF_BEHAVIOR
Duncan Sandsdff67102007-12-01 07:51:45 +0000260}
261
Chris Lattner53ad0ed2002-08-22 18:25:32 +0000262// AliasAnalysis destructor: DO NOT move this to the header file for
263// AliasAnalysis or else clients of the AliasAnalysis class may not depend on
264// the AliasAnalysis.o file in the current .a file, causing alias analysis
265// support to not be included in the tool correctly!
266//
267AliasAnalysis::~AliasAnalysis() {}
268
Dan Gohman5a56bf62008-05-30 00:02:02 +0000269/// InitializeAliasAnalysis - Subclasses must call this method to initialize the
Chris Lattner14ac8772003-02-26 19:26:51 +0000270/// AliasAnalysis interface before any other methods are called.
271///
272void AliasAnalysis::InitializeAliasAnalysis(Pass *P) {
Dan Gohmanfc2a3ed2009-07-25 00:48:42 +0000273 TD = P->getAnalysisIfAvailable<TargetData>();
Chris Lattner5a24d702004-05-23 21:15:48 +0000274 AA = &P->getAnalysis<AliasAnalysis>();
Chris Lattner14ac8772003-02-26 19:26:51 +0000275}
276
277// getAnalysisUsage - All alias analysis implementations should invoke this
Dan Gohmanfc2a3ed2009-07-25 00:48:42 +0000278// directly (using AliasAnalysis::getAnalysisUsage(AU)).
Chris Lattner14ac8772003-02-26 19:26:51 +0000279void AliasAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner5a24d702004-05-23 21:15:48 +0000280 AU.addRequired<AliasAnalysis>(); // All AA's chain
Chris Lattner14ac8772003-02-26 19:26:51 +0000281}
282
Dan Gohmanfc2a3ed2009-07-25 00:48:42 +0000283/// getTypeStoreSize - Return the TargetData store size for the given type,
284/// if known, or a conservative value otherwise.
285///
286unsigned AliasAnalysis::getTypeStoreSize(const Type *Ty) {
Dan Gohmanf3a925d2010-10-19 17:06:23 +0000287 return TD ? TD->getTypeStoreSize(Ty) : UnknownSize;
Dan Gohmanfc2a3ed2009-07-25 00:48:42 +0000288}
289
Chris Lattnerf9355f62002-08-22 22:46:39 +0000290/// canBasicBlockModify - Return true if it is possible for execution of the
291/// specified basic block to modify the value pointed to by Ptr.
292///
Chris Lattner14ac8772003-02-26 19:26:51 +0000293bool AliasAnalysis::canBasicBlockModify(const BasicBlock &BB,
Dan Gohmanb2143b62010-09-14 21:25:10 +0000294 const Location &Loc) {
295 return canInstructionRangeModify(BB.front(), BB.back(), Loc);
Chris Lattner53ad0ed2002-08-22 18:25:32 +0000296}
297
Chris Lattnerf9355f62002-08-22 22:46:39 +0000298/// canInstructionRangeModify - Return true if it is possible for the execution
299/// of the specified instructions to modify the value pointed to by Ptr. The
300/// instructions to consider are all of the instructions in the range of [I1,I2]
301/// INCLUSIVE. I1 and I2 must be in the same basic block.
302///
Chris Lattner53ad0ed2002-08-22 18:25:32 +0000303bool AliasAnalysis::canInstructionRangeModify(const Instruction &I1,
304 const Instruction &I2,
Dan Gohmanb2143b62010-09-14 21:25:10 +0000305 const Location &Loc) {
Chris Lattner53ad0ed2002-08-22 18:25:32 +0000306 assert(I1.getParent() == I2.getParent() &&
307 "Instructions not in same basic block!");
Dan Gohman79fca6f2010-08-03 21:48:53 +0000308 BasicBlock::const_iterator I = &I1;
309 BasicBlock::const_iterator E = &I2;
Chris Lattner53ad0ed2002-08-22 18:25:32 +0000310 ++E; // Convert from inclusive to exclusive range.
311
Chris Lattner14ac8772003-02-26 19:26:51 +0000312 for (; I != E; ++I) // Check every instruction in range
Dan Gohmanb2143b62010-09-14 21:25:10 +0000313 if (getModRefInfo(I, Loc) & Mod)
Chris Lattner53ad0ed2002-08-22 18:25:32 +0000314 return true;
Chris Lattner53ad0ed2002-08-22 18:25:32 +0000315 return false;
316}
317
Dan Gohmana5f81bb2009-02-03 01:28:32 +0000318/// isNoAliasCall - Return true if this pointer is returned by a noalias
319/// function.
320bool llvm::isNoAliasCall(const Value *V) {
321 if (isa<CallInst>(V) || isa<InvokeInst>(V))
Dan Gohman79fca6f2010-08-03 21:48:53 +0000322 return ImmutableCallSite(cast<Instruction>(V))
Dan Gohmana5f81bb2009-02-03 01:28:32 +0000323 .paramHasAttr(0, Attribute::NoAlias);
324 return false;
325}
326
327/// isIdentifiedObject - Return true if this pointer refers to a distinct and
328/// identifiable object. This returns true for:
Dan Gohman5753a4a2009-08-27 17:52:56 +0000329/// Global Variables and Functions (but not Global Aliases)
Dan Gohmana5f81bb2009-02-03 01:28:32 +0000330/// Allocas and Mallocs
Dan Gohman9e86f432010-07-07 14:27:09 +0000331/// ByVal and NoAlias Arguments
332/// NoAlias returns
Dan Gohmana5f81bb2009-02-03 01:28:32 +0000333///
Dan Gohman9e86f432010-07-07 14:27:09 +0000334bool llvm::isIdentifiedObject(const Value *V) {
Dan Gohman6be2bd52010-06-29 00:50:39 +0000335 if (isa<AllocaInst>(V))
Dan Gohman5753a4a2009-08-27 17:52:56 +0000336 return true;
337 if (isa<GlobalValue>(V) && !isa<GlobalAlias>(V))
Dan Gohmana5f81bb2009-02-03 01:28:32 +0000338 return true;
Dan Gohman9e86f432010-07-07 14:27:09 +0000339 if (isNoAliasCall(V))
340 return true;
341 if (const Argument *A = dyn_cast<Argument>(V))
342 return A->hasNoAliasAttr() || A->hasByValAttr();
Dan Gohmana5f81bb2009-02-03 01:28:32 +0000343 return false;
344}
345
Chris Lattnerd501c132003-02-26 19:41:54 +0000346// Because of the way .a files work, we must force the BasicAA implementation to
347// be pulled in if the AliasAnalysis classes are pulled in. Otherwise we run
348// the risk of AliasAnalysis being used, but the default implementation not
349// being linked into the tool that uses it.
Reid Spencer4f1bd9e2006-06-07 22:00:26 +0000350DEFINING_FILE_FOR(AliasAnalysis)