1 ; RUN: opt -passes=objc-arc-expand -S < %s | FileCheck %s
3 target datalayout = "e-p:64:64:64"
5 declare ptr @llvm.objc.retain(ptr)
6 declare ptr @llvm.objc.autorelease(ptr)
7 declare ptr @llvm.objc.retainAutoreleasedReturnValue(ptr)
8 declare ptr @llvm.objc.autoreleaseReturnValue(ptr)
9 declare ptr @llvm.objc.retainAutorelease(ptr)
10 declare ptr @llvm.objc.retainAutoreleaseReturnValue(ptr)
11 declare ptr @llvm.objc.retainBlock(ptr)
13 declare void @use_pointer(ptr)
15 ; CHECK: define void @test_retain(ptr %x) [[NUW:#[0-9]+]] {
16 ; CHECK: call ptr @llvm.objc.retain(ptr %x)
17 ; CHECK: call void @use_pointer(ptr %x)
19 define void @test_retain(ptr %x) nounwind {
21 %0 = call ptr @llvm.objc.retain(ptr %x) nounwind
22 call void @use_pointer(ptr %0)
26 ; CHECK: define void @test_retainAutoreleasedReturnValue(ptr %x) [[NUW]] {
27 ; CHECK: call ptr @llvm.objc.retainAutoreleasedReturnValue(ptr %x)
28 ; CHECK: call void @use_pointer(ptr %x)
30 define void @test_retainAutoreleasedReturnValue(ptr %x) nounwind {
32 %0 = call ptr @llvm.objc.retainAutoreleasedReturnValue(ptr %x) nounwind
33 call void @use_pointer(ptr %0)
37 ; CHECK: define void @test_retainAutorelease(ptr %x) [[NUW]] {
38 ; CHECK: call ptr @llvm.objc.retainAutorelease(ptr %x)
39 ; CHECK: call void @use_pointer(ptr %x)
41 define void @test_retainAutorelease(ptr %x) nounwind {
43 %0 = call ptr @llvm.objc.retainAutorelease(ptr %x) nounwind
44 call void @use_pointer(ptr %0)
48 ; CHECK: define void @test_retainAutoreleaseReturnValue(ptr %x) [[NUW]] {
49 ; CHECK: call ptr @llvm.objc.retainAutoreleaseReturnValue(ptr %x)
50 ; CHECK: call void @use_pointer(ptr %x)
52 define void @test_retainAutoreleaseReturnValue(ptr %x) nounwind {
54 %0 = call ptr @llvm.objc.retainAutoreleaseReturnValue(ptr %x) nounwind
55 call void @use_pointer(ptr %0)
59 ; CHECK: define void @test_autorelease(ptr %x) [[NUW]] {
60 ; CHECK: call ptr @llvm.objc.autorelease(ptr %x)
61 ; CHECK: call void @use_pointer(ptr %x)
63 define void @test_autorelease(ptr %x) nounwind {
65 %0 = call ptr @llvm.objc.autorelease(ptr %x) nounwind
66 call void @use_pointer(ptr %0)
70 ; CHECK: define void @test_autoreleaseReturnValue(ptr %x) [[NUW]] {
71 ; CHECK: call ptr @llvm.objc.autoreleaseReturnValue(ptr %x)
72 ; CHECK: call void @use_pointer(ptr %x)
74 define void @test_autoreleaseReturnValue(ptr %x) nounwind {
76 %0 = call ptr @llvm.objc.autoreleaseReturnValue(ptr %x) nounwind
77 call void @use_pointer(ptr %0)
81 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
82 ; RetainBlock is not strictly forwarding. Do not touch it. ;
83 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
85 ; CHECK: define void @test_retainBlock(ptr %x) [[NUW]] {
86 ; CHECK: call ptr @llvm.objc.retainBlock(ptr %x)
87 ; CHECK: call void @use_pointer(ptr %0)
89 define void @test_retainBlock(ptr %x) nounwind {
91 %0 = call ptr @llvm.objc.retainBlock(ptr %x) nounwind
92 call void @use_pointer(ptr %0)