
The 'capture' modifier is an OpenACC 3.3NEXT (AKA 3.4) feature, which permits a new kind of identifying the memory location of variables in a data clause. However, it is only valid on data, combined, or compute constructs. This patch implements all of the proper restrictions.
90 lines
4.0 KiB
C
90 lines
4.0 KiB
C
// RUN: %clang_cc1 %s -fopenacc -verify
|
|
|
|
typedef struct IsComplete {
|
|
struct S { int A; } CompositeMember;
|
|
int ScalarMember;
|
|
float ArrayMember[5];
|
|
void *PointerMember;
|
|
} Complete;
|
|
void uses(int IntParam, short *PointerParam, float ArrayParam[5], Complete CompositeParam) {
|
|
int LocalInt;
|
|
short *LocalPointer;
|
|
float LocalArray[5];
|
|
Complete LocalComposite;
|
|
// Check Appertainment:
|
|
#pragma acc parallel loop copy(LocalInt)
|
|
for(int i = 0; i < 5; ++i);
|
|
#pragma acc serial loop copy(LocalInt)
|
|
for(int i = 0; i < 5; ++i);
|
|
#pragma acc kernels loop copy(LocalInt)
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-warning@+1{{OpenACC clause name 'pcopy' is a deprecated clause name and is now an alias for 'copy'}}
|
|
#pragma acc parallel loop pcopy(LocalInt)
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-warning@+1{{OpenACC clause name 'present_or_copy' is a deprecated clause name and is now an alias for 'copy'}}
|
|
#pragma acc parallel loop present_or_copy(LocalInt)
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// Valid cases:
|
|
#pragma acc parallel loop copy(LocalInt, LocalPointer, LocalArray)
|
|
for(int i = 0; i < 5; ++i);
|
|
#pragma acc parallel loop copy(LocalArray[2:1])
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
#pragma acc parallel loop copy(LocalComposite.ScalarMember, LocalComposite.ScalarMember)
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-error@+1{{OpenACC variable is not a valid variable name, sub-array, array element, member of a composite variable, or composite variable member}}
|
|
#pragma acc parallel loop copy(1 + IntParam)
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-error@+1{{OpenACC variable is not a valid variable name, sub-array, array element, member of a composite variable, or composite variable member}}
|
|
#pragma acc parallel loop copy(+IntParam)
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-error@+1{{OpenACC sub-array length is unspecified and cannot be inferred because the subscripted value is not an array}}
|
|
#pragma acc parallel loop copy(PointerParam[2:])
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-error@+1{{OpenACC sub-array specified range [2:5] would be out of the range of the subscripted array size of 5}}
|
|
#pragma acc parallel loop copy(ArrayParam[2:5])
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-error@+2{{OpenACC sub-array specified range [2:5] would be out of the range of the subscripted array size of 5}}
|
|
// expected-error@+1{{OpenACC variable is not a valid variable name, sub-array, array element, member of a composite variable, or composite variable member}}
|
|
#pragma acc parallel loop copy((float*)ArrayParam[2:5])
|
|
for(int i = 0; i < 5; ++i);
|
|
// expected-error@+1{{OpenACC variable is not a valid variable name, sub-array, array element, member of a composite variable, or composite variable member}}
|
|
#pragma acc parallel loop copy((float)ArrayParam[2])
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-error@+1{{OpenACC 'copy' clause is not valid on 'loop' directive}}
|
|
#pragma acc loop copy(LocalInt)
|
|
for(int i = 5; i < 10;++i);
|
|
// expected-error@+1{{OpenACC 'pcopy' clause is not valid on 'loop' directive}}
|
|
#pragma acc loop pcopy(LocalInt)
|
|
for(int i = 5; i < 10;++i);
|
|
// expected-error@+1{{OpenACC 'present_or_copy' clause is not valid on 'loop' directive}}
|
|
#pragma acc loop present_or_copy(LocalInt)
|
|
for(int i = 5; i < 10;++i);
|
|
}
|
|
void ModList() {
|
|
int V1;
|
|
// expected-error@+2{{OpenACC 'readonly' modifier not valid on 'copy' clause}}
|
|
// expected-error@+1{{OpenACC 'zero' modifier not valid on 'copy' clause}}
|
|
#pragma acc parallel loop copy(always, alwaysin, alwaysout, zero, readonly: V1)
|
|
for(int i = 5; i < 10;++i);
|
|
// expected-error@+1{{OpenACC 'readonly' modifier not valid on 'copy' clause}}
|
|
#pragma acc serial loop copy(readonly: V1)
|
|
for(int i = 5; i < 10;++i);
|
|
// expected-error@+1{{OpenACC 'zero' modifier not valid on 'copy' clause}}
|
|
#pragma acc kernels loop copy(zero: V1)
|
|
for(int i = 5; i < 10;++i);
|
|
#pragma acc parallel loop copy(capture:V1)
|
|
for(int i = 5; i < 10;++i);
|
|
#pragma acc parallel loop copy(always, alwaysin, alwaysout, capture: V1)
|
|
for(int i = 5; i < 10;++i);
|
|
}
|