[llvm] r320939 - Properly handle byval arguments in getPointerDereferenceableBytes()
Bjorn Steinbrink via llvm-commits
llvm-commits at lists.llvm.org
Sat Dec 16 18:37:42 PST 2017
Author: bsteinbr
Date: Sat Dec 16 18:37:42 2017
New Revision: 320939
URL: http://llvm.org/viewvc/llvm-project?rev=320939&view=rev
Log:
Properly handle byval arguments in getPointerDereferenceableBytes()
Summary:
For byval arguments, the number of dereferenceable bytes is equal to
the size of the pointee, not the pointer.
Reviewers: hfinkel, rnk
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D41305
Modified:
llvm/trunk/lib/IR/Value.cpp
llvm/trunk/test/Analysis/ValueTracking/memory-dereferenceable.ll
Modified: llvm/trunk/lib/IR/Value.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/Value.cpp?rev=320939&r1=320938&r2=320939&view=diff
==============================================================================
--- llvm/trunk/lib/IR/Value.cpp (original)
+++ llvm/trunk/lib/IR/Value.cpp Sat Dec 16 18:37:42 2017
@@ -627,9 +627,9 @@ uint64_t Value::getPointerDereferenceabl
CanBeNull = false;
if (const Argument *A = dyn_cast<Argument>(this)) {
DerefBytes = A->getDereferenceableBytes();
- if (DerefBytes == 0 && A->hasByValAttr() && A->getType()->isSized()) {
- DerefBytes = DL.getTypeStoreSize(A->getType());
- CanBeNull = false;
+ if (DerefBytes == 0 && A->hasByValAttr()) {
+ Type *PT = cast<PointerType>(A->getType())->getElementType();
+ DerefBytes = DL.getTypeStoreSize(PT);
}
if (DerefBytes == 0) {
DerefBytes = A->getDereferenceableOrNullBytes();
Modified: llvm/trunk/test/Analysis/ValueTracking/memory-dereferenceable.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/ValueTracking/memory-dereferenceable.ll?rev=320939&r1=320938&r2=320939&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/ValueTracking/memory-dereferenceable.ll (original)
+++ llvm/trunk/test/Analysis/ValueTracking/memory-dereferenceable.ll Sat Dec 16 18:37:42 2017
@@ -22,7 +22,9 @@ declare i32* @foo()
; CHECK-LABEL: 'test'
define void @test(i32 addrspace(1)* dereferenceable(8) %dparam,
i8 addrspace(1)* dereferenceable(32) align 1 %dparam.align1,
- i8 addrspace(1)* dereferenceable(32) align 16 %dparam.align16)
+ i8 addrspace(1)* dereferenceable(32) align 16 %dparam.align16,
+ i8* byval %i8_byval,
+ %struct.A* byval %A_byval)
gc "statepoint-example" {
; CHECK: The following are dereferenceable:
entry:
@@ -111,6 +113,18 @@ entry:
%load15 = load i8, i8 addrspace(1)* %dparam.align1, align 16
%load16 = load i8, i8 addrspace(1)* %dparam.align16, align 16
+ ; Loads from byval arguments
+; CHECK: %i8_byval{{.*}}(aligned)
+ %i8_byval_load = load i8, i8* %i8_byval
+
+; CHECK-NOT: %byval_cast
+ %byval_cast = bitcast i8* %i8_byval to i32*
+ %bad_byval_load = load i32, i32* %byval_cast
+
+; CHECK: %byval_gep{{.*}}(aligned)
+ %byval_gep = getelementptr inbounds %struct.A, %struct.A* %A_byval, i64 0, i32 1, i64 2
+ load i8, i8* %byval_gep
+
; Loads from aligned allocas
; CHECK: %alloca.align1{{.*}}(unaligned)
; CHECK: %alloca.align16{{.*}}(aligned)
More information about the llvm-commits
mailing list