diff options
author | Tim Northover <tnorthover@apple.com> | 2019-07-09 11:35:35 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2019-07-09 11:35:35 +0000 |
commit | 60afa49abed6efdd7196d38ec884727090cfe373 (patch) | |
tree | a9af173067a23e1f6fa896cfb31bde34ec7cb3b3 /llvm/lib/Analysis/ValueTracking.cpp | |
parent | 01eaae6dd12862cda6b42d565a215b07a178aba6 (diff) | |
download | bcm5719-llvm-60afa49abed6efdd7196d38ec884727090cfe373.tar.gz bcm5719-llvm-60afa49abed6efdd7196d38ec884727090cfe373.zip |
OpaquePtr: add Type parameter to Loads analysis API.
This makes the functions in Loads.h require a type to be specified
independently of the pointer Value so that when pointers have no structure
other than address-space, it can still do its job.
Most callers had an obvious memory operation handy to provide this type, but a
SROA and ArgumentPromotion were doing more complicated analysis. They get
updated to merge the properties of the various instructions they were
considering.
llvm-svn: 365468
Diffstat (limited to 'llvm/lib/Analysis/ValueTracking.cpp')
-rw-r--r-- | llvm/lib/Analysis/ValueTracking.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ValueTracking.cpp b/llvm/lib/Analysis/ValueTracking.cpp index 3ff5bf08599..39827831b79 100644 --- a/llvm/lib/Analysis/ValueTracking.cpp +++ b/llvm/lib/Analysis/ValueTracking.cpp @@ -3949,7 +3949,8 @@ bool llvm::isSafeToSpeculativelyExecute(const Value *V, return false; const DataLayout &DL = LI->getModule()->getDataLayout(); return isDereferenceableAndAlignedPointer(LI->getPointerOperand(), - LI->getAlignment(), DL, CtxI, DT); + LI->getType(), LI->getAlignment(), + DL, CtxI, DT); } case Instruction::Call: { auto *CI = cast<const CallInst>(Inst); |