[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenObjC / gnustep2-direct-method.m
blob4e049bfbb79f7e04fe0189a6569d5fc2a76fb0c0
1 // RUN: %clang_cc1 -triple x86_64-unknown-freebsd -emit-llvm -fobjc-runtime=gnustep-2.2 -o - %s | FileCheck %s
3 @interface X
4 @end
6 @implementation X
7 //- (int)x __attribute__((objc_direct)) { return 12; }
8 - (int)x __attribute__((objc_direct)) { return 12; }
10 // Check that the name is mangled like Objective-C methods and contains a nil check
11 // CHECK-LABEL: @_i_X__x
12 // CHECK: icmp eq ptr %0, null
14 + (int)clsMeth __attribute__((objc_direct)) { return 42; }
15 // Check that the name is mangled like Objective-C methods and contains an initialisation check
16 // CHECK-LABEL: @_c_X__clsMeth
17 // CHECK: getelementptr inbounds nuw { ptr, ptr, ptr, i64, i64 }, ptr %0, i32 0, i32 4
18 // CHECK: load i64, ptr %1, align 64
19 // CHECK: and i64 %2, 256
20 // CHECK: objc_direct_method.class_uninitialized:
21 // CHECK: call void @objc_send_initialize(ptr %0)
23 @end
25 // Check that the call sides are set up correctly.
26 void callCls(void)
28         // CHECK: call i32 @_c_X__clsMeth
29         [X clsMeth];
32 void callInstance(X *x)
34         // CHECK: call i32 @_i_X__x
35         [x x];