1 ; RUN: opt -objc-arc-contract -S < %s | FileCheck %s
3 target datalayout = "e-p:64:64:64"
5 declare i8* @llvm.objc.retain(i8*)
6 declare void @llvm.objc.release(i8*)
7 declare void @use_pointer(i8*)
9 @x = external global i8*
11 ; CHECK-LABEL: define void @test0(
13 ; CHECK-NEXT: tail call void @llvm.objc.storeStrong(i8** @x, i8* %p) [[NUW:#[0-9]+]]
14 ; CHECK-NEXT: ret void
16 define void @test0(i8* %p) {
18 %0 = tail call i8* @llvm.objc.retain(i8* %p) nounwind
19 %tmp = load i8*, i8** @x, align 8
20 store i8* %0, i8** @x, align 8
21 tail call void @llvm.objc.release(i8* %tmp) nounwind
25 ; Don't do this if the load is volatile.
27 ; CHECK-LABEL: define void @test1(i8* %p) {
29 ; CHECK-NEXT: %0 = tail call i8* @llvm.objc.retain(i8* %p) [[NUW]]
30 ; CHECK-NEXT: %tmp = load volatile i8*, i8** @x, align 8
31 ; CHECK-NEXT: store i8* %0, i8** @x, align 8
32 ; CHECK-NEXT: tail call void @llvm.objc.release(i8* %tmp) [[NUW]]
33 ; CHECK-NEXT: ret void
35 define void @test1(i8* %p) {
37 %0 = tail call i8* @llvm.objc.retain(i8* %p) nounwind
38 %tmp = load volatile i8*, i8** @x, align 8
39 store i8* %0, i8** @x, align 8
40 tail call void @llvm.objc.release(i8* %tmp) nounwind
44 ; Don't do this if the store is volatile.
46 ; CHECK-LABEL: define void @test2(i8* %p) {
48 ; CHECK-NEXT: %0 = tail call i8* @llvm.objc.retain(i8* %p) [[NUW]]
49 ; CHECK-NEXT: %tmp = load i8*, i8** @x, align 8
50 ; CHECK-NEXT: store volatile i8* %0, i8** @x, align 8
51 ; CHECK-NEXT: tail call void @llvm.objc.release(i8* %tmp) [[NUW]]
52 ; CHECK-NEXT: ret void
54 define void @test2(i8* %p) {
56 %0 = tail call i8* @llvm.objc.retain(i8* %p) nounwind
57 %tmp = load i8*, i8** @x, align 8
58 store volatile i8* %0, i8** @x, align 8
59 tail call void @llvm.objc.release(i8* %tmp) nounwind
63 ; Don't do this if there's a use of the old pointer value between the store
66 ; CHECK-LABEL: define void @test3(i8* %newValue) {
68 ; CHECK-NEXT: %x0 = tail call i8* @llvm.objc.retain(i8* %newValue) [[NUW]]
69 ; CHECK-NEXT: %x1 = load i8*, i8** @x, align 8
70 ; CHECK-NEXT: store i8* %x0, i8** @x, align 8
71 ; CHECK-NEXT: tail call void @use_pointer(i8* %x1), !clang.arc.no_objc_arc_exceptions !0
72 ; CHECK-NEXT: tail call void @llvm.objc.release(i8* %x1) [[NUW]], !clang.imprecise_release !0
73 ; CHECK-NEXT: ret void
75 define void @test3(i8* %newValue) {
77 %x0 = tail call i8* @llvm.objc.retain(i8* %newValue) nounwind
78 %x1 = load i8*, i8** @x, align 8
79 store i8* %newValue, i8** @x, align 8
80 tail call void @use_pointer(i8* %x1), !clang.arc.no_objc_arc_exceptions !0
81 tail call void @llvm.objc.release(i8* %x1) nounwind, !clang.imprecise_release !0
85 ; Like test3, but with an icmp use instead of a call, for good measure.
87 ; CHECK-LABEL: define i1 @test4(i8* %newValue, i8* %foo) {
89 ; CHECK-NEXT: %x0 = tail call i8* @llvm.objc.retain(i8* %newValue) [[NUW]]
90 ; CHECK-NEXT: %x1 = load i8*, i8** @x, align 8
91 ; CHECK-NEXT: store i8* %x0, i8** @x, align 8
92 ; CHECK-NEXT: %t = icmp eq i8* %x1, %foo
93 ; CHECK-NEXT: tail call void @llvm.objc.release(i8* %x1) [[NUW]], !clang.imprecise_release !0
94 ; CHECK-NEXT: ret i1 %t
96 define i1 @test4(i8* %newValue, i8* %foo) {
98 %x0 = tail call i8* @llvm.objc.retain(i8* %newValue) nounwind
99 %x1 = load i8*, i8** @x, align 8
100 store i8* %newValue, i8** @x, align 8
101 %t = icmp eq i8* %x1, %foo
102 tail call void @llvm.objc.release(i8* %x1) nounwind, !clang.imprecise_release !0
106 ; Do form an llvm.objc.storeStrong here, because the use is before the store.
108 ; CHECK-LABEL: define i1 @test5(i8* %newValue, i8* %foo) {
109 ; CHECK: %t = icmp eq i8* %x1, %foo
110 ; CHECK: tail call void @llvm.objc.storeStrong(i8** @x, i8* %newValue) [[NUW]]
112 define i1 @test5(i8* %newValue, i8* %foo) {
114 %x0 = tail call i8* @llvm.objc.retain(i8* %newValue) nounwind
115 %x1 = load i8*, i8** @x, align 8
116 %t = icmp eq i8* %x1, %foo
117 store i8* %newValue, i8** @x, align 8
118 tail call void @llvm.objc.release(i8* %x1) nounwind, !clang.imprecise_release !0
122 ; Like test5, but the release is before the store.
124 ; CHECK-LABEL: define i1 @test6(i8* %newValue, i8* %foo) {
125 ; CHECK: %t = icmp eq i8* %x1, %foo
126 ; CHECK: tail call void @llvm.objc.storeStrong(i8** @x, i8* %newValue) [[NUW]]
128 define i1 @test6(i8* %newValue, i8* %foo) {
130 %x0 = tail call i8* @llvm.objc.retain(i8* %newValue) nounwind
131 %x1 = load i8*, i8** @x, align 8
132 tail call void @llvm.objc.release(i8* %x1) nounwind, !clang.imprecise_release !0
133 %t = icmp eq i8* %x1, %foo
134 store i8* %newValue, i8** @x, align 8
138 ; Like test0, but there's no store, so don't form an llvm.objc.storeStrong.
140 ; CHECK-LABEL: define void @test7(
142 ; CHECK-NEXT: %0 = tail call i8* @llvm.objc.retain(i8* %p) [[NUW]]
143 ; CHECK-NEXT: %tmp = load i8*, i8** @x, align 8
144 ; CHECK-NEXT: tail call void @llvm.objc.release(i8* %tmp) [[NUW]]
145 ; CHECK-NEXT: ret void
147 define void @test7(i8* %p) {
149 %0 = tail call i8* @llvm.objc.retain(i8* %p) nounwind
150 %tmp = load i8*, i8** @x, align 8
151 tail call void @llvm.objc.release(i8* %tmp) nounwind
155 ; Like test0, but there's no retain, so don't form an llvm.objc.storeStrong.
157 ; CHECK-LABEL: define void @test8(
159 ; CHECK-NEXT: %tmp = load i8*, i8** @x, align 8
160 ; CHECK-NEXT: store i8* %p, i8** @x, align 8
161 ; CHECK-NEXT: tail call void @llvm.objc.release(i8* %tmp) [[NUW]]
162 ; CHECK-NEXT: ret void
164 define void @test8(i8* %p) {
166 %tmp = load i8*, i8** @x, align 8
167 store i8* %p, i8** @x, align 8
168 tail call void @llvm.objc.release(i8* %tmp) nounwind
172 ; Make sure that we properly handle release that *may* release our new
173 ; value in between the retain and the store. We need to be sure that
174 ; this we can safely move the retain to the store. This specific test
175 ; makes sure that we properly handled a release of an unrelated
178 ; CHECK-LABEL: define i1 @test9(i8* %newValue, i8* %foo, i8* %unrelated_ptr) {
179 ; CHECK-NOT: llvm.objc.storeStrong
180 define i1 @test9(i8* %newValue, i8* %foo, i8* %unrelated_ptr) {
182 %x0 = tail call i8* @llvm.objc.retain(i8* %newValue) nounwind
183 tail call void @llvm.objc.release(i8* %unrelated_ptr) nounwind, !clang.imprecise_release !0
184 %x1 = load i8*, i8** @x, align 8
185 tail call void @llvm.objc.release(i8* %x1) nounwind, !clang.imprecise_release !0
186 %t = icmp eq i8* %x1, %foo
187 store i8* %newValue, i8** @x, align 8
191 ; Make sure that we don't perform the optimization when we just have a call.
193 ; CHECK-LABEL: define i1 @test10(i8* %newValue, i8* %foo, i8* %unrelated_ptr) {
194 ; CHECK-NOT: llvm.objc.storeStrong
195 define i1 @test10(i8* %newValue, i8* %foo, i8* %unrelated_ptr) {
197 %x0 = tail call i8* @llvm.objc.retain(i8* %newValue) nounwind
198 call void @use_pointer(i8* %unrelated_ptr)
199 %x1 = load i8*, i8** @x, align 8
200 tail call void @llvm.objc.release(i8* %x1) nounwind, !clang.imprecise_release !0
201 %t = icmp eq i8* %x1, %foo
202 store i8* %newValue, i8** @x, align 8
206 ; Make sure we form the store strong if the use in between the retain
207 ; and the store does not touch reference counts.
208 ; CHECK-LABEL: define i1 @test11(i8* %newValue, i8* %foo, i8* %unrelated_ptr) {
209 ; CHECK: llvm.objc.storeStrong
210 define i1 @test11(i8* %newValue, i8* %foo, i8* %unrelated_ptr) {
212 %x0 = tail call i8* @llvm.objc.retain(i8* %newValue) nounwind
213 %t = icmp eq i8* %newValue, %foo
214 %x1 = load i8*, i8** @x, align 8
215 tail call void @llvm.objc.release(i8* %x1) nounwind, !clang.imprecise_release !0
216 store i8* %newValue, i8** @x, align 8
220 ; Make sure that we form the store strong even if there are bitcasts on
222 ; CHECK-LABEL: define void @test12(
224 ; CHECK-NEXT: %p16 = bitcast i8** @x to i16**
225 ; CHECK-NEXT: %tmp16 = load i16*, i16** %p16, align 8
226 ; CHECK-NEXT: %tmp8 = bitcast i16* %tmp16 to i8*
227 ; CHECK-NEXT: %p32 = bitcast i8** @x to i32**
228 ; CHECK-NEXT: %v32 = bitcast i8* %p to i32*
229 ; CHECK-NEXT: %0 = bitcast i16** %p16 to i8**
230 ; CHECK-NEXT: tail call void @llvm.objc.storeStrong(i8** %0, i8* %p)
231 ; CHECK-NEXT: ret void
233 define void @test12(i8* %p) {
235 %retain = tail call i8* @llvm.objc.retain(i8* %p) nounwind
236 %p16 = bitcast i8** @x to i16**
237 %tmp16 = load i16*, i16** %p16, align 8
238 %tmp8 = bitcast i16* %tmp16 to i8*
239 %p32 = bitcast i8** @x to i32**
240 %v32 = bitcast i8* %retain to i32*
241 store i32* %v32, i32** %p32, align 8
242 tail call void @llvm.objc.release(i8* %tmp8) nounwind
246 ; This used to crash.
247 ; CHECK-LABEL: define i8* @test13(
248 ; CHECK: tail call void @llvm.objc.storeStrong(i8** %{{.*}}, i8* %[[NEW:.*]])
249 ; CHECK-NEXT: ret i8* %[[NEW]]
251 define i8* @test13(i8* %a0, i8* %a1, i8** %addr, i8* %new) {
252 %old = load i8*, i8** %addr, align 8
253 call void @llvm.objc.release(i8* %old)
254 %retained = call i8* @llvm.objc.retain(i8* %new)
255 store i8* %retained, i8** %addr, align 8
261 ; CHECK: attributes [[NUW]] = { nounwind }