cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
105 lines
4.9 KiB
C
105 lines
4.9 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 create(LocalInt)
|
|
for(int i = 0; i < 5; ++i);
|
|
#pragma acc serial loop create(LocalInt)
|
|
for(int i = 0; i < 5; ++i);
|
|
#pragma acc kernels loop create(LocalInt)
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-warning@+1{{OpenACC clause name 'pcreate' is a deprecated clause name and is now an alias for 'create'}}
|
|
#pragma acc parallel loop pcreate(LocalInt)
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-warning@+1{{OpenACC clause name 'present_or_create' is a deprecated clause name and is now an alias for 'create'}}
|
|
#pragma acc parallel loop present_or_create(LocalInt)
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// Valid cases:
|
|
#pragma acc parallel loop create(LocalInt, LocalPointer, LocalArray)
|
|
for(int i = 0; i < 5; ++i);
|
|
#pragma acc parallel loop create(LocalArray[2:1])
|
|
for(int i = 0; i < 5; ++i);
|
|
#pragma acc parallel loop create(zero:LocalArray[2:1])
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
#pragma acc parallel loop create(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 create(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 create(+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 create(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 create(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 create((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 create((float)ArrayParam[2])
|
|
for(int i = 0; i < 5; ++i);
|
|
// expected-error@+2{{unknown modifier 'invalid' in OpenACC modifier-list on 'create' clause}}
|
|
// 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 create(invalid:(float)ArrayParam[2])
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-error@+1{{OpenACC 'create' clause is not valid on 'loop' directive}}
|
|
#pragma acc loop create(LocalInt)
|
|
for(int i = 5; i < 10;++i);
|
|
// expected-error@+1{{OpenACC 'pcreate' clause is not valid on 'loop' directive}}
|
|
#pragma acc loop pcreate(LocalInt)
|
|
for(int i = 5; i < 10;++i);
|
|
// expected-error@+1{{OpenACC 'present_or_create' clause is not valid on 'loop' directive}}
|
|
#pragma acc loop present_or_create(LocalInt)
|
|
for(int i = 5; i < 10;++i);
|
|
}
|
|
|
|
void ModList() {
|
|
int V1;
|
|
// expected-error@+4{{OpenACC 'always' modifier not valid on 'create' clause}}
|
|
// expected-error@+3{{OpenACC 'alwaysin' modifier not valid on 'create' clause}}
|
|
// expected-error@+2{{OpenACC 'alwaysout' modifier not valid on 'create' clause}}
|
|
// expected-error@+1{{OpenACC 'readonly' modifier not valid on 'create' clause}}
|
|
#pragma acc parallel loop create(always, alwaysin, alwaysout, zero, readonly: V1)
|
|
for(int i = 5; i < 10;++i);
|
|
// expected-error@+1{{OpenACC 'always' modifier not valid on 'create' clause}}
|
|
#pragma acc serial loop create(always: V1)
|
|
for(int i = 5; i < 10;++i);
|
|
// expected-error@+1{{OpenACC 'alwaysin' modifier not valid on 'create' clause}}
|
|
#pragma acc kernels loop create(alwaysin: V1)
|
|
for(int i = 5; i < 10;++i);
|
|
// expected-error@+1{{OpenACC 'alwaysout' modifier not valid on 'create' clause}}
|
|
#pragma acc parallel loop create(alwaysout: V1)
|
|
for(int i = 5; i < 10;++i);
|
|
// expected-error@+1{{OpenACC 'readonly' modifier not valid on 'create' clause}}
|
|
#pragma acc serial loop create(readonly: V1)
|
|
for(int i = 5; i < 10;++i);
|
|
#pragma acc kernels loop create(zero: V1)
|
|
for(int i = 5; i < 10;++i);
|
|
#pragma acc parallel loop create(capture:V1)
|
|
for(int i = 5; i < 10;++i);
|
|
}
|