2020-07-29 00:08:08 +08:00
|
|
|
; RUN: opt -function-attrs -S < %s | FileCheck %s --check-prefixes=FNATTR
|
2019-12-02 21:40:09 +08:00
|
|
|
; RUN: opt -passes=function-attrs -S < %s | FileCheck %s --check-prefixes=FNATTR
|
2019-04-17 12:52:47 +08:00
|
|
|
|
|
|
|
@g = global i32* null ; <i32**> [#uses=1]
|
|
|
|
|
2019-09-04 04:37:24 +08:00
|
|
|
; FNATTR: define i32* @c1(i32* readnone returned %q)
|
2019-04-17 12:52:47 +08:00
|
|
|
define i32* @c1(i32* %q) {
|
|
|
|
ret i32* %q
|
|
|
|
}
|
|
|
|
|
2021-12-04 00:52:40 +08:00
|
|
|
; FNATTR: define void @c2(i32* %q)
|
2019-04-17 12:52:47 +08:00
|
|
|
; It would also be acceptable to mark %q as readnone. Update @c3 too.
|
|
|
|
define void @c2(i32* %q) {
|
|
|
|
store i32* %q, i32** @g
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2019-10-14 04:47:16 +08:00
|
|
|
; FNATTR: define void @c3(i32* %q)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @c3(i32* %q) {
|
|
|
|
call void @c2(i32* %q)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2019-10-08 05:07:57 +08:00
|
|
|
; FNATTR: define i1 @c4(i32* %q, i32 %bitno)
|
2019-04-17 12:52:47 +08:00
|
|
|
define i1 @c4(i32* %q, i32 %bitno) {
|
|
|
|
%tmp = ptrtoint i32* %q to i32
|
|
|
|
%tmp2 = lshr i32 %tmp, %bitno
|
|
|
|
%bit = trunc i32 %tmp2 to i1
|
|
|
|
br i1 %bit, label %l1, label %l0
|
|
|
|
l0:
|
|
|
|
ret i1 0 ; escaping value not caught by def-use chaining.
|
|
|
|
l1:
|
|
|
|
ret i1 1 ; escaping value not caught by def-use chaining.
|
|
|
|
}
|
|
|
|
|
2019-10-21 08:48:42 +08:00
|
|
|
; c4b is c4 but without the escaping part
|
|
|
|
; FNATTR: define i1 @c4b(i32* %q, i32 %bitno)
|
|
|
|
define i1 @c4b(i32* %q, i32 %bitno) {
|
|
|
|
%tmp = ptrtoint i32* %q to i32
|
|
|
|
%tmp2 = lshr i32 %tmp, %bitno
|
|
|
|
%bit = trunc i32 %tmp2 to i1
|
|
|
|
br i1 %bit, label %l1, label %l0
|
|
|
|
l0:
|
|
|
|
ret i1 0 ; not escaping!
|
|
|
|
l1:
|
|
|
|
ret i1 0 ; not escaping!
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:52:47 +08:00
|
|
|
@lookup_table = global [2 x i1] [ i1 0, i1 1 ]
|
|
|
|
|
2019-10-14 04:47:16 +08:00
|
|
|
; FNATTR: define i1 @c5(i32* %q, i32 %bitno)
|
2019-04-17 12:52:47 +08:00
|
|
|
define i1 @c5(i32* %q, i32 %bitno) {
|
|
|
|
%tmp = ptrtoint i32* %q to i32
|
|
|
|
%tmp2 = lshr i32 %tmp, %bitno
|
|
|
|
%bit = and i32 %tmp2, 1
|
|
|
|
; subtle escape mechanism follows
|
|
|
|
%lookup = getelementptr [2 x i1], [2 x i1]* @lookup_table, i32 0, i32 %bit
|
|
|
|
%val = load i1, i1* %lookup
|
|
|
|
ret i1 %val
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @throw_if_bit_set(i8*, i8) readonly
|
|
|
|
|
2019-12-02 21:40:09 +08:00
|
|
|
; FNATTR: define i1 @c6(i8* readonly %q, i8 %bit)
|
2019-04-17 12:52:47 +08:00
|
|
|
define i1 @c6(i8* %q, i8 %bit) personality i32 (...)* @__gxx_personality_v0 {
|
|
|
|
invoke void @throw_if_bit_set(i8* %q, i8 %bit)
|
|
|
|
to label %ret0 unwind label %ret1
|
|
|
|
ret0:
|
|
|
|
ret i1 0
|
|
|
|
ret1:
|
|
|
|
%exn = landingpad {i8*, i32}
|
|
|
|
cleanup
|
|
|
|
ret i1 1
|
|
|
|
}
|
|
|
|
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|
|
|
|
|
|
|
|
define i1* @lookup_bit(i32* %q, i32 %bitno) readnone nounwind {
|
|
|
|
%tmp = ptrtoint i32* %q to i32
|
|
|
|
%tmp2 = lshr i32 %tmp, %bitno
|
|
|
|
%bit = and i32 %tmp2, 1
|
|
|
|
%lookup = getelementptr [2 x i1], [2 x i1]* @lookup_table, i32 0, i32 %bit
|
|
|
|
ret i1* %lookup
|
|
|
|
}
|
|
|
|
|
2019-11-02 23:35:38 +08:00
|
|
|
; FNATTR: define i1 @c7(i32* readonly %q, i32 %bitno)
|
2019-04-17 12:52:47 +08:00
|
|
|
define i1 @c7(i32* %q, i32 %bitno) {
|
|
|
|
%ptr = call i1* @lookup_bit(i32* %q, i32 %bitno)
|
|
|
|
%val = load i1, i1* %ptr
|
|
|
|
ret i1 %val
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-11-02 23:35:38 +08:00
|
|
|
; FNATTR: define i32 @nc1(i32* %q, i32* nocapture %p, i1 %b)
|
2019-04-17 12:52:47 +08:00
|
|
|
define i32 @nc1(i32* %q, i32* %p, i1 %b) {
|
|
|
|
e:
|
|
|
|
br label %l
|
|
|
|
l:
|
|
|
|
%x = phi i32* [ %p, %e ]
|
|
|
|
%y = phi i32* [ %q, %e ]
|
|
|
|
%tmp = bitcast i32* %x to i32* ; <i32*> [#uses=2]
|
|
|
|
%tmp2 = select i1 %b, i32* %tmp, i32* %y
|
|
|
|
%val = load i32, i32* %tmp2 ; <i32> [#uses=1]
|
|
|
|
store i32 0, i32* %tmp
|
|
|
|
store i32* %y, i32** @g
|
|
|
|
ret i32 %val
|
|
|
|
}
|
|
|
|
|
2019-11-02 23:35:38 +08:00
|
|
|
; FNATTR: define i32 @nc1_addrspace(i32* %q, i32 addrspace(1)* nocapture %p, i1 %b)
|
2019-04-17 12:52:47 +08:00
|
|
|
define i32 @nc1_addrspace(i32* %q, i32 addrspace(1)* %p, i1 %b) {
|
|
|
|
e:
|
|
|
|
br label %l
|
|
|
|
l:
|
|
|
|
%x = phi i32 addrspace(1)* [ %p, %e ]
|
|
|
|
%y = phi i32* [ %q, %e ]
|
|
|
|
%tmp = addrspacecast i32 addrspace(1)* %x to i32* ; <i32*> [#uses=2]
|
|
|
|
%tmp2 = select i1 %b, i32* %tmp, i32* %y
|
|
|
|
%val = load i32, i32* %tmp2 ; <i32> [#uses=1]
|
|
|
|
store i32 0, i32* %tmp
|
|
|
|
store i32* %y, i32** @g
|
|
|
|
ret i32 %val
|
|
|
|
}
|
|
|
|
|
2019-11-02 23:35:38 +08:00
|
|
|
; FNATTR: define void @nc2(i32* nocapture %p, i32* %q)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @nc2(i32* %p, i32* %q) {
|
|
|
|
%1 = call i32 @nc1(i32* %q, i32* %p, i1 0) ; <i32> [#uses=0]
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
[Attributor][MustExec] Deduce dereferenceable and nonnull attribute using MustBeExecutedContextExplorer
Summary:
In D65186 and related patches, MustBeExecutedContextExplorer is introduced. This enables us to traverse instructions guaranteed to execute from function entry. If we can know the argument is used as `dereferenceable` or `nonnull` in these instructions, we can mark `dereferenceable` or `nonnull` in the argument definition:
1. Memory instruction (similar to D64258)
Trace memory instruction pointer operand. Currently, only inbounds GEPs are traced.
```
define i64* @f(i64* %a) {
entry:
%add.ptr = getelementptr inbounds i64, i64* %a, i64 1
; (because of inbounds GEP we can know that %a is at least dereferenceable(16))
store i64 1, i64* %add.ptr, align 8
ret i64* %add.ptr ; dereferenceable 8 (because above instruction stores into it)
}
```
2. Propagation from callsite (similar to D27855)
If `deref` or `nonnull` are known in call site parameter attributes we can also say that argument also that attribute.
```
declare void @use3(i8* %x, i8* %y, i8* %z);
declare void @use3nonnull(i8* nonnull %x, i8* nonnull %y, i8* nonnull %z);
define void @parent1(i8* %a, i8* %b, i8* %c) {
call void @use3nonnull(i8* %b, i8* %c, i8* %a)
; Above instruction is always executed so we can say that@parent1(i8* nonnnull %a, i8* nonnull %b, i8* nonnull %c)
call void @use3(i8* %c, i8* %a, i8* %b)
ret void
}
```
Reviewers: jdoerfert, sstefan1, spatel, reames
Reviewed By: jdoerfert
Subscribers: xbolva00, hiraditya, jfb, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65402
llvm-svn: 374063
2019-10-08 23:25:56 +08:00
|
|
|
|
2021-12-18 00:32:43 +08:00
|
|
|
; FNATTR: define void @nc3(void ()* nocapture readonly %p)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @nc3(void ()* %p) {
|
|
|
|
call void %p()
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @external(i8*) readonly nounwind
|
2019-12-02 21:40:09 +08:00
|
|
|
; FNATTR: define void @nc4(i8* nocapture readonly %p)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @nc4(i8* %p) {
|
|
|
|
call void @external(i8* %p)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2021-12-18 00:32:43 +08:00
|
|
|
; FNATTR: define void @nc5(void (i8*)* nocapture readonly %f, i8* nocapture %p)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @nc5(void (i8*)* %f, i8* %p) {
|
|
|
|
call void %f(i8* %p) readonly nounwind
|
|
|
|
call void %f(i8* nocapture %p)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2019-09-04 04:37:24 +08:00
|
|
|
; FNATTR: define void @test1_1(i8* nocapture readnone %x1_1, i8* %y1_1, i1 %c)
|
2019-04-17 12:52:47 +08:00
|
|
|
; It would be acceptable to add readnone to %y1_1 and %y1_2.
|
2019-09-04 04:37:24 +08:00
|
|
|
define void @test1_1(i8* %x1_1, i8* %y1_1, i1 %c) {
|
|
|
|
call i8* @test1_2(i8* %x1_1, i8* %y1_1, i1 %c)
|
2019-04-17 12:52:47 +08:00
|
|
|
store i32* null, i32** @g
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2019-09-04 04:37:24 +08:00
|
|
|
; FNATTR: define i8* @test1_2(i8* nocapture readnone %x1_2, i8* returned %y1_2, i1 %c)
|
|
|
|
define i8* @test1_2(i8* %x1_2, i8* %y1_2, i1 %c) {
|
|
|
|
br i1 %c, label %t, label %f
|
|
|
|
t:
|
|
|
|
call void @test1_1(i8* %x1_2, i8* %y1_2, i1 %c)
|
2019-04-17 12:52:47 +08:00
|
|
|
store i32* null, i32** @g
|
2019-09-04 04:37:24 +08:00
|
|
|
br label %f
|
|
|
|
f:
|
2019-04-17 12:52:47 +08:00
|
|
|
ret i8* %y1_2
|
|
|
|
}
|
|
|
|
|
2019-11-02 23:35:38 +08:00
|
|
|
; FNATTR: define void @test2(i8* nocapture readnone %x2)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @test2(i8* %x2) {
|
|
|
|
call void @test2(i8* %x2)
|
|
|
|
store i32* null, i32** @g
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2019-11-02 23:35:38 +08:00
|
|
|
; FNATTR: define void @test3(i8* nocapture readnone %x3, i8* nocapture readnone %y3, i8* nocapture readnone %z3)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @test3(i8* %x3, i8* %y3, i8* %z3) {
|
|
|
|
call void @test3(i8* %z3, i8* %y3, i8* %x3)
|
|
|
|
store i32* null, i32** @g
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2019-09-04 04:37:24 +08:00
|
|
|
; FNATTR: define void @test4_1(i8* %x4_1, i1 %c)
|
|
|
|
define void @test4_1(i8* %x4_1, i1 %c) {
|
|
|
|
call i8* @test4_2(i8* %x4_1, i8* %x4_1, i8* %x4_1, i1 %c)
|
2019-04-17 12:52:47 +08:00
|
|
|
store i32* null, i32** @g
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2019-09-04 04:37:24 +08:00
|
|
|
; FNATTR: define i8* @test4_2(i8* nocapture readnone %x4_2, i8* readnone returned %y4_2, i8* nocapture readnone %z4_2, i1 %c)
|
|
|
|
define i8* @test4_2(i8* %x4_2, i8* %y4_2, i8* %z4_2, i1 %c) {
|
|
|
|
br i1 %c, label %t, label %f
|
|
|
|
t:
|
|
|
|
call void @test4_1(i8* null, i1 %c)
|
2019-04-17 12:52:47 +08:00
|
|
|
store i32* null, i32** @g
|
2019-09-04 04:37:24 +08:00
|
|
|
br label %f
|
|
|
|
f:
|
2019-04-17 12:52:47 +08:00
|
|
|
ret i8* %y4_2
|
|
|
|
}
|
|
|
|
|
|
|
|
declare i8* @test5_1(i8* %x5_1)
|
|
|
|
|
2019-12-02 21:40:09 +08:00
|
|
|
; FNATTR: define void @test5_2(i8* %x5_2)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @test5_2(i8* %x5_2) {
|
|
|
|
call i8* @test5_1(i8* %x5_2)
|
|
|
|
store i32* null, i32** @g
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @test6_1(i8* %x6_1, i8* nocapture %y6_1, ...)
|
|
|
|
|
2019-12-02 21:40:09 +08:00
|
|
|
; FNATTR: define void @test6_2(i8* %x6_2, i8* nocapture %y6_2, i8* %z6_2)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @test6_2(i8* %x6_2, i8* %y6_2, i8* %z6_2) {
|
|
|
|
call void (i8*, i8*, ...) @test6_1(i8* %x6_2, i8* %y6_2, i8* %z6_2)
|
|
|
|
store i32* null, i32** @g
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
[Attributor][MustExec] Deduce dereferenceable and nonnull attribute using MustBeExecutedContextExplorer
Summary:
In D65186 and related patches, MustBeExecutedContextExplorer is introduced. This enables us to traverse instructions guaranteed to execute from function entry. If we can know the argument is used as `dereferenceable` or `nonnull` in these instructions, we can mark `dereferenceable` or `nonnull` in the argument definition:
1. Memory instruction (similar to D64258)
Trace memory instruction pointer operand. Currently, only inbounds GEPs are traced.
```
define i64* @f(i64* %a) {
entry:
%add.ptr = getelementptr inbounds i64, i64* %a, i64 1
; (because of inbounds GEP we can know that %a is at least dereferenceable(16))
store i64 1, i64* %add.ptr, align 8
ret i64* %add.ptr ; dereferenceable 8 (because above instruction stores into it)
}
```
2. Propagation from callsite (similar to D27855)
If `deref` or `nonnull` are known in call site parameter attributes we can also say that argument also that attribute.
```
declare void @use3(i8* %x, i8* %y, i8* %z);
declare void @use3nonnull(i8* nonnull %x, i8* nonnull %y, i8* nonnull %z);
define void @parent1(i8* %a, i8* %b, i8* %c) {
call void @use3nonnull(i8* %b, i8* %c, i8* %a)
; Above instruction is always executed so we can say that@parent1(i8* nonnnull %a, i8* nonnull %b, i8* nonnull %c)
call void @use3(i8* %c, i8* %a, i8* %b)
ret void
}
```
Reviewers: jdoerfert, sstefan1, spatel, reames
Reviewed By: jdoerfert
Subscribers: xbolva00, hiraditya, jfb, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65402
llvm-svn: 374063
2019-10-08 23:25:56 +08:00
|
|
|
; FNATTR: define void @test_cmpxchg(i32* nocapture %p)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @test_cmpxchg(i32* %p) {
|
|
|
|
cmpxchg i32* %p, i32 0, i32 1 acquire monotonic
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
[Attributor][MustExec] Deduce dereferenceable and nonnull attribute using MustBeExecutedContextExplorer
Summary:
In D65186 and related patches, MustBeExecutedContextExplorer is introduced. This enables us to traverse instructions guaranteed to execute from function entry. If we can know the argument is used as `dereferenceable` or `nonnull` in these instructions, we can mark `dereferenceable` or `nonnull` in the argument definition:
1. Memory instruction (similar to D64258)
Trace memory instruction pointer operand. Currently, only inbounds GEPs are traced.
```
define i64* @f(i64* %a) {
entry:
%add.ptr = getelementptr inbounds i64, i64* %a, i64 1
; (because of inbounds GEP we can know that %a is at least dereferenceable(16))
store i64 1, i64* %add.ptr, align 8
ret i64* %add.ptr ; dereferenceable 8 (because above instruction stores into it)
}
```
2. Propagation from callsite (similar to D27855)
If `deref` or `nonnull` are known in call site parameter attributes we can also say that argument also that attribute.
```
declare void @use3(i8* %x, i8* %y, i8* %z);
declare void @use3nonnull(i8* nonnull %x, i8* nonnull %y, i8* nonnull %z);
define void @parent1(i8* %a, i8* %b, i8* %c) {
call void @use3nonnull(i8* %b, i8* %c, i8* %a)
; Above instruction is always executed so we can say that@parent1(i8* nonnnull %a, i8* nonnull %b, i8* nonnull %c)
call void @use3(i8* %c, i8* %a, i8* %b)
ret void
}
```
Reviewers: jdoerfert, sstefan1, spatel, reames
Reviewed By: jdoerfert
Subscribers: xbolva00, hiraditya, jfb, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65402
llvm-svn: 374063
2019-10-08 23:25:56 +08:00
|
|
|
; FNATTR: define void @test_cmpxchg_ptr(i32** nocapture %p, i32* %q)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @test_cmpxchg_ptr(i32** %p, i32* %q) {
|
|
|
|
cmpxchg i32** %p, i32* null, i32* %q acquire monotonic
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
[Attributor][MustExec] Deduce dereferenceable and nonnull attribute using MustBeExecutedContextExplorer
Summary:
In D65186 and related patches, MustBeExecutedContextExplorer is introduced. This enables us to traverse instructions guaranteed to execute from function entry. If we can know the argument is used as `dereferenceable` or `nonnull` in these instructions, we can mark `dereferenceable` or `nonnull` in the argument definition:
1. Memory instruction (similar to D64258)
Trace memory instruction pointer operand. Currently, only inbounds GEPs are traced.
```
define i64* @f(i64* %a) {
entry:
%add.ptr = getelementptr inbounds i64, i64* %a, i64 1
; (because of inbounds GEP we can know that %a is at least dereferenceable(16))
store i64 1, i64* %add.ptr, align 8
ret i64* %add.ptr ; dereferenceable 8 (because above instruction stores into it)
}
```
2. Propagation from callsite (similar to D27855)
If `deref` or `nonnull` are known in call site parameter attributes we can also say that argument also that attribute.
```
declare void @use3(i8* %x, i8* %y, i8* %z);
declare void @use3nonnull(i8* nonnull %x, i8* nonnull %y, i8* nonnull %z);
define void @parent1(i8* %a, i8* %b, i8* %c) {
call void @use3nonnull(i8* %b, i8* %c, i8* %a)
; Above instruction is always executed so we can say that@parent1(i8* nonnnull %a, i8* nonnull %b, i8* nonnull %c)
call void @use3(i8* %c, i8* %a, i8* %b)
ret void
}
```
Reviewers: jdoerfert, sstefan1, spatel, reames
Reviewed By: jdoerfert
Subscribers: xbolva00, hiraditya, jfb, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65402
llvm-svn: 374063
2019-10-08 23:25:56 +08:00
|
|
|
; FNATTR: define void @test_atomicrmw(i32* nocapture %p)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @test_atomicrmw(i32* %p) {
|
|
|
|
atomicrmw add i32* %p, i32 1 seq_cst
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2019-11-02 23:35:38 +08:00
|
|
|
; FNATTR: define void @test_volatile(i32* %x)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @test_volatile(i32* %x) {
|
|
|
|
entry:
|
|
|
|
%gep = getelementptr i32, i32* %x, i64 1
|
|
|
|
store volatile i32 0, i32* %gep, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2019-12-02 21:40:09 +08:00
|
|
|
; FNATTR: nocaptureLaunder(i8* nocapture %p)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @nocaptureLaunder(i8* %p) {
|
|
|
|
entry:
|
|
|
|
%b = call i8* @llvm.launder.invariant.group.p0i8(i8* %p)
|
|
|
|
store i8 42, i8* %b
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
@g2 = global i8* null
|
2019-12-02 21:40:09 +08:00
|
|
|
; FNATTR: define void @captureLaunder(i8* %p)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @captureLaunder(i8* %p) {
|
|
|
|
%b = call i8* @llvm.launder.invariant.group.p0i8(i8* %p)
|
|
|
|
store i8* %b, i8** @g2
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2021-12-03 04:56:09 +08:00
|
|
|
; FNATTR: @nocaptureStrip(i8* nocapture writeonly %p)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @nocaptureStrip(i8* %p) {
|
|
|
|
entry:
|
|
|
|
%b = call i8* @llvm.strip.invariant.group.p0i8(i8* %p)
|
|
|
|
store i8 42, i8* %b
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
@g3 = global i8* null
|
2021-12-04 00:52:40 +08:00
|
|
|
; FNATTR: define void @captureStrip(i8* %p)
|
2019-04-17 12:52:47 +08:00
|
|
|
define void @captureStrip(i8* %p) {
|
|
|
|
%b = call i8* @llvm.strip.invariant.group.p0i8(i8* %p)
|
|
|
|
store i8* %b, i8** @g3
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2019-11-02 23:35:38 +08:00
|
|
|
; FNATTR: define i1 @captureICmp(i32* readnone %x)
|
2019-06-09 18:20:33 +08:00
|
|
|
define i1 @captureICmp(i32* %x) {
|
|
|
|
%1 = icmp eq i32* %x, null
|
|
|
|
ret i1 %1
|
|
|
|
}
|
|
|
|
|
2019-11-02 23:35:38 +08:00
|
|
|
; FNATTR: define i1 @captureICmpRev(i32* readnone %x)
|
2019-08-17 05:53:49 +08:00
|
|
|
define i1 @captureICmpRev(i32* %x) {
|
|
|
|
%1 = icmp eq i32* null, %x
|
|
|
|
ret i1 %1
|
|
|
|
}
|
|
|
|
|
2019-10-31 06:21:53 +08:00
|
|
|
; FNATTR: define i1 @nocaptureInboundsGEPICmp(i32* nocapture readnone %x)
|
2019-06-09 18:20:33 +08:00
|
|
|
define i1 @nocaptureInboundsGEPICmp(i32* %x) {
|
|
|
|
%1 = getelementptr inbounds i32, i32* %x, i32 5
|
|
|
|
%2 = bitcast i32* %1 to i8*
|
|
|
|
%3 = icmp eq i8* %2, null
|
|
|
|
ret i1 %3
|
|
|
|
}
|
|
|
|
|
2019-10-31 06:21:53 +08:00
|
|
|
; FNATTR: define i1 @nocaptureInboundsGEPICmpRev(i32* nocapture readnone %x)
|
2019-08-17 05:53:49 +08:00
|
|
|
define i1 @nocaptureInboundsGEPICmpRev(i32* %x) {
|
|
|
|
%1 = getelementptr inbounds i32, i32* %x, i32 5
|
|
|
|
%2 = bitcast i32* %1 to i8*
|
|
|
|
%3 = icmp eq i8* null, %2
|
|
|
|
ret i1 %3
|
|
|
|
}
|
|
|
|
|
2019-11-02 23:35:38 +08:00
|
|
|
; FNATTR: define i1 @nocaptureDereferenceableOrNullICmp(i32* nocapture readnone dereferenceable_or_null(4) %x)
|
2019-06-09 18:20:33 +08:00
|
|
|
define i1 @nocaptureDereferenceableOrNullICmp(i32* dereferenceable_or_null(4) %x) {
|
|
|
|
%1 = bitcast i32* %x to i8*
|
|
|
|
%2 = icmp eq i8* %1, null
|
|
|
|
ret i1 %2
|
|
|
|
}
|
|
|
|
|
2019-11-02 23:35:38 +08:00
|
|
|
; FNATTR: define i1 @captureDereferenceableOrNullICmp(i32* readnone dereferenceable_or_null(4) %x)
|
2020-04-25 18:57:07 +08:00
|
|
|
define i1 @captureDereferenceableOrNullICmp(i32* dereferenceable_or_null(4) %x) null_pointer_is_valid {
|
2019-06-09 18:20:33 +08:00
|
|
|
%1 = bitcast i32* %x to i8*
|
|
|
|
%2 = icmp eq i8* %1, null
|
|
|
|
ret i1 %2
|
|
|
|
}
|
|
|
|
|
2021-12-17 08:38:40 +08:00
|
|
|
declare void @capture(i8*)
|
|
|
|
|
2021-12-18 00:32:43 +08:00
|
|
|
; FNATTR: define void @nocapture_fptr(i8* (i8*)* nocapture readonly %f, i8* %p)
|
2021-12-17 08:38:40 +08:00
|
|
|
define void @nocapture_fptr(i8* (i8*)* %f, i8* %p) {
|
|
|
|
%res = call i8* %f(i8* %p)
|
|
|
|
call void @capture(i8* %res)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2021-12-18 00:32:43 +08:00
|
|
|
; FNATTR: define void @recurse_fptr(i8* (i8*)* nocapture readonly %f, i8* %p)
|
2021-12-17 08:38:40 +08:00
|
|
|
define void @recurse_fptr(i8* (i8*)* %f, i8* %p) {
|
|
|
|
%res = call i8* %f(i8* %p)
|
|
|
|
store i8 0, i8* %res
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2021-12-18 00:32:43 +08:00
|
|
|
; FNATTR: define void @readnone_indirec(void (i8*)* nocapture readonly %f, i8* readnone %p)
|
2021-12-17 08:38:40 +08:00
|
|
|
define void @readnone_indirec(void (i8*)* %f, i8* %p) {
|
|
|
|
call void %f(i8* %p) readnone
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-17 12:52:47 +08:00
|
|
|
declare i8* @llvm.launder.invariant.group.p0i8(i8*)
|
|
|
|
declare i8* @llvm.strip.invariant.group.p0i8(i8*)
|