blob: 1659a82533be792d8b982c49267accd4443016d7 [file] [log] [blame]
George Karpenkov1657f362018-11-30 02:18:37 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3struct S {
4 __attribute__((os_returns_retained)) S* method_returns_retained() {
5 return nullptr;
6 }
George Karpenkovda2c77f2018-12-06 22:06:59 +00007
8 __attribute__((os_consumes_this)) void method_consumes_this();
9
10 __attribute__((os_consumes_this)) static void rejected_on_static(); // expected-warning{{'os_consumes_this' attribute only applies to non-static member functions}}
George Karpenkov1657f362018-11-30 02:18:37 +000011};
12__attribute__((os_returns_retained)) S *ret_retained() {
13 return nullptr;
14}
15
16__attribute__((os_returns_retained)) S ret_retained_value() { // expected-warning{{'os_returns_retained' attribute only applies to functions that return a pointer}}
17 return {};
18}
19
20__attribute__((os_returns_not_retained)) S *ret_not_retained() {
21 return nullptr;
22}
23
24__attribute__((os_returns_not_retained)) S ret_not_retained_value() { // expected-warning{{'os_returns_not_retained' attribute only applies to functions that return a pointer}}
25 return {};
26}
27
28void accept_consumed_arg(__attribute__((os_consumed)) S *arg) {}
29
30void accept_consumed_arg_by_value(__attribute__((os_consumed)) S arg) {} // expected-warning{{os_consumed attribute only applies to pointer parameters}}
31
32void accept_consumed_arg_no_extra_arg(__attribute__((os_consumed(10))) S *arg) {} // expected-error{{'os_consumed' attribute takes no arguments}}
33
34struct __attribute__((os_consumed)) NoAttrOnStruct {}; // expected-warning{{'os_consumed' attribute only applies to parameters}}
35
36__attribute__((os_returns_retained(10))) S* returns_retained_no_extra_arg() { // expected-error{{'os_returns_retained' attribute takes no arguments}}
37 return nullptr;
38}
39
George Karpenkov3a50a9f2019-01-11 18:02:08 +000040struct __attribute__((os_returns_retained)) NoRetainAttrOnStruct {}; // expected-warning{{'os_returns_retained' attribute only applies to functions, Objective-C methods, Objective-C properties, and parameters}}
George Karpenkov1657f362018-11-30 02:18:37 +000041
42__attribute__((os_returns_not_retained(10))) S* os_returns_no_retained_no_extra_args( S *arg) { // expected-error{{'os_returns_not_retained' attribute takes no arguments}}
43 return nullptr;
George Karpenkovda2c77f2018-12-06 22:06:59 +000044}
George Karpenkov1657f362018-11-30 02:18:37 +000045
George Karpenkov3a50a9f2019-01-11 18:02:08 +000046struct __attribute__((os_returns_not_retained)) NoNotRetainedAttrOnStruct {}; // expected-warning{{'os_returns_not_retained' attribute only applies to functions, Objective-C methods, Objective-C properties, and parameters}}
George Karpenkovda2c77f2018-12-06 22:06:59 +000047
48__attribute__((os_consumes_this)) void no_consumes_this_on_function() {} // expected-warning{{'os_consumes_this' attribute only applies to non-static member functions}}
George Karpenkov3a50a9f2019-01-11 18:02:08 +000049
50void write_into_out_parameter(__attribute__((os_returns_retained)) S** out) {}
51
52bool write_into_out_parameter_on_nonzero(__attribute__((os_returns_retained_on_non_zero)) S** out) {}
53
54bool write_into_out_parameter_on_nonzero_invalid(__attribute__((os_returns_retained_on_non_zero)) S* out) {} // expected-warning{{'os_returns_retained_on_non_zero' attribute only applies to pointer/reference-to-OSObject-pointer parameters}}
55
56bool write_into_out_parameter_on_zero(__attribute__((os_returns_retained_on_zero)) S** out) {}
57
58bool write_into_out_parameter_on_zero_invalid(__attribute__((os_returns_retained_on_zero)) S* out) {} // expected-warning{{'os_returns_retained_on_zero' attribute only applies to pointer/reference-to-OSObject-pointer parameters}}
59
60void write_into_out_parameter_ref(__attribute__((os_returns_retained)) S*& out) {}
61
62typedef S* SPtr;
63
64void write_into_out_parameter_typedef(__attribute__((os_returns_retained)) SPtr* out) {}
65
66void write_into_out_parameter_invalid(__attribute__((os_returns_retained)) S* out) {} // expected-warning{{'os_returns_retained' attribute only applies to pointer/reference-to-OSObject-pointer parameters}}
67
68void write_into_out_parameter_not_retained(__attribute__((os_returns_not_retained)) S **out) {}
69
70void write_into_out_parameter_not_retained(__attribute__((os_returns_not_retained)) S volatile * const * const out) {}
71
72void write_into_not_retainedout_parameter_invalid(__attribute__((os_returns_not_retained)) S* out) {} // expected-warning{{'os_returns_not_retained' attribute only applies to pointer/reference-to-OSObject-pointer parameters}}
73
74void write_into_not_retainedout_parameter_too_many_pointers(__attribute__((os_returns_not_retained)) S*** out) {} // expected-warning{{'os_returns_not_retained' attribute only applies to pointer/reference-to-OSObject-pointer parameters}}