blob: 78b2e7e9ca64e65e00b6612ca4fbc8a0ff1a3145 [file] [log] [blame]
Dan Gohmanda85ed82010-10-19 23:09:08 +00001//===- BasicAliasAnalysis.cpp - Stateless Alias Analysis Impl -------------===//
Misha Brukman01808ca2005-04-21 21:13:18 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukman01808ca2005-04-21 21:13:18 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerd6a2a992003-02-26 19:41:54 +00009//
Dan Gohmanda85ed82010-10-19 23:09:08 +000010// This file defines the primary stateless implementation of the
11// Alias Analysis interface that implements identities (two different
12// globals cannot alias, etc), but does no stateful analysis.
Chris Lattnerd6a2a992003-02-26 19:41:54 +000013//
14//===----------------------------------------------------------------------===//
15
Chandler Carruth17e0bc32015-08-06 07:33:15 +000016#include "llvm/Analysis/BasicAliasAnalysis.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/SmallVector.h"
Wei Mid67daae2015-08-05 23:40:30 +000018#include "llvm/ADT/Statistic.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/Analysis/AliasAnalysis.h"
Arnold Schwaighofer833a82e2014-01-03 05:47:03 +000020#include "llvm/Analysis/CFG.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000021#include "llvm/Analysis/CaptureTracking.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/Analysis/InstructionSimplify.h"
Arnold Schwaighofer833a82e2014-01-03 05:47:03 +000023#include "llvm/Analysis/LoopInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/Analysis/MemoryBuiltins.h"
25#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/Constants.h"
27#include "llvm/IR/DataLayout.h"
28#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000029#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/GlobalAlias.h"
31#include "llvm/IR/GlobalVariable.h"
32#include "llvm/IR/Instructions.h"
33#include "llvm/IR/IntrinsicInst.h"
34#include "llvm/IR/LLVMContext.h"
35#include "llvm/IR/Operator.h"
Chris Lattnerd82256a2004-03-15 03:36:49 +000036#include "llvm/Pass.h"
Torok Edwin56d06592009-07-11 20:10:48 +000037#include "llvm/Support/ErrorHandling.h"
Alkis Evlogimenosa5c04ee2004-09-03 18:19:51 +000038#include <algorithm>
Chris Lattner35997482003-11-25 18:33:40 +000039using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000040
Tobias Edler von Kochd8ce16b2015-07-15 19:32:22 +000041/// Enable analysis of recursive PHI nodes.
Chandler Carruth903c5f92015-08-06 07:57:58 +000042static cl::opt<bool> EnableRecPhiAnalysis("basicaa-recphi", cl::Hidden,
43 cl::init(false));
Tobias Edler von Kochd8ce16b2015-07-15 19:32:22 +000044
Wei Mid67daae2015-08-05 23:40:30 +000045/// SearchLimitReached / SearchTimes shows how often the limit of
46/// to decompose GEPs is reached. It will affect the precision
47/// of basic alias analysis.
48#define DEBUG_TYPE "basicaa"
49STATISTIC(SearchLimitReached, "Number of times the limit to "
50 "decompose GEPs is reached");
51STATISTIC(SearchTimes, "Number of times a GEP is decomposed");
52
Arnold Schwaighofer0d10a9d2014-01-02 03:31:36 +000053/// Cutoff after which to stop analysing a set of phi nodes potentially involved
54/// in a cycle. Because we are analysing 'through' phi nodes we need to be
Arnold Schwaighofer833a82e2014-01-03 05:47:03 +000055/// careful with value equivalence. We use reachability to make sure a value
56/// cannot be involved in a cycle.
57const unsigned MaxNumPhiBBsValueReachabilityCheck = 20;
Arnold Schwaighofer0d10a9d2014-01-02 03:31:36 +000058
Arnold Schwaighofer1a444482014-03-26 21:30:19 +000059// The max limit of the search depth in DecomposeGEPExpression() and
60// GetUnderlyingObject(), both functions need to use the same search
61// depth otherwise the algorithm in aliasGEP will assert.
62static const unsigned MaxLookupSearchDepth = 6;
63
Chris Lattner2d332972008-06-16 06:30:22 +000064//===----------------------------------------------------------------------===//
65// Useful predicates
66//===----------------------------------------------------------------------===//
Devang Patel09f162c2007-05-01 21:15:47 +000067
Chris Lattnerb35d9b52008-06-16 06:19:11 +000068/// isNonEscapingLocalObject - Return true if the pointer is to a function-local
69/// object that never escapes from the function.
Dan Gohman84f90a32010-07-01 20:08:40 +000070static bool isNonEscapingLocalObject(const Value *V) {
Chris Lattnerfa482582008-06-16 06:28:01 +000071 // If this is a local allocation, check to see if it escapes.
Dan Gohman84f90a32010-07-01 20:08:40 +000072 if (isa<AllocaInst>(V) || isNoAliasCall(V))
Dan Gohman94e61762009-11-19 21:57:48 +000073 // Set StoreCaptures to True so that we can assume in our callers that the
74 // pointer is not the result of a load instruction. Currently
75 // PointerMayBeCaptured doesn't have any special analysis for the
76 // StoreCaptures=false case; if it did, our callers could be refined to be
77 // more precise.
78 return !PointerMayBeCaptured(V, false, /*StoreCaptures=*/true);
Duncan Sands8d65f362009-01-05 21:19:53 +000079
Chris Lattnerfa482582008-06-16 06:28:01 +000080 // If this is an argument that corresponds to a byval or noalias argument,
Duncan Sands8d65f362009-01-05 21:19:53 +000081 // then it has not escaped before entering the function. Check if it escapes
82 // inside the function.
Dan Gohman84f90a32010-07-01 20:08:40 +000083 if (const Argument *A = dyn_cast<Argument>(V))
Richard Osbornea1fffcf2012-11-05 10:48:24 +000084 if (A->hasByValAttr() || A->hasNoAliasAttr())
85 // Note even if the argument is marked nocapture we still need to check
86 // for copies made inside the function. The nocapture attribute only
87 // specifies that there are no copies made that outlive the function.
Dan Gohman84f90a32010-07-01 20:08:40 +000088 return !PointerMayBeCaptured(V, false, /*StoreCaptures=*/true);
Richard Osbornea1fffcf2012-11-05 10:48:24 +000089
Chris Lattnerb35d9b52008-06-16 06:19:11 +000090 return false;
91}
92
Dan Gohman0824aff2010-06-29 00:50:39 +000093/// isEscapeSource - Return true if the pointer is one which would have
94/// been considered an escape by isNonEscapingLocalObject.
Dan Gohman84f90a32010-07-01 20:08:40 +000095static bool isEscapeSource(const Value *V) {
96 if (isa<CallInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V))
97 return true;
Dan Gohman0824aff2010-06-29 00:50:39 +000098
99 // The load case works because isNonEscapingLocalObject considers all
100 // stores to be escapes (it passes true for the StoreCaptures argument
101 // to PointerMayBeCaptured).
102 if (isa<LoadInst>(V))
103 return true;
104
105 return false;
106}
Chris Lattnerb35d9b52008-06-16 06:19:11 +0000107
Dan Gohman44da55b2011-01-18 21:16:06 +0000108/// getObjectSize - Return the size of the object specified by V, or
109/// UnknownSize if unknown.
Rafael Espindola5f57f462014-02-21 18:34:28 +0000110static uint64_t getObjectSize(const Value *V, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000111 const TargetLibraryInfo &TLI,
Eli Friedman8bc169c2012-02-27 20:46:07 +0000112 bool RoundToAlign = false) {
Nuno Lopes55fff832012-06-21 15:45:28 +0000113 uint64_t Size;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000114 if (getObjectSize(V, Size, DL, &TLI, RoundToAlign))
Nuno Lopes55fff832012-06-21 15:45:28 +0000115 return Size;
Chandler Carruthecbd1682015-06-17 07:21:38 +0000116 return MemoryLocation::UnknownSize;
Dan Gohman44da55b2011-01-18 21:16:06 +0000117}
118
119/// isObjectSmallerThan - Return true if we can prove that the object specified
120/// by V is smaller than Size.
121static bool isObjectSmallerThan(const Value *V, uint64_t Size,
Rafael Espindola5f57f462014-02-21 18:34:28 +0000122 const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000123 const TargetLibraryInfo &TLI) {
Nadav Rotemabcc64f2013-04-09 18:16:05 +0000124 // Note that the meanings of the "object" are slightly different in the
125 // following contexts:
126 // c1: llvm::getObjectSize()
127 // c2: llvm.objectsize() intrinsic
128 // c3: isObjectSmallerThan()
129 // c1 and c2 share the same meaning; however, the meaning of "object" in c3
130 // refers to the "entire object".
131 //
132 // Consider this example:
133 // char *p = (char*)malloc(100)
134 // char *q = p+80;
135 //
136 // In the context of c1 and c2, the "object" pointed by q refers to the
137 // stretch of memory of q[0:19]. So, getObjectSize(q) should return 20.
138 //
139 // However, in the context of c3, the "object" refers to the chunk of memory
140 // being allocated. So, the "object" has 100 bytes, and q points to the middle
141 // the "object". In case q is passed to isObjectSmallerThan() as the 1st
142 // parameter, before the llvm::getObjectSize() is called to get the size of
143 // entire object, we should:
144 // - either rewind the pointer q to the base-address of the object in
145 // question (in this case rewind to p), or
146 // - just give up. It is up to caller to make sure the pointer is pointing
147 // to the base address the object.
Jakub Staszak07f383f2013-08-24 14:16:00 +0000148 //
Nadav Rotemabcc64f2013-04-09 18:16:05 +0000149 // We go for 2nd option for simplicity.
150 if (!isIdentifiedObject(V))
151 return false;
152
Eli Friedman8bc169c2012-02-27 20:46:07 +0000153 // This function needs to use the aligned object size because we allow
154 // reads a bit past the end given sufficient alignment.
Chandler Carruth903c5f92015-08-06 07:57:58 +0000155 uint64_t ObjectSize = getObjectSize(V, DL, TLI, /*RoundToAlign*/ true);
Jakub Staszak07f383f2013-08-24 14:16:00 +0000156
Chandler Carruthecbd1682015-06-17 07:21:38 +0000157 return ObjectSize != MemoryLocation::UnknownSize && ObjectSize < Size;
Dan Gohman44da55b2011-01-18 21:16:06 +0000158}
159
160/// isObjectSize - Return true if we can prove that the object specified
161/// by V has size Size.
Chandler Carruth903c5f92015-08-06 07:57:58 +0000162static bool isObjectSize(const Value *V, uint64_t Size, const DataLayout &DL,
163 const TargetLibraryInfo &TLI) {
Rafael Espindola5f57f462014-02-21 18:34:28 +0000164 uint64_t ObjectSize = getObjectSize(V, DL, TLI);
Chandler Carruthecbd1682015-06-17 07:21:38 +0000165 return ObjectSize != MemoryLocation::UnknownSize && ObjectSize == Size;
Chris Lattner98ad8162008-06-16 06:10:11 +0000166}
167
Chris Lattner2d332972008-06-16 06:30:22 +0000168//===----------------------------------------------------------------------===//
Chris Lattner9f7500f2010-08-18 22:07:29 +0000169// GetElementPtr Instruction Decomposition and Analysis
170//===----------------------------------------------------------------------===//
171
Chris Lattner9f7500f2010-08-18 22:07:29 +0000172/// GetLinearExpression - Analyze the specified value as a linear expression:
173/// "A*V + B", where A and B are constant integers. Return the scale and offset
Chris Lattner3decde92010-08-18 23:09:49 +0000174/// values as APInts and return V as a Value*, and return whether we looked
175/// through any sign or zero extends. The incoming Value is known to have
176/// IntegerType and it may already be sign or zero extended.
177///
178/// Note that this looks through extends, so the high bits may not be
179/// represented in the result.
Chandler Carruth17e0bc32015-08-06 07:33:15 +0000180/*static*/ Value *BasicAliasAnalysis::GetLinearExpression(
181 Value *V, APInt &Scale, APInt &Offset, ExtensionKind &Extension,
182 const DataLayout &DL, unsigned Depth, AssumptionCache *AC,
183 DominatorTree *DT) {
Chris Lattner9f7500f2010-08-18 22:07:29 +0000184 assert(V->getType()->isIntegerTy() && "Not an integer value");
185
186 // Limit our recursion depth.
187 if (Depth == 6) {
188 Scale = 1;
189 Offset = 0;
190 return V;
191 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000192
Manuel Klimek779cf852015-07-13 13:50:55 +0000193 if (ConstantInt *Const = dyn_cast<ConstantInt>(V)) {
194 // if it's a constant, just convert it to an offset
195 // and remove the variable.
196 Offset += Const->getValue();
Hal Finkel45ba2c12014-11-13 09:16:54 +0000197 assert(Scale == 0 && "Constant values don't have a scale");
198 return V;
199 }
200
Manuel Klimek779cf852015-07-13 13:50:55 +0000201 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(V)) {
Chris Lattner9f7500f2010-08-18 22:07:29 +0000202 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
203 switch (BOp->getOpcode()) {
Chandler Carruth903c5f92015-08-06 07:57:58 +0000204 default:
205 break;
Chris Lattner9f7500f2010-08-18 22:07:29 +0000206 case Instruction::Or:
207 // X|C == X+C if all the bits in C are unset in X. Otherwise we can't
208 // analyze it.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000209 if (!MaskedValueIsZero(BOp->getOperand(0), RHSC->getValue(), DL, 0, AC,
Chandler Carruth66b31302015-01-04 12:03:27 +0000210 BOp, DT))
Chris Lattner9f7500f2010-08-18 22:07:29 +0000211 break;
Chandler Carruth903c5f92015-08-06 07:57:58 +0000212 // FALL THROUGH.
Chris Lattner9f7500f2010-08-18 22:07:29 +0000213 case Instruction::Add:
Manuel Klimek779cf852015-07-13 13:50:55 +0000214 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
215 DL, Depth + 1, AC, DT);
216 Offset += RHSC->getValue();
217 return V;
Chris Lattner9f7500f2010-08-18 22:07:29 +0000218 case Instruction::Mul:
Manuel Klimek779cf852015-07-13 13:50:55 +0000219 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
220 DL, Depth + 1, AC, DT);
221 Offset *= RHSC->getValue();
222 Scale *= RHSC->getValue();
223 return V;
Chris Lattner9f7500f2010-08-18 22:07:29 +0000224 case Instruction::Shl:
Manuel Klimek779cf852015-07-13 13:50:55 +0000225 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
226 DL, Depth + 1, AC, DT);
227 Offset <<= RHSC->getValue().getLimitedValue();
228 Scale <<= RHSC->getValue().getLimitedValue();
Chris Lattner9f7500f2010-08-18 22:07:29 +0000229 return V;
230 }
231 }
232 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000233
Chris Lattner9f7500f2010-08-18 22:07:29 +0000234 // Since GEP indices are sign extended anyway, we don't care about the high
Chris Lattner3decde92010-08-18 23:09:49 +0000235 // bits of a sign or zero extended value - just scales and offsets. The
236 // extensions have to be consistent though.
Manuel Klimek779cf852015-07-13 13:50:55 +0000237 if ((isa<SExtInst>(V) && Extension != EK_ZeroExt) ||
238 (isa<ZExtInst>(V) && Extension != EK_SignExt)) {
Chris Lattner9f7500f2010-08-18 22:07:29 +0000239 Value *CastOp = cast<CastInst>(V)->getOperand(0);
Manuel Klimek779cf852015-07-13 13:50:55 +0000240 unsigned OldWidth = Scale.getBitWidth();
Chris Lattner9f7500f2010-08-18 22:07:29 +0000241 unsigned SmallWidth = CastOp->getType()->getPrimitiveSizeInBits();
Manuel Klimek779cf852015-07-13 13:50:55 +0000242 Scale = Scale.trunc(SmallWidth);
243 Offset = Offset.trunc(SmallWidth);
244 Extension = isa<SExtInst>(V) ? EK_SignExt : EK_ZeroExt;
Chris Lattner3decde92010-08-18 23:09:49 +0000245
Manuel Klimek779cf852015-07-13 13:50:55 +0000246 Value *Result = GetLinearExpression(CastOp, Scale, Offset, Extension, DL,
247 Depth + 1, AC, DT);
248 Scale = Scale.zext(OldWidth);
Hal Finkel45ba2c12014-11-13 09:16:54 +0000249
Manuel Klimek779cf852015-07-13 13:50:55 +0000250 // We have to sign-extend even if Extension == EK_ZeroExt as we can't
251 // decompose a sign extension (i.e. zext(x - 1) != zext(x) - zext(-1)).
252 Offset = Offset.sext(OldWidth);
Jakub Staszak07f383f2013-08-24 14:16:00 +0000253
Chris Lattner9f7500f2010-08-18 22:07:29 +0000254 return Result;
255 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000256
Chris Lattner9f7500f2010-08-18 22:07:29 +0000257 Scale = 1;
258 Offset = 0;
259 return V;
260}
261
262/// DecomposeGEPExpression - If V is a symbolic pointer expression, decompose it
263/// into a base pointer with a constant offset and a number of scaled symbolic
264/// offsets.
265///
266/// The scaled symbolic offsets (represented by pairs of a Value* and a scale in
267/// the VarIndices vector) are Value*'s that are known to be scaled by the
268/// specified amount, but which may have other unrepresented high bits. As such,
269/// the gep cannot necessarily be reconstructed from its decomposed form.
270///
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000271/// When DataLayout is around, this function is capable of analyzing everything
Arnold Schwaighofer1a444482014-03-26 21:30:19 +0000272/// that GetUnderlyingObject can look through. To be able to do that
273/// GetUnderlyingObject and DecomposeGEPExpression must use the same search
274/// depth (MaxLookupSearchDepth).
275/// When DataLayout not is around, it just looks through pointer casts.
Chris Lattner9f7500f2010-08-18 22:07:29 +0000276///
Chandler Carruth17e0bc32015-08-06 07:33:15 +0000277/*static*/ const Value *BasicAliasAnalysis::DecomposeGEPExpression(
278 const Value *V, int64_t &BaseOffs,
279 SmallVectorImpl<VariableGEPIndex> &VarIndices, bool &MaxLookupReached,
280 const DataLayout &DL, AssumptionCache *AC, DominatorTree *DT) {
Chris Lattner9f7500f2010-08-18 22:07:29 +0000281 // Limit recursion depth to limit compile time in crazy cases.
Arnold Schwaighofer1a444482014-03-26 21:30:19 +0000282 unsigned MaxLookup = MaxLookupSearchDepth;
283 MaxLookupReached = false;
Wei Mid67daae2015-08-05 23:40:30 +0000284 SearchTimes++;
Jakub Staszak07f383f2013-08-24 14:16:00 +0000285
Chris Lattner9f7500f2010-08-18 22:07:29 +0000286 BaseOffs = 0;
287 do {
288 // See if this is a bitcast or GEP.
289 const Operator *Op = dyn_cast<Operator>(V);
Craig Topper9f008862014-04-15 04:59:12 +0000290 if (!Op) {
Chris Lattner9f7500f2010-08-18 22:07:29 +0000291 // The only non-operator case we can handle are GlobalAliases.
292 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
293 if (!GA->mayBeOverridden()) {
294 V = GA->getAliasee();
295 continue;
296 }
297 }
298 return V;
299 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000300
Matt Arsenault70f4db882014-07-15 00:56:40 +0000301 if (Op->getOpcode() == Instruction::BitCast ||
302 Op->getOpcode() == Instruction::AddrSpaceCast) {
Chris Lattner9f7500f2010-08-18 22:07:29 +0000303 V = Op->getOperand(0);
304 continue;
305 }
Dan Gohman05b18f12010-12-15 20:49:55 +0000306
Chris Lattner9f7500f2010-08-18 22:07:29 +0000307 const GEPOperator *GEPOp = dyn_cast<GEPOperator>(Op);
Craig Topper9f008862014-04-15 04:59:12 +0000308 if (!GEPOp) {
Dan Gohman0573b552011-05-24 18:24:08 +0000309 // If it's not a GEP, hand it off to SimplifyInstruction to see if it
310 // can come up with something. This matches what GetUnderlyingObject does.
311 if (const Instruction *I = dyn_cast<Instruction>(V))
Chandler Carruth66b31302015-01-04 12:03:27 +0000312 // TODO: Get a DominatorTree and AssumptionCache and use them here
Hal Finkel60db0582014-09-07 18:57:58 +0000313 // (these are both now available in this function, but this should be
314 // updated when GetUnderlyingObject is updated). TLI should be
315 // provided also.
Dan Gohman0573b552011-05-24 18:24:08 +0000316 if (const Value *Simplified =
Chandler Carruth903c5f92015-08-06 07:57:58 +0000317 SimplifyInstruction(const_cast<Instruction *>(I), DL)) {
Dan Gohman0573b552011-05-24 18:24:08 +0000318 V = Simplified;
319 continue;
320 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000321
Chris Lattner9f7500f2010-08-18 22:07:29 +0000322 return V;
Dan Gohman0573b552011-05-24 18:24:08 +0000323 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000324
Chris Lattner9f7500f2010-08-18 22:07:29 +0000325 // Don't attempt to analyze GEPs over unsized objects.
Matt Arsenaultfa252722013-09-27 22:18:51 +0000326 if (!GEPOp->getOperand(0)->getType()->getPointerElementType()->isSized())
Chris Lattner9f7500f2010-08-18 22:07:29 +0000327 return V;
Jakub Staszak07f383f2013-08-24 14:16:00 +0000328
Matt Arsenaulta8fe22b2013-11-16 00:36:43 +0000329 unsigned AS = GEPOp->getPointerAddressSpace();
Chris Lattner9f7500f2010-08-18 22:07:29 +0000330 // Walk the indices of the GEP, accumulating them into BaseOff/VarIndices.
331 gep_type_iterator GTI = gep_type_begin(GEPOp);
Chandler Carruth903c5f92015-08-06 07:57:58 +0000332 for (User::const_op_iterator I = GEPOp->op_begin() + 1, E = GEPOp->op_end();
333 I != E; ++I) {
Manuel Klimek779cf852015-07-13 13:50:55 +0000334 Value *Index = *I;
Chris Lattner9f7500f2010-08-18 22:07:29 +0000335 // Compute the (potentially symbolic) offset in bytes for this index.
Chris Lattner229907c2011-07-18 04:54:35 +0000336 if (StructType *STy = dyn_cast<StructType>(*GTI++)) {
Chris Lattner9f7500f2010-08-18 22:07:29 +0000337 // For a struct, add the member offset.
338 unsigned FieldNo = cast<ConstantInt>(Index)->getZExtValue();
Chandler Carruth903c5f92015-08-06 07:57:58 +0000339 if (FieldNo == 0)
340 continue;
Jakub Staszak07f383f2013-08-24 14:16:00 +0000341
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000342 BaseOffs += DL.getStructLayout(STy)->getElementOffset(FieldNo);
Chris Lattner9f7500f2010-08-18 22:07:29 +0000343 continue;
344 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000345
Chris Lattner9f7500f2010-08-18 22:07:29 +0000346 // For an array/pointer, add the element offset, explicitly scaled.
Manuel Klimek779cf852015-07-13 13:50:55 +0000347 if (ConstantInt *CIdx = dyn_cast<ConstantInt>(Index)) {
Chandler Carruth903c5f92015-08-06 07:57:58 +0000348 if (CIdx->isZero())
349 continue;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000350 BaseOffs += DL.getTypeAllocSize(*GTI) * CIdx->getSExtValue();
Chris Lattner9f7500f2010-08-18 22:07:29 +0000351 continue;
352 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000353
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000354 uint64_t Scale = DL.getTypeAllocSize(*GTI);
Manuel Klimek779cf852015-07-13 13:50:55 +0000355 ExtensionKind Extension = EK_NotExtended;
Jakub Staszak07f383f2013-08-24 14:16:00 +0000356
Chris Lattner3decde92010-08-18 23:09:49 +0000357 // If the integer type is smaller than the pointer size, it is implicitly
358 // sign extended to pointer size.
Matt Arsenaultfa252722013-09-27 22:18:51 +0000359 unsigned Width = Index->getType()->getIntegerBitWidth();
Manuel Klimek779cf852015-07-13 13:50:55 +0000360 if (DL.getPointerSizeInBits(AS) > Width)
361 Extension = EK_SignExt;
Jakub Staszak07f383f2013-08-24 14:16:00 +0000362
Chris Lattner3decde92010-08-18 23:09:49 +0000363 // Use GetLinearExpression to decompose the index into a C1*V+C2 form.
Chris Lattner9f7500f2010-08-18 22:07:29 +0000364 APInt IndexScale(Width, 0), IndexOffset(Width, 0);
Manuel Klimek779cf852015-07-13 13:50:55 +0000365 Index = GetLinearExpression(Index, IndexScale, IndexOffset, Extension, DL,
366 0, AC, DT);
Jakub Staszak07f383f2013-08-24 14:16:00 +0000367
Chris Lattner9f7500f2010-08-18 22:07:29 +0000368 // The GEP index scale ("Scale") scales C1*V+C2, yielding (C1*V+C2)*Scale.
369 // This gives us an aggregate computation of (C1*Scale)*V + C2*Scale.
Chandler Carruth903c5f92015-08-06 07:57:58 +0000370 BaseOffs += IndexOffset.getSExtValue() * Scale;
Eli Friedmanab3a1282010-09-15 20:08:03 +0000371 Scale *= IndexScale.getSExtValue();
Jakub Staszak07f383f2013-08-24 14:16:00 +0000372
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000373 // If we already had an occurrence of this index variable, merge this
Chris Lattner9f7500f2010-08-18 22:07:29 +0000374 // scale into it. For example, we want to handle:
375 // A[x][x] -> x*16 + x*4 -> x*20
376 // This also ensures that 'x' only appears in the index list once.
377 for (unsigned i = 0, e = VarIndices.size(); i != e; ++i) {
Chandler Carruth903c5f92015-08-06 07:57:58 +0000378 if (VarIndices[i].V == Index && VarIndices[i].Extension == Extension) {
Chris Lattner1b9c3872010-08-18 22:47:56 +0000379 Scale += VarIndices[i].Scale;
Chandler Carruth903c5f92015-08-06 07:57:58 +0000380 VarIndices.erase(VarIndices.begin() + i);
Chris Lattner9f7500f2010-08-18 22:07:29 +0000381 break;
382 }
383 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000384
Chris Lattner9f7500f2010-08-18 22:07:29 +0000385 // Make sure that we have a scale that makes sense for this target's
386 // pointer size.
Manuel Klimek779cf852015-07-13 13:50:55 +0000387 if (unsigned ShiftBits = 64 - DL.getPointerSizeInBits(AS)) {
Chris Lattner9f7500f2010-08-18 22:07:29 +0000388 Scale <<= ShiftBits;
Eli Friedmanab3a1282010-09-15 20:08:03 +0000389 Scale = (int64_t)Scale >> ShiftBits;
Chris Lattner9f7500f2010-08-18 22:07:29 +0000390 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000391
Chris Lattner1b9c3872010-08-18 22:47:56 +0000392 if (Scale) {
Manuel Klimek779cf852015-07-13 13:50:55 +0000393 VariableGEPIndex Entry = {Index, Extension,
Jeffrey Yasskin6381c012011-07-27 06:22:51 +0000394 static_cast<int64_t>(Scale)};
Chris Lattner1b9c3872010-08-18 22:47:56 +0000395 VarIndices.push_back(Entry);
396 }
Chris Lattner9f7500f2010-08-18 22:07:29 +0000397 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000398
Chris Lattner9f7500f2010-08-18 22:07:29 +0000399 // Analyze the base pointer next.
400 V = GEPOp->getOperand(0);
401 } while (--MaxLookup);
Jakub Staszak07f383f2013-08-24 14:16:00 +0000402
Chris Lattner9f7500f2010-08-18 22:07:29 +0000403 // If the chain of expressions is too deep, just return early.
Arnold Schwaighofer1a444482014-03-26 21:30:19 +0000404 MaxLookupReached = true;
Wei Mid67daae2015-08-05 23:40:30 +0000405 SearchLimitReached++;
Chris Lattner9f7500f2010-08-18 22:07:29 +0000406 return V;
407}
408
Chris Lattner9f7500f2010-08-18 22:07:29 +0000409//===----------------------------------------------------------------------===//
Dan Gohman0824aff2010-06-29 00:50:39 +0000410// BasicAliasAnalysis Pass
Chris Lattner2d332972008-06-16 06:30:22 +0000411//===----------------------------------------------------------------------===//
412
Chandler Carruth17e0bc32015-08-06 07:33:15 +0000413// Register the pass...
Chris Lattner2d332972008-06-16 06:30:22 +0000414char BasicAliasAnalysis::ID = 0;
Owen Anderson653cb032011-09-06 23:33:25 +0000415INITIALIZE_AG_PASS_BEGIN(BasicAliasAnalysis, AliasAnalysis, "basicaa",
Chandler Carruth903c5f92015-08-06 07:57:58 +0000416 "Basic Alias Analysis (stateless AA impl)", false,
417 true, false)
Chandler Carruth66b31302015-01-04 12:03:27 +0000418INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000419INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Owen Anderson653cb032011-09-06 23:33:25 +0000420INITIALIZE_AG_PASS_END(BasicAliasAnalysis, AliasAnalysis, "basicaa",
Chandler Carruth903c5f92015-08-06 07:57:58 +0000421 "Basic Alias Analysis (stateless AA impl)", false, true,
422 false)
Owen Anderson653cb032011-09-06 23:33:25 +0000423
Chris Lattner2d332972008-06-16 06:30:22 +0000424ImmutablePass *llvm::createBasicAliasAnalysisPass() {
425 return new BasicAliasAnalysis();
426}
427
Dan Gohman9130bad2010-11-08 16:45:26 +0000428/// pointsToConstantMemory - Returns whether the given pointer value
429/// points to memory that is local to the function, with global constants being
430/// considered local to all functions.
Chandler Carruthac80dc72015-06-17 07:18:54 +0000431bool BasicAliasAnalysis::pointsToConstantMemory(const MemoryLocation &Loc,
432 bool OrLocal) {
Dan Gohman9130bad2010-11-08 16:45:26 +0000433 assert(Visited.empty() && "Visited must be cleared after use!");
Chris Lattner2d332972008-06-16 06:30:22 +0000434
Dan Gohman142ff822010-11-08 20:26:19 +0000435 unsigned MaxLookup = 8;
Dan Gohman9130bad2010-11-08 16:45:26 +0000436 SmallVector<const Value *, 16> Worklist;
437 Worklist.push_back(Loc.Ptr);
438 do {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000439 const Value *V = GetUnderlyingObject(Worklist.pop_back_val(), *DL);
David Blaikie70573dc2014-11-19 07:49:26 +0000440 if (!Visited.insert(V).second) {
Dan Gohman9130bad2010-11-08 16:45:26 +0000441 Visited.clear();
442 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
443 }
Dan Gohman5f1702e2010-08-06 01:25:49 +0000444
Dan Gohman9130bad2010-11-08 16:45:26 +0000445 // An alloca instruction defines local memory.
446 if (OrLocal && isa<AllocaInst>(V))
447 continue;
448
449 // A global constant counts as local memory for our purposes.
450 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
451 // Note: this doesn't require GV to be "ODR" because it isn't legal for a
452 // global to be marked constant in some modules and non-constant in
453 // others. GV may even be a declaration, not a definition.
454 if (!GV->isConstant()) {
455 Visited.clear();
456 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
457 }
458 continue;
459 }
460
461 // If both select values point to local memory, then so does the select.
462 if (const SelectInst *SI = dyn_cast<SelectInst>(V)) {
463 Worklist.push_back(SI->getTrueValue());
464 Worklist.push_back(SI->getFalseValue());
465 continue;
466 }
467
468 // If all values incoming to a phi node point to local memory, then so does
469 // the phi.
470 if (const PHINode *PN = dyn_cast<PHINode>(V)) {
Dan Gohman142ff822010-11-08 20:26:19 +0000471 // Don't bother inspecting phi nodes with many operands.
472 if (PN->getNumIncomingValues() > MaxLookup) {
473 Visited.clear();
474 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
475 }
Pete Cooper833f34d2015-05-12 20:05:31 +0000476 for (Value *IncValue : PN->incoming_values())
477 Worklist.push_back(IncValue);
Dan Gohman9130bad2010-11-08 16:45:26 +0000478 continue;
479 }
480
481 // Otherwise be conservative.
482 Visited.clear();
483 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
484
Dan Gohman142ff822010-11-08 20:26:19 +0000485 } while (!Worklist.empty() && --MaxLookup);
Dan Gohman9130bad2010-11-08 16:45:26 +0000486
487 Visited.clear();
Dan Gohman142ff822010-11-08 20:26:19 +0000488 return Worklist.empty();
Chris Lattner2d332972008-06-16 06:30:22 +0000489}
490
Chandler Carruthc41404a2015-06-17 07:12:40 +0000491// FIXME: This code is duplicated with MemoryLocation and should be hoisted to
492// some common utility location.
Hal Finkel354e23b2014-07-17 01:28:25 +0000493static bool isMemsetPattern16(const Function *MS,
494 const TargetLibraryInfo &TLI) {
495 if (TLI.has(LibFunc::memset_pattern16) &&
496 MS->getName() == "memset_pattern16") {
497 FunctionType *MemsetType = MS->getFunctionType();
498 if (!MemsetType->isVarArg() && MemsetType->getNumParams() == 3 &&
499 isa<PointerType>(MemsetType->getParamType(0)) &&
500 isa<PointerType>(MemsetType->getParamType(1)) &&
501 isa<IntegerType>(MemsetType->getParamType(2)))
502 return true;
503 }
504
505 return false;
506}
507
Dan Gohman5f1702e2010-08-06 01:25:49 +0000508/// getModRefBehavior - Return the behavior when calling the given call site.
Chandler Carruth194f59c2015-07-22 23:15:57 +0000509FunctionModRefBehavior
Dan Gohman5f1702e2010-08-06 01:25:49 +0000510BasicAliasAnalysis::getModRefBehavior(ImmutableCallSite CS) {
511 if (CS.doesNotAccessMemory())
512 // Can't do better than this.
Chandler Carruth194f59c2015-07-22 23:15:57 +0000513 return FMRB_DoesNotAccessMemory;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000514
Chandler Carruth194f59c2015-07-22 23:15:57 +0000515 FunctionModRefBehavior Min = FMRB_UnknownModRefBehavior;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000516
517 // If the callsite knows it only reads memory, don't return worse
518 // than that.
519 if (CS.onlyReadsMemory())
Chandler Carruth194f59c2015-07-22 23:15:57 +0000520 Min = FMRB_OnlyReadsMemory;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000521
Igor Laevsky39d662f2015-07-11 10:30:36 +0000522 if (CS.onlyAccessesArgMemory())
Chandler Carruth194f59c2015-07-22 23:15:57 +0000523 Min = FunctionModRefBehavior(Min & FMRB_OnlyAccessesArgumentPointees);
Igor Laevsky39d662f2015-07-11 10:30:36 +0000524
Dan Gohman5f1702e2010-08-06 01:25:49 +0000525 // The AliasAnalysis base class has some smarts, lets use them.
Chandler Carruth194f59c2015-07-22 23:15:57 +0000526 return FunctionModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
Dan Gohman5f1702e2010-08-06 01:25:49 +0000527}
528
529/// getModRefBehavior - Return the behavior when calling the given function.
530/// For use when the call site is not known.
Chandler Carruth194f59c2015-07-22 23:15:57 +0000531FunctionModRefBehavior
Dan Gohman5f1702e2010-08-06 01:25:49 +0000532BasicAliasAnalysis::getModRefBehavior(const Function *F) {
Dan Gohmane461d7d2010-11-08 16:08:43 +0000533 // If the function declares it doesn't access memory, we can't do better.
Dan Gohman5f1702e2010-08-06 01:25:49 +0000534 if (F->doesNotAccessMemory())
Chandler Carruth194f59c2015-07-22 23:15:57 +0000535 return FMRB_DoesNotAccessMemory;
Dan Gohmane461d7d2010-11-08 16:08:43 +0000536
537 // For intrinsics, we can check the table.
Pete Cooper9e1d3352015-05-20 17:16:39 +0000538 if (Intrinsic::ID iid = F->getIntrinsicID()) {
Dan Gohmane461d7d2010-11-08 16:08:43 +0000539#define GET_INTRINSIC_MODREF_BEHAVIOR
Chandler Carruthdb25c6c2013-01-02 12:09:16 +0000540#include "llvm/IR/Intrinsics.gen"
Dan Gohmane461d7d2010-11-08 16:08:43 +0000541#undef GET_INTRINSIC_MODREF_BEHAVIOR
542 }
543
Chandler Carruth194f59c2015-07-22 23:15:57 +0000544 FunctionModRefBehavior Min = FMRB_UnknownModRefBehavior;
Dan Gohman2694e142010-11-10 01:02:18 +0000545
Dan Gohmane461d7d2010-11-08 16:08:43 +0000546 // If the function declares it only reads memory, go with that.
Dan Gohman5f1702e2010-08-06 01:25:49 +0000547 if (F->onlyReadsMemory())
Chandler Carruth194f59c2015-07-22 23:15:57 +0000548 Min = FMRB_OnlyReadsMemory;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000549
Igor Laevsky39d662f2015-07-11 10:30:36 +0000550 if (F->onlyAccessesArgMemory())
Chandler Carruth194f59c2015-07-22 23:15:57 +0000551 Min = FunctionModRefBehavior(Min & FMRB_OnlyAccessesArgumentPointees);
Igor Laevsky39d662f2015-07-11 10:30:36 +0000552
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000553 const TargetLibraryInfo &TLI =
554 getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Hal Finkel354e23b2014-07-17 01:28:25 +0000555 if (isMemsetPattern16(F, TLI))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000556 Min = FMRB_OnlyAccessesArgumentPointees;
Hal Finkel354e23b2014-07-17 01:28:25 +0000557
Dan Gohmane461d7d2010-11-08 16:08:43 +0000558 // Otherwise be conservative.
Chandler Carruth194f59c2015-07-22 23:15:57 +0000559 return FunctionModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);
Dan Gohman5f1702e2010-08-06 01:25:49 +0000560}
Owen Anderson98a36172009-02-05 23:36:27 +0000561
Chandler Carruth194f59c2015-07-22 23:15:57 +0000562ModRefInfo BasicAliasAnalysis::getArgModRefInfo(ImmutableCallSite CS,
563 unsigned ArgIdx) {
Chandler Carruthc41404a2015-06-17 07:12:40 +0000564 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction()))
Hal Finkel354e23b2014-07-17 01:28:25 +0000565 switch (II->getIntrinsicID()) {
Chandler Carruthc41404a2015-06-17 07:12:40 +0000566 default:
567 break;
Hal Finkel354e23b2014-07-17 01:28:25 +0000568 case Intrinsic::memset:
569 case Intrinsic::memcpy:
Chandler Carruthc41404a2015-06-17 07:12:40 +0000570 case Intrinsic::memmove:
Hal Finkel354e23b2014-07-17 01:28:25 +0000571 assert((ArgIdx == 0 || ArgIdx == 1) &&
572 "Invalid argument index for memory intrinsic");
Chandler Carruth194f59c2015-07-22 23:15:57 +0000573 return ArgIdx ? MRI_Ref : MRI_Mod;
Hal Finkel354e23b2014-07-17 01:28:25 +0000574 }
575
576 // We can bound the aliasing properties of memset_pattern16 just as we can
577 // for memcpy/memset. This is particularly important because the
578 // LoopIdiomRecognizer likes to turn loops into calls to memset_pattern16
579 // whenever possible.
Chandler Carruthc41404a2015-06-17 07:12:40 +0000580 if (CS.getCalledFunction() &&
581 isMemsetPattern16(CS.getCalledFunction(), *TLI)) {
Hal Finkel354e23b2014-07-17 01:28:25 +0000582 assert((ArgIdx == 0 || ArgIdx == 1) &&
583 "Invalid argument index for memset_pattern16");
Chandler Carruth194f59c2015-07-22 23:15:57 +0000584 return ArgIdx ? MRI_Ref : MRI_Mod;
Hal Finkel354e23b2014-07-17 01:28:25 +0000585 }
586 // FIXME: Handle memset_pattern4 and memset_pattern8 also.
587
Chandler Carruthc41404a2015-06-17 07:12:40 +0000588 return AliasAnalysis::getArgModRefInfo(CS, ArgIdx);
Hal Finkel354e23b2014-07-17 01:28:25 +0000589}
590
Hal Finkel93046912014-07-25 21:13:35 +0000591static bool isAssumeIntrinsic(ImmutableCallSite CS) {
592 const IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction());
593 if (II && II->getIntrinsicID() == Intrinsic::assume)
594 return true;
595
596 return false;
597}
598
Mehdi Amini46a43552015-03-04 18:43:29 +0000599bool BasicAliasAnalysis::doInitialization(Module &M) {
600 InitializeAliasAnalysis(this, &M.getDataLayout());
601 return true;
602}
603
Chris Lattner98e253262009-11-23 16:45:27 +0000604/// getModRefInfo - Check to see if the specified callsite can clobber the
605/// specified memory object. Since we only look at local properties of this
606/// function, we really can't say much about this query. We do, however, use
607/// simple "address taken" analysis on local objects.
Chandler Carruth194f59c2015-07-22 23:15:57 +0000608ModRefInfo BasicAliasAnalysis::getModRefInfo(ImmutableCallSite CS,
609 const MemoryLocation &Loc) {
Dan Gohman41f14cf2010-09-14 21:25:10 +0000610 assert(notDifferentParent(CS.getInstruction(), Loc.Ptr) &&
Dan Gohman00ef9322010-07-07 14:27:09 +0000611 "AliasAnalysis query involving multiple functions!");
612
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000613 const Value *Object = GetUnderlyingObject(Loc.Ptr, *DL);
Jakub Staszak07f383f2013-08-24 14:16:00 +0000614
Dan Gohman41f14cf2010-09-14 21:25:10 +0000615 // If this is a tail call and Loc.Ptr points to a stack location, we know that
Chris Lattnerd6a49ad2009-11-22 16:05:05 +0000616 // the tail call cannot access or modify the local stack.
617 // We cannot exclude byval arguments here; these belong to the caller of
618 // the current function not to the current function, and a tail callee
619 // may reference them.
620 if (isa<AllocaInst>(Object))
Dan Gohman5442c712010-08-03 21:48:53 +0000621 if (const CallInst *CI = dyn_cast<CallInst>(CS.getInstruction()))
Chris Lattnerd6a49ad2009-11-22 16:05:05 +0000622 if (CI->isTailCall())
Chandler Carruth194f59c2015-07-22 23:15:57 +0000623 return MRI_NoModRef;
Jakub Staszak07f383f2013-08-24 14:16:00 +0000624
Chris Lattnerd6a49ad2009-11-22 16:05:05 +0000625 // If the pointer is to a locally allocated object that does not escape,
Chris Lattner84ed59ab2009-11-23 16:44:43 +0000626 // then the call can not mod/ref the pointer unless the call takes the pointer
627 // as an argument, and itself doesn't capture it.
Chris Lattner1e7b37e2009-11-23 16:46:41 +0000628 if (!isa<Constant>(Object) && CS.getInstruction() != Object &&
Dan Gohman84f90a32010-07-01 20:08:40 +0000629 isNonEscapingLocalObject(Object)) {
Chris Lattner84ed59ab2009-11-23 16:44:43 +0000630 bool PassedAsArg = false;
631 unsigned ArgNo = 0;
Dan Gohman5442c712010-08-03 21:48:53 +0000632 for (ImmutableCallSite::arg_iterator CI = CS.arg_begin(), CE = CS.arg_end();
Chris Lattner84ed59ab2009-11-23 16:44:43 +0000633 CI != CE; ++CI, ++ArgNo) {
Chris Lattner026f5e62011-05-23 05:15:43 +0000634 // Only look at the no-capture or byval pointer arguments. If this
635 // pointer were passed to arguments that were neither of these, then it
636 // couldn't be no-capture.
Duncan Sands19d0b472010-02-16 11:11:14 +0000637 if (!(*CI)->getType()->isPointerTy() ||
Nick Lewycky612d70b2011-11-20 19:09:04 +0000638 (!CS.doesNotCapture(ArgNo) && !CS.isByValArgument(ArgNo)))
Chris Lattner84ed59ab2009-11-23 16:44:43 +0000639 continue;
Jakub Staszak07f383f2013-08-24 14:16:00 +0000640
Dan Gohman41f14cf2010-09-14 21:25:10 +0000641 // If this is a no-capture pointer argument, see if we can tell that it
Chris Lattner84ed59ab2009-11-23 16:44:43 +0000642 // is impossible to alias the pointer we're checking. If not, we have to
643 // assume that the call could touch the pointer, even though it doesn't
644 // escape.
Chandler Carruthac80dc72015-06-17 07:18:54 +0000645 if (!isNoAlias(MemoryLocation(*CI), MemoryLocation(Object))) {
Chris Lattner84ed59ab2009-11-23 16:44:43 +0000646 PassedAsArg = true;
647 break;
648 }
649 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000650
Chris Lattner84ed59ab2009-11-23 16:44:43 +0000651 if (!PassedAsArg)
Chandler Carruth194f59c2015-07-22 23:15:57 +0000652 return MRI_NoModRef;
Chris Lattnerd6a49ad2009-11-22 16:05:05 +0000653 }
654
Hal Finkel93046912014-07-25 21:13:35 +0000655 // While the assume intrinsic is marked as arbitrarily writing so that
656 // proper control dependencies will be maintained, it never aliases any
657 // particular memory location.
658 if (isAssumeIntrinsic(CS))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000659 return MRI_NoModRef;
Hal Finkel93046912014-07-25 21:13:35 +0000660
Chris Lattner2d332972008-06-16 06:30:22 +0000661 // The AliasAnalysis base class has some smarts, lets use them.
Hal Finkel354e23b2014-07-17 01:28:25 +0000662 return AliasAnalysis::getModRefInfo(CS, Loc);
Dan Gohman64d842e2010-09-08 01:32:20 +0000663}
Chris Lattner2d332972008-06-16 06:30:22 +0000664
Chandler Carruth194f59c2015-07-22 23:15:57 +0000665ModRefInfo BasicAliasAnalysis::getModRefInfo(ImmutableCallSite CS1,
666 ImmutableCallSite CS2) {
Hal Finkel93046912014-07-25 21:13:35 +0000667 // While the assume intrinsic is marked as arbitrarily writing so that
668 // proper control dependencies will be maintained, it never aliases any
669 // particular memory location.
670 if (isAssumeIntrinsic(CS1) || isAssumeIntrinsic(CS2))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000671 return MRI_NoModRef;
Hal Finkel93046912014-07-25 21:13:35 +0000672
673 // The AliasAnalysis base class has some smarts, lets use them.
674 return AliasAnalysis::getModRefInfo(CS1, CS2);
675}
676
Ahmed Bougacha29efe3b2015-02-07 17:04:29 +0000677/// \brief Provide ad-hoc rules to disambiguate accesses through two GEP
678/// operators, both having the exact same pointer operand.
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000679static AliasResult aliasSameBasePointerGEPs(const GEPOperator *GEP1,
680 uint64_t V1Size,
681 const GEPOperator *GEP2,
682 uint64_t V2Size,
683 const DataLayout &DL) {
Ahmed Bougacha29efe3b2015-02-07 17:04:29 +0000684
685 assert(GEP1->getPointerOperand() == GEP2->getPointerOperand() &&
686 "Expected GEPs with the same pointer operand");
687
688 // Try to determine whether GEP1 and GEP2 index through arrays, into structs,
689 // such that the struct field accesses provably cannot alias.
690 // We also need at least two indices (the pointer, and the struct field).
691 if (GEP1->getNumIndices() != GEP2->getNumIndices() ||
692 GEP1->getNumIndices() < 2)
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000693 return MayAlias;
Ahmed Bougacha29efe3b2015-02-07 17:04:29 +0000694
695 // If we don't know the size of the accesses through both GEPs, we can't
696 // determine whether the struct fields accessed can't alias.
Chandler Carruthecbd1682015-06-17 07:21:38 +0000697 if (V1Size == MemoryLocation::UnknownSize ||
698 V2Size == MemoryLocation::UnknownSize)
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000699 return MayAlias;
Ahmed Bougacha29efe3b2015-02-07 17:04:29 +0000700
701 ConstantInt *C1 =
702 dyn_cast<ConstantInt>(GEP1->getOperand(GEP1->getNumOperands() - 1));
703 ConstantInt *C2 =
704 dyn_cast<ConstantInt>(GEP2->getOperand(GEP2->getNumOperands() - 1));
705
706 // If the last (struct) indices aren't constants, we can't say anything.
707 // If they're identical, the other indices might be also be dynamically
708 // equal, so the GEPs can alias.
709 if (!C1 || !C2 || C1 == C2)
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000710 return MayAlias;
Ahmed Bougacha29efe3b2015-02-07 17:04:29 +0000711
712 // Find the last-indexed type of the GEP, i.e., the type you'd get if
713 // you stripped the last index.
714 // On the way, look at each indexed type. If there's something other
715 // than an array, different indices can lead to different final types.
716 SmallVector<Value *, 8> IntermediateIndices;
717
718 // Insert the first index; we don't need to check the type indexed
719 // through it as it only drops the pointer indirection.
720 assert(GEP1->getNumIndices() > 1 && "Not enough GEP indices to examine");
721 IntermediateIndices.push_back(GEP1->getOperand(1));
722
723 // Insert all the remaining indices but the last one.
724 // Also, check that they all index through arrays.
725 for (unsigned i = 1, e = GEP1->getNumIndices() - 1; i != e; ++i) {
726 if (!isa<ArrayType>(GetElementPtrInst::getIndexedType(
David Blaikied288fb82015-03-30 21:41:43 +0000727 GEP1->getSourceElementType(), IntermediateIndices)))
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000728 return MayAlias;
Ahmed Bougacha29efe3b2015-02-07 17:04:29 +0000729 IntermediateIndices.push_back(GEP1->getOperand(i + 1));
730 }
731
732 StructType *LastIndexedStruct =
733 dyn_cast<StructType>(GetElementPtrInst::getIndexedType(
David Blaikied288fb82015-03-30 21:41:43 +0000734 GEP1->getSourceElementType(), IntermediateIndices));
Ahmed Bougacha29efe3b2015-02-07 17:04:29 +0000735
736 if (!LastIndexedStruct)
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000737 return MayAlias;
Ahmed Bougacha29efe3b2015-02-07 17:04:29 +0000738
739 // We know that:
740 // - both GEPs begin indexing from the exact same pointer;
741 // - the last indices in both GEPs are constants, indexing into a struct;
742 // - said indices are different, hence, the pointed-to fields are different;
743 // - both GEPs only index through arrays prior to that.
744 //
745 // This lets us determine that the struct that GEP1 indexes into and the
746 // struct that GEP2 indexes into must either precisely overlap or be
747 // completely disjoint. Because they cannot partially overlap, indexing into
748 // different non-overlapping fields of the struct will never alias.
749
750 // Therefore, the only remaining thing needed to show that both GEPs can't
751 // alias is that the fields are not overlapping.
752 const StructLayout *SL = DL.getStructLayout(LastIndexedStruct);
753 const uint64_t StructSize = SL->getSizeInBytes();
754 const uint64_t V1Off = SL->getElementOffset(C1->getZExtValue());
755 const uint64_t V2Off = SL->getElementOffset(C2->getZExtValue());
756
757 auto EltsDontOverlap = [StructSize](uint64_t V1Off, uint64_t V1Size,
758 uint64_t V2Off, uint64_t V2Size) {
759 return V1Off < V2Off && V1Off + V1Size <= V2Off &&
760 ((V2Off + V2Size <= StructSize) ||
761 (V2Off + V2Size - StructSize <= V1Off));
762 };
763
764 if (EltsDontOverlap(V1Off, V1Size, V2Off, V2Size) ||
765 EltsDontOverlap(V2Off, V2Size, V1Off, V1Size))
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000766 return NoAlias;
Ahmed Bougacha29efe3b2015-02-07 17:04:29 +0000767
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000768 return MayAlias;
Ahmed Bougacha29efe3b2015-02-07 17:04:29 +0000769}
770
Chris Lattnera99edbe2009-11-26 02:11:08 +0000771/// aliasGEP - Provide a bunch of ad-hoc rules to disambiguate a GEP instruction
772/// against another pointer. We know that V1 is a GEP, but we don't know
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000773/// anything about V2. UnderlyingV1 is GetUnderlyingObject(GEP1, DL),
Chris Lattner5341c962009-11-26 02:14:59 +0000774/// UnderlyingV2 is the same for V2.
Chris Lattnera99edbe2009-11-26 02:11:08 +0000775///
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000776AliasResult BasicAliasAnalysis::aliasGEP(
777 const GEPOperator *GEP1, uint64_t V1Size, const AAMDNodes &V1AAInfo,
778 const Value *V2, uint64_t V2Size, const AAMDNodes &V2AAInfo,
779 const Value *UnderlyingV1, const Value *UnderlyingV2) {
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000780 int64_t GEP1BaseOffset;
Arnold Schwaighofer1a444482014-03-26 21:30:19 +0000781 bool GEP1MaxLookupReached;
Chris Lattner1b9c3872010-08-18 22:47:56 +0000782 SmallVector<VariableGEPIndex, 4> GEP1VariableIndices;
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000783
Chandler Carruth66b31302015-01-04 12:03:27 +0000784 // We have to get two AssumptionCaches here because GEP1 and V2 may be from
785 // different functions.
786 // FIXME: This really doesn't make any sense. We get a dominator tree below
787 // that can only refer to a single function. But this function (aliasGEP) is
788 // a method on an immutable pass that can be called when there *isn't*
789 // a single function. The old pass management layer makes this "work", but
790 // this isn't really a clean solution.
791 AssumptionCacheTracker &ACT = getAnalysis<AssumptionCacheTracker>();
792 AssumptionCache *AC1 = nullptr, *AC2 = nullptr;
793 if (auto *GEP1I = dyn_cast<Instruction>(GEP1))
794 AC1 = &ACT.getAssumptionCache(
795 const_cast<Function &>(*GEP1I->getParent()->getParent()));
796 if (auto *I2 = dyn_cast<Instruction>(V2))
797 AC2 = &ACT.getAssumptionCache(
798 const_cast<Function &>(*I2->getParent()->getParent()));
799
Hal Finkel60db0582014-09-07 18:57:58 +0000800 DominatorTreeWrapperPass *DTWP =
801 getAnalysisIfAvailable<DominatorTreeWrapperPass>();
802 DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr;
803
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000804 // If we have two gep instructions with must-alias or not-alias'ing base
805 // pointers, figure out if the indexes to the GEP tell us anything about the
806 // derived pointer.
Chris Lattnera99edbe2009-11-26 02:11:08 +0000807 if (const GEPOperator *GEP2 = dyn_cast<GEPOperator>(V2)) {
Arnold Schwaighoferaadf1042013-03-26 18:07:53 +0000808 // Do the base pointers alias?
Chandler Carruthecbd1682015-06-17 07:21:38 +0000809 AliasResult BaseAlias =
810 aliasCheck(UnderlyingV1, MemoryLocation::UnknownSize, AAMDNodes(),
811 UnderlyingV2, MemoryLocation::UnknownSize, AAMDNodes());
Arnold Schwaighoferaadf1042013-03-26 18:07:53 +0000812
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000813 // Check for geps of non-aliasing underlying pointers where the offsets are
814 // identical.
Arnold Schwaighoferaadf1042013-03-26 18:07:53 +0000815 if ((BaseAlias == MayAlias) && V1Size == V2Size) {
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000816 // Do the base pointers alias assuming type and size.
Chandler Carruth903c5f92015-08-06 07:57:58 +0000817 AliasResult PreciseBaseAlias = aliasCheck(UnderlyingV1, V1Size, V1AAInfo,
818 UnderlyingV2, V2Size, V2AAInfo);
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000819 if (PreciseBaseAlias == NoAlias) {
820 // See if the computed offset from the common pointer tells us about the
821 // relation of the resulting pointer.
822 int64_t GEP2BaseOffset;
Arnold Schwaighofer1a444482014-03-26 21:30:19 +0000823 bool GEP2MaxLookupReached;
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000824 SmallVector<VariableGEPIndex, 4> GEP2VariableIndices;
825 const Value *GEP2BasePtr =
Chandler Carruth66b31302015-01-04 12:03:27 +0000826 DecomposeGEPExpression(GEP2, GEP2BaseOffset, GEP2VariableIndices,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000827 GEP2MaxLookupReached, *DL, AC2, DT);
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000828 const Value *GEP1BasePtr =
Chandler Carruth66b31302015-01-04 12:03:27 +0000829 DecomposeGEPExpression(GEP1, GEP1BaseOffset, GEP1VariableIndices,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000830 GEP1MaxLookupReached, *DL, AC1, DT);
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000831 // DecomposeGEPExpression and GetUnderlyingObject should return the
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000832 // same result except when DecomposeGEPExpression has no DataLayout.
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000833 if (GEP1BasePtr != UnderlyingV1 || GEP2BasePtr != UnderlyingV2) {
Craig Topper9f008862014-04-15 04:59:12 +0000834 assert(!DL &&
835 "DecomposeGEPExpression and GetUnderlyingObject disagree!");
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000836 return MayAlias;
837 }
Arnold Schwaighofer1a444482014-03-26 21:30:19 +0000838 // If the max search depth is reached the result is undefined
839 if (GEP2MaxLookupReached || GEP1MaxLookupReached)
840 return MayAlias;
841
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000842 // Same offsets.
843 if (GEP1BaseOffset == GEP2BaseOffset &&
Benjamin Kramer147644d2014-04-18 19:48:03 +0000844 GEP1VariableIndices == GEP2VariableIndices)
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000845 return NoAlias;
846 GEP1VariableIndices.clear();
847 }
848 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000849
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000850 // If we get a No or May, then return it immediately, no amount of analysis
851 // will improve this situation.
Chandler Carruth903c5f92015-08-06 07:57:58 +0000852 if (BaseAlias != MustAlias)
853 return BaseAlias;
Jakub Staszak07f383f2013-08-24 14:16:00 +0000854
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000855 // Otherwise, we have a MustAlias. Since the base pointers alias each other
856 // exactly, see if the computed offset from the common pointer tells us
857 // about the relation of the resulting pointer.
858 const Value *GEP1BasePtr =
Chandler Carruth66b31302015-01-04 12:03:27 +0000859 DecomposeGEPExpression(GEP1, GEP1BaseOffset, GEP1VariableIndices,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000860 GEP1MaxLookupReached, *DL, AC1, DT);
Jakub Staszak07f383f2013-08-24 14:16:00 +0000861
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000862 int64_t GEP2BaseOffset;
Arnold Schwaighofer1a444482014-03-26 21:30:19 +0000863 bool GEP2MaxLookupReached;
Chris Lattner1b9c3872010-08-18 22:47:56 +0000864 SmallVector<VariableGEPIndex, 4> GEP2VariableIndices;
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000865 const Value *GEP2BasePtr =
Chandler Carruth66b31302015-01-04 12:03:27 +0000866 DecomposeGEPExpression(GEP2, GEP2BaseOffset, GEP2VariableIndices,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000867 GEP2MaxLookupReached, *DL, AC2, DT);
Jakub Staszak07f383f2013-08-24 14:16:00 +0000868
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000869 // DecomposeGEPExpression and GetUnderlyingObject should return the
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000870 // same result except when DecomposeGEPExpression has no DataLayout.
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000871 if (GEP1BasePtr != UnderlyingV1 || GEP2BasePtr != UnderlyingV2) {
Chandler Carruth903c5f92015-08-06 07:57:58 +0000872 assert(!DL && "DecomposeGEPExpression and GetUnderlyingObject disagree!");
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000873 return MayAlias;
874 }
Ahmed Bougacha29efe3b2015-02-07 17:04:29 +0000875
876 // If we know the two GEPs are based off of the exact same pointer (and not
877 // just the same underlying object), see if that tells us anything about
878 // the resulting pointers.
879 if (DL && GEP1->getPointerOperand() == GEP2->getPointerOperand()) {
880 AliasResult R = aliasSameBasePointerGEPs(GEP1, V1Size, GEP2, V2Size, *DL);
881 // If we couldn't find anything interesting, don't abandon just yet.
882 if (R != MayAlias)
883 return R;
884 }
885
Arnold Schwaighofer1a444482014-03-26 21:30:19 +0000886 // If the max search depth is reached the result is undefined
887 if (GEP2MaxLookupReached || GEP1MaxLookupReached)
888 return MayAlias;
Jakub Staszak07f383f2013-08-24 14:16:00 +0000889
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000890 // Subtract the GEP2 pointer from the GEP1 pointer to find out their
891 // symbolic difference.
892 GEP1BaseOffset -= GEP2BaseOffset;
Dan Gohmanad867b02010-08-03 20:23:52 +0000893 GetIndexDifference(GEP1VariableIndices, GEP2VariableIndices);
Jakub Staszak07f383f2013-08-24 14:16:00 +0000894
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000895 } else {
896 // Check to see if these two pointers are related by the getelementptr
897 // instruction. If one pointer is a GEP with a non-zero index of the other
898 // pointer, we know they cannot alias.
Chris Lattner5c1cfc22009-11-26 16:52:32 +0000899
900 // If both accesses are unknown size, we can't do anything useful here.
Chandler Carruthecbd1682015-06-17 07:21:38 +0000901 if (V1Size == MemoryLocation::UnknownSize &&
902 V2Size == MemoryLocation::UnknownSize)
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000903 return MayAlias;
Chris Lattner6ea17f77f2003-12-11 22:44:13 +0000904
Chandler Carruthecbd1682015-06-17 07:21:38 +0000905 AliasResult R = aliasCheck(UnderlyingV1, MemoryLocation::UnknownSize,
906 AAMDNodes(), V2, V2Size, V2AAInfo);
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000907 if (R != MustAlias)
908 // If V2 may alias GEP base pointer, conservatively returns MayAlias.
909 // If V2 is known not to alias GEP base pointer, then the two values
910 // cannot alias per GEP semantics: "A pointer value formed from a
911 // getelementptr instruction is associated with the addresses associated
912 // with the first operand of the getelementptr".
913 return R;
Chris Lattner6ea17f77f2003-12-11 22:44:13 +0000914
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000915 const Value *GEP1BasePtr =
Chandler Carruth66b31302015-01-04 12:03:27 +0000916 DecomposeGEPExpression(GEP1, GEP1BaseOffset, GEP1VariableIndices,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000917 GEP1MaxLookupReached, *DL, AC1, DT);
Jakub Staszak07f383f2013-08-24 14:16:00 +0000918
Arnold Schwaighofer76dca582012-09-06 14:31:51 +0000919 // DecomposeGEPExpression and GetUnderlyingObject should return the
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000920 // same result except when DecomposeGEPExpression has no DataLayout.
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000921 if (GEP1BasePtr != UnderlyingV1) {
Chandler Carruth903c5f92015-08-06 07:57:58 +0000922 assert(!DL && "DecomposeGEPExpression and GetUnderlyingObject disagree!");
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000923 return MayAlias;
Chris Lattner6ea17f77f2003-12-11 22:44:13 +0000924 }
Arnold Schwaighofer1a444482014-03-26 21:30:19 +0000925 // If the max search depth is reached the result is undefined
926 if (GEP1MaxLookupReached)
927 return MayAlias;
Chris Lattner6ea17f77f2003-12-11 22:44:13 +0000928 }
Jakub Staszak07f383f2013-08-24 14:16:00 +0000929
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000930 // In the two GEP Case, if there is no difference in the offsets of the
931 // computed pointers, the resultant pointers are a must alias. This
932 // hapens when we have two lexically identical GEP's (for example).
Chris Lattnerd6a2a992003-02-26 19:41:54 +0000933 //
Chris Lattner7a5b56a2009-11-26 02:17:34 +0000934 // In the other case, if we have getelementptr <ptr>, 0, 0, 0, 0, ... and V2
935 // must aliases the GEP, the end result is a must alias also.
936 if (GEP1BaseOffset == 0 && GEP1VariableIndices.empty())
Evan Chengc1eed9d2009-10-14 06:41:49 +0000937 return MustAlias;
Evan Chengf1f3dd32009-10-13 18:42:04 +0000938
Eli Friedman3d1b3072011-09-08 02:23:31 +0000939 // If there is a constant difference between the pointers, but the difference
940 // is less than the size of the associated memory object, then we know
941 // that the objects are partially overlapping. If the difference is
942 // greater, we know they do not overlap.
Dan Gohmanc4bf5ca2010-12-13 22:50:24 +0000943 if (GEP1BaseOffset != 0 && GEP1VariableIndices.empty()) {
Eli Friedman3d1b3072011-09-08 02:23:31 +0000944 if (GEP1BaseOffset >= 0) {
Chandler Carruthecbd1682015-06-17 07:21:38 +0000945 if (V2Size != MemoryLocation::UnknownSize) {
Eli Friedman3d1b3072011-09-08 02:23:31 +0000946 if ((uint64_t)GEP1BaseOffset < V2Size)
947 return PartialAlias;
948 return NoAlias;
949 }
950 } else {
Arnold Schwaighofere3ac0992014-01-16 04:53:18 +0000951 // We have the situation where:
952 // + +
953 // | BaseOffset |
954 // ---------------->|
955 // |-->V1Size |-------> V2Size
956 // GEP1 V2
957 // We need to know that V2Size is not unknown, otherwise we might have
958 // stripped a gep with negative index ('gep <ptr>, -1, ...).
Chandler Carruthecbd1682015-06-17 07:21:38 +0000959 if (V1Size != MemoryLocation::UnknownSize &&
960 V2Size != MemoryLocation::UnknownSize) {
Eli Friedman3d1b3072011-09-08 02:23:31 +0000961 if (-(uint64_t)GEP1BaseOffset < V1Size)
962 return PartialAlias;
963 return NoAlias;
964 }
965 }
Dan Gohmanc4bf5ca2010-12-13 22:50:24 +0000966 }
967
Eli Friedmanb78ac542011-09-08 02:37:07 +0000968 if (!GEP1VariableIndices.empty()) {
969 uint64_t Modulo = 0;
Hal Finkel45ba2c12014-11-13 09:16:54 +0000970 bool AllPositive = true;
971 for (unsigned i = 0, e = GEP1VariableIndices.size(); i != e; ++i) {
972
973 // Try to distinguish something like &A[i][1] against &A[42][0].
974 // Grab the least significant bit set in any of the scales. We
975 // don't need std::abs here (even if the scale's negative) as we'll
976 // be ^'ing Modulo with itself later.
Chandler Carruth903c5f92015-08-06 07:57:58 +0000977 Modulo |= (uint64_t)GEP1VariableIndices[i].Scale;
Hal Finkel45ba2c12014-11-13 09:16:54 +0000978
979 if (AllPositive) {
980 // If the Value could change between cycles, then any reasoning about
981 // the Value this cycle may not hold in the next cycle. We'll just
982 // give up if we can't determine conditions that hold for every cycle:
983 const Value *V = GEP1VariableIndices[i].V;
984
985 bool SignKnownZero, SignKnownOne;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000986 ComputeSignBit(const_cast<Value *>(V), SignKnownZero, SignKnownOne, *DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000987 0, AC1, nullptr, DT);
Hal Finkel45ba2c12014-11-13 09:16:54 +0000988
989 // Zero-extension widens the variable, and so forces the sign
990 // bit to zero.
Manuel Klimek779cf852015-07-13 13:50:55 +0000991 bool IsZExt = GEP1VariableIndices[i].Extension == EK_ZeroExt;
Hal Finkel45ba2c12014-11-13 09:16:54 +0000992 SignKnownZero |= IsZExt;
993 SignKnownOne &= !IsZExt;
994
995 // If the variable begins with a zero then we know it's
996 // positive, regardless of whether the value is signed or
997 // unsigned.
998 int64_t Scale = GEP1VariableIndices[i].Scale;
999 AllPositive =
Chandler Carruth903c5f92015-08-06 07:57:58 +00001000 (SignKnownZero && Scale >= 0) || (SignKnownOne && Scale < 0);
Hal Finkel45ba2c12014-11-13 09:16:54 +00001001 }
1002 }
1003
Eli Friedmanb78ac542011-09-08 02:37:07 +00001004 Modulo = Modulo ^ (Modulo & (Modulo - 1));
Eli Friedman3d1b3072011-09-08 02:23:31 +00001005
Eli Friedmanb78ac542011-09-08 02:37:07 +00001006 // We can compute the difference between the two addresses
1007 // mod Modulo. Check whether that difference guarantees that the
1008 // two locations do not alias.
1009 uint64_t ModOffset = (uint64_t)GEP1BaseOffset & (Modulo - 1);
Chandler Carruthecbd1682015-06-17 07:21:38 +00001010 if (V1Size != MemoryLocation::UnknownSize &&
1011 V2Size != MemoryLocation::UnknownSize && ModOffset >= V2Size &&
1012 V1Size <= Modulo - ModOffset)
Eli Friedmanb78ac542011-09-08 02:37:07 +00001013 return NoAlias;
Hal Finkel45ba2c12014-11-13 09:16:54 +00001014
1015 // If we know all the variables are positive, then GEP1 >= GEP1BasePtr.
1016 // If GEP1BasePtr > V2 (GEP1BaseOffset > 0) then we know the pointers
1017 // don't alias if V2Size can fit in the gap between V2 and GEP1BasePtr.
Chandler Carruth903c5f92015-08-06 07:57:58 +00001018 if (AllPositive && GEP1BaseOffset > 0 && V2Size <= (uint64_t)GEP1BaseOffset)
Hal Finkel45ba2c12014-11-13 09:16:54 +00001019 return NoAlias;
Eli Friedmanb78ac542011-09-08 02:37:07 +00001020 }
Eli Friedman3d1b3072011-09-08 02:23:31 +00001021
Dan Gohmanadf80ae2011-06-04 06:50:18 +00001022 // Statically, we can see that the base objects are the same, but the
1023 // pointers have dynamic offsets which we can't resolve. And none of our
1024 // little tricks above worked.
1025 //
1026 // TODO: Returning PartialAlias instead of MayAlias is a mild hack; the
1027 // practical effect of this is protecting TBAA in the case of dynamic
Dan Gohman9017b842012-02-17 18:33:38 +00001028 // indices into arrays of unions or malloc'd memory.
Dan Gohmanadf80ae2011-06-04 06:50:18 +00001029 return PartialAlias;
Evan Chengf1f3dd32009-10-13 18:42:04 +00001030}
1031
Chandler Carruthc3f49eb2015-06-22 02:16:51 +00001032static AliasResult MergeAliasResults(AliasResult A, AliasResult B) {
Dan Gohman4e7e7952011-06-03 20:17:36 +00001033 // If the results agree, take it.
1034 if (A == B)
1035 return A;
1036 // A mix of PartialAlias and MustAlias is PartialAlias.
Chandler Carruthc3f49eb2015-06-22 02:16:51 +00001037 if ((A == PartialAlias && B == MustAlias) ||
1038 (B == PartialAlias && A == MustAlias))
1039 return PartialAlias;
Dan Gohman4e7e7952011-06-03 20:17:36 +00001040 // Otherwise, we don't know anything.
Chandler Carruthc3f49eb2015-06-22 02:16:51 +00001041 return MayAlias;
Dan Gohman4e7e7952011-06-03 20:17:36 +00001042}
1043
Chris Lattner98e253262009-11-23 16:45:27 +00001044/// aliasSelect - Provide a bunch of ad-hoc rules to disambiguate a Select
1045/// instruction against another.
Chandler Carruthc3f49eb2015-06-22 02:16:51 +00001046AliasResult BasicAliasAnalysis::aliasSelect(const SelectInst *SI,
1047 uint64_t SISize,
1048 const AAMDNodes &SIAAInfo,
1049 const Value *V2, uint64_t V2Size,
1050 const AAMDNodes &V2AAInfo) {
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001051 // If the values are Selects with the same condition, we can do a more precise
1052 // check: just check for aliases between the values on corresponding arms.
1053 if (const SelectInst *SI2 = dyn_cast<SelectInst>(V2))
1054 if (SI->getCondition() == SI2->getCondition()) {
Chandler Carruth903c5f92015-08-06 07:57:58 +00001055 AliasResult Alias = aliasCheck(SI->getTrueValue(), SISize, SIAAInfo,
1056 SI2->getTrueValue(), V2Size, V2AAInfo);
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001057 if (Alias == MayAlias)
1058 return MayAlias;
1059 AliasResult ThisAlias =
Chandler Carruth903c5f92015-08-06 07:57:58 +00001060 aliasCheck(SI->getFalseValue(), SISize, SIAAInfo,
1061 SI2->getFalseValue(), V2Size, V2AAInfo);
Dan Gohman4e7e7952011-06-03 20:17:36 +00001062 return MergeAliasResults(ThisAlias, Alias);
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001063 }
1064
1065 // If both arms of the Select node NoAlias or MustAlias V2, then returns
1066 // NoAlias / MustAlias. Otherwise, returns MayAlias.
1067 AliasResult Alias =
Chandler Carruth903c5f92015-08-06 07:57:58 +00001068 aliasCheck(V2, V2Size, V2AAInfo, SI->getTrueValue(), SISize, SIAAInfo);
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001069 if (Alias == MayAlias)
1070 return MayAlias;
Dan Gohman7c34ece2010-06-28 21:16:52 +00001071
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001072 AliasResult ThisAlias =
Chandler Carruth903c5f92015-08-06 07:57:58 +00001073 aliasCheck(V2, V2Size, V2AAInfo, SI->getFalseValue(), SISize, SIAAInfo);
Dan Gohman4e7e7952011-06-03 20:17:36 +00001074 return MergeAliasResults(ThisAlias, Alias);
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001075}
1076
Evan Chengf92f5552009-10-14 05:22:03 +00001077// aliasPHI - Provide a bunch of ad-hoc rules to disambiguate a PHI instruction
Evan Cheng31565b32009-10-14 05:05:02 +00001078// against another.
Chandler Carruthc3f49eb2015-06-22 02:16:51 +00001079AliasResult BasicAliasAnalysis::aliasPHI(const PHINode *PN, uint64_t PNSize,
1080 const AAMDNodes &PNAAInfo,
1081 const Value *V2, uint64_t V2Size,
1082 const AAMDNodes &V2AAInfo) {
Arnold Schwaighofer0d10a9d2014-01-02 03:31:36 +00001083 // Track phi nodes we have visited. We use this information when we determine
1084 // value equivalence.
1085 VisitedPhiBBs.insert(PN->getParent());
1086
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001087 // If the values are PHIs in the same block, we can do a more precise
1088 // as well as efficient check: just check for aliases between the values
1089 // on corresponding edges.
1090 if (const PHINode *PN2 = dyn_cast<PHINode>(V2))
1091 if (PN2->getParent() == PN->getParent()) {
Chandler Carruthac80dc72015-06-17 07:18:54 +00001092 LocPair Locs(MemoryLocation(PN, PNSize, PNAAInfo),
1093 MemoryLocation(V2, V2Size, V2AAInfo));
Arnold Schwaighofer8dc34cf2012-09-06 14:41:53 +00001094 if (PN > V2)
1095 std::swap(Locs.first, Locs.second);
Arnold Schwaighoferedd62b12012-12-10 23:02:41 +00001096 // Analyse the PHIs' inputs under the assumption that the PHIs are
1097 // NoAlias.
1098 // If the PHIs are May/MustAlias there must be (recursively) an input
1099 // operand from outside the PHIs' cycle that is MayAlias/MustAlias or
1100 // there must be an operation on the PHIs within the PHIs' value cycle
1101 // that causes a MayAlias.
1102 // Pretend the phis do not alias.
1103 AliasResult Alias = NoAlias;
1104 assert(AliasCache.count(Locs) &&
1105 "There must exist an entry for the phi node");
1106 AliasResult OrigAliasResult = AliasCache[Locs];
1107 AliasCache[Locs] = NoAlias;
Arnold Schwaighofer8dc34cf2012-09-06 14:41:53 +00001108
Hal Finkela6f86fc2012-11-17 02:33:15 +00001109 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001110 AliasResult ThisAlias =
Chandler Carruth903c5f92015-08-06 07:57:58 +00001111 aliasCheck(PN->getIncomingValue(i), PNSize, PNAAInfo,
1112 PN2->getIncomingValueForBlock(PN->getIncomingBlock(i)),
1113 V2Size, V2AAInfo);
Dan Gohman4e7e7952011-06-03 20:17:36 +00001114 Alias = MergeAliasResults(ThisAlias, Alias);
1115 if (Alias == MayAlias)
1116 break;
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001117 }
Arnold Schwaighofer8dc34cf2012-09-06 14:41:53 +00001118
1119 // Reset if speculation failed.
Arnold Schwaighoferedd62b12012-12-10 23:02:41 +00001120 if (Alias != NoAlias)
Arnold Schwaighofer8dc34cf2012-09-06 14:41:53 +00001121 AliasCache[Locs] = OrigAliasResult;
1122
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001123 return Alias;
1124 }
1125
Chandler Carruth903c5f92015-08-06 07:57:58 +00001126 SmallPtrSet<Value *, 4> UniqueSrc;
1127 SmallVector<Value *, 4> V1Srcs;
Tobias Edler von Kochd8ce16b2015-07-15 19:32:22 +00001128 bool isRecursive = false;
Pete Cooper833f34d2015-05-12 20:05:31 +00001129 for (Value *PV1 : PN->incoming_values()) {
Evan Chengc10e88d2009-10-13 22:02:20 +00001130 if (isa<PHINode>(PV1))
1131 // If any of the source itself is a PHI, return MayAlias conservatively
Evan Chengc1eed9d2009-10-14 06:41:49 +00001132 // to avoid compile time explosion. The worst possible case is if both
1133 // sides are PHI nodes. In which case, this is O(m x n) time where 'm'
1134 // and 'n' are the number of PHI sources.
Evan Chengc10e88d2009-10-13 22:02:20 +00001135 return MayAlias;
Tobias Edler von Kochd8ce16b2015-07-15 19:32:22 +00001136
1137 if (EnableRecPhiAnalysis)
1138 if (GEPOperator *PV1GEP = dyn_cast<GEPOperator>(PV1)) {
1139 // Check whether the incoming value is a GEP that advances the pointer
1140 // result of this PHI node (e.g. in a loop). If this is the case, we
1141 // would recurse and always get a MayAlias. Handle this case specially
1142 // below.
1143 if (PV1GEP->getPointerOperand() == PN && PV1GEP->getNumIndices() == 1 &&
1144 isa<ConstantInt>(PV1GEP->idx_begin())) {
1145 isRecursive = true;
1146 continue;
1147 }
1148 }
1149
David Blaikie70573dc2014-11-19 07:49:26 +00001150 if (UniqueSrc.insert(PV1).second)
Evan Chengc10e88d2009-10-13 22:02:20 +00001151 V1Srcs.push_back(PV1);
1152 }
1153
Tobias Edler von Kochd8ce16b2015-07-15 19:32:22 +00001154 // If this PHI node is recursive, set the size of the accessed memory to
1155 // unknown to represent all the possible values the GEP could advance the
1156 // pointer to.
1157 if (isRecursive)
1158 PNSize = MemoryLocation::UnknownSize;
1159
Chandler Carruth903c5f92015-08-06 07:57:58 +00001160 AliasResult Alias =
1161 aliasCheck(V2, V2Size, V2AAInfo, V1Srcs[0], PNSize, PNAAInfo);
Tobias Edler von Kochd8ce16b2015-07-15 19:32:22 +00001162
Evan Chengf92f5552009-10-14 05:22:03 +00001163 // Early exit if the check of the first PHI source against V2 is MayAlias.
1164 // Other results are not possible.
1165 if (Alias == MayAlias)
1166 return MayAlias;
1167
Evan Chengc10e88d2009-10-13 22:02:20 +00001168 // If all sources of the PHI node NoAlias or MustAlias V2, then returns
1169 // NoAlias / MustAlias. Otherwise, returns MayAlias.
Evan Chengc10e88d2009-10-13 22:02:20 +00001170 for (unsigned i = 1, e = V1Srcs.size(); i != e; ++i) {
1171 Value *V = V1Srcs[i];
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001172
Chandler Carruth903c5f92015-08-06 07:57:58 +00001173 AliasResult ThisAlias =
1174 aliasCheck(V2, V2Size, V2AAInfo, V, PNSize, PNAAInfo);
Dan Gohman4e7e7952011-06-03 20:17:36 +00001175 Alias = MergeAliasResults(ThisAlias, Alias);
1176 if (Alias == MayAlias)
1177 break;
Evan Chengc10e88d2009-10-13 22:02:20 +00001178 }
1179
1180 return Alias;
1181}
1182
1183// aliasCheck - Provide a bunch of ad-hoc rules to disambiguate in common cases,
1184// such as array references.
Evan Chengf1f3dd32009-10-13 18:42:04 +00001185//
Chandler Carruthc3f49eb2015-06-22 02:16:51 +00001186AliasResult BasicAliasAnalysis::aliasCheck(const Value *V1, uint64_t V1Size,
1187 AAMDNodes V1AAInfo, const Value *V2,
1188 uint64_t V2Size,
1189 AAMDNodes V2AAInfo) {
Dan Gohmancb45bd92010-04-08 18:11:50 +00001190 // If either of the memory references is empty, it doesn't matter what the
1191 // pointer values are.
1192 if (V1Size == 0 || V2Size == 0)
1193 return NoAlias;
1194
Evan Chengf1f3dd32009-10-13 18:42:04 +00001195 // Strip off any casts if they exist.
1196 V1 = V1->stripPointerCasts();
1197 V2 = V2->stripPointerCasts();
1198
Daniel Berlin3459d6e2015-05-05 18:10:49 +00001199 // If V1 or V2 is undef, the result is NoAlias because we can always pick a
1200 // value for undef that aliases nothing in the program.
1201 if (isa<UndefValue>(V1) || isa<UndefValue>(V2))
1202 return NoAlias;
1203
Evan Chengf1f3dd32009-10-13 18:42:04 +00001204 // Are we checking for alias of the same value?
Arnold Schwaighofer833a82e2014-01-03 05:47:03 +00001205 // Because we look 'through' phi nodes we could look at "Value" pointers from
1206 // different iterations. We must therefore make sure that this is not the
1207 // case. The function isValueEqualInPotentialCycles ensures that this cannot
1208 // happen by looking at the visited phi nodes and making sure they cannot
1209 // reach the value.
1210 if (isValueEqualInPotentialCycles(V1, V2))
1211 return MustAlias;
Evan Chengf1f3dd32009-10-13 18:42:04 +00001212
Duncan Sands19d0b472010-02-16 11:11:14 +00001213 if (!V1->getType()->isPointerTy() || !V2->getType()->isPointerTy())
Chandler Carruth903c5f92015-08-06 07:57:58 +00001214 return NoAlias; // Scalars cannot alias each other
Evan Chengf1f3dd32009-10-13 18:42:04 +00001215
1216 // Figure out what objects these things are pointing to if we can.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001217 const Value *O1 = GetUnderlyingObject(V1, *DL, MaxLookupSearchDepth);
1218 const Value *O2 = GetUnderlyingObject(V2, *DL, MaxLookupSearchDepth);
Evan Chengf1f3dd32009-10-13 18:42:04 +00001219
Dan Gohmanccb45842009-11-09 19:29:11 +00001220 // Null values in the default address space don't point to any object, so they
1221 // don't alias any other pointer.
1222 if (const ConstantPointerNull *CPN = dyn_cast<ConstantPointerNull>(O1))
1223 if (CPN->getType()->getAddressSpace() == 0)
1224 return NoAlias;
1225 if (const ConstantPointerNull *CPN = dyn_cast<ConstantPointerNull>(O2))
1226 if (CPN->getType()->getAddressSpace() == 0)
1227 return NoAlias;
1228
Evan Chengf1f3dd32009-10-13 18:42:04 +00001229 if (O1 != O2) {
1230 // If V1/V2 point to two different objects we know that we have no alias.
Dan Gohman00ef9322010-07-07 14:27:09 +00001231 if (isIdentifiedObject(O1) && isIdentifiedObject(O2))
Evan Chengf1f3dd32009-10-13 18:42:04 +00001232 return NoAlias;
Nick Lewyckyc53e2ec2009-11-14 06:15:14 +00001233
1234 // Constant pointers can't alias with non-const isIdentifiedObject objects.
Dan Gohman00ef9322010-07-07 14:27:09 +00001235 if ((isa<Constant>(O1) && isIdentifiedObject(O2) && !isa<Constant>(O2)) ||
1236 (isa<Constant>(O2) && isIdentifiedObject(O1) && !isa<Constant>(O1)))
Nick Lewyckyc53e2ec2009-11-14 06:15:14 +00001237 return NoAlias;
1238
Michael Kupersteinf3e663a2013-05-28 08:17:48 +00001239 // Function arguments can't alias with things that are known to be
1240 // unambigously identified at the function level.
1241 if ((isa<Argument>(O1) && isIdentifiedFunctionLocal(O2)) ||
1242 (isa<Argument>(O2) && isIdentifiedFunctionLocal(O1)))
Dan Gohman84f90a32010-07-01 20:08:40 +00001243 return NoAlias;
Evan Chengf1f3dd32009-10-13 18:42:04 +00001244
1245 // Most objects can't alias null.
Dan Gohman00ef9322010-07-07 14:27:09 +00001246 if ((isa<ConstantPointerNull>(O2) && isKnownNonNull(O1)) ||
1247 (isa<ConstantPointerNull>(O1) && isKnownNonNull(O2)))
Evan Chengf1f3dd32009-10-13 18:42:04 +00001248 return NoAlias;
Jakub Staszak07f383f2013-08-24 14:16:00 +00001249
Dan Gohman5b0a8a82010-07-07 14:30:04 +00001250 // If one pointer is the result of a call/invoke or load and the other is a
1251 // non-escaping local object within the same function, then we know the
1252 // object couldn't escape to a point where the call could return it.
1253 //
1254 // Note that if the pointers are in different functions, there are a
1255 // variety of complications. A call with a nocapture argument may still
1256 // temporary store the nocapture argument's value in a temporary memory
1257 // location if that memory location doesn't escape. Or it may pass a
1258 // nocapture value to other functions as long as they don't capture it.
1259 if (isEscapeSource(O1) && isNonEscapingLocalObject(O2))
1260 return NoAlias;
1261 if (isEscapeSource(O2) && isNonEscapingLocalObject(O1))
1262 return NoAlias;
1263 }
1264
Evan Chengf1f3dd32009-10-13 18:42:04 +00001265 // If the size of one access is larger than the entire object on the other
1266 // side, then we know such behavior is undefined and can assume no alias.
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001267 if (DL)
Chandler Carruthecbd1682015-06-17 07:21:38 +00001268 if ((V1Size != MemoryLocation::UnknownSize &&
1269 isObjectSmallerThan(O2, V1Size, *DL, *TLI)) ||
1270 (V2Size != MemoryLocation::UnknownSize &&
1271 isObjectSmallerThan(O1, V2Size, *DL, *TLI)))
Evan Chengf1f3dd32009-10-13 18:42:04 +00001272 return NoAlias;
Jakub Staszak07f383f2013-08-24 14:16:00 +00001273
Dan Gohmanfb02cec2011-06-04 00:31:50 +00001274 // Check the cache before climbing up use-def chains. This also terminates
1275 // otherwise infinitely recursive queries.
Chandler Carruthac80dc72015-06-17 07:18:54 +00001276 LocPair Locs(MemoryLocation(V1, V1Size, V1AAInfo),
1277 MemoryLocation(V2, V2Size, V2AAInfo));
Dan Gohmanfb02cec2011-06-04 00:31:50 +00001278 if (V1 > V2)
1279 std::swap(Locs.first, Locs.second);
1280 std::pair<AliasCacheTy::iterator, bool> Pair =
Chandler Carruth903c5f92015-08-06 07:57:58 +00001281 AliasCache.insert(std::make_pair(Locs, MayAlias));
Dan Gohmanfb02cec2011-06-04 00:31:50 +00001282 if (!Pair.second)
1283 return Pair.first->second;
1284
Chris Lattner89288992009-11-26 02:13:03 +00001285 // FIXME: This isn't aggressively handling alias(GEP, PHI) for example: if the
1286 // GEP can't simplify, we don't even look at the PHI cases.
Chris Lattnerb2647b92009-10-17 23:48:54 +00001287 if (!isa<GEPOperator>(V1) && isa<GEPOperator>(V2)) {
Chris Lattnerd6a2a992003-02-26 19:41:54 +00001288 std::swap(V1, V2);
1289 std::swap(V1Size, V2Size);
Chris Lattner5341c962009-11-26 02:14:59 +00001290 std::swap(O1, O2);
Hal Finkelcc39b672014-07-24 12:16:19 +00001291 std::swap(V1AAInfo, V2AAInfo);
Chris Lattnerd6a2a992003-02-26 19:41:54 +00001292 }
Dan Gohman02538ac2010-10-18 18:04:47 +00001293 if (const GEPOperator *GV1 = dyn_cast<GEPOperator>(V1)) {
Chandler Carruth903c5f92015-08-06 07:57:58 +00001294 AliasResult Result =
1295 aliasGEP(GV1, V1Size, V1AAInfo, V2, V2Size, V2AAInfo, O1, O2);
1296 if (Result != MayAlias)
1297 return AliasCache[Locs] = Result;
Dan Gohman02538ac2010-10-18 18:04:47 +00001298 }
Evan Chengc10e88d2009-10-13 22:02:20 +00001299
1300 if (isa<PHINode>(V2) && !isa<PHINode>(V1)) {
1301 std::swap(V1, V2);
1302 std::swap(V1Size, V2Size);
Hal Finkelcc39b672014-07-24 12:16:19 +00001303 std::swap(V1AAInfo, V2AAInfo);
Evan Chengc10e88d2009-10-13 22:02:20 +00001304 }
Dan Gohman02538ac2010-10-18 18:04:47 +00001305 if (const PHINode *PN = dyn_cast<PHINode>(V1)) {
Chandler Carruth903c5f92015-08-06 07:57:58 +00001306 AliasResult Result = aliasPHI(PN, V1Size, V1AAInfo, V2, V2Size, V2AAInfo);
1307 if (Result != MayAlias)
1308 return AliasCache[Locs] = Result;
Dan Gohman02538ac2010-10-18 18:04:47 +00001309 }
Misha Brukman01808ca2005-04-21 21:13:18 +00001310
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001311 if (isa<SelectInst>(V2) && !isa<SelectInst>(V1)) {
1312 std::swap(V1, V2);
1313 std::swap(V1Size, V2Size);
Hal Finkelcc39b672014-07-24 12:16:19 +00001314 std::swap(V1AAInfo, V2AAInfo);
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001315 }
Dan Gohman02538ac2010-10-18 18:04:47 +00001316 if (const SelectInst *S1 = dyn_cast<SelectInst>(V1)) {
Chandler Carruth903c5f92015-08-06 07:57:58 +00001317 AliasResult Result =
1318 aliasSelect(S1, V1Size, V1AAInfo, V2, V2Size, V2AAInfo);
1319 if (Result != MayAlias)
1320 return AliasCache[Locs] = Result;
Dan Gohman02538ac2010-10-18 18:04:47 +00001321 }
Dan Gohman3b7ba5f2009-10-26 21:55:43 +00001322
Dan Gohman44da55b2011-01-18 21:16:06 +00001323 // If both pointers are pointing into the same object and one of them
1324 // accesses is accessing the entire object, then the accesses must
1325 // overlap in some way.
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001326 if (DL && O1 == O2)
Chandler Carruthecbd1682015-06-17 07:21:38 +00001327 if ((V1Size != MemoryLocation::UnknownSize &&
1328 isObjectSize(O1, V1Size, *DL, *TLI)) ||
1329 (V2Size != MemoryLocation::UnknownSize &&
1330 isObjectSize(O2, V2Size, *DL, *TLI)))
Dan Gohmanfb02cec2011-06-04 00:31:50 +00001331 return AliasCache[Locs] = PartialAlias;
Dan Gohman44da55b2011-01-18 21:16:06 +00001332
Dan Gohmanfb02cec2011-06-04 00:31:50 +00001333 AliasResult Result =
Chandler Carruthac80dc72015-06-17 07:18:54 +00001334 AliasAnalysis::alias(MemoryLocation(V1, V1Size, V1AAInfo),
1335 MemoryLocation(V2, V2Size, V2AAInfo));
Dan Gohmanfb02cec2011-06-04 00:31:50 +00001336 return AliasCache[Locs] = Result;
Chris Lattnerd6a2a992003-02-26 19:41:54 +00001337}
Arnold Schwaighofer0d10a9d2014-01-02 03:31:36 +00001338
Arnold Schwaighofer833a82e2014-01-03 05:47:03 +00001339bool BasicAliasAnalysis::isValueEqualInPotentialCycles(const Value *V,
1340 const Value *V2) {
Arnold Schwaighofer0d10a9d2014-01-02 03:31:36 +00001341 if (V != V2)
1342 return false;
1343
1344 const Instruction *Inst = dyn_cast<Instruction>(V);
1345 if (!Inst)
1346 return true;
1347
Daniel Berlin9e77de22015-03-20 18:05:49 +00001348 if (VisitedPhiBBs.empty())
1349 return true;
1350
Arnold Schwaighofer833a82e2014-01-03 05:47:03 +00001351 if (VisitedPhiBBs.size() > MaxNumPhiBBsValueReachabilityCheck)
1352 return false;
1353
1354 // Use dominance or loop info if available.
Chandler Carruth73523022014-01-13 13:07:17 +00001355 DominatorTreeWrapperPass *DTWP =
1356 getAnalysisIfAvailable<DominatorTreeWrapperPass>();
Craig Topper9f008862014-04-15 04:59:12 +00001357 DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr;
Chandler Carruth4f8f3072015-01-17 14:16:18 +00001358 auto *LIWP = getAnalysisIfAvailable<LoopInfoWrapperPass>();
1359 LoopInfo *LI = LIWP ? &LIWP->getLoopInfo() : nullptr;
Arnold Schwaighofer833a82e2014-01-03 05:47:03 +00001360
1361 // Make sure that the visited phis cannot reach the Value. This ensures that
1362 // the Values cannot come from different iterations of a potential cycle the
1363 // phi nodes could be involved in.
Craig Topper46276792014-08-24 23:23:06 +00001364 for (auto *P : VisitedPhiBBs)
1365 if (isPotentiallyReachable(P->begin(), Inst, DT, LI))
Arnold Schwaighofer0d10a9d2014-01-02 03:31:36 +00001366 return false;
1367
Arnold Schwaighofer833a82e2014-01-03 05:47:03 +00001368 return true;
Arnold Schwaighofer0d10a9d2014-01-02 03:31:36 +00001369}
1370
1371/// GetIndexDifference - Dest and Src are the variable indices from two
1372/// decomposed GetElementPtr instructions GEP1 and GEP2 which have common base
1373/// pointers. Subtract the GEP2 indices from GEP1 to find the symbolic
1374/// difference between the two pointers.
1375void BasicAliasAnalysis::GetIndexDifference(
1376 SmallVectorImpl<VariableGEPIndex> &Dest,
1377 const SmallVectorImpl<VariableGEPIndex> &Src) {
1378 if (Src.empty())
1379 return;
1380
1381 for (unsigned i = 0, e = Src.size(); i != e; ++i) {
1382 const Value *V = Src[i].V;
Manuel Klimek779cf852015-07-13 13:50:55 +00001383 ExtensionKind Extension = Src[i].Extension;
Arnold Schwaighofer0d10a9d2014-01-02 03:31:36 +00001384 int64_t Scale = Src[i].Scale;
1385
1386 // Find V in Dest. This is N^2, but pointer indices almost never have more
1387 // than a few variable indexes.
1388 for (unsigned j = 0, e = Dest.size(); j != e; ++j) {
Arnold Schwaighofer833a82e2014-01-03 05:47:03 +00001389 if (!isValueEqualInPotentialCycles(Dest[j].V, V) ||
Manuel Klimek779cf852015-07-13 13:50:55 +00001390 Dest[j].Extension != Extension)
Arnold Schwaighofer0d10a9d2014-01-02 03:31:36 +00001391 continue;
1392
1393 // If we found it, subtract off Scale V's from the entry in Dest. If it
1394 // goes to zero, remove the entry.
1395 if (Dest[j].Scale != Scale)
1396 Dest[j].Scale -= Scale;
1397 else
1398 Dest.erase(Dest.begin() + j);
1399 Scale = 0;
1400 break;
1401 }
1402
1403 // If we didn't consume this entry, add it to the end of the Dest list.
1404 if (Scale) {
Chandler Carruth903c5f92015-08-06 07:57:58 +00001405 VariableGEPIndex Entry = {V, Extension, -Scale};
Arnold Schwaighofer0d10a9d2014-01-02 03:31:36 +00001406 Dest.push_back(Entry);
1407 }
1408 }
1409}