+2022-03-08 Abid Qadeer <abidh@codesourcery.com>
+
+ * omp-low.c (omp_maybe_offloaded_ctx): New prototype.
+ (scan_sharing_clauses): Check a restriction on allocate clause.
+
2022-02-27 Tobias Burnus <tobias@codesourcery.com>
Backported from master:
static void scan_omp (gimple_seq *, omp_context *);
static tree scan_omp_1_op (tree *, int *, void *);
+static bool omp_maybe_offloaded_ctx (omp_context *ctx);
#define WALK_SUBSTMTS \
case GIMPLE_BIND: \
|| !integer_onep (OMP_CLAUSE_ALLOCATE_ALLOCATOR (c))
|| OMP_CLAUSE_ALLOCATE_ALIGN (c) != NULL_TREE))
{
+ /* The allocate clauses that appear on a target construct or on
+ constructs in a target region must specify an allocator expression
+ unless a requires directive with the dynamic_allocators clause
+ is present in the same compilation unit. */
+ if (OMP_CLAUSE_ALLOCATE_ALLOCATOR (c) == NULL_TREE
+ && ((omp_requires_mask & OMP_REQUIRES_DYNAMIC_ALLOCATORS) == 0)
+ && omp_maybe_offloaded_ctx (ctx))
+ error_at (OMP_CLAUSE_LOCATION (c), "%<allocate%> clause must"
+ " specify an allocator here");
if (ctx->allocate_map == NULL)
ctx->allocate_map = new hash_map<tree, tree>;
tree val = integer_zero_node;
+2022-03-08 Abid Qadeer <abidh@codesourcery.com>
+
+ * c-c++-common/gomp/allocate-2.c: Add tests.
+ * c-c++-common/gomp/allocate-8.c: New test.
+ * gfortran.dg/gomp/allocate-3.f90: Add tests.
+ * gcc.dg/gomp/pr104517.c: Update.
+
2022-03-08 Abid Qadeer <abidh@codesourcery.com>
Backported from master:
#pragma omp parallel private (x) allocate (0 : x) /* { dg-error "'allocate' clause allocator expression has type 'int' rather than 'omp_allocator_handle_t'" } */
bar (x, &x, 0);
}
+
+void
+foo1 ()
+{
+ int a = 10;
+#pragma omp target
+ {
+ #pragma omp parallel private (a) allocate(a) // { dg-error "'allocate' clause must specify an allocator here" }
+ a = 20;
+ }
+#pragma omp target private(a) allocate(a) // { dg-error "'allocate' clause must specify an allocator here" }
+ {
+ a = 30;
+ }
+}
--- /dev/null
+#pragma omp requires dynamic_allocators
+void
+foo ()
+{
+ int a = 10;
+#pragma omp parallel private (a) allocate(a)
+ a = 20;
+#pragma omp target
+ {
+ #pragma omp parallel private (a) allocate(a)
+ a = 30;
+ }
+#pragma omp target private(a) allocate(a)
+ {
+ a = 40;
+ }
+}
+
!$omp end parallel do simd
end subroutine
+
+subroutine bar(a)
+ implicit none
+ integer :: a
+!$omp target
+ !$omp parallel private (a) allocate(a) ! { dg-error "'allocate' clause must specify an allocator here" }
+ a = 20
+ !$omp end parallel
+!$omp end target
+
+!$omp target private(a) allocate(a) ! { dg-error "'allocate' clause must specify an allocator here" }
+ a = 30;
+!$omp end target
+end subroutine