i386: Fix up *avx_vperm_broadcast_v4df [PR93430]
authorJakub Jelinek <jakub@redhat.com>
Sun, 26 Jan 2020 11:10:48 +0000 (12:10 +0100)
committerJakub Jelinek <jakub@redhat.com>
Sun, 26 Jan 2020 11:10:48 +0000 (12:10 +0100)
Apparently my recent patch which moved the *avx_vperm_broadcast* and
*vpermil* patterns before vpermpd broke the following testcase, the
define_insn_and_split matched always but the splitter condition only split
it if not -mavx2 for V4DFmode, basically relying on the vpermpd pattern to
come first.

The following patch fixes it by moving that part of SPLIT-CONDITION into
CONDITION, so that when it is not met, we just don't match the pattern
and thus match the later vpermpd pattern in that case.
Except, for { 0, 0, 0, 0 } permutation, there is actually no reason to do
that, vbroadcastsd from memory seems to be slightly cheaper than vpermpd $0.

2020-01-26  Jakub Jelinek  <jakub@redhat.com>

PR target/93430
* config/i386/sse.md (*avx_vperm_broadcast_<mode>): Disallow for
TARGET_AVX2 and V4DFmode not in the split condition, but in the
pattern condition, though allow { 0, 0, 0, 0 } broadcast always.

* gcc.dg/pr93430.c: New test.
* gcc.target/i386/avx2-pr93430.c: New test.

gcc/ChangeLog
gcc/config/i386/sse.md
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr93430.c [new file with mode: 0644]
gcc/testsuite/gcc.target/i386/avx2-pr93430.c [new file with mode: 0644]

index e35efd623e7589e7d656bdb9c37b017e8582c3d3..db62a7a12ff2dce62a5787d4307627f6e20fe40d 100644 (file)
@@ -1,3 +1,10 @@
+2020-01-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/93430
+       * config/i386/sse.md (*avx_vperm_broadcast_<mode>): Disallow for
+       TARGET_AVX2 and V4DFmode not in the split condition, but in the
+       pattern condition, though allow { 0, 0, 0, 0 } broadcast always.
+
 2020-01-25  Feng Xue  <fxue@os.amperecomputing.com>
 
        PR ipa/93166
index f2f4a4e15159a1f07885c92bcbefa6671aaf67ce..04a8c5e56b94fc05bdad3324efe93f9580ee6ee3 100644 (file)
          (match_operand:VF_256 1 "nonimmediate_operand" "m,o,?v")
          (match_parallel 2 "avx_vbroadcast_operand"
            [(match_operand 3 "const_int_operand" "C,n,n")])))]
-  "TARGET_AVX"
+  "TARGET_AVX
+   && (<MODE>mode != V4DFmode || !TARGET_AVX2 || operands[3] == const0_rtx)"
   "#"
-  "&& reload_completed && (<MODE>mode != V4DFmode || !TARGET_AVX2)"
+  "&& reload_completed"
   [(set (match_dup 0) (vec_duplicate:VF_256 (match_dup 1)))]
 {
   rtx op0 = operands[0], op1 = operands[1];
index 99da3cc5feb68bf5cbc43231f7416bd01aa200c2..860d56d3420d7c3c0d8e8088bbb6fb150d0202dd 100644 (file)
@@ -1,5 +1,9 @@
 2020-01-26  Jakub Jelinek  <jakub@redhat.com>
 
+       PR target/93430
+       * gcc.dg/pr93430.c: New test.
+       * gcc.target/i386/avx2-pr93430.c: New test.
+
        PR ipa/93166
        * g++.dg/pr93166.C: Move to ...
        * g++.dg/pr93166_0.C: ... here.  Turn it into a proper lto test.
diff --git a/gcc/testsuite/gcc.dg/pr93430.c b/gcc/testsuite/gcc.dg/pr93430.c
new file mode 100644 (file)
index 0000000..92c0b9f
--- /dev/null
@@ -0,0 +1,33 @@
+/* PR target/93430 */
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+/* { dg-additional-options "-mavx -mno-avx2" { target avx } } */
+
+typedef double V __attribute__((vector_size (4 * sizeof (double))));
+typedef long long VI __attribute__((vector_size (4 * sizeof (long long))));
+
+#if __SIZEOF_DOUBLE__ == __SIZEOF_LONG_LONG__
+void
+foo (V *x, V *y)
+{
+  y[0] = __builtin_shuffle (x[0], x[0], (VI) { 0, 0, 0, 0 });
+}
+
+void
+bar (V *x, V *y)
+{
+  y[0] = __builtin_shuffle (x[0], x[0], (VI) { 1, 1, 1, 1 });
+}
+
+void
+baz (V *x, V *y)
+{
+  y[0] = __builtin_shuffle (x[0], x[0], (VI) { 2, 2, 2, 2 });
+}
+
+void
+qux (V *x, V *y)
+{
+  y[0] = __builtin_shuffle (x[0], x[0], (VI) { 3, 3, 3, 3 });
+}
+#endif
diff --git a/gcc/testsuite/gcc.target/i386/avx2-pr93430.c b/gcc/testsuite/gcc.target/i386/avx2-pr93430.c
new file mode 100644 (file)
index 0000000..d7c1a51
--- /dev/null
@@ -0,0 +1,5 @@
+/* PR target/93430 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -mavx2" } */
+
+#include "../../gcc.dg/pr93430.c"