blob: a2233ed076070742a5937a8477bbe3539c70a718 [file] [log] [blame]
Alexey Bataeva9148882019-07-08 15:45:24 +00001// RUN: %clang_cc1 -verify -fopenmp %s -Wuninitialized
Kelvin Li83c451e2016-12-25 04:52:54 +00002
Alexey Bataeva9148882019-07-08 15:45:24 +00003// RUN: %clang_cc1 -verify -fopenmp-simd %s -Wuninitialized
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00004
Alexey Bataev471171c2019-03-28 19:15:36 +00005typedef void **omp_allocator_handle_t;
6extern const omp_allocator_handle_t omp_default_mem_alloc;
7extern const omp_allocator_handle_t omp_large_cap_mem_alloc;
8extern const omp_allocator_handle_t omp_const_mem_alloc;
9extern const omp_allocator_handle_t omp_high_bw_mem_alloc;
10extern const omp_allocator_handle_t omp_low_lat_mem_alloc;
11extern const omp_allocator_handle_t omp_cgroup_mem_alloc;
12extern const omp_allocator_handle_t omp_pteam_mem_alloc;
13extern const omp_allocator_handle_t omp_thread_mem_alloc;
14
Kelvin Li83c451e2016-12-25 04:52:54 +000015void foo() {
16}
17
18bool foobool(int argc) {
19 return argc;
20}
21
22struct S1; // expected-note {{declared here}} expected-note {{forward declaration of 'S1'}}
23extern S1 a;
24class S2 {
25 mutable int a;
26public:
27 S2():a(0) { }
28 static float S2s; // expected-note {{predetermined as shared}}
29};
30const S2 b;
31const S2 ba[5];
32class S3 {
33 int a;
34public:
35 S3():a(0) { }
36};
Joel E. Dennye6234d1422019-01-04 22:11:31 +000037const S3 c; // expected-note {{'c' defined here}}
38const S3 ca[5]; // expected-note {{'ca' defined here}}
39extern const int f; // expected-note {{'f' declared here}}
Kelvin Li83c451e2016-12-25 04:52:54 +000040class S4 {
41 int a;
42 S4(); // expected-note {{implicitly declared private here}}
43public:
44 S4(int v):a(v) { }
45};
46class S5 {
47 int a;
48 S5():a(0) {} // expected-note {{implicitly declared private here}}
49public:
50 S5(int v):a(v) { }
51};
52
53S3 h;
54#pragma omp threadprivate(h) // expected-note {{defined as threadprivate or thread local}}
55
56
57int main(int argc, char **argv) {
Joel E. Dennye6234d1422019-01-04 22:11:31 +000058 const int d = 5; // expected-note {{'d' defined here}}
59 const int da[5] = { 0 }; // expected-note {{'da' defined here}}
Kelvin Li83c451e2016-12-25 04:52:54 +000060 S4 e(4);
61 S5 g(5);
62 int i;
63 int &j = i;
64
65#pragma omp target teams distribute private // expected-error {{expected '(' after 'private'}}
66 for (int k = 0; k < argc; ++k) ++k;
67
68#pragma omp target teams distribute private ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
69 for (int k = 0; k < argc; ++k) ++k;
70
71#pragma omp target teams distribute private () // expected-error {{expected expression}}
72 for (int k = 0; k < argc; ++k) ++k;
73
74#pragma omp target teams distribute private (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
75 for (int k = 0; k < argc; ++k) ++k;
76
77#pragma omp target teams distribute private (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
78 for (int k = 0; k < argc; ++k) ++k;
79
80#pragma omp target teams distribute private (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
81 for (int k = 0; k < argc; ++k) ++k;
82
Alexey Bataeve04483e2019-03-27 14:14:31 +000083#pragma omp target teams distribute private (argc) allocate , allocate(, allocate(omp_default , allocate(omp_default_mem_alloc, allocate(omp_default_mem_alloc:, allocate(omp_default_mem_alloc: argc, allocate(omp_default_mem_alloc: argv), allocate(argv) // expected-error {{expected '(' after 'allocate'}} expected-error 2 {{expected expression}} expected-error 2 {{expected ')'}} expected-error {{use of undeclared identifier 'omp_default'}} expected-note 2 {{to match this '('}}
Kelvin Li83c451e2016-12-25 04:52:54 +000084 for (int k = 0; k < argc; ++k) ++k;
85
86#pragma omp target teams distribute private (S1) // expected-error {{'S1' does not refer to a value}}
87 for (int k = 0; k < argc; ++k) ++k;
88
Joel E. Dennye6234d1422019-01-04 22:11:31 +000089#pragma omp target teams distribute private (a, b, c, d, f) // expected-error {{private variable with incomplete type 'S1'}} expected-error 1 {{const-qualified variable without mutable fields cannot be private}} expected-error 2 {{const-qualified variable cannot be private}}
Kelvin Li83c451e2016-12-25 04:52:54 +000090 for (int k = 0; k < argc; ++k) ++k;
91
92#pragma omp target teams distribute private (argv[1]) // expected-error {{expected variable name}}
93 for (int k = 0; k < argc; ++k) ++k;
94
Alexey Bataev471171c2019-03-28 19:15:36 +000095#pragma omp target teams distribute private(ba) allocate(omp_thread_mem_alloc: ba) // expected-warning {{allocator with the 'thread' trait access has unspecified behavior on 'target teams distribute' directive}}
Kelvin Li83c451e2016-12-25 04:52:54 +000096 for (int k = 0; k < argc; ++k) ++k;
97
Joel E. Dennye6234d1422019-01-04 22:11:31 +000098#pragma omp target teams distribute private(ca) // expected-error {{const-qualified variable without mutable fields cannot be private}}
Kelvin Li83c451e2016-12-25 04:52:54 +000099 for (int k = 0; k < argc; ++k) ++k;
100
Joel E. Dennye6234d1422019-01-04 22:11:31 +0000101#pragma omp target teams distribute private(da) // expected-error {{const-qualified variable cannot be private}}
Kelvin Li83c451e2016-12-25 04:52:54 +0000102 for (int k = 0; k < argc; ++k) ++k;
103
104#pragma omp target teams distribute private(S2::S2s) // expected-error {{shared variable cannot be private}}
105 for (int k = 0; k < argc; ++k) ++k;
106
107#pragma omp target teams distribute private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
108 for (int k = 0; k < argc; ++k) ++k;
109
110#pragma omp target teams distribute private(h) // expected-error {{threadprivate or thread local variable cannot be private}}
111 for (int k = 0; k < argc; ++k) ++k;
112
113#pragma omp target teams distribute shared(i)
114 for (int k = 0; k < argc; ++k) ++k;
115
116#pragma omp target teams distribute firstprivate(i), private(i) // expected-error {{firstprivate variable cannot be private}} expected-note {{defined as firstprivate}}
117 for (int k = 0; k < argc; ++k) ++k;
118
119#pragma omp target teams distribute private(j)
120 for (int k = 0; k < argc; ++k) ++k;
121
122 return 0;
123}