blob: 7417cebca707d30a36b462d6684fe6f9d4b4d24c [file] [log] [blame]
Alexey Bataeva9148882019-07-08 15:45:24 +00001// RUN: %clang_cc1 -verify -fopenmp -ferror-limit 150 -o - %s -Wuninitialized
2// RUN: %clang_cc1 -verify -fopenmp -std=c++98 -ferror-limit 150 -o - %s -Wuninitialized
3// RUN: %clang_cc1 -verify -fopenmp -std=c++11 -ferror-limit 150 -o - %s -Wuninitialized
Alexey Bataev3f96fe62017-12-13 17:31:39 +00004
Alexey Bataeva9148882019-07-08 15:45:24 +00005// RUN: %clang_cc1 -verify -fopenmp-simd -ferror-limit 150 -o - %s -Wuninitialized
6// RUN: %clang_cc1 -verify -fopenmp-simd -std=c++98 -ferror-limit 150 -o - %s -Wuninitialized
7// RUN: %clang_cc1 -verify -fopenmp-simd -std=c++11 -ferror-limit 150 -o - %s -Wuninitialized
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00008
Alexey Bataev471171c2019-03-28 19:15:36 +00009typedef void **omp_allocator_handle_t;
10extern const omp_allocator_handle_t omp_default_mem_alloc;
11extern const omp_allocator_handle_t omp_large_cap_mem_alloc;
12extern const omp_allocator_handle_t omp_const_mem_alloc;
13extern const omp_allocator_handle_t omp_high_bw_mem_alloc;
14extern const omp_allocator_handle_t omp_low_lat_mem_alloc;
15extern const omp_allocator_handle_t omp_cgroup_mem_alloc;
16extern const omp_allocator_handle_t omp_pteam_mem_alloc;
17extern const omp_allocator_handle_t omp_thread_mem_alloc;
18
Alexey Bataev8a8c6982019-07-26 14:50:05 +000019void xxx(int argc) {
20 int fp; // expected-note {{initialize the variable 'fp' to silence this warning}}
21#pragma omp target reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized when used here}}
22 for (int i = 0; i < 10; ++i)
23 ;
24}
25
Alexey Bataev3f96fe62017-12-13 17:31:39 +000026void foo() {
27}
28
29bool foobool(int argc) {
30 return argc;
31}
32
33void foobar(int &ref) {
34#pragma omp target reduction(+:ref)
35 foo();
36}
37
38struct S1; // expected-note {{declared here}} expected-note 4 {{forward declaration of 'S1'}}
39extern S1 a;
40class S2 {
41 mutable int a;
42 S2 &operator+(const S2 &arg) { return (*this); } // expected-note 3 {{implicitly declared private here}}
43
44public:
45 S2() : a(0) {}
46 S2(S2 &s2) : a(s2.a) {}
47 static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
48 static const float S2sc; // expected-note 2 {{'S2sc' declared here}}
49};
50const float S2::S2sc = 0;
51S2 b; // expected-note 3 {{'b' defined here}}
52const S2 ba[5]; // expected-note 2 {{'ba' defined here}}
53class S3 {
54 int a;
55
56public:
57 int b;
58 S3() : a(0) {}
59 S3(const S3 &s3) : a(s3.a) {}
60 S3 operator+(const S3 &arg1) { return arg1; }
61};
62int operator+(const S3 &arg1, const S3 &arg2) { return 5; }
63S3 c; // expected-note 3 {{'c' defined here}}
64const S3 ca[5]; // expected-note 2 {{'ca' defined here}}
65extern const int f; // expected-note 4 {{'f' declared here}}
66class S4 {
67 int a;
68 S4(); // expected-note {{implicitly declared private here}}
69 S4(const S4 &s4);
70 S4 &operator+(const S4 &arg) { return (*this); }
71
72public:
73 S4(int v) : a(v) {}
74};
75S4 &operator&=(S4 &arg1, S4 &arg2) { return arg1; }
76class S5 {
77 int a;
78 S5() : a(0) {} // expected-note {{implicitly declared private here}}
79 S5(const S5 &s5) : a(s5.a) {}
80 S5 &operator+(const S5 &arg);
81
82public:
83 S5(int v) : a(v) {}
84};
85class S6 { // expected-note 3 {{candidate function (the implicit copy assignment operator) not viable: no known conversion from 'int' to 'const S6' for 1st argument}}
86#if __cplusplus >= 201103L // C++11 or later
87// expected-note@-2 3 {{candidate function (the implicit move assignment operator) not viable}}
88#endif
89 int a;
90
91public:
92 S6() : a(6) {}
93 operator int() { return 6; }
94} o;
95
96S3 h, k;
97#pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
98
99template <class T> // expected-note {{declared here}}
100T tmain(T argc) {
101 const T d = T(); // expected-note 4 {{'d' defined here}}
102 const T da[5] = {T()}; // expected-note 2 {{'da' defined here}}
103 T qa[5] = {T()};
Alexey Bataeva9148882019-07-08 15:45:24 +0000104 T i, z;
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000105 T &j = i; // expected-note 4 {{'j' defined here}}
106 S3 &p = k; // expected-note 2 {{'p' defined here}}
107 const T &r = da[(int)i]; // expected-note 2 {{'r' defined here}}
108 T &q = qa[(int)i]; // expected-note 2 {{'q' defined here}}
109 T fl;
110#pragma omp target reduction // expected-error {{expected '(' after 'reduction'}}
111 foo();
112#pragma omp target reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
113 foo();
114#pragma omp target reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
115 foo();
116#pragma omp target reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
117 foo();
118#pragma omp target reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
119 foo();
120#pragma omp target reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}}
121 foo();
122#pragma omp target reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
123 foo();
124#pragma omp target reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}}
125 foo();
126#pragma omp target reduction(| : argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}}
127 foo();
128#pragma omp target reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name, array element or array section}}
129 foo();
130#pragma omp target reduction(foo : argc) //expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max' or declare reduction for type 'float'}} expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max' or declare reduction for type 'int'}}
131 foo();
Alexey Bataeva9148882019-07-08 15:45:24 +0000132#pragma omp target reduction(&& : argc, z)
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000133 foo();
134#pragma omp target reduction(^ : T) // expected-error {{'T' does not refer to a value}}
135 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000136#pragma omp target reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 3 {{const-qualified variable cannot be reduction}} expected-error 2 {{'operator+' is a private member of 'S2'}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000137 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000138#pragma omp target reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 4 {{arguments of OpenMP clause 'reduction' for 'min' or 'max' must be of arithmetic type}} expected-error 3 {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000139 foo();
140#pragma omp target reduction(max : h.b) // expected-error {{expected variable name, array element or array section}}
141 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000142#pragma omp target reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000143 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000144#pragma omp target reduction(* : ca) // expected-error {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000145 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000146#pragma omp target reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}} expected-error {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000147 foo();
148#pragma omp target reduction(^ : fl) // expected-error {{invalid operands to binary expression ('float' and 'float')}}
149 foo();
150#pragma omp target reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
151 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000152#pragma omp target reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000153 foo();
154#pragma omp target reduction(+ : h, k) // expected-error {{threadprivate or thread local variable cannot be reduction}}
155 foo();
156#pragma omp target reduction(+ : o) // expected-error 2 {{no viable overloaded '='}}
157 foo();
158#pragma omp parallel private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
159 foo();
160#pragma omp parallel private(k)
161#pragma omp target reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
162 foo();
163#pragma omp target reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appear only once in OpenMP 'reduction' clause}} expected-note 2 {{previously referenced here}}
164 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000165#pragma omp target reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000166 foo();
167#pragma omp parallel shared(i)
168#pragma omp target reduction(min : i)
169#pragma omp parallel reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
170 foo();
171#pragma omp parallel
172#pragma omp for private(fl)
173 for (int i = 0; i < 10; ++i)
Alexey Bataev471171c2019-03-28 19:15:36 +0000174#pragma omp target reduction(+ : fl) allocate(omp_thread_mem_alloc: fl) // expected-warning 2 {{allocator with the 'thread' trait access has unspecified behavior on 'target' directive}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000175 foo();
176#pragma omp parallel
177#pragma omp for reduction(- : fl)
178 for (int i = 0; i < 10; ++i)
179#pragma omp target reduction(+ : fl)
180 foo();
181
182 return T();
183}
184
185namespace A {
186double x;
187#pragma omp threadprivate(x) // expected-note {{defined as threadprivate or thread local}}
188}
189namespace B {
190using A::x;
191}
192
193int main(int argc, char **argv) {
194 const int d = 5; // expected-note 2 {{'d' defined here}}
195 const int da[5] = {0}; // expected-note {{'da' defined here}}
196 int qa[5] = {0};
197 S4 e(4);
198 S5 g(5);
Alexey Bataeva9148882019-07-08 15:45:24 +0000199 int i, z;
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000200 int &j = i; // expected-note 2 {{'j' defined here}}
201 S3 &p = k; // expected-note 2 {{'p' defined here}}
202 const int &r = da[i]; // expected-note {{'r' defined here}}
203 int &q = qa[i]; // expected-note {{'q' defined here}}
204 float fl;
205#pragma omp target reduction // expected-error {{expected '(' after 'reduction'}}
206 foo();
207#pragma omp target reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
208 foo();
209#pragma omp target reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
210 foo();
211#pragma omp target reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
212 foo();
213#pragma omp target reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
214 foo();
215#pragma omp target reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}}
216 foo();
217#pragma omp target reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
218 foo();
219#pragma omp target reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max'}}
220 foo();
221#pragma omp target reduction(| : argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
222 foo();
223#pragma omp target reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name, array element or array section}}
224 foo();
225#pragma omp target reduction(~ : argc) // expected-error {{expected unqualified-id}}
226 foo();
Alexey Bataeve04483e2019-03-27 14:14:31 +0000227#pragma omp target reduction(&& : 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 '('}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000228 foo();
229#pragma omp target reduction(^ : S1) // expected-error {{'S1' does not refer to a value}}
230 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000231#pragma omp target reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 2 {{const-qualified variable cannot be reduction}} expected-error {{'operator+' is a private member of 'S2'}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000232 foo();
Alexey Bataeva9148882019-07-08 15:45:24 +0000233#pragma omp target reduction(min : z, a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 2 {{arguments of OpenMP clause 'reduction' for 'min' or 'max' must be of arithmetic type}} expected-error 2 {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000234 foo();
235#pragma omp target reduction(max : h.b) // expected-error {{expected variable name, array element or array section}}
236 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000237#pragma omp target reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000238 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000239#pragma omp target reduction(* : ca) // expected-error {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000240 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000241#pragma omp target reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000242 foo();
243#pragma omp target reduction(^ : fl) // expected-error {{invalid operands to binary expression ('float' and 'float')}}
244 foo();
245#pragma omp target reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
246 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000247#pragma omp target reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000248 foo();
249#pragma omp target reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{nvalid operands to binary expression ('S4' and 'S4')}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S5' and 'S5')}}
250 foo();
251#pragma omp target reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be reduction}}
252 foo();
253#pragma omp target reduction(+ : o) // expected-error {{no viable overloaded '='}}
254 foo();
255#pragma omp parallel private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
256 foo();
257#pragma omp parallel private(k)
258#pragma omp target reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
259 foo();
260#pragma omp target reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear only once in OpenMP 'reduction' clause}} expected-note {{previously referenced here}}
261 foo();
Joel E. Dennyd2649292019-01-04 22:11:56 +0000262#pragma omp target reduction(+ : r) // expected-error {{const-qualified variable cannot be reduction}}
Alexey Bataev3f96fe62017-12-13 17:31:39 +0000263 foo();
264#pragma omp parallel shared(i)
265#pragma omp target reduction(min : i)
266#pragma omp parallel reduction(max : j) // expected-error {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
267 foo();
268#pragma omp parallel
269#pragma omp for private(fl)
270 for (int i = 0; i < 10; ++i)
271#pragma omp target reduction(+ : fl)
272 foo();
273#pragma omp parallel
274#pragma omp for reduction(- : fl)
275 for (int i = 0; i < 10; ++i)
276#pragma omp target reduction(+ : fl)
277 foo();
278 static int m;
279#pragma omp target reduction(+ : m) // OK
280 m++;
281
282 return tmain(argc) + tmain(fl); // expected-note {{in instantiation of function template specialization 'tmain<int>' requested here}} expected-note {{in instantiation of function template specialization 'tmain<float>' requested here}}
283}