aboutsummaryrefslogtreecommitdiff
path: root/clang/test/SemaOpenACC/loop-construct.cpp
blob: 0282258023baf52210625715f4eb2e159c823958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
// RUN: %clang_cc1 %s -fopenacc -verify -Wno-empty-body -Wno-unused-value
namespace std {
  struct random_access_iterator_tag{};
}

struct SomeStruct{
  void operator++();
  void operator++(int);
};

struct SomeIterator {
  bool operator!=(SomeIterator&);
  void operator++();
  void operator++(int);
  int operator*();
};

struct SomeRAIterator {
  using iterator_category = std::random_access_iterator_tag;
  SomeRAIterator();
  SomeRAIterator(int i);

  void operator=(int i);
  SomeRAIterator &operator=(SomeRAIterator&);

  void operator++(int);
  void operator++();
  int operator*();
  void operator+=(int);
  bool operator!=(SomeRAIterator&);
};

SomeRAIterator &operator+(const SomeRAIterator&, int);
SomeRAIterator &operator+(int,const SomeRAIterator&);
SomeRAIterator &operator-(const SomeRAIterator&, int);
SomeRAIterator &operator-(int,const SomeRAIterator&);

struct HasIteratorCollection {
  SomeIterator &begin();
  SomeIterator &end();
};

struct HasRAIteratorCollection {
  SomeRAIterator &begin();
  SomeRAIterator &end();
};

void func_call();

template<typename Int, typename IntPtr, typename Float, typename Struct, typename Iterator, typename RandAccessIterator>
void SeqLoopRules() {

  // No rules in this section!
#pragma acc loop seq
  for(;;);

#pragma acc loop seq
  for(float f;;);

#pragma acc loop seq
  for(int f;;);

#pragma acc loop seq
  for(int f,g;;);

#pragma acc loop seq
  for(Int f;;);

#pragma acc loop seq
  for(Int *f;;);

#pragma acc loop seq
  for(IntPtr f;;);

#pragma acc loop seq
  for(Float *f;;);

#pragma acc loop seq
  for(SomeStruct f;;);

#pragma acc loop seq
  for(Struct f;;);

#pragma acc loop seq
  for(SomeIterator f;;);

#pragma acc loop seq
  for(Iterator f;;);

#pragma acc loop seq
  for(SomeRAIterator f;;);

#pragma acc loop seq
  for(RandAccessIterator f;;);

#pragma acc loop seq
  for(Int f;;);

#pragma acc loop seq
  for(Int f;;++f);

#pragma acc loop seq
  for(Int f;;f+=1);

  int i;
#pragma acc loop seq
  for(Int f;;i+=1);

#pragma acc loop seq
  for(Int f;;i++);

#pragma acc loop seq
  for(RandAccessIterator f;;i++);

#pragma acc loop seq
  for(RandAccessIterator f;;func_call());

  Int Array[5];
#pragma acc loop seq
  for(auto X : Array);

#pragma acc loop seq
  for(auto X : HasIteratorCollection{});

#pragma acc loop seq
  for(auto X : HasRAIteratorCollection{});

  RandAccessIterator f;
#pragma acc loop seq
  for(f;;f++);

#pragma acc loop seq
  for(f = 0;;++f);

#pragma acc loop seq
  for(f = 0;;f++);

#pragma acc loop seq
  for(f = 0;;f+=1);
}


template<typename Int, typename IntPtr, typename Float, typename Struct, typename Iterator, typename RandAccessIterator>
void LoopRules() {

  // Loop variable must be integer, pointer, or random_access_iterator
#pragma acc loop
  // expected-error@+6{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-6{{'loop' construct is here}}
  for(;;);

#pragma acc loop
  // expected-error@+6{{loop variable of loop associated with an OpenACC 'loop' construct must be of integer, pointer, or random-access-iterator type (is 'float')}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-6{{'loop' construct is here}}
  for(float f = 0;;);

#pragma acc loop
  // expected-error@+6{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-6{{'loop' construct is here}}
  for(int f;;);

#pragma acc loop
  // expected-error@+6{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-6{{'loop' construct is here}}
  for(int f,g;;);

#pragma acc loop
  // expected-error@+4{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  for(Int f;;++f);

#pragma acc loop
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-2{{'loop' construct is here}}
  for(Int *f = nullptr;;++f);

#pragma acc loop
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-2{{'loop' construct is here}}
  for(IntPtr f = nullptr;;++f);

#pragma acc loop
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-2{{'loop' construct is here}}
  for(Float *f = nullptr;;++f);

#pragma acc loop
  // expected-error@+6{{loop variable of loop associated with an OpenACC 'loop' construct must be of integer, pointer, or random-access-iterator type (is 'SomeStruct')}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-6{{'loop' construct is here}}
  for(SomeStruct f;;);

#pragma acc loop
  // expected-error@+4{{loop variable of loop associated with an OpenACC 'loop' construct must be of integer, pointer, or random-access-iterator type (is 'SomeStruct')}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  for(Struct f;;++f);

#pragma acc loop
  // expected-error@+4{{loop variable of loop associated with an OpenACC 'loop' construct must be of integer, pointer, or random-access-iterator type (is 'SomeIterator')}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  for(SomeIterator f;;++f);

#pragma acc loop
  // expected-error@+4{{loop variable of loop associated with an OpenACC 'loop' construct must be of integer, pointer, or random-access-iterator type (is 'SomeIterator')}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  for(Iterator f;;++f);

#pragma acc loop
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-2{{'loop' construct is here}}
  for(SomeRAIterator f;;++f);

#pragma acc loop
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-2{{'loop' construct is here}}
  for(RandAccessIterator f;;++f);

  Int i;
#pragma acc loop
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-4{{'loop' construct is here}}
  for( i = 0;;);

#pragma acc loop
  // expected-error@+6{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-6{{'loop' construct is here}}
  for( i;;);

#pragma acc loop
  // expected-error@+6{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-6{{'loop' construct is here}}
  for( int j ;;);

#pragma acc loop
  // expected-error@+6{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-6{{'loop' construct is here}}
  for( int j, k = 0;;);

#pragma acc loop
  // expected-error@+6{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-6{{'loop' construct is here}}
  for(Int f;;);

#pragma acc loop
  // expected-error@+4{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  for(Int f;;++f);

#pragma acc loop
  // expected-error@+4{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  for(Int f;;f+=1);

#pragma acc loop
  // expected-error@+6{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-6{{'loop' construct is here}}
  for(Int f;;i+=1);

#pragma acc loop
  // expected-error@+6{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-4{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-6{{'loop' construct is here}}
  for(Int f;;i++);

#pragma acc loop
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-4{{'loop' construct is here}}
  for(RandAccessIterator f;;i++);

#pragma acc loop
  // expected-error@+4{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-2{{'loop' construct is here}}
  // expected-error@+2{{OpenACC 'loop' variable must monotonically increase or decrease ('++', '--', or compound assignment)}}
  // expected-note@-4{{'loop' construct is here}}
  for(RandAccessIterator f;;func_call());

  // Not much we can do here other than check for random access iterator.
  Int Array[5];
#pragma acc loop
  for(auto X : Array);

#pragma acc loop
  // expected-error@+2{{loop variable of loop associated with an OpenACC 'loop' construct must be of integer, pointer, or random-access-iterator type (is 'SomeIterator')}}
  // expected-note@-2{{'loop' construct is here}}
  for(auto X : HasIteratorCollection{});

#pragma acc loop
  for(auto X : HasRAIteratorCollection{});

  RandAccessIterator end;
#pragma acc loop
  for(RandAccessIterator f = 0; f != end; ++f);

  RandAccessIterator f;
#pragma acc loop
  // expected-error@+2{{OpenACC 'loop' construct must have initialization clause in canonical form ('var = init' or 'T var = init'}}
  // expected-note@-2{{'loop' construct is here}}
  for(f;f != end;f++);

#pragma acc loop
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-2{{'loop' construct is here}}
  for(f = 0;;++f);

#pragma acc loop
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-2{{'loop' construct is here}}
  for(f = 0;;f++);

#pragma acc loop
  // expected-error@+2{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@-2{{'loop' construct is here}}
  for(f = 0;;f+=1);

#pragma acc loop
  for(f = 0;f != end;++f);

#pragma acc loop
  for(f = 0;f != end;f++);

#pragma acc loop
  for(f = 0;f != end;f+=1);

#pragma acc loop
  for (int i = 0; 5 >= i; ++i);

  int otherI;
  // expected-error@+3{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@+1{{'loop' construct is here}}
#pragma acc loop
  for (int i = 0; otherI != 5; ++i);

  // expected-error@+3{{OpenACC 'loop' construct must have a terminating condition}}
  // expected-note@+1{{'loop' construct is here}}
#pragma acc loop
  for (int i = 0; i != 5 && i < 3; ++i);

  // expected-error@+3{{OpenACC 'loop' variable must monotonically increase or decrease}}
  // expected-note@+1{{'loop' construct is here}}
#pragma acc loop
  for (int i = 0; i != 5; ++f);
}

void inst() {
  SeqLoopRules<int, int*, float, SomeStruct, SomeIterator, SomeRAIterator>();
  // expected-note@+1{{in instantiation of function template specialization}}
  LoopRules<int, int*, float, SomeStruct, SomeIterator, SomeRAIterator>();
}

void allowTrivialAssignStep(int N) {
#pragma acc loop
  for(int i = 0; i !=5; i = i + N);
#pragma acc loop
  for(int i = 0; i !=5; i = i - N);
#pragma acc loop
  for(int i = 0; i !=5; i = N + i);

  // expected-error@+3{{OpenACC 'loop' variable must monotonically increase or decrease}}
  // expected-note@+1{{'loop' construct is here}}
#pragma acc loop
  for(int i = 0; i !=5; i = N - i);
  // expected-error@+3{{OpenACC 'loop' variable must monotonically increase or decrease}}
  // expected-note@+1{{'loop' construct is here}}
#pragma acc loop
  for(int i = 0; i !=5; i = N + N);

  HasRAIteratorCollection Col;

#pragma acc loop
  for (auto Itr = Col.begin(); Itr != Col.end(); Itr = Itr + N);

#pragma acc loop
  for (auto Itr = Col.begin(); Itr != Col.end(); Itr = Itr - N);

#pragma acc loop
  for (auto Itr = Col.begin(); Itr != Col.end(); Itr = N + Itr);

  // expected-error@+3{{OpenACC 'loop' variable must monotonically increase or decrease}}
  // expected-note@+1{{'loop' construct is here}}
#pragma acc loop
  for (auto Itr = Col.begin(); Itr != Col.end(); Itr = N - Itr);
}