re PR target/90811 ([nvptx] ptxas error on OpenMP offloaded code)
authorJakub Jelinek <jakub@redhat.com>
Tue, 11 Jun 2019 16:40:10 +0000 (18:40 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 11 Jun 2019 16:40:10 +0000 (18:40 +0200)
PR target/90811
* config/nvptx/nvptx.c (nvptx_output_softstack_switch): Use and.b%d
instead of and.u%d.

* testsuite/libgomp.c/pr90811.c: New test.

From-SVN: r272161

gcc/ChangeLog
gcc/config/nvptx/nvptx.c
libgomp/ChangeLog
libgomp/testsuite/libgomp.c/pr90811.c [new file with mode: 0644]

index e4776e08626e890c6839f9c08bfa238211480d67..95cdab713ca3d22b5d04ca2e74a16597d5ff4a70 100644 (file)
@@ -1,3 +1,9 @@
+2019-06-11  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/90811
+       * config/nvptx/nvptx.c (nvptx_output_softstack_switch): Use and.b%d
+       instead of and.u%d.
+
 2019-06-11  Marc Glisse  <marc.glisse@inria.fr>
 
        * match.pd (X/[ex]4<Y/[ex]4): Handle conversions.
index a28099ac89dde182f48ec3bb10becf4a3441c64b..1986e79309ac9baf5c493b9b4b6de5aeac971da8 100644 (file)
@@ -1475,7 +1475,7 @@ nvptx_output_softstack_switch (FILE *file, bool entering,
       fputs (";\n", file);
       if (!CONST_INT_P (size) || UINTVAL (align) > GET_MODE_SIZE (DImode))
        fprintf (file,
-                "\t\tand.u%d %%r%d, %%r%d, -" HOST_WIDE_INT_PRINT_DEC ";\n",
+                "\t\tand.b%d %%r%d, %%r%d, -" HOST_WIDE_INT_PRINT_DEC ";\n",
                 bits, regno, regno, UINTVAL (align));
     }
   if (cfun->machine->has_softstack)
index 2ea937ebb650617375f79d8aeaedcfb6ca634397..348788067862f9ba3f5dc4283ea4c1d3bae7ceee 100644 (file)
@@ -1,3 +1,8 @@
+2019-06-11  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/90811
+       * testsuite/libgomp.c/pr90811.c: New test.
+
 2019-06-05  Jakub Jelinek  <jakub@redhat.com>
 
        * testsuite/libgomp.c++/lastprivate-conditional-1.C: New test.
diff --git a/libgomp/testsuite/libgomp.c/pr90811.c b/libgomp/testsuite/libgomp.c/pr90811.c
new file mode 100644 (file)
index 0000000..25b7d78
--- /dev/null
@@ -0,0 +1,29 @@
+/* PR target/90811 */
+
+int
+main ()
+{
+  long long a[100], b[100];
+  int i;
+  for (i = 0; i < 100; i++)
+    {
+      a[i] = i;
+      b[i] = i % 10;
+    }
+  #pragma omp target teams distribute parallel for simd map(tofrom: a[:100], b[:100])
+  for (i = 0; i < 100; i++)
+    {
+      long long c = 0;
+      const long long d[] = { 1, 3, 5, 7, 9 };
+      for (int j = 4; j >= 0; j--)
+         c = d[j] + b[i] * c;
+      a[i] += c;
+    }
+  for (i = 0; i < 100; i++)
+    {
+      const long long r[] = { 1, 26, 229, 976, 2849, 6646, 13381, 24284, 40801, 64594 };
+      if (a[i] != r[i % 10] + (i / 10 * 10))
+       __builtin_abort ();
+    }
+  return 0;
+}