mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-26 06:48:51 -04:00

A trivially copyable type provides a trivial copy constructor and a trivial copy assignment operator. This is enough for the runtime to memcpy the data to the device. Additionally there must be no virtual functions or virtual base classes and the destructor is guaranteed to be trivial, ie performs no action. The runtime does not require trivial default constructors because on alloc the memory is undefined. Thus, weaken the warning to be only issued if the mapped type is not trivially copyable. Differential Revision: https://reviews.llvm.org/D71134
722 lines
29 KiB
C++
722 lines
29 KiB
C++
// RUN: %clang_cc1 -fsyntax-only -fopenmp -x c++ -std=c++11 -fexceptions -fcxx-exceptions -verify=expected,omp4 %s -Wuninitialized
|
|
// RUN: %clang_cc1 -fsyntax-only -fopenmp -fopenmp-version=50 -x c++ -std=c++11 -fexceptions -fcxx-exceptions -verify=expected,omp5 %s -Wuninitialized
|
|
|
|
// RUN: %clang_cc1 -fsyntax-only -fopenmp-simd -x c++ -std=c++11 -fexceptions -fcxx-exceptions -verify=expected,omp4 %s -Wuninitialized
|
|
// RUN: %clang_cc1 -fsyntax-only -fopenmp-simd -fopenmp-version=50 -x c++ -std=c++11 -fexceptions -fcxx-exceptions -verify=expected,omp5 %s -Wuninitialized
|
|
|
|
class S {
|
|
int a;
|
|
S() : a(0) {} // expected-note {{implicitly declared private here}}
|
|
|
|
public:
|
|
S(int v) : a(v) {}
|
|
S(const S &s) : a(s.a) {}
|
|
};
|
|
|
|
static int sii;
|
|
// expected-note@+1 {{defined as threadprivate or thread local}}
|
|
#pragma omp threadprivate(sii)
|
|
static int globalii;
|
|
|
|
int test_iteration_spaces() {
|
|
const int N = 100;
|
|
float a[N], b[N], c[N];
|
|
int ii, jj, kk;
|
|
float fii;
|
|
double dii;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (int i = 0; i < 10; i += 1) {
|
|
c[i] = a[i] + b[i];
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (char i = 0; i < 10; i++) {
|
|
c[i] = a[i] + b[i];
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (char i = 0; i < 10; i += '\1') {
|
|
c[i] = a[i] + b[i];
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (long long i = 0; i < 10; i++) {
|
|
c[i] = a[i] + b[i];
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{expression must have integral or unscoped enumeration type, not 'double'}}
|
|
for (long long i = 0; i < 10; i += 1.5) {
|
|
c[i] = a[i] + b[i];
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (long long i = 0; i < 'z'; i += 1u) {
|
|
c[i] = a[i] + b[i];
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{variable must be of integer or random access iterator type}}
|
|
for (float fi = 0; fi < 10.0; fi++) {
|
|
c[(int)fi] = a[(int)fi] + b[(int)fi];
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{variable must be of integer or random access iterator type}}
|
|
for (double fi = 0; fi < 10.0; fi++) {
|
|
c[(int)fi] = a[(int)fi] + b[(int)fi];
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (int &ref = ii; ref < 10; ref++) {
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (int i; i < 10; i++)
|
|
c[i] = a[i];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (int i = 0, j = 0; i < 10; ++i)
|
|
c[i] = a[i];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (; ii < 10; ++ii)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-warning@+2 {{expression result unused}}
|
|
// expected-error@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (ii + 1; ii < 10; ++ii)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (c[ii] = 0; ii < 10; ++ii)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// Ok to skip parenthesises.
|
|
for (((ii)) = 0; ii < 10; ++ii)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// omp4-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} omp5-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', '>=', or '!=') of loop variable 'i'}}
|
|
for (int i = 0; i; i++)
|
|
c[i] = a[i];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// omp4-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} omp5-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', '>=', or '!=') of loop variable 'i'}}
|
|
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'i'}}
|
|
for (int i = 0; jj < kk; ii++)
|
|
c[i] = a[i];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// omp4-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} omp5-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', '>=', or '!=') of loop variable 'i'}}
|
|
for (int i = 0; !!i; i++)
|
|
c[i] = a[i];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// omp4-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}}
|
|
for (int i = 0; i != 1; i++)
|
|
c[i] = a[i];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// omp4-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} omp5-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', '>=', or '!=') of loop variable 'i'}}
|
|
for (int i = 0;; i++)
|
|
c[i] = a[i];
|
|
|
|
// Ok.
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (int i = 11; i > 10; i--)
|
|
c[i] = a[i];
|
|
|
|
// Ok.
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (int i = 0; i < 10; ++i)
|
|
c[i] = a[i];
|
|
|
|
// Ok.
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (ii = 0; ii < 10; ++ii)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
|
|
for (ii = 0; ii < 10; ++jj)
|
|
c[ii] = a[jj];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
|
|
for (ii = 0; ii < 10; ++++ii)
|
|
c[ii] = a[ii];
|
|
|
|
// Ok but undefined behavior (in general, cannot check that incr
|
|
// is really loop-invariant).
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (ii = 0; ii < 10; ii = ii + ii)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{expression must have integral or unscoped enumeration type, not 'float'}}
|
|
for (ii = 0; ii < 10; ii = ii + 1.0f)
|
|
c[ii] = a[ii];
|
|
|
|
// Ok - step was converted to integer type.
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (ii = 0; ii < 10; ii = ii + (int)1.1f)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
|
|
for (ii = 0; ii < 10; jj = ii + 2)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-warning@+2 {{relational comparison result unused}}
|
|
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
|
|
for (ii = 0; ii<10; jj> kk + 2)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
|
|
for (ii = 0; ii < 10;)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-warning@+2 {{expression result unused}}
|
|
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
|
|
for (ii = 0; ii < 10; !ii)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
|
|
for (ii = 0; ii < 10; ii ? ++ii : ++jj)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
|
|
for (ii = 0; ii < 10; ii = ii < 10)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
|
|
for (ii = 0; ii < 10; ii = ii + 0)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
|
|
for (ii = 0; ii < 10; ii = ii + (int)(0.8 - 0.45))
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
|
|
for (ii = 0; (ii) < 10; ii -= 25)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
|
|
for (ii = 0; (ii < 10); ii -= 0)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be negative due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'ii' to decrease on each iteration of OpenMP for loop}}
|
|
for (ii = 0; ii > 10; (ii += 0))
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
|
|
for (ii = 0; ii < 10; (ii) = (1 - 1) + (ii))
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be negative due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'ii' to decrease on each iteration of OpenMP for loop}}
|
|
for ((ii = 0); ii > 10; (ii -= 0))
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
|
|
for (ii = 0; (ii < 10); (ii -= 0))
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd firstprivate(ii) // expected-note {{defined as firstprivate}}
|
|
// expected-error@+1 {{loop iteration variable in the associated loop of 'omp teams distribute simd' directive may not be firstprivate, predetermined as linear}}
|
|
for (ii = 0; ii < 10; ii++)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd private(ii) // omp4-note {{defined as private}}
|
|
// omp4-error@+1 {{loop iteration variable in the associated loop of 'omp teams distribute simd' directive may not be private, predetermined as linear}}
|
|
for (ii = 0; ii < 10; ii++)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd lastprivate(ii) // omp4-note {{defined as lastprivate}}
|
|
// omp4-error@+1 {{loop iteration variable in the associated loop of 'omp teams distribute simd' directive may not be lastprivate, predetermined as linear}}
|
|
for (ii = 0; ii < 10; ii++)
|
|
c[ii] = a[ii];
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{loop iteration variable in the associated loop of 'omp teams distribute simd' directive may not be threadprivate or thread local, predetermined as linear}}
|
|
for (sii = 0; sii < 10; sii++)
|
|
c[sii] = a[sii];
|
|
|
|
{
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd collapse(2)
|
|
for (ii = 0; ii < 10; ii += 1)
|
|
for (globalii = 0; globalii < 10; globalii += 1)
|
|
c[globalii] += a[globalii] + ii;
|
|
}
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// omp4-error@+1 {{statement after '#pragma omp teams distribute simd' must be a for loop}}
|
|
for (auto &item : a) {
|
|
item = item + 1;
|
|
}
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'i' to increase on each iteration of OpenMP for loop}}
|
|
for (unsigned i = 9; i < 10; i--) {
|
|
c[i] = a[i] + b[i];
|
|
}
|
|
|
|
int(*lb)[4] = nullptr;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (int(*p)[4] = lb; p < lb + 8; ++p) {
|
|
}
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-warning@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (int a{0}; a < 10; ++a) {
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
// Iterators allowed in openmp for-loops.
|
|
namespace std {
|
|
struct random_access_iterator_tag {};
|
|
template <class Iter>
|
|
struct iterator_traits {
|
|
typedef typename Iter::difference_type difference_type;
|
|
typedef typename Iter::iterator_category iterator_category;
|
|
};
|
|
template <class Iter>
|
|
typename iterator_traits<Iter>::difference_type
|
|
distance(Iter first, Iter last) { return first - last; }
|
|
}
|
|
class Iter0 {
|
|
public:
|
|
Iter0() {}
|
|
Iter0(const Iter0 &) {}
|
|
Iter0 operator++() { return *this; }
|
|
Iter0 operator--() { return *this; }
|
|
bool operator<(Iter0 a) { return true; }
|
|
};
|
|
// expected-note@+2 {{candidate function not viable: no known conversion from 'GoodIter' to 'Iter0' for 1st argument}}
|
|
// expected-note@+1 2 {{candidate function not viable: no known conversion from 'Iter1' to 'Iter0' for 1st argument}}
|
|
int operator-(Iter0 a, Iter0 b) { return 0; }
|
|
class Iter1 {
|
|
public:
|
|
Iter1(float f = 0.0f, double d = 0.0) {}
|
|
Iter1(const Iter1 &) {}
|
|
Iter1 operator++() { return *this; }
|
|
Iter1 operator--() { return *this; }
|
|
bool operator<(Iter1 a) { return true; }
|
|
bool operator>=(Iter1 a) { return false; }
|
|
};
|
|
class GoodIter {
|
|
public:
|
|
GoodIter() {}
|
|
GoodIter(const GoodIter &) {}
|
|
GoodIter(int fst, int snd) {}
|
|
GoodIter &operator=(const GoodIter &that) { return *this; }
|
|
GoodIter &operator=(const Iter0 &that) { return *this; }
|
|
GoodIter &operator+=(int x) { return *this; }
|
|
explicit GoodIter(void *) {}
|
|
GoodIter operator++() { return *this; }
|
|
GoodIter operator--() { return *this; }
|
|
bool operator!() { return true; }
|
|
bool operator<(GoodIter a) { return true; }
|
|
bool operator<=(GoodIter a) { return true; }
|
|
bool operator>=(GoodIter a) { return false; }
|
|
typedef int difference_type;
|
|
typedef std::random_access_iterator_tag iterator_category;
|
|
};
|
|
// expected-note@+2 {{candidate function not viable: no known conversion from 'const Iter0' to 'GoodIter' for 2nd argument}}
|
|
// expected-note@+1 2 {{candidate function not viable: no known conversion from 'Iter1' to 'GoodIter' for 1st argument}}
|
|
int operator-(GoodIter a, GoodIter b) { return 0; }
|
|
// expected-note@+1 3 {{candidate function not viable: requires single argument 'a', but 2 arguments were provided}}
|
|
GoodIter operator-(GoodIter a) { return a; }
|
|
// expected-note@+2 {{candidate function not viable: no known conversion from 'const Iter0' to 'int' for 2nd argument}}
|
|
// expected-note@+1 2 {{candidate function not viable: no known conversion from 'Iter1' to 'GoodIter' for 1st argument}}
|
|
GoodIter operator-(GoodIter a, int v) { return GoodIter(); }
|
|
// expected-note@+1 2 {{candidate function not viable: no known conversion from 'Iter0' to 'GoodIter' for 1st argument}}
|
|
GoodIter operator+(GoodIter a, int v) { return GoodIter(); }
|
|
// expected-note@+2 {{candidate function not viable: no known conversion from 'GoodIter' to 'int' for 1st argument}}
|
|
// expected-note@+1 2 {{candidate function not viable: no known conversion from 'Iter1' to 'int' for 1st argument}}
|
|
GoodIter operator-(int v, GoodIter a) { return GoodIter(); }
|
|
// expected-note@+1 2 {{candidate function not viable: no known conversion from 'Iter0' to 'int' for 1st argument}}
|
|
GoodIter operator+(int v, GoodIter a) { return GoodIter(); }
|
|
|
|
int test_with_random_access_iterator() {
|
|
GoodIter begin, end;
|
|
Iter0 begin0, end0;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (GoodIter I = begin; I < end; ++I) // expected-warning 2 {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (GoodIter &I = begin; I < end; ++I)
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (GoodIter I = begin; I >= end; --I) // expected-warning 2 {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-warning@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (GoodIter I(begin); I < end; ++I) // expected-warning 2 {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-warning@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (GoodIter I(nullptr); I < end; ++I) // expected-warning {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-warning@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (GoodIter I(0); I < end; ++I) // expected-warning {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-warning@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (GoodIter I(1, 2); I < end; ++I) // expected-warning {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (begin = GoodIter(0); begin < end; ++begin) // expected-warning 2 {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++begin;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+2 {{invalid operands to binary expression ('GoodIter' and 'const Iter0')}}
|
|
// expected-error@+1 {{could not calculate number of iterations calling 'operator-' with upper and lower loop bounds}}
|
|
for (begin = begin0; begin < end; ++begin)
|
|
++begin;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (++begin; begin < end; ++begin)
|
|
++begin;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (begin = end; begin < end; ++begin) // expected-warning 2 {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++begin;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// omp4-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'I'}} omp5-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', '>=', or '!=') of loop variable 'I'}}
|
|
for (GoodIter I = begin; I - I; ++I)
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// omp4-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'I'}} omp5-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', '>=', or '!=') of loop variable 'I'}}
|
|
for (GoodIter I = begin; begin < end; ++I)
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// omp4-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'I'}} omp5-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', '>=', or '!=') of loop variable 'I'}}
|
|
for (GoodIter I = begin; !I; ++I)
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be negative due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'I' to decrease on each iteration of OpenMP for loop}}
|
|
for (GoodIter I = begin; I >= end; I = I + 1)
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (GoodIter I = begin; I >= end; I = I - 1) // expected-warning 2 {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'I'}}
|
|
for (GoodIter I = begin; I >= end; I = -I)
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be negative due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'I' to decrease on each iteration of OpenMP for loop}}
|
|
for (GoodIter I = begin; I >= end; I = 2 + I)
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'I'}}
|
|
for (GoodIter I = begin; I >= end; I = 2 - I)
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+1 {{invalid operands to binary expression ('Iter0' and 'int')}}
|
|
for (Iter0 I = begin0; I < end0; ++I)
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// Initializer is constructor without params.
|
|
// expected-error@+2 {{invalid operands to binary expression ('Iter0' and 'int')}}
|
|
// expected-warning@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (Iter0 I; I < end0; ++I)
|
|
++I;
|
|
Iter1 begin1, end1;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+2 {{invalid operands to binary expression ('Iter1' and 'Iter1')}}
|
|
// expected-error@+1 {{could not calculate number of iterations calling 'operator-' with upper and lower loop bounds}}
|
|
for (Iter1 I = begin1; I < end1; ++I)
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be negative due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'I' to decrease on each iteration of OpenMP for loop}}
|
|
for (Iter1 I = begin1; I >= end1; ++I)
|
|
++I;
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-error@+4 {{invalid operands to binary expression ('Iter1' and 'float')}}
|
|
// expected-error@+3 {{could not calculate number of iterations calling 'operator-' with upper and lower loop bounds}}
|
|
// Initializer is constructor with all default params.
|
|
// expected-warning@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
|
|
for (Iter1 I; I < end1; ++I) {
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
template <typename IT, int ST>
|
|
class TC {
|
|
public:
|
|
int dotest_lt(IT begin, IT end) {
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'I' to increase on each iteration of OpenMP for loop}}
|
|
for (IT I = begin; I < end; I = I + ST) { // expected-warning 2 {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++I;
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'I' to increase on each iteration of OpenMP for loop}}
|
|
for (IT I = begin; I <= end; I += ST) { // expected-warning 2 {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++I;
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (IT I = begin; I < end; ++I) { // expected-warning 4 {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++I;
|
|
}
|
|
}
|
|
|
|
static IT step() {
|
|
return IT(ST);
|
|
}
|
|
};
|
|
template <typename IT, int ST = 0>
|
|
int dotest_gt(IT begin, IT end) {
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 2 {{loop step is expected to be negative due to this condition}}
|
|
// expected-error@+1 2 {{increment expression must cause 'I' to decrease on each iteration of OpenMP for loop}}
|
|
for (IT I = begin; I >= end; I = I + ST) {
|
|
++I;
|
|
}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 2 {{loop step is expected to be negative due to this condition}}
|
|
// expected-error@+1 2 {{increment expression must cause 'I' to decrease on each iteration of OpenMP for loop}}
|
|
for (IT I = begin; I >= end; I += ST) {
|
|
++I;
|
|
}
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
// expected-note@+2 {{loop step is expected to be negative due to this condition}}
|
|
// expected-error@+1 {{increment expression must cause 'I' to decrease on each iteration of OpenMP for loop}}
|
|
for (IT I = begin; I >= end; ++I) {
|
|
++I;
|
|
}
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (IT I = begin; I < end; I += TC<int, ST>::step()) { // expected-warning 2 {{Type 'GoodIter' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
++I;
|
|
}
|
|
}
|
|
|
|
void test_with_template() {
|
|
GoodIter begin, end;
|
|
TC<GoodIter, 100> t1;
|
|
TC<GoodIter, -100> t2;
|
|
t1.dotest_lt(begin, end); // expected-note {{in instantiation of member function 'TC<GoodIter, 100>::dotest_lt' requested here}}
|
|
t2.dotest_lt(begin, end); // expected-note {{in instantiation of member function 'TC<GoodIter, -100>::dotest_lt' requested here}}
|
|
dotest_gt(begin, end); // expected-note {{in instantiation of function template specialization 'dotest_gt<GoodIter, 0>' requested here}}
|
|
dotest_gt<unsigned, 10>(0, 100); // expected-note {{in instantiation of function template specialization 'dotest_gt<unsigned int, 10>' requested here}}
|
|
}
|
|
|
|
void test_loop_break() {
|
|
const int N = 100;
|
|
float a[N], b[N], c[N];
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (int i = 0; i < 10; i++) {
|
|
c[i] = a[i] + b[i];
|
|
for (int j = 0; j < 10; ++j) {
|
|
if (a[i] > b[j])
|
|
break; // OK in nested loop
|
|
}
|
|
switch (i) {
|
|
case 1:
|
|
b[i]++;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
if (c[i] > 10)
|
|
break; // expected-error {{'break' statement cannot be used in OpenMP for loop}}
|
|
|
|
if (c[i] > 11)
|
|
break; // expected-error {{'break' statement cannot be used in OpenMP for loop}}
|
|
}
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (int i = 0; i < 10; i++) {
|
|
for (int j = 0; j < 10; j++) {
|
|
c[i] = a[i] + b[i];
|
|
if (c[i] > 10) {
|
|
if (c[i] < 20) {
|
|
break; // OK
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void test_loop_eh() {
|
|
const int N = 100;
|
|
float a[N], b[N], c[N];
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (int i = 0; i < 10; i++) {
|
|
c[i] = a[i] + b[i];
|
|
try { // expected-error {{'try' statement cannot be used in OpenMP simd region}}
|
|
for (int j = 0; j < 10; ++j) {
|
|
if (a[i] > b[j])
|
|
throw a[i]; // expected-error {{throw' statement cannot be used in OpenMP simd region}}
|
|
}
|
|
throw a[i]; // expected-error {{throw' statement cannot be used in OpenMP simd region}}
|
|
} catch (float f) {
|
|
if (f > 0.1)
|
|
throw a[i]; // expected-error {{throw' statement cannot be used in OpenMP simd region}}
|
|
return; // expected-error {{cannot return from OpenMP region}}
|
|
}
|
|
switch (i) {
|
|
case 1:
|
|
b[i]++;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
for (int j = 0; j < 10; j++) {
|
|
if (c[i] > 10)
|
|
throw c[i]; // expected-error {{throw' statement cannot be used in OpenMP simd region}}
|
|
}
|
|
}
|
|
if (c[9] > 10)
|
|
throw c[9]; // OK
|
|
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd
|
|
for (int i = 0; i < 10; ++i) {
|
|
struct S {
|
|
void g() { throw 0; }
|
|
};
|
|
}
|
|
}
|
|
|
|
void test_loop_firstprivate_lastprivate() {
|
|
S s(4);
|
|
// expected-error@+2 {{lastprivate variable cannot be firstprivate}} expected-note@+2 {{defined as lastprivate}}
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd lastprivate(s) firstprivate(s) // expected-error {{calling a private constructor of class 'S'}} expected-warning {{Type 'S' is not trivially copyable and not guaranteed to be mapped correctly}}
|
|
for (int i = 0; i < 16; ++i)
|
|
;
|
|
}
|
|
|
|
void test_ordered() {
|
|
#pragma omp target
|
|
#pragma omp teams distribute simd ordered // expected-error {{unexpected OpenMP clause 'ordered' in directive '#pragma omp teams distribute simd'}}
|
|
for (int i = 0; i < 16; ++i)
|
|
;
|
|
}
|
|
|
|
void test_nowait() {
|
|
#pragma omp target
|
|
// expected-error@+1 2 {{unexpected OpenMP clause 'nowait' in directive '#pragma omp teams distribute simd'}}
|
|
#pragma omp teams distribute simd nowait nowait // expected-error {{directive '#pragma omp teams distribute simd' cannot contain more than one 'nowait' clause}}
|
|
for (int i = 0; i < 16; ++i)
|
|
;
|
|
}
|
|
|