[RISCV] Use RISCVSubtarget::is64Bit() instead of hasFeature(RISCV::Feature64Bit)...
[llvm-project.git] / llvm / test / Transforms / ObjCARC / expand.ll
blobd07ed7cfbef19ab6445dfed4e3c339bef3024695
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)
18 ; CHECK: }
19 define void @test_retain(ptr %x) nounwind {
20 entry:
21   %0 = call ptr @llvm.objc.retain(ptr %x) nounwind
22   call void @use_pointer(ptr %0)
23   ret void
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)
29 ; CHECK: }
30 define void @test_retainAutoreleasedReturnValue(ptr %x) nounwind {
31 entry:
32   %0 = call ptr @llvm.objc.retainAutoreleasedReturnValue(ptr %x) nounwind
33   call void @use_pointer(ptr %0)
34   ret void
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)
40 ; CHECK: }
41 define void @test_retainAutorelease(ptr %x) nounwind {
42 entry:
43   %0 = call ptr @llvm.objc.retainAutorelease(ptr %x) nounwind
44   call void @use_pointer(ptr %0)
45   ret void
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)
51 ; CHECK: }
52 define void @test_retainAutoreleaseReturnValue(ptr %x) nounwind {
53 entry:
54   %0 = call ptr @llvm.objc.retainAutoreleaseReturnValue(ptr %x) nounwind
55   call void @use_pointer(ptr %0)
56   ret void
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)
62 ; CHECK: }
63 define void @test_autorelease(ptr %x) nounwind {
64 entry:
65   %0 = call ptr @llvm.objc.autorelease(ptr %x) nounwind
66   call void @use_pointer(ptr %0)
67   ret void
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)
73 ; CHECK: }
74 define void @test_autoreleaseReturnValue(ptr %x) nounwind {
75 entry:
76   %0 = call ptr @llvm.objc.autoreleaseReturnValue(ptr %x) nounwind
77   call void @use_pointer(ptr %0)
78   ret void
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)
88 ; CHECK: }
89 define void @test_retainBlock(ptr %x) nounwind {
90 entry:
91   %0 = call ptr @llvm.objc.retainBlock(ptr %x) nounwind
92   call void @use_pointer(ptr %0)
93   ret void