2019-07-08 23:45:24 +08:00
|
|
|
// RUN: %clang_cc1 -verify -fopenmp %s -Wuninitialized
|
|
|
|
// RUN: %clang_cc1 -verify -fopenmp -std=c++98 %s -Wuninitialized
|
|
|
|
// RUN: %clang_cc1 -verify -fopenmp -std=c++11 %s -Wuninitialized
|
2014-03-21 12:51:18 +08:00
|
|
|
|
2019-07-08 23:45:24 +08:00
|
|
|
// RUN: %clang_cc1 -verify -fopenmp-simd %s -Wuninitialized
|
|
|
|
// RUN: %clang_cc1 -verify -fopenmp-simd -std=c++98 %s -Wuninitialized
|
|
|
|
// RUN: %clang_cc1 -verify -fopenmp-simd -std=c++11 %s -Wuninitialized
|
2017-12-30 02:07:07 +08:00
|
|
|
|
2020-10-06 09:39:33 +08:00
|
|
|
// expected-note@* 0+{{declared here}}
|
|
|
|
|
2014-03-21 12:51:18 +08:00
|
|
|
void foo() {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool foobool(int argc) {
|
|
|
|
return argc;
|
|
|
|
}
|
|
|
|
|
2020-10-06 09:39:33 +08:00
|
|
|
struct S1;
|
2014-03-21 12:51:18 +08:00
|
|
|
|
2020-10-06 09:39:33 +08:00
|
|
|
template <class T, typename S, int N, int ST>
|
|
|
|
T tmain(T argc, S **argv) {
|
2014-03-21 12:51:18 +08:00
|
|
|
#pragma omp simd safelen // expected-error {{expected '(' after 'safelen'}}
|
|
|
|
for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
|
|
|
#pragma omp simd safelen ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
|
|
|
|
for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
|
|
|
#pragma omp simd safelen () // expected-error {{expected expression}}
|
|
|
|
for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
2020-10-06 09:39:33 +08:00
|
|
|
// expected-error@+2 {{expected ')'}} expected-note@+2 {{to match this '('}}
|
|
|
|
// expected-error@+1 2 {{integral constant expression}} expected-note@+1 0+{{constant expression}}
|
2014-03-21 12:51:18 +08:00
|
|
|
#pragma omp simd safelen (argc
|
|
|
|
for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
2015-12-01 18:17:31 +08:00
|
|
|
// expected-error@+1 {{argument to 'safelen' clause must be a strictly positive integer value}}
|
2014-03-21 12:51:18 +08:00
|
|
|
#pragma omp simd safelen (ST // expected-error {{expected ')'}} expected-note {{to match this '('}}
|
|
|
|
for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
|
|
|
#pragma omp simd safelen (1)) // expected-warning {{extra tokens at the end of '#pragma omp simd' are ignored}}
|
|
|
|
for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
|
|
|
#pragma omp simd safelen ((ST > 0) ? 1 + ST : 2)
|
|
|
|
for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
2020-10-06 09:39:33 +08:00
|
|
|
// expected-error@+3 2 {{directive '#pragma omp simd' cannot contain more than one 'safelen' clause}}
|
|
|
|
// expected-error@+2 {{argument to 'safelen' clause must be a strictly positive integer value}}
|
|
|
|
// expected-error@+1 2 {{integral constant expression}} expected-note@+1 0+{{constant expression}}
|
2014-03-21 12:51:18 +08:00
|
|
|
#pragma omp simd safelen (foobool(argc)), safelen (true), safelen (-5)
|
|
|
|
for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
|
|
|
#pragma omp simd safelen (S) // expected-error {{'S' does not refer to a value}}
|
|
|
|
for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
2016-04-12 03:30:25 +08:00
|
|
|
#if __cplusplus <= 199711L
|
2020-10-06 09:39:33 +08:00
|
|
|
// expected-error@+4 2 {{integral constant expression}} expected-note@+4 0+{{constant expression}}
|
2016-04-12 03:30:25 +08:00
|
|
|
#else
|
|
|
|
// expected-error@+2 2 {{integral constant expression must have integral or unscoped enumeration type, not 'char *'}}
|
|
|
|
#endif
|
2014-03-21 12:51:18 +08:00
|
|
|
#pragma omp simd safelen (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}}
|
|
|
|
for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
|
|
|
#pragma omp simd safelen (4)
|
|
|
|
for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
2015-12-01 18:17:31 +08:00
|
|
|
#pragma omp simd safelen (N) // expected-error {{argument to 'safelen' clause must be a strictly positive integer value}}
|
2014-03-21 12:51:18 +08:00
|
|
|
for (T i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST];
|
|
|
|
return argc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
#pragma omp simd safelen // expected-error {{expected '(' after 'safelen'}}
|
|
|
|
for (int i = 4; i < 12; i++) argv[0][i] = argv[0][i] - argv[0][i-4];
|
|
|
|
#pragma omp simd safelen ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
|
|
|
|
for (int i = 4; i < 12; i++) argv[0][i] = argv[0][i] - argv[0][i-4];
|
|
|
|
#pragma omp simd safelen () // expected-error {{expected expression}}
|
|
|
|
for (int i = 4; i < 12; i++) argv[0][i] = argv[0][i] - argv[0][i-4];
|
|
|
|
#pragma omp simd safelen (4 // expected-error {{expected ')'}} expected-note {{to match this '('}}
|
|
|
|
for (int i = 4; i < 12; i++) argv[0][i] = argv[0][i] - argv[0][i-4];
|
|
|
|
#pragma omp simd safelen (2+2)) // expected-warning {{extra tokens at the end of '#pragma omp simd' are ignored}}
|
|
|
|
for (int i = 4; i < 12; i++) argv[0][i] = argv[0][i] - argv[0][i-4];
|
2020-10-06 09:39:33 +08:00
|
|
|
// expected-error@+1 {{integral constant expression}} expected-note@+1 0+{{constant expression}}
|
2016-04-12 03:30:25 +08:00
|
|
|
#pragma omp simd safelen (foobool(1) > 0 ? 1 : 2)
|
2014-03-21 12:51:18 +08:00
|
|
|
for (int i = 4; i < 12; i++) argv[0][i] = argv[0][i] - argv[0][i-4];
|
2020-10-06 09:39:33 +08:00
|
|
|
// expected-error@+3 {{integral constant expression}} expected-note@+3 0+{{constant expression}}
|
2014-03-21 12:51:18 +08:00
|
|
|
// expected-error@+2 2 {{directive '#pragma omp simd' cannot contain more than one 'safelen' clause}}
|
[APSInt][OpenMP] Fix isNegative, etc. for unsigned types
Without this patch, APSInt inherits APInt::isNegative, which merely
checks the sign bit without regard to whether the type is actually
signed. isNonNegative and isStrictlyPositive call isNegative and so
are also affected.
This patch adjusts APSInt to override isNegative, isNonNegative, and
isStrictlyPositive with implementations that consider whether the type
is signed.
A large set of Clang OpenMP tests are affected. Without this patch,
these tests assume that `true` is not a valid argument for clauses
like `collapse`. Indeed, `true` fails APInt::isStrictlyPositive but
not APSInt::isStrictlyPositive. This patch adjusts those tests to
assume `true` should be accepted.
This patch also adds tests revealing various other similar fixes due
to APSInt::isNegative calls in Clang's ExprConstant.cpp and
SemaExpr.cpp: `++` and `--` overflow in `constexpr`, evaluated object
size based on `alloc_size`, `<<` and `>>` shift count validation, and
OpenMP array section validation.
Reviewed By: lebedev.ri, ABataev, hfinkel
Differential Revision: https://reviews.llvm.org/D59712
llvm-svn: 359012
2019-04-24 01:04:15 +08:00
|
|
|
// expected-error@+1 {{argument to 'safelen' clause must be a strictly positive integer value}}
|
2014-03-21 12:51:18 +08:00
|
|
|
#pragma omp simd safelen (foobool(argc)), safelen (true), safelen (-5)
|
|
|
|
for (int i = 4; i < 12; i++) argv[0][i] = argv[0][i] - argv[0][i-4];
|
|
|
|
#pragma omp simd safelen (S1) // expected-error {{'S1' does not refer to a value}}
|
|
|
|
for (int i = 4; i < 12; i++) argv[0][i] = argv[0][i] - argv[0][i-4];
|
2016-04-12 03:30:25 +08:00
|
|
|
#if __cplusplus <= 199711L
|
2020-10-06 09:39:33 +08:00
|
|
|
// expected-error@+4 {{integral constant expression}} expected-note@+4 0+{{constant expression}}
|
2016-04-12 03:30:25 +08:00
|
|
|
#else
|
|
|
|
// expected-error@+2 {{integral constant expression must have integral or unscoped enumeration type, not 'char *'}}
|
|
|
|
#endif
|
2014-03-21 12:51:18 +08:00
|
|
|
#pragma omp simd safelen (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}}
|
|
|
|
for (int i = 4; i < 12; i++) argv[0][i] = argv[0][i] - argv[0][i-4];
|
|
|
|
// expected-error@+3 {{statement after '#pragma omp simd' must be a for loop}}
|
|
|
|
// expected-note@+1 {{in instantiation of function template specialization 'tmain<int, char, -1, -2>' requested here}}
|
|
|
|
#pragma omp simd safelen(safelen(tmain<int, char, -1, -2>(argc, argv) // expected-error 2 {{expected ')'}} expected-note 2 {{to match this '('}}
|
|
|
|
foo();
|
|
|
|
// expected-note@+1 {{in instantiation of function template specialization 'tmain<int, char, 12, 4>' requested here}}
|
|
|
|
return tmain<int, char, 12, 4>(argc, argv);
|
|
|
|
}
|
|
|
|
|