re PR middle-end/86542 (wrong-code for collapsed taskloop which needs omp_cpyfn)
authorJakub Jelinek <jakub@redhat.com>
Tue, 17 Jul 2018 10:54:52 +0000 (12:54 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 17 Jul 2018 10:54:52 +0000 (12:54 +0200)
PR middle-end/86542
* omp-low.c (create_task_copyfn): Copy over also fields corresponding
to _looptemp_ clauses, other than the first two.

* testsuite/libgomp.c++/pr86542.C: New test.

From-SVN: r262815

gcc/ChangeLog
gcc/omp-low.c
libgomp/ChangeLog
libgomp/testsuite/libgomp.c++/pr86542.C [new file with mode: 0644]

index 1c52477d70dd547c63fca9c3caf46b141eb5e5fd..8ec7da041541991d5117c2f8e6a19f80521ce095 100644 (file)
@@ -1,3 +1,9 @@
+2018-07-17  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/86542
+       * omp-low.c (create_task_copyfn): Copy over also fields corresponding
+       to _looptemp_ clauses, other than the first two.
+
 2018-07-17  Martin Liska  <mliska@suse.cz>
 
        * opts.c: Do not enable OPT_falign_* for -Os.
index c591231d8f168b04db1292f7f07b3c1e986d326f..714490d6921dd10ce36c2ad8a49b5954e12db889 100644 (file)
@@ -7026,6 +7026,7 @@ create_task_copyfn (gomp_task *task_stmt, omp_context *ctx)
   splay_tree_node n;
   struct omp_taskcopy_context tcctx;
   location_t loc = gimple_location (task_stmt);
+  size_t looptempno = 0;
 
   child_fn = gimple_omp_task_copy_fn (task_stmt);
   child_cfun = DECL_STRUCT_FUNCTION (child_fn);
@@ -7139,6 +7140,15 @@ create_task_copyfn (gomp_task *task_stmt, omp_context *ctx)
        t = build2 (MODIFY_EXPR, TREE_TYPE (dst), dst, src);
        append_to_statement_list (t, &list);
        break;
+      case OMP_CLAUSE__LOOPTEMP_:
+       /* Fields for first two _looptemp_ clauses are initialized by
+          GOMP_taskloop*, the rest are handled like firstprivate.  */
+        if (looptempno < 2)
+         {
+           looptempno++;
+           break;
+         }
+       /* FALLTHRU */
       case OMP_CLAUSE_FIRSTPRIVATE:
        decl = OMP_CLAUSE_DECL (c);
        if (is_variable_sized (decl))
@@ -7164,7 +7174,10 @@ create_task_copyfn (gomp_task *task_stmt, omp_context *ctx)
          src = decl;
        dst = build_simple_mem_ref_loc (loc, arg);
        dst = omp_build_component_ref (dst, f);
-       t = lang_hooks.decls.omp_clause_copy_ctor (c, dst, src);
+       if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE__LOOPTEMP_)
+         t = build2 (MODIFY_EXPR, TREE_TYPE (dst), dst, src);
+       else
+         t = lang_hooks.decls.omp_clause_copy_ctor (c, dst, src);
        append_to_statement_list (t, &list);
        break;
       case OMP_CLAUSE_PRIVATE:
index bfcf9d7dcd3498f48fe243c93715c016f64cbdc6..baa675d61bed8179559b9e5bb82d645a7154e88e 100644 (file)
@@ -1,5 +1,8 @@
 2018-07-17  Jakub Jelinek  <jakub@redhat.com>
 
+       PR middle-end/86542
+       * testsuite/libgomp.c++/pr86542.C: New test.
+
        PR middle-end/86539
        * testsuite/libgomp.c++/pr86539.C: New test.
 
diff --git a/libgomp/testsuite/libgomp.c++/pr86542.C b/libgomp/testsuite/libgomp.c++/pr86542.C
new file mode 100644 (file)
index 0000000..5d42ea6
--- /dev/null
@@ -0,0 +1,37 @@
+// PR middle-end/86542
+
+struct S { int s; S (); ~S (); S (const S &); };
+S s;
+
+S::S ()
+{
+}
+
+S::~S ()
+{
+}
+
+S::S (const S &x)
+{
+  s = x.s;
+}
+
+__attribute__((noipa)) void
+foo (int i, int j, int k, S s)
+{
+  if (i != 0 || j != 0 || k != 0 || s.s != 12)
+    __builtin_abort ();
+}
+
+int
+main ()
+{
+  volatile int inc = 16, jnc = 16, knc = 16;
+  s.s = 12;
+  #pragma omp taskloop collapse (3) firstprivate (s)
+  for (int i = 0; i < 16; i += inc)
+    for (int j = 0; j < 16; j += jnc)
+      for (int k = 0; k < 16; k += knc)
+       foo (i, j, k, s);
+  return 0;
+}