1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00
llvm-mirror/test/Analysis/Lint/noalias-readonly.ll
Josh Stone 5f651d5aba [Lint] Permit aliasing noalias readonly arguments
Summary:
If two arguments are both readonly, then they have no memory dependency
that would violate noalias, even if they do actually overlap.

Reviewers: hfinkel, efriedma

Reviewed By: efriedma

Subscribers: efriedma, hiraditya, llvm-commits, tstellar

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D60239

llvm-svn: 359047
2019-04-23 23:43:47 +00:00

41 lines
1.1 KiB
LLVM

; RUN: opt < %s -lint -disable-output 2>&1 | FileCheck %s
declare void @f1(i8* noalias readonly, i8*)
define void @f2(i8* %a) {
entry:
call void @f1(i8* %a, i8* %a)
ret void
}
; Lint should complain about us passing %a to both arguments, since the noalias
; argument may depend on writes to the other.
; CHECK: Unusual: noalias argument aliases another argument
; CHECK-NEXT: call void @f1(i8* %a, i8* %a)
declare void @f3(i8* noalias, i8* readonly)
define void @f4(i8* %a) {
entry:
call void @f3(i8* %a, i8* %a)
ret void
}
; Lint should complain about us passing %a to both arguments, since writes to
; the noalias argument may cause a dependency for the other.
; CHECK: Unusual: noalias argument aliases another argument
; CHECK-NEXT: call void @f3(i8* %a, i8* %a)
declare void @f5(i8* noalias readonly, i8* readonly)
define void @f6(i8* %a) {
entry:
call void @f5(i8* %a, i8* %a)
ret void
}
; Lint should not complain about passing %a to both arguments even if one is
; noalias, since they are both readonly and thus have no dependence.
; CHECK-NOT: Unusual: noalias argument aliases another argument
; CHECK-NOT: call void @f5(i8* %a, i8* %a)