diff options
author | Hal Finkel <hfinkel@anl.gov> | 2014-07-19 03:25:16 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2014-07-19 03:25:16 +0000 |
commit | 9e440c08a961eea1bc4c2a3faa5d6ce87b3c4554 (patch) | |
tree | 23bce32e6906e374295fe60aa305a4fe097f06dc /llvm/lib/IR/Value.cpp | |
parent | 16e394a36ce184e0312dd9ecebaee3bf36b2cacd (diff) | |
download | bcm5719-llvm-9e440c08a961eea1bc4c2a3faa5d6ce87b3c4554.tar.gz bcm5719-llvm-9e440c08a961eea1bc4c2a3faa5d6ce87b3c4554.zip |
Make Value::isDereferenceablePointer handle offsets to pointer types with dereferenceable attributes
When we have a parameter (or call site return) with a dereferenceable
attribute, it can specify the size of an array pointed to by that parameter. If
we have a value for which we can accumulate a constant offset to such a
parameter, then we can use that offset in a direct comparison with the size
specified by the dereferenceable attribute.
This enables us to handle cases like this:
int foo(int a[static 3]) {
return a[2]; /* this is always dereferenceable */
}
llvm-svn: 213447
Diffstat (limited to 'llvm/lib/IR/Value.cpp')
-rw-r--r-- | llvm/lib/IR/Value.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/llvm/lib/IR/Value.cpp b/llvm/lib/IR/Value.cpp index efdd6a7ed6e..94f979a3002 100644 --- a/llvm/lib/IR/Value.cpp +++ b/llvm/lib/IR/Value.cpp @@ -574,6 +574,27 @@ static bool isDereferenceablePointer(const Value *V, const DataLayout *DL, /// isDereferenceablePointer - Test if this value is always a pointer to /// allocated and suitably aligned memory for a simple load or store. bool Value::isDereferenceablePointer(const DataLayout *DL) const { + // When dereferenceability information is provided by a dereferenceable + // attribute, we know exactly how many bytes are dereferenceable. If we can + // determine the exact offset to the attributed variable, we can use that + // information here. + Type *Ty = getType()->getPointerElementType(); + if (Ty->isSized() && DL) { + APInt Offset(DL->getTypeStoreSizeInBits(getType()), 0); + const Value *BV = stripAndAccumulateInBoundsConstantOffsets(*DL, Offset); + + APInt DerefBytes(Offset.getBitWidth(), 0); + if (const Argument *A = dyn_cast<Argument>(BV)) + DerefBytes = A->getDereferenceableBytes(); + else if (ImmutableCallSite CS = BV) + DerefBytes = CS.getDereferenceableBytes(0); + + if (DerefBytes.getBoolValue() && Offset.isNonNegative()) { + if (DerefBytes.uge(Offset + DL->getTypeStoreSize(Ty))) + return true; + } + } + SmallPtrSet<const Value *, 32> Visited; return ::isDereferenceablePointer(this, DL, Visited); } |