blob: 8129795bc0c12380d03a7599c39429d8df542f02 [file] [log] [blame]
Dan Gohmandd9344f2010-05-28 16:19:17 +00001//===- Loads.cpp - Local load analysis ------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines simple local analyses for load instructions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Analysis/Loads.h"
15#include "llvm/Analysis/AliasAnalysis.h"
Nuno Lopes1ef05b12012-12-31 17:42:11 +000016#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000017#include "llvm/IR/DataLayout.h"
18#include "llvm/IR/GlobalAlias.h"
19#include "llvm/IR/GlobalVariable.h"
20#include "llvm/IR/IntrinsicInst.h"
21#include "llvm/IR/LLVMContext.h"
Mehdi Aminia716c072015-03-03 22:01:13 +000022#include "llvm/IR/Module.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000023#include "llvm/IR/Operator.h"
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +000024#include "llvm/IR/Statepoint.h"
25
Dan Gohmandd9344f2010-05-28 16:19:17 +000026using namespace llvm;
27
Benjamin Kramer36538ff2016-06-08 19:09:22 +000028static bool isAligned(const Value *Base, const APInt &Offset, unsigned Align,
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +000029 const DataLayout &DL) {
30 APInt BaseAlign(Offset.getBitWidth(), Base->getPointerAlignment(DL));
31
32 if (!BaseAlign) {
33 Type *Ty = Base->getType()->getPointerElementType();
34 if (!Ty->isSized())
35 return false;
36 BaseAlign = DL.getABITypeAlignment(Ty);
37 }
38
39 APInt Alignment(Offset.getBitWidth(), Align);
40
41 assert(Alignment.isPowerOf2() && "must be a power of 2!");
42 return BaseAlign.uge(Alignment) && !(Offset & (Alignment-1));
43}
44
45static bool isAligned(const Value *Base, unsigned Align, const DataLayout &DL) {
46 Type *Ty = Base->getType();
47 assert(Ty->isSized() && "must be sized");
48 APInt Offset(DL.getTypeStoreSizeInBits(Ty), 0);
49 return isAligned(Base, Offset, Align, DL);
50}
51
52/// Test if V is always a pointer to allocated and suitably aligned memory for
53/// a simple load or store.
54static bool isDereferenceableAndAlignedPointer(
Benjamin Kramer36538ff2016-06-08 19:09:22 +000055 const Value *V, unsigned Align, const APInt &Size, const DataLayout &DL,
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +000056 const Instruction *CtxI, const DominatorTree *DT,
Sean Silvae82e4dd2016-07-02 23:47:27 +000057 SmallPtrSetImpl<const Value *> &Visited) {
David Majnemer8b6ce012016-08-31 03:22:32 +000058 // Already visited? Bail out, we've likely hit unreachable code.
59 if (!Visited.insert(V).second)
60 return false;
61
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +000062 // Note that it is not safe to speculate into a malloc'd region because
63 // malloc may return null.
64
Sanjoy Das07e4e552016-06-01 16:47:45 +000065 // bitcast instructions are no-ops as far as dereferenceability is concerned.
66 if (const BitCastOperator *BC = dyn_cast<BitCastOperator>(V))
67 return isDereferenceableAndAlignedPointer(BC->getOperand(0), Align, Size,
Sean Silvae82e4dd2016-07-02 23:47:27 +000068 DL, CtxI, DT, Visited);
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +000069
Sanjoy Dascfd36772016-06-02 00:52:53 +000070 bool CheckForNonNull = false;
71 APInt KnownDerefBytes(Size.getBitWidth(),
72 V->getPointerDereferenceableBytes(DL, CheckForNonNull));
73 if (KnownDerefBytes.getBoolValue()) {
74 if (KnownDerefBytes.uge(Size))
Nuno Lopesfe353a02017-09-09 18:23:11 +000075 if (!CheckForNonNull || isKnownNonZero(V, DL, 0, nullptr, CtxI, DT))
Sanjoy Dascfd36772016-06-02 00:52:53 +000076 return isAligned(V, Align, DL);
77 }
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +000078
79 // For GEPs, determine if the indexing lands within the allocated object.
80 if (const GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +000081 const Value *Base = GEP->getPointerOperand();
82
Elena Demikhovsky8e229ec2018-02-14 06:58:08 +000083 APInt Offset(DL.getIndexTypeSizeInBits(GEP->getType()), 0);
Sanjoy Das07e4e552016-06-01 16:47:45 +000084 if (!GEP->accumulateConstantOffset(DL, Offset) || Offset.isNegative() ||
85 !Offset.urem(APInt(Offset.getBitWidth(), Align)).isMinValue())
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +000086 return false;
87
Sanjoy Das07e4e552016-06-01 16:47:45 +000088 // If the base pointer is dereferenceable for Offset+Size bytes, then the
89 // GEP (== Base + Offset) is dereferenceable for Size bytes. If the base
90 // pointer is aligned to Align bytes, and the Offset is divisible by Align
91 // then the GEP (== Base + Offset == k_0 * Align + k_1 * Align) is also
92 // aligned to Align bytes.
93
Tom Stellardd0b25b02016-10-28 15:32:28 +000094 // Offset and Size may have different bit widths if we have visited an
95 // addrspacecast, so we can't do arithmetic directly on the APInt values.
96 return isDereferenceableAndAlignedPointer(
97 Base, Align, Offset + Size.sextOrTrunc(Offset.getBitWidth()),
98 DL, CtxI, DT, Visited);
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +000099 }
100
101 // For gc.relocate, look through relocations
102 if (const GCRelocateInst *RelocateInst = dyn_cast<GCRelocateInst>(V))
103 return isDereferenceableAndAlignedPointer(
Sean Silvae82e4dd2016-07-02 23:47:27 +0000104 RelocateInst->getDerivedPtr(), Align, Size, DL, CtxI, DT, Visited);
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +0000105
106 if (const AddrSpaceCastInst *ASC = dyn_cast<AddrSpaceCastInst>(V))
Sanjoy Das07e4e552016-06-01 16:47:45 +0000107 return isDereferenceableAndAlignedPointer(ASC->getOperand(0), Align, Size,
Sean Silvae82e4dd2016-07-02 23:47:27 +0000108 DL, CtxI, DT, Visited);
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +0000109
Chandler Carruth81aa7122019-01-07 05:42:51 +0000110 if (const auto *Call = dyn_cast<CallBase>(V))
111 if (auto *RP = getArgumentAliasingToReturnedPointer(Call))
Piotr Padlewski2e3226a2018-05-23 09:16:44 +0000112 return isDereferenceableAndAlignedPointer(RP, Align, Size, DL, CtxI, DT,
Hal Finkel0017f362016-07-11 03:08:49 +0000113 Visited);
Piotr Padlewski2e3226a2018-05-23 09:16:44 +0000114
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +0000115 // If we don't know, assume the worst.
116 return false;
117}
118
119bool llvm::isDereferenceableAndAlignedPointer(const Value *V, unsigned Align,
Vitaly Buka2587e3e2017-06-24 01:35:13 +0000120 const APInt &Size,
121 const DataLayout &DL,
122 const Instruction *CtxI,
123 const DominatorTree *DT) {
124 SmallPtrSet<const Value *, 32> Visited;
125 return ::isDereferenceableAndAlignedPointer(V, Align, Size, DL, CtxI, DT,
126 Visited);
127}
128
129bool llvm::isDereferenceableAndAlignedPointer(const Value *V, unsigned Align,
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +0000130 const DataLayout &DL,
131 const Instruction *CtxI,
Sean Silvae82e4dd2016-07-02 23:47:27 +0000132 const DominatorTree *DT) {
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +0000133 // When dereferenceability information is provided by a dereferenceable
134 // attribute, we know exactly how many bytes are dereferenceable. If we can
135 // determine the exact offset to the attributed variable, we can use that
136 // information here.
137 Type *VTy = V->getType();
138 Type *Ty = VTy->getPointerElementType();
139
140 // Require ABI alignment for loads without alignment specification
141 if (Align == 0)
142 Align = DL.getABITypeAlignment(Ty);
143
Sanjoy Das07e4e552016-06-01 16:47:45 +0000144 if (!Ty->isSized())
145 return false;
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +0000146
147 SmallPtrSet<const Value *, 32> Visited;
Sanjoy Das07e4e552016-06-01 16:47:45 +0000148 return ::isDereferenceableAndAlignedPointer(
Elena Demikhovsky8e229ec2018-02-14 06:58:08 +0000149 V, Align, APInt(DL.getIndexTypeSizeInBits(VTy), DL.getTypeStoreSize(Ty)), DL,
Sean Silvae82e4dd2016-07-02 23:47:27 +0000150 CtxI, DT, Visited);
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +0000151}
152
153bool llvm::isDereferenceablePointer(const Value *V, const DataLayout &DL,
154 const Instruction *CtxI,
Sean Silvae82e4dd2016-07-02 23:47:27 +0000155 const DominatorTree *DT) {
156 return isDereferenceableAndAlignedPointer(V, 1, DL, CtxI, DT);
Artur Pilipenkoba9f09c2016-02-24 12:49:04 +0000157}
158
Adrian Prantl26b584c2018-05-01 15:54:18 +0000159/// Test if A and B will obviously have the same value.
Chandler Carruthe99ca832014-10-18 23:31:55 +0000160///
161/// This includes recognizing that %t0 and %t1 will have the same
Dan Gohmandd9344f2010-05-28 16:19:17 +0000162/// value in code like this:
Chandler Carruthe99ca832014-10-18 23:31:55 +0000163/// \code
Dan Gohmandd9344f2010-05-28 16:19:17 +0000164/// %t0 = getelementptr \@a, 0, 3
165/// store i32 0, i32* %t0
166/// %t1 = getelementptr \@a, 0, 3
167/// %t2 = load i32* %t1
Chandler Carruthe99ca832014-10-18 23:31:55 +0000168/// \endcode
Dan Gohmandd9344f2010-05-28 16:19:17 +0000169///
170static bool AreEquivalentAddressValues(const Value *A, const Value *B) {
171 // Test if the values are trivially equivalent.
Chandler Carruth28502a82014-10-18 23:41:25 +0000172 if (A == B)
173 return true;
Hans Wennborg68df6082011-06-03 17:15:37 +0000174
Dan Gohmandd9344f2010-05-28 16:19:17 +0000175 // Test if the values come from identical arithmetic instructions.
176 // Use isIdenticalToWhenDefined instead of isIdenticalTo because
177 // this function is only used when one address use dominates the
178 // other, which means that they'll always either have the same
179 // value or one of them will have an undefined value.
Chandler Carruth28502a82014-10-18 23:41:25 +0000180 if (isa<BinaryOperator>(A) || isa<CastInst>(A) || isa<PHINode>(A) ||
181 isa<GetElementPtrInst>(A))
Dan Gohmandd9344f2010-05-28 16:19:17 +0000182 if (const Instruction *BI = dyn_cast<Instruction>(B))
183 if (cast<Instruction>(A)->isIdenticalToWhenDefined(BI))
184 return true;
Hans Wennborg68df6082011-06-03 17:15:37 +0000185
Dan Gohmandd9344f2010-05-28 16:19:17 +0000186 // Otherwise they may not be equivalent.
187 return false;
188}
189
Adrian Prantl26b584c2018-05-01 15:54:18 +0000190/// Check if executing a load of this pointer value cannot trap.
Chandler Carruthdacb8a62014-10-18 23:46:17 +0000191///
Artur Pilipenkoaeb3be12016-04-27 11:00:48 +0000192/// If DT and ScanFrom are specified this method performs context-sensitive
193/// analysis and returns true if it is safe to load immediately before ScanFrom.
Artur Pilipenko5880de52016-02-11 13:42:59 +0000194///
Chandler Carruthdacb8a62014-10-18 23:46:17 +0000195/// If it is not obviously safe to load from the specified pointer, we do
196/// a quick local scan of the basic block containing \c ScanFrom, to determine
197/// if the address is already accessed.
198///
199/// This uses the pointee type to determine how many bytes need to be safe to
200/// load from the pointer.
Artur Pilipenko69ba2162016-01-15 15:27:46 +0000201bool llvm::isSafeToLoadUnconditionally(Value *V, unsigned Align,
Artur Pilipenkoaeb3be12016-04-27 11:00:48 +0000202 const DataLayout &DL,
Artur Pilipenko5880de52016-02-11 13:42:59 +0000203 Instruction *ScanFrom,
Sean Silvae82e4dd2016-07-02 23:47:27 +0000204 const DominatorTree *DT) {
Artur Pilipenkof2e7bb52015-06-25 12:18:43 +0000205 // Zero alignment means that the load has the ABI alignment for the target
206 if (Align == 0)
207 Align = DL.getABITypeAlignment(V->getType()->getPointerElementType());
208 assert(isPowerOf2_32(Align));
209
Artur Pilipenko5880de52016-02-11 13:42:59 +0000210 // If DT is not specified we can't make context-sensitive query
211 const Instruction* CtxI = DT ? ScanFrom : nullptr;
Sean Silvae82e4dd2016-07-02 23:47:27 +0000212 if (isDereferenceableAndAlignedPointer(V, Align, DL, CtxI, DT))
Artur Pilipenkoae316aa2016-01-17 12:35:29 +0000213 return true;
214
Nuno Lopes1ef05b12012-12-31 17:42:11 +0000215 int64_t ByteOffset = 0;
Dan Gohmandd9344f2010-05-28 16:19:17 +0000216 Value *Base = V;
Chandler Carruth652627d2014-10-18 23:47:22 +0000217 Base = GetPointerBaseWithConstantOffset(V, ByteOffset, DL);
Nuno Lopes1ef05b12012-12-31 17:42:11 +0000218
219 if (ByteOffset < 0) // out of bounds
220 return false;
Dan Gohmandd9344f2010-05-28 16:19:17 +0000221
Craig Topper570e52c2014-04-15 04:59:12 +0000222 Type *BaseType = nullptr;
Dan Gohmandd9344f2010-05-28 16:19:17 +0000223 unsigned BaseAlign = 0;
224 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Base)) {
225 // An alloca is safe to load from as load as it is suitably aligned.
226 BaseType = AI->getAllocatedType();
227 BaseAlign = AI->getAlignment();
Nuno Lopes1ef05b12012-12-31 17:42:11 +0000228 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Base)) {
Chandler Carruthf84407b2014-10-19 00:42:16 +0000229 // Global variables are not necessarily safe to load from if they are
Sanjoy Dasc9e3e3c2016-04-08 00:48:30 +0000230 // interposed arbitrarily. Their size may change or they may be weak and
231 // require a test to determine if they were in fact provided.
232 if (!GV->isInterposable()) {
Dan Gohmandd9344f2010-05-28 16:19:17 +0000233 BaseType = GV->getType()->getElementType();
234 BaseAlign = GV->getAlignment();
235 }
236 }
237
Chandler Carruth35c4e072014-10-20 00:24:14 +0000238 PointerType *AddrTy = cast<PointerType>(V->getType());
Mehdi Amini529919f2015-03-10 02:37:25 +0000239 uint64_t LoadSize = DL.getTypeStoreSize(AddrTy->getElementType());
Chandler Carruth35c4e072014-10-20 00:24:14 +0000240
Chandler Carruthf84407b2014-10-19 00:42:16 +0000241 // If we found a base allocated type from either an alloca or global variable,
242 // try to see if we are definitively within the allocated region. We need to
243 // know the size of the base type and the loaded type to do anything in this
Mehdi Amini529919f2015-03-10 02:37:25 +0000244 // case.
245 if (BaseType && BaseType->isSized()) {
Chandler Carruthf84407b2014-10-19 00:42:16 +0000246 if (BaseAlign == 0)
Mehdi Amini529919f2015-03-10 02:37:25 +0000247 BaseAlign = DL.getPrefTypeAlignment(BaseType);
Dan Gohmandd9344f2010-05-28 16:19:17 +0000248
249 if (Align <= BaseAlign) {
Dan Gohmandd9344f2010-05-28 16:19:17 +0000250 // Check if the load is within the bounds of the underlying object.
Mehdi Amini529919f2015-03-10 02:37:25 +0000251 if (ByteOffset + LoadSize <= DL.getTypeAllocSize(BaseType) &&
Artur Pilipenkof2e7bb52015-06-25 12:18:43 +0000252 ((ByteOffset % Align) == 0))
Dan Gohmandd9344f2010-05-28 16:19:17 +0000253 return true;
254 }
255 }
256
Artur Pilipenkoaeb3be12016-04-27 11:00:48 +0000257 if (!ScanFrom)
258 return false;
259
Dan Gohmandd9344f2010-05-28 16:19:17 +0000260 // Otherwise, be a little bit aggressive by scanning the local block where we
261 // want to check to see if the pointer is already being loaded or stored
262 // from/to. If so, the previous load or store would have already trapped,
263 // so there is no harm doing an extra load (also, CSE will later eliminate
264 // the load entirely).
Duncan P. N. Exon Smithd3a5adc2015-10-10 00:53:03 +0000265 BasicBlock::iterator BBI = ScanFrom->getIterator(),
266 E = ScanFrom->getParent()->begin();
Dan Gohmandd9344f2010-05-28 16:19:17 +0000267
Chandler Carruth35c4e072014-10-20 00:24:14 +0000268 // We can at least always strip pointer casts even though we can't use the
269 // base here.
270 V = V->stripPointerCasts();
271
Dan Gohmandd9344f2010-05-28 16:19:17 +0000272 while (BBI != E) {
273 --BBI;
274
275 // If we see a free or a call which may write to memory (i.e. which might do
276 // a free) the pointer could be marked invalid.
277 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() &&
278 !isa<DbgInfoIntrinsic>(BBI))
279 return false;
280
Chandler Carruth35c4e072014-10-20 00:24:14 +0000281 Value *AccessedPtr;
Artur Pilipenkof2e7bb52015-06-25 12:18:43 +0000282 unsigned AccessedAlign;
283 if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) {
Chandler Carruth35c4e072014-10-20 00:24:14 +0000284 AccessedPtr = LI->getPointerOperand();
Artur Pilipenkof2e7bb52015-06-25 12:18:43 +0000285 AccessedAlign = LI->getAlignment();
286 } else if (StoreInst *SI = dyn_cast<StoreInst>(BBI)) {
Chandler Carruth35c4e072014-10-20 00:24:14 +0000287 AccessedPtr = SI->getPointerOperand();
Artur Pilipenkof2e7bb52015-06-25 12:18:43 +0000288 AccessedAlign = SI->getAlignment();
289 } else
290 continue;
291
292 Type *AccessedTy = AccessedPtr->getType()->getPointerElementType();
293 if (AccessedAlign == 0)
294 AccessedAlign = DL.getABITypeAlignment(AccessedTy);
295 if (AccessedAlign < Align)
Chandler Carruth35c4e072014-10-20 00:24:14 +0000296 continue;
297
Mehdi Amini529919f2015-03-10 02:37:25 +0000298 // Handle trivial cases.
Chandler Carruth35c4e072014-10-20 00:24:14 +0000299 if (AccessedPtr == V)
300 return true;
301
Chandler Carruth35c4e072014-10-20 00:24:14 +0000302 if (AreEquivalentAddressValues(AccessedPtr->stripPointerCasts(), V) &&
Artur Pilipenkof2e7bb52015-06-25 12:18:43 +0000303 LoadSize <= DL.getTypeStoreSize(AccessedTy))
Chandler Carruth35c4e072014-10-20 00:24:14 +0000304 return true;
Dan Gohmandd9344f2010-05-28 16:19:17 +0000305 }
306 return false;
307}
308
Larisse Voufo69328802015-09-18 19:14:35 +0000309/// DefMaxInstsToScan - the default number of maximum instructions
310/// to scan in the block, used by FindAvailableLoadedValue().
311/// FindAvailableLoadedValue() was introduced in r60148, to improve jump
312/// threading in part by eliminating partially redundant loads.
313/// At that point, the value of MaxInstsToScan was already set to '6'
314/// without documented explanation.
315cl::opt<unsigned>
316llvm::DefMaxInstsToScan("available-load-scan-limit", cl::init(6), cl::Hidden,
317 cl::desc("Use this to specify the default maximum number of instructions "
318 "to scan backward from a given instruction, when searching for "
319 "available loaded value"));
320
Eli Friedman97b394f2016-08-08 04:10:22 +0000321Value *llvm::FindAvailableLoadedValue(LoadInst *Load,
322 BasicBlock *ScanBB,
Dan Gohmandd9344f2010-05-28 16:19:17 +0000323 BasicBlock::iterator &ScanFrom,
324 unsigned MaxInstsToScan,
Xin Tong966ca1d2017-03-19 15:27:52 +0000325 AliasAnalysis *AA, bool *IsLoad,
Jun Bum Lim0de282c2017-02-02 15:12:34 +0000326 unsigned *NumScanedInst) {
Xin Tong966ca1d2017-03-19 15:27:52 +0000327 // Don't CSE load that is volatile or anything stronger than unordered.
Anna Thomasadd1bef2016-07-08 22:15:08 +0000328 if (!Load->isUnordered())
329 return nullptr;
330
Xin Tong966ca1d2017-03-19 15:27:52 +0000331 return FindAvailablePtrLoadStore(
332 Load->getPointerOperand(), Load->getType(), Load->isAtomic(), ScanBB,
333 ScanFrom, MaxInstsToScan, AA, IsLoad, NumScanedInst);
334}
335
336Value *llvm::FindAvailablePtrLoadStore(Value *Ptr, Type *AccessTy,
337 bool AtLeastAtomic, BasicBlock *ScanBB,
338 BasicBlock::iterator &ScanFrom,
339 unsigned MaxInstsToScan,
340 AliasAnalysis *AA, bool *IsLoadCSE,
341 unsigned *NumScanedInst) {
342 if (MaxInstsToScan == 0)
343 MaxInstsToScan = ~0U;
344
Mehdi Aminic94da202015-03-04 18:43:29 +0000345 const DataLayout &DL = ScanBB->getModule()->getDataLayout();
Anna Thomasadd1bef2016-07-08 22:15:08 +0000346
Chandler Carrutha87c3542014-11-25 08:20:27 +0000347 // Try to get the store size for the type.
George Burgess IV8bf0c712018-12-23 03:10:56 +0000348 auto AccessSize = LocationSize::precise(DL.getTypeStoreSize(AccessTy));
Chandler Carruth35c4e072014-10-20 00:24:14 +0000349
350 Value *StrippedPtr = Ptr->stripPointerCasts();
Chandler Carruth01dc9112014-10-18 23:19:03 +0000351
Dan Gohmandd9344f2010-05-28 16:19:17 +0000352 while (ScanFrom != ScanBB->begin()) {
353 // We must ignore debug info directives when counting (otherwise they
354 // would affect codegen).
Duncan P. N. Exon Smithd3a5adc2015-10-10 00:53:03 +0000355 Instruction *Inst = &*--ScanFrom;
Dan Gohmandd9344f2010-05-28 16:19:17 +0000356 if (isa<DbgInfoIntrinsic>(Inst))
357 continue;
358
359 // Restore ScanFrom to expected value in case next test succeeds
360 ScanFrom++;
Chandler Carruth01dc9112014-10-18 23:19:03 +0000361
Jun Bum Lim0de282c2017-02-02 15:12:34 +0000362 if (NumScanedInst)
363 ++(*NumScanedInst);
364
Dan Gohmandd9344f2010-05-28 16:19:17 +0000365 // Don't scan huge blocks.
Chandler Carruth01dc9112014-10-18 23:19:03 +0000366 if (MaxInstsToScan-- == 0)
367 return nullptr;
368
Dan Gohmandd9344f2010-05-28 16:19:17 +0000369 --ScanFrom;
370 // If this is a load of Ptr, the loaded value is available.
Eli Friedmanc869b432011-08-15 21:56:39 +0000371 // (This is true even if the load is volatile or atomic, although
372 // those cases are unlikely.)
Reid Klecknerc0b6cd22016-06-24 18:42:58 +0000373 if (LoadInst *LI = dyn_cast<LoadInst>(Inst))
374 if (AreEquivalentAddressValues(
375 LI->getPointerOperand()->stripPointerCasts(), StrippedPtr) &&
Mehdi Amini529919f2015-03-10 02:37:25 +0000376 CastInst::isBitOrNoopPointerCastable(LI->getType(), AccessTy, DL)) {
Philip Reames6159d862016-04-21 16:51:08 +0000377
378 // We can value forward from an atomic to a non-atomic, but not the
379 // other way around.
Xin Tong966ca1d2017-03-19 15:27:52 +0000380 if (LI->isAtomic() < AtLeastAtomic)
Philip Reames6159d862016-04-21 16:51:08 +0000381 return nullptr;
382
Eli Friedman3c80c262016-06-16 02:33:42 +0000383 if (IsLoadCSE)
384 *IsLoadCSE = true;
Dan Gohmandd9344f2010-05-28 16:19:17 +0000385 return LI;
Chris Lattner5161de62012-03-13 18:07:41 +0000386 }
Chandler Carruth01dc9112014-10-18 23:19:03 +0000387
Dan Gohmandd9344f2010-05-28 16:19:17 +0000388 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chandler Carruth35c4e072014-10-20 00:24:14 +0000389 Value *StorePtr = SI->getPointerOperand()->stripPointerCasts();
Dan Gohmandd9344f2010-05-28 16:19:17 +0000390 // If this is a store through Ptr, the value is available!
Eli Friedmanc869b432011-08-15 21:56:39 +0000391 // (This is true even if the store is volatile or atomic, although
392 // those cases are unlikely.)
Chandler Carruth35c4e072014-10-20 00:24:14 +0000393 if (AreEquivalentAddressValues(StorePtr, StrippedPtr) &&
Chandler Carrutha87c3542014-11-25 08:20:27 +0000394 CastInst::isBitOrNoopPointerCastable(SI->getValueOperand()->getType(),
Mehdi Amini529919f2015-03-10 02:37:25 +0000395 AccessTy, DL)) {
Philip Reames6159d862016-04-21 16:51:08 +0000396
397 // We can value forward from an atomic to a non-atomic, but not the
398 // other way around.
Xin Tong966ca1d2017-03-19 15:27:52 +0000399 if (SI->isAtomic() < AtLeastAtomic)
Philip Reames6159d862016-04-21 16:51:08 +0000400 return nullptr;
401
Eli Friedman97b394f2016-08-08 04:10:22 +0000402 if (IsLoadCSE)
403 *IsLoadCSE = false;
Dan Gohmandd9344f2010-05-28 16:19:17 +0000404 return SI->getOperand(0);
Chris Lattner5161de62012-03-13 18:07:41 +0000405 }
Chandler Carruth01dc9112014-10-18 23:19:03 +0000406
Chandler Carruth3ac929c2014-10-20 10:03:01 +0000407 // If both StrippedPtr and StorePtr reach all the way to an alloca or
408 // global and they are different, ignore the store. This is a trivial form
409 // of alias analysis that is important for reg2mem'd code.
Chandler Carruth35c4e072014-10-20 00:24:14 +0000410 if ((isa<AllocaInst>(StrippedPtr) || isa<GlobalVariable>(StrippedPtr)) &&
Chandler Carruth3ac929c2014-10-20 10:03:01 +0000411 (isa<AllocaInst>(StorePtr) || isa<GlobalVariable>(StorePtr)) &&
412 StrippedPtr != StorePtr)
Dan Gohmandd9344f2010-05-28 16:19:17 +0000413 continue;
Chandler Carruth01dc9112014-10-18 23:19:03 +0000414
Dan Gohmandd9344f2010-05-28 16:19:17 +0000415 // If we have alias analysis and it says the store won't modify the loaded
416 // value, ignore the store.
Alina Sbirleaa2d30e92017-12-05 20:12:23 +0000417 if (AA && !isModSet(AA->getModRefInfo(SI, StrippedPtr, AccessSize)))
Dan Gohmandd9344f2010-05-28 16:19:17 +0000418 continue;
Chandler Carruth01dc9112014-10-18 23:19:03 +0000419
Dan Gohmandd9344f2010-05-28 16:19:17 +0000420 // Otherwise the store that may or may not alias the pointer, bail out.
421 ++ScanFrom;
Craig Topper570e52c2014-04-15 04:59:12 +0000422 return nullptr;
Dan Gohmandd9344f2010-05-28 16:19:17 +0000423 }
Chandler Carruth01dc9112014-10-18 23:19:03 +0000424
Dan Gohmandd9344f2010-05-28 16:19:17 +0000425 // If this is some other instruction that may clobber Ptr, bail out.
426 if (Inst->mayWriteToMemory()) {
427 // If alias analysis claims that it really won't modify the load,
428 // ignore it.
Alina Sbirleaa2d30e92017-12-05 20:12:23 +0000429 if (AA && !isModSet(AA->getModRefInfo(Inst, StrippedPtr, AccessSize)))
Dan Gohmandd9344f2010-05-28 16:19:17 +0000430 continue;
Chandler Carruth01dc9112014-10-18 23:19:03 +0000431
Dan Gohmandd9344f2010-05-28 16:19:17 +0000432 // May modify the pointer, bail out.
433 ++ScanFrom;
Craig Topper570e52c2014-04-15 04:59:12 +0000434 return nullptr;
Dan Gohmandd9344f2010-05-28 16:19:17 +0000435 }
436 }
Chandler Carruth01dc9112014-10-18 23:19:03 +0000437
Dan Gohmandd9344f2010-05-28 16:19:17 +0000438 // Got to the start of the block, we didn't find it, but are done for this
439 // block.
Craig Topper570e52c2014-04-15 04:59:12 +0000440 return nullptr;
Dan Gohmandd9344f2010-05-28 16:19:17 +0000441}