]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
openmp: Diagnose threadprivate OpenMP loop iterators
authorJakub Jelinek <jakub@redhat.com>
Sat, 30 Oct 2021 06:58:08 +0000 (08:58 +0200)
committerJakub Jelinek <jakub@redhat.com>
Sat, 30 Oct 2021 06:58:08 +0000 (08:58 +0200)
We weren't diagnosing the
The loop iteration variable may not appear in a threadprivate directive.
restriction which used to be in 5.0 just among the Worksharing-Loop
restrictions but in 5.1 it is among Canonical Loop Nest Form restrictions.

This patch diagnoses those.

2021-10-30  Jakub Jelinek  <jakub@redhat.com>

* gimplify.c (gimplify_omp_for): Diagnose threadprivate iterators.

* c-c++-common/gomp/loop-10.c: New test.

gcc/gimplify.c
gcc/testsuite/c-c++-common/gomp/loop-10.c [new file with mode: 0644]

index d8e4b13934952c31005694a8aad238f51eb094b8..8bb54fd74816ce42e52bdb94596c7ef051711fcc 100644 (file)
@@ -12298,6 +12298,24 @@ gimplify_omp_for (tree *expr_p, gimple_seq *pre_p)
          gimplify_omp_ctxp->loop_iter_var.quick_push (decl);
        }
 
+      if (for_stmt == orig_for_stmt)
+       {
+         tree orig_decl = decl;
+         if (OMP_FOR_ORIG_DECLS (for_stmt))
+           {
+             tree orig_decl = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (for_stmt), i);
+             if (TREE_CODE (orig_decl) == TREE_LIST)
+               {
+                 orig_decl = TREE_PURPOSE (orig_decl);
+                 if (!orig_decl)
+                   orig_decl = decl;
+               }
+           }
+         if (is_global_var (orig_decl) && DECL_THREAD_LOCAL_P (orig_decl))
+           error_at (EXPR_LOCATION (for_stmt),
+                     "threadprivate iteration variable %qD", orig_decl);
+       }
+
       /* Make sure the iteration variable is private.  */
       tree c = NULL_TREE;
       tree c2 = NULL_TREE;
diff --git a/gcc/testsuite/c-c++-common/gomp/loop-10.c b/gcc/testsuite/c-c++-common/gomp/loop-10.c
new file mode 100644 (file)
index 0000000..1229e61
--- /dev/null
@@ -0,0 +1,35 @@
+int a, b;
+#pragma omp threadprivate (a, b)
+
+void
+foo (void)
+{
+  #pragma omp for                              /* { dg-error "threadprivate iteration variable 'a'" } */
+  for (a = 0; a < 32; a++)
+    ;
+  #pragma omp parallel for collapse(2)         /* { dg-error "threadprivate iteration variable 'a'" "" { target c } } */
+  for (a = 0; a < 32; a++)                     /* { dg-error "threadprivate iteration variable 'b'" "" { target c } .-1 } */
+    for (b = 0; b < 32; b++)                   /* { dg-error "threadprivate iteration variable 'a'" "" { target c++ } .-1 } */
+      ;                                                /* { dg-error "threadprivate iteration variable 'b'" "" { target c++ } .-2 } */
+  #pragma omp simd                             /* { dg-error "threadprivate iteration variable 'a'" } */
+  for (a = 0; a < 32; a++)
+    ;
+  #pragma omp taskloop                         /* { dg-error "threadprivate iteration variable 'a'" } */
+  for (a = 0; a < 32; a++)
+    ;
+  #pragma omp loop bind(thread)                        /* { dg-error "threadprivate iteration variable 'a'" } */
+  for (a = 0; a < 32; a++)
+    ;
+}
+
+void
+bar (void)
+{
+  #pragma omp distribute collapse(2)           /* { dg-error "threadprivate iteration variable 'a'" } */
+  for (a = 0; a < 32; a++)                     /* { dg-error "threadprivate iteration variable 'b'" "" { target *-*-* } .-1 } */
+    for (b = 0; b < a; b++)
+      ;
+  #pragma omp distribute parallel for simd     /* { dg-error "threadprivate iteration variable 'a'" "" { target c } } */
+  for (a = 0; a < 32; a++)                     /* { dg-error "threadprivate iteration variable 'a'" "" { target c++ } } */
+    ;
+}