[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenObjCXX / objc-container-subscripting.mm
blobc32abf675d8fec7db1da9700f6cde93c1fda988a
1 // RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin -o - %s | FileCheck %s
3 typedef unsigned int size_t;
4 @protocol P @end
6 @interface NSMutableArray
7 - (id)objectAtIndexedSubscript:(size_t)index;
8 - (void)setObject:(id)object atIndexedSubscript:(size_t)index;
9 @end
11 struct S {
12   operator unsigned int ();
13   operator id ();
16 @interface NSMutableDictionary
17 - (id)objectForKeyedSubscript:(id)key;
18 - (void)setObject:(id)object forKeyedSubscript:(id)key;
19 @end
21 int main() {
22   NSMutableArray<P> * array;
23   S s;
24   id oldObject = array[(int)s];
26   NSMutableDictionary<P> *dict;
27   dict[(id)s] = oldObject;
28   oldObject = dict[(id)s];
32 template <class T> void test2(NSMutableArray *a) {
33   a[10] = 0;
35 template void test2<int>(NSMutableArray*);
36 // CHECK-LABEL: define weak_odr void @_Z5test2IiEvP14NSMutableArray
37 // CHECK: @objc_msgSend 
38 // CHECK: ret void
41 template <class T> void test3(NSMutableArray *a) {
42   a[sizeof(T)] = 0;
45 template void test3<int>(NSMutableArray*);
46 // CHECK-LABEL: define weak_odr void @_Z5test3IiEvP14NSMutableArray
47 // CHECK: @objc_msgSend
48 // CHECK: ret void
50 // CHECK-LABEL: define{{.*}} void @_Z11static_dataP14NSMutableArray
51 void static_data(NSMutableArray *array) {
52   // CHECK: call i32 @__cxa_guard_acquire
53   // CHECK: call noundef ptr @objc_msgSend
54   // CHECK: call void @__cxa_guard_release
55   static id x = array[4];
56   // CHECK: ret void