Clang Project

clang_source_code/test/OpenMP/taskloop_simd_reduction_messages.cpp
1// RUN: %clang_cc1 -verify -fopenmp -ferror-limit 150 -o - %s
2// RUN: %clang_cc1 -verify -fopenmp -std=c++98 -ferror-limit 150 -o - %s
3// RUN: %clang_cc1 -verify -fopenmp -std=c++11 -ferror-limit 150 -o - %s
4
5// RUN: %clang_cc1 -verify -fopenmp-simd -ferror-limit 150 -o - %s
6// RUN: %clang_cc1 -verify -fopenmp-simd -std=c++98 -ferror-limit 150 -o - %s
7// RUN: %clang_cc1 -verify -fopenmp-simd -std=c++11 -ferror-limit 150 -o - %s
8
9typedef 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
19void foo() {
20}
21
22bool foobool(int argc) {
23  return argc;
24}
25
26void foobar(int &ref) {
27#pragma omp taskloop simd reduction(+:ref)
28  for (int i = 0; i < 10; ++i)
29    foo();
30}
31
32struct S1; // expected-note {{declared here}} expected-note 4 {{forward declaration of 'S1'}}
33extern S1 a;
34class S2 {
35  mutable int a;
36  S2 &operator+(const S2 &arg) { return (*this); } // expected-note 3 {{implicitly declared private here}}
37
38public:
39  S2() : a(0) {}
40  S2(S2 &s2) : a(s2.a) {}
41  static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
42  static const float S2sc; // expected-note 2 {{'S2sc' declared here}}
43};
44const float S2::S2sc = 0;
45S2 b;                     // expected-note 3 {{'b' defined here}}
46const S2 ba[5];           // expected-note 2 {{'ba' defined here}}
47class S3 {
48  int a;
49
50public:
51  int b;
52  S3() : a(0) {}
53  S3(const S3 &s3) : a(s3.a) {}
54  S3 operator+(const S3 &arg1) { return arg1; }
55};
56int operator+(const S3 &arg1, const S3 &arg2) { return 5; }
57S3 c;               // expected-note 3 {{'c' defined here}}
58const S3 ca[5];     // expected-note 2 {{'ca' defined here}}
59extern const int f; // expected-note 4 {{'f' declared here}}
60class S4 {
61  int a;
62  S4(); // expected-note {{implicitly declared private here}}
63  S4(const S4 &s4);
64  S4 &operator+(const S4 &arg) { return (*this); }
65
66public:
67  S4(int v) : a(v) {}
68};
69S4 &operator&=(S4 &arg1, S4 &arg2) { return arg1; }
70class S5 {
71  int a;
72  S5() : a(0) {} // expected-note {{implicitly declared private here}}
73  S5(const S5 &s5) : a(s5.a) {}
74  S5 &operator+(const S5 &arg);
75
76public:
77  S5(int v) : a(v) {}
78};
79class S6 { // expected-note 3 {{candidate function (the implicit copy assignment operator) not viable: no known conversion from 'int' to 'const S6' for 1st argument}}
80#if __cplusplus >= 201103L // C++11 or later
81// expected-note@-2 3 {{candidate function (the implicit move assignment operator) not viable}}
82#endif
83  int a;
84
85public:
86  S6() : a(6) {}
87  operator int() { return 6; }
88} o;
89
90struct S7 {
91  int a: 32;
92  S7() {
93#pragma omp taskloop reduction(+:a) // expected-error {{expected addressable reduction item for the task-based directives}}
94    for (int i = 0; i < 10; ++i)
95      ++a;
96  }
97};
98
99S3 h, k;
100#pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
101
102template <class T>       // expected-note {{declared here}}
103T tmain(T argc) {
104  const T d = T();       // expected-note 4 {{'d' defined here}}
105  const T da[5] = {T()}; // expected-note 2 {{'da' defined here}}
106  T qa[5] = {T()};
107  T i;
108  T &j = i;                        // expected-note 4 {{'j' defined here}}
109  S3 &p = k;                       // expected-note 2 {{'p' defined here}}
110  const T &r = da[(int)i];         // expected-note 2 {{'r' defined here}}
111  T &q = qa[(int)i];               // expected-note 2 {{'q' defined here}}
112  T fl;
113#pragma omp taskloop simd reduction // expected-error {{expected '(' after 'reduction'}}
114  for (int i = 0; i < 10; ++i)
115    foo();
116#pragma omp taskloop simd reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp taskloop simd' are ignored}}
117  for (int i = 0; i < 10; ++i)
118    foo();
119#pragma omp taskloop simd reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
120  for (int i = 0; i < 10; ++i)
121    foo();
122#pragma omp taskloop simd reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
123  for (int i = 0; i < 10; ++i)
124    foo();
125#pragma omp taskloop simd reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
126  for (int i = 0; i < 10; ++i)
127    foo();
128#pragma omp taskloop simd reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}}
129  for (int i = 0; i < 10; ++i)
130    foo();
131#pragma omp taskloop simd reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
132  for (int i = 0; i < 10; ++i)
133    foo();
134#pragma omp taskloop simd reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}}
135  for (int i = 0; i < 10; ++i)
136    foo();
137#pragma omp taskloop simd reduction(| : argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}}
138  for (int i = 0; i < 10; ++i)
139    foo();
140#pragma omp taskloop simd reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name, array element or array section}}
141  for (int i = 0; i < 10; ++i)
142    foo();
143#pragma omp taskloop simd 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'}}
144  for (int i = 0; i < 10; ++i)
145    foo();
146#pragma omp taskloop simd 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 '('}}
147  for (int i = 0; i < 10; ++i)
148    foo();
149#pragma omp taskloop simd reduction(^ : T) // expected-error {{'T' does not refer to a value}}
150  for (int i = 0; i < 10; ++i)
151    foo();
152#pragma omp taskloop simd 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'}}
153  for (int i = 0; i < 10; ++i)
154    foo();
155#pragma omp taskloop simd 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}}
156  for (int i = 0; i < 10; ++i)
157    foo();
158#pragma omp taskloop simd reduction(max : h.b) // expected-error {{expected variable name, array element or array section}}
159  for (int i = 0; i < 10; ++i)
160    foo();
161#pragma omp taskloop simd reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduction}}
162  for (int i = 0; i < 10; ++i)
163    foo();
164#pragma omp taskloop simd reduction(* : ca) // expected-error {{const-qualified variable cannot be reduction}}
165  for (int i = 0; i < 10; ++i)
166    foo();
167#pragma omp taskloop simd reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}} expected-error {{const-qualified variable cannot be reduction}}
168  for (int i = 0; i < 10; ++i)
169    foo();
170#pragma omp taskloop simd reduction(^ : fl) // expected-error {{invalid operands to binary expression ('float' and 'float')}}
171  for (int i = 0; i < 10; ++i)
172    foo();
173#pragma omp taskloop simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
174  for (int i = 0; i < 10; ++i)
175    foo();
176#pragma omp taskloop simd reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot be reduction}}
177  for (int i = 0; i < 10; ++i)
178    foo();
179#pragma omp taskloop simd reduction(+ : h, k) // expected-error {{threadprivate or thread local variable cannot be reduction}}
180  for (int i = 0; i < 10; ++i)
181    foo();
182#pragma omp taskloop simd reduction(+ : o) // expected-error 2 {{no viable overloaded '='}}
183  for (int i = 0; i < 10; ++i)
184    foo();
185#pragma omp taskloop simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
186  for (int i = 0; i < 10; ++i)
187    foo();
188#pragma omp parallel private(k)
189#pragma omp taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
190  for (int i = 0; i < 10; ++i)
191    foo();
192#pragma omp taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appear only once in OpenMP 'reduction' clause}} expected-note 2 {{previously referenced here}}
193  for (int i = 0; i < 10; ++i)
194    foo();
195#pragma omp taskloop simd reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be reduction}}
196  for (int i = 0; i < 10; ++i)
197    foo();
198#pragma omp parallel shared(i)
199#pragma omp parallel reduction(min : i)
200#pragma omp taskloop simd reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
201  for (int i = 0; i < 10; ++i)
202    foo();
203#pragma omp parallel private(fl)
204#pragma omp taskloop simd reduction(+ : fl) allocate(omp_thread_mem_alloc: fl) // expected-warning 2 {{allocator with the 'thread' trait access has unspecified behavior on 'taskloop simd' directive}}
205  for (int i = 0; i < 10; ++i)
206    foo();
207#pragma omp parallel reduction(* : fl)
208#pragma omp taskloop simd reduction(+ : fl)
209  for (int i = 0; i < 10; ++i)
210    foo();
211
212  return T();
213}
214
215namespace A {
216double x;
217#pragma omp threadprivate(x) // expected-note {{defined as threadprivate or thread local}}
218}
219namespace B {
220using A::x;
221}
222
223int main(int argc, char **argv) {
224  const int d = 5;       // expected-note 2 {{'d' defined here}}
225  const int da[5] = {0}; // expected-note {{'da' defined here}}
226  int qa[5] = {0};
227  S4 e(4);
228  S5 g(5);
229  int i;
230  int &j = i;                      // expected-note 2 {{'j' defined here}}
231  S3 &p = k;                       // expected-note 2 {{'p' defined here}}
232  const int &r = da[i];            // expected-note {{'r' defined here}}
233  int &q = qa[i];                  // expected-note {{'q' defined here}}
234  float fl;
235#pragma omp taskloop simd reduction // expected-error {{expected '(' after 'reduction'}}
236  for (int i = 0; i < 10; ++i)
237    foo();
238#pragma omp taskloop simd reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp taskloop simd' are ignored}}
239  for (int i = 0; i < 10; ++i)
240    foo();
241#pragma omp taskloop simd reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
242  for (int i = 0; i < 10; ++i)
243    foo();
244#pragma omp taskloop simd reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
245  for (int i = 0; i < 10; ++i)
246    foo();
247#pragma omp taskloop simd reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
248  for (int i = 0; i < 10; ++i)
249    foo();
250#pragma omp taskloop simd reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}}
251  for (int i = 0; i < 10; ++i)
252    foo();
253#pragma omp taskloop simd reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
254  for (int i = 0; i < 10; ++i)
255    foo();
256#pragma omp taskloop simd reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max'}}
257  for (int i = 0; i < 10; ++i)
258    foo();
259#pragma omp taskloop simd reduction(| : argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
260  for (int i = 0; i < 10; ++i)
261    foo();
262#pragma omp taskloop simd reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name, array element or array section}}
263  for (int i = 0; i < 10; ++i)
264    foo();
265#pragma omp taskloop simd reduction(~ : argc) // expected-error {{expected unqualified-id}}
266  for (int i = 0; i < 10; ++i)
267    foo();
268#pragma omp taskloop simd reduction(&& : argc)
269  for (int i = 0; i < 10; ++i)
270    foo();
271#pragma omp taskloop simd reduction(^ : S1) // expected-error {{'S1' does not refer to a value}}
272  for (int i = 0; i < 10; ++i)
273    foo();
274#pragma omp taskloop simd 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'}}
275  for (int i = 0; i < 10; ++i)
276    foo();
277#pragma omp taskloop simd reduction(min : 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}}
278  for (int i = 0; i < 10; ++i)
279    foo();
280#pragma omp taskloop simd reduction(max : h.b) // expected-error {{expected variable name, array element or array section}}
281  for (int i = 0; i < 10; ++i)
282    foo();
283#pragma omp taskloop simd reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduction}}
284  for (int i = 0; i < 10; ++i)
285    foo();
286#pragma omp taskloop simd reduction(* : ca) // expected-error {{const-qualified variable cannot be reduction}}
287  for (int i = 0; i < 10; ++i)
288    foo();
289#pragma omp taskloop simd reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}}
290  for (int i = 0; i < 10; ++i)
291    foo();
292#pragma omp taskloop simd reduction(^ : fl) // expected-error {{invalid operands to binary expression ('float' and 'float')}}
293  for (int i = 0; i < 10; ++i)
294    foo();
295#pragma omp taskloop simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
296  for (int i = 0; i < 10; ++i)
297    foo();
298#pragma omp taskloop simd reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot be reduction}}
299  for (int i = 0; i < 10; ++i)
300    foo();
301#pragma omp taskloop simd reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{invalid 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')}}
302  for (int i = 0; i < 10; ++i)
303    foo();
304#pragma omp taskloop simd reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be reduction}}
305  for (int i = 0; i < 10; ++i)
306    foo();
307#pragma omp taskloop simd reduction(+ : o) // expected-error {{no viable overloaded '='}}
308  for (int i = 0; i < 10; ++i)
309    foo();
310#pragma omp taskloop simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
311  for (int i = 0; i < 10; ++i)
312    foo();
313#pragma omp parallel private(k)
314#pragma omp taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
315  for (int i = 0; i < 10; ++i)
316    foo();
317#pragma omp taskloop simd reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear only once in OpenMP 'reduction' clause}} expected-note {{previously referenced here}}
318  for (int i = 0; i < 10; ++i)
319    foo();
320#pragma omp taskloop simd reduction(+ : r) // expected-error {{const-qualified variable cannot be reduction}}
321  for (int i = 0; i < 10; ++i)
322    foo();
323#pragma omp parallel shared(i)
324#pragma omp parallel reduction(min : i)
325#pragma omp taskloop simd reduction(max : j) // expected-error {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
326  for (int i = 0; i < 10; ++i)
327    foo();
328#pragma omp parallel private(fl)
329#pragma omp taskloop simd reduction(+ : fl)
330  for (int i = 0; i < 10; ++i)
331    foo();
332#pragma omp parallel reduction(* : fl)
333#pragma omp taskloop simd reduction(+ : fl)
334  for (int i = 0; i < 10; ++i)
335    foo();
336  static int m;
337#pragma omp taskloop simd reduction(+ : m) // OK
338  for (int i = 0; i < 10; ++i)
339    m++;
340#pragma omp taskloop simd reduction(+ : m) nogroup // expected-error {{'reduction' clause cannot be used with 'nogroup' clause}}
341  for (int i = 0; i < 10; ++i)
342    m++;
343
344  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}}
345}
346