re PR middle-end/87887 (ICE in make_ssa_name_fn, at tree-ssanames.c:269)
authorJakub Jelinek <jakub@redhat.com>
Sat, 2 Feb 2019 00:04:39 +0000 (01:04 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Sat, 2 Feb 2019 00:04:39 +0000 (01:04 +0100)
PR middle-end/87887
* config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
Punt with warning on aggregate return or argument types.  Ignore
type/mode checking for uniform arguments.

* gcc.dg/gomp/pr87887-1.c: New test.
* gcc.dg/gomp/pr87887-2.c: New test.

From-SVN: r268466

gcc/ChangeLog
gcc/config/i386/i386.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/gomp/pr87887-1.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/gomp/pr87887-2.c [new file with mode: 0644]

index fba9fcf..33d4ecf 100644 (file)
@@ -1,3 +1,10 @@
+2019-02-02  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/87887
+       * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
+       Punt with warning on aggregate return or argument types.  Ignore
+       type/mode checking for uniform arguments.
+
 2019-02-01  Segher Boessenkool  <segher@kernel.crashing.org>
 
        * combine.c (try_combine): Do not print "Can't combine" messages unless
index 4e67abe..789a535 100644 (file)
@@ -50433,7 +50433,9 @@ ix86_simd_clone_compute_vecsize_and_simdlen (struct cgraph_node *node,
       case E_DFmode:
       /* case E_SCmode: */
       /* case E_DCmode: */
-       break;
+       if (!AGGREGATE_TYPE_P (ret_type))
+         break;
+       /* FALLTHRU */
       default:
        warning_at (DECL_SOURCE_LOCATION (node->decl), 0,
                    "unsupported return type %qT for simd", ret_type);
@@ -50444,7 +50446,6 @@ ix86_simd_clone_compute_vecsize_and_simdlen (struct cgraph_node *node,
   int i;
 
   for (t = DECL_ARGUMENTS (node->decl), i = 0; t; t = DECL_CHAIN (t), i++)
-    /* FIXME: Shouldn't we allow such arguments if they are uniform?  */
     switch (TYPE_MODE (TREE_TYPE (t)))
       {
       case E_QImode:
@@ -50455,8 +50456,12 @@ ix86_simd_clone_compute_vecsize_and_simdlen (struct cgraph_node *node,
       case E_DFmode:
       /* case E_SCmode: */
       /* case E_DCmode: */
-       break;
+       if (!AGGREGATE_TYPE_P (TREE_TYPE (t)))
+         break;
+       /* FALLTHRU */
       default:
+       if (clonei->args[i].arg_type == SIMD_CLONE_ARG_TYPE_UNIFORM)
+         break;
        warning_at (DECL_SOURCE_LOCATION (node->decl), 0,
                    "unsupported argument type %qT for simd", TREE_TYPE (t));
        return 0;
index 02a4b85..4687a66 100644 (file)
@@ -1,3 +1,9 @@
+2019-02-02  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/87887
+       * gcc.dg/gomp/pr87887-1.c: New test.
+       * gcc.dg/gomp/pr87887-2.c: New test.
+
 2019-02-01  Jakub Jelinek  <jakub@redhat.com>
 
        PR fortran/83246
diff --git a/gcc/testsuite/gcc.dg/gomp/pr87887-1.c b/gcc/testsuite/gcc.dg/gomp/pr87887-1.c
new file mode 100644 (file)
index 0000000..8b04ffd
--- /dev/null
@@ -0,0 +1,26 @@
+/* PR middle-end/87887 */
+/* { dg-do compile } */
+/* { dg-require-effective-target vect_simd_clones } */
+/* { dg-additional-options "-w" } */
+
+struct S { int n; };
+#pragma omp declare simd
+struct S
+foo (int x)
+{
+  return (struct S) { x };
+}
+
+#pragma omp declare simd
+int
+bar (struct S x)
+{
+  return x.n;
+}
+
+#pragma omp declare simd uniform (x)
+int
+baz (int w, struct S x, int y)
+{
+  return w + x.n + y;
+}
diff --git a/gcc/testsuite/gcc.dg/gomp/pr87887-2.c b/gcc/testsuite/gcc.dg/gomp/pr87887-2.c
new file mode 100644 (file)
index 0000000..51b6c2a
--- /dev/null
@@ -0,0 +1,25 @@
+/* PR middle-end/87887 */
+/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
+/* { dg-require-effective-target vect_simd_clones } */
+
+struct S { int n; };
+#pragma omp declare simd
+struct S
+foo (int x)            /* { dg-warning "unsupported return type 'struct S' for simd" } */
+{
+  return (struct S) { x };
+}
+
+#pragma omp declare simd
+int
+bar (struct S x)       /* { dg-warning "unsupported argument type 'struct S' for simd" } */
+{
+  return x.n;
+}
+
+#pragma omp declare simd uniform (x)
+int
+baz (int w, struct S x, int y)
+{
+  return w + x.n + y;
+}