i386: Introduce V2QImode vector cmove for -msse4.1 [PR103861]
authorUros Bizjak <ubizjak@gmail.com>
Tue, 11 Jan 2022 18:23:15 +0000 (19:23 +0100)
committerUros Bizjak <ubizjak@gmail.com>
Tue, 11 Jan 2022 18:23:58 +0000 (19:23 +0100)
This patch also moves V2HI and V4QImode vector conditional moves
to SSE4.1 targets.  Vector cmoves are implemented with SSE logic functions
without -msse4.1, and they are hardly worthwile for narrow vector modes.
More important, we would like to keep vector logic functions for GPR
registers, and the current RTX description of 32-bit vector modes logic
insns does not include the necessary CC reg clobber.  Solve these issues by
restricting vector cmove insns for these modes to -msse4.1, where logic
instructions are avoided, and pblend insn is used instead.

A follow-up patch will add clobbers and necessary splits to 32-bit
vector mode logic insns, and in a future patch, ix86_sse_movcc will be
improved to use expand_simple_{unop,binop} to emit logic insns, allowing
us to re-enable 16-bit and 32-bit narrow vector cmoves for -msse2.

2022-01-11  Uroš Bizjak  <ubizjak@gmail.com>

gcc/ChangeLog:

PR target/103861
* config/i386/mmx.md (vcond<mode><mode>):
Use VI_16_32 mode iterator.  Enable for TARGET_SSE4_1.
(vcondu<mode><mode>): Ditto.
(vcond_mask_<mode><mode>): Ditto.
(mmx_pblendvb_v8qi): Rename from mmx_pblendvb64.
(mmx_pblendvb_<mode>): Rename from mmx_pblendvb32.
Use VI_16_32 mode iterator.
* config/i386/i386-expand.c (ix86_expand_sse_movcc):
Update for rename.  Handle V2QImode.
(expand_vec_perm_blend): Update for rename.

gcc/testsuite/ChangeLog:

PR target/103861
* g++.target/i386/pr100637-1b.C (dg-options):
Use -msse4 instead of -msse2.
* g++.target/i386/pr100637-1w.C (dg-options): Ditto.
* g++.target/i386/pr103861-1.C: New test.
* gcc.target/i386/pr100637-4b.c (dg-options):
Use -msse4 instead of -msse2.
* gcc.target/i386/pr103861-4.c: New test.

gcc/config/i386/i386-expand.c
gcc/config/i386/mmx.md
gcc/testsuite/g++.target/i386/pr100637-1b.C
gcc/testsuite/g++.target/i386/pr100637-1w.C
gcc/testsuite/g++.target/i386/pr103861-1.C [new file with mode: 0644]
gcc/testsuite/gcc.target/i386/pr100637-4b.c
gcc/testsuite/gcc.target/i386/pr103861-4.c [new file with mode: 0644]

index add748b..8b1266f 100644 (file)
@@ -3899,7 +3899,7 @@ ix86_expand_sse_movcc (rtx dest, rtx cmp, rtx op_true, rtx op_false)
        {
          op_true = force_reg (mode, op_true);
 
-         gen = gen_mmx_pblendvb64;
+         gen = gen_mmx_pblendvb_v8qi;
          if (mode != V8QImode)
            d = gen_reg_rtx (V8QImode);
          op_false = gen_lowpart (V8QImode, op_false);
@@ -3913,7 +3913,7 @@ ix86_expand_sse_movcc (rtx dest, rtx cmp, rtx op_true, rtx op_false)
        {
          op_true = force_reg (mode, op_true);
 
-         gen = gen_mmx_pblendvb32;
+         gen = gen_mmx_pblendvb_v4qi;
          if (mode != V4QImode)
            d = gen_reg_rtx (V4QImode);
          op_false = gen_lowpart (V4QImode, op_false);
@@ -3921,6 +3921,14 @@ ix86_expand_sse_movcc (rtx dest, rtx cmp, rtx op_true, rtx op_false)
          cmp = gen_lowpart (V4QImode, cmp);
        }
       break;
+    case E_V2QImode:
+      if (TARGET_SSE4_1)
+       {
+         op_true = force_reg (mode, op_true);
+
+         gen = gen_mmx_pblendvb_v2qi;
+       }
+      break;
     case E_V16QImode:
     case E_V8HImode:
     case E_V8HFmode:
@@ -18462,9 +18470,9 @@ expand_vec_perm_blend (struct expand_vec_perm_d *d)
            vperm = force_reg (vmode, vperm);
 
            if (GET_MODE_SIZE (vmode) == 4)
-             emit_insn (gen_mmx_pblendvb32 (target, op0, op1, vperm));
+             emit_insn (gen_mmx_pblendvb_v4qi (target, op0, op1, vperm));
            else if (GET_MODE_SIZE (vmode) == 8)
-             emit_insn (gen_mmx_pblendvb64 (target, op0, op1, vperm));
+             emit_insn (gen_mmx_pblendvb_v8qi (target, op0, op1, vperm));
            else if (GET_MODE_SIZE (vmode) == 16)
              emit_insn (gen_sse4_1_pblendvb (target, op0, op1, vperm));
            else
index 91d6421..fa67278 100644 (file)
 })
 
 (define_expand "vcond<mode><mode>"
-  [(set (match_operand:VI_32 0 "register_operand")
-       (if_then_else:VI_32
+  [(set (match_operand:VI_16_32 0 "register_operand")
+       (if_then_else:VI_16_32
          (match_operator 3 ""
-           [(match_operand:VI_32 4 "register_operand")
-            (match_operand:VI_32 5 "register_operand")])
-         (match_operand:VI_32 1)
-         (match_operand:VI_32 2)))]
-  "TARGET_SSE2"
+           [(match_operand:VI_16_32 4 "register_operand")
+            (match_operand:VI_16_32 5 "register_operand")])
+         (match_operand:VI_16_32 1)
+         (match_operand:VI_16_32 2)))]
+  "TARGET_SSE4_1"
 {
   bool ok = ix86_expand_int_vcond (operands);
   gcc_assert (ok);
 })
 
 (define_expand "vcondu<mode><mode>"
-  [(set (match_operand:VI_32 0 "register_operand")
-       (if_then_else:VI_32
+  [(set (match_operand:VI_16_32 0 "register_operand")
+       (if_then_else:VI_16_32
          (match_operator 3 ""
-           [(match_operand:VI_32 4 "register_operand")
-            (match_operand:VI_32 5 "register_operand")])
-         (match_operand:VI_32 1)
-         (match_operand:VI_32 2)))]
-  "TARGET_SSE2"
+           [(match_operand:VI_16_32 4 "register_operand")
+            (match_operand:VI_16_32 5 "register_operand")])
+         (match_operand:VI_16_32 1)
+         (match_operand:VI_16_32 2)))]
+  "TARGET_SSE4_1"
 {
   bool ok = ix86_expand_int_vcond (operands);
   gcc_assert (ok);
 })
 
 (define_expand "vcond_mask_<mode><mode>"
-  [(set (match_operand:VI_32 0 "register_operand")
-       (vec_merge:VI_32
-         (match_operand:VI_32 1 "register_operand")
-         (match_operand:VI_32 2 "register_operand")
-         (match_operand:VI_32 3 "register_operand")))]
-  "TARGET_SSE2"
+  [(set (match_operand:VI_16_32 0 "register_operand")
+       (vec_merge:VI_16_32
+         (match_operand:VI_16_32 1 "register_operand")
+         (match_operand:VI_16_32 2 "register_operand")
+         (match_operand:VI_16_32 3 "register_operand")))]
+  "TARGET_SSE4_1"
 {
   ix86_expand_sse_movcc (operands[0], operands[3],
                         operands[1], operands[2]);
   DONE;
 })
 
-(define_insn "mmx_pblendvb64"
+(define_insn "mmx_pblendvb_v8qi"
   [(set (match_operand:V8QI 0 "register_operand" "=Yr,*x,x")
        (unspec:V8QI
          [(match_operand:V8QI 1 "register_operand" "0,0,x")
    (set_attr "btver2_decode" "vector")
    (set_attr "mode" "TI")])
 
-(define_insn "mmx_pblendvb32"
-  [(set (match_operand:V4QI 0 "register_operand" "=Yr,*x,x")
-       (unspec:V4QI
-         [(match_operand:V4QI 1 "register_operand" "0,0,x")
-          (match_operand:V4QI 2 "register_operand" "Yr,*x,x")
-          (match_operand:V4QI 3 "register_operand" "Yz,Yz,x")]
+(define_insn "mmx_pblendvb_<mode>"
+  [(set (match_operand:VI_16_32 0 "register_operand" "=Yr,*x,x")
+       (unspec:VI_16_32
+         [(match_operand:VI_16_32 1 "register_operand" "0,0,x")
+          (match_operand:VI_16_32 2 "register_operand" "Yr,*x,x")
+          (match_operand:VI_16_32 3 "register_operand" "Yz,Yz,x")]
          UNSPEC_BLENDV))]
   "TARGET_SSE4_1"
   "@
index 35b5df7..d602ac0 100644 (file)
@@ -1,6 +1,6 @@
 /* PR target/100637 */
 /* { dg-do compile } */
-/* { dg-options "-O2 -msse2" } */
+/* { dg-options "-O2 -msse4" } */
 
 typedef unsigned char __attribute__((__vector_size__ (4))) __v4qu;
 typedef char __attribute__((__vector_size__ (4))) __v4qi;
index a3ed06f..c605645 100644 (file)
@@ -1,6 +1,6 @@
 /* PR target/100637 */
 /* { dg-do compile } */
-/* { dg-options "-O2 -msse2" } */
+/* { dg-options "-O2 -msse4" } */
 
 typedef unsigned short __attribute__((__vector_size__ (4))) __v2hu;
 typedef short __attribute__((__vector_size__ (4))) __v2hi;
diff --git a/gcc/testsuite/g++.target/i386/pr103861-1.C b/gcc/testsuite/g++.target/i386/pr103861-1.C
new file mode 100644 (file)
index 0000000..940c939
--- /dev/null
@@ -0,0 +1,17 @@
+/* PR target/103861 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -msse4" } */
+
+typedef unsigned char __attribute__((__vector_size__ (2))) __v2qu;
+typedef char __attribute__((__vector_size__ (2))) __v2qi;
+
+__v2qu au, bu;
+__v2qi as, bs;
+
+__v2qu uu (__v2qu a, __v2qu b) { return (a > b) ? au : bu; }
+__v2qu us (__v2qi a, __v2qi b) { return (a > b) ? au : bu; }
+__v2qi su (__v2qu a, __v2qu b) { return (a > b) ? as : bs; }
+__v2qi ss (__v2qi a, __v2qi b) { return (a > b) ? as : bs; }
+
+/* { dg-final { scan-assembler-times "pcmpeqb" 2 } } */
+/* { dg-final { scan-assembler-times "pcmpgtb" 2 } } */
index 198e3dd..add4506 100644 (file)
@@ -1,6 +1,6 @@
 /* PR target/100637 */
 /* { dg-do compile } */
-/* { dg-options "-O2 -ftree-vectorize -msse2" } */
+/* { dg-options "-O2 -ftree-vectorize -msse4" } */
 
 typedef char T;
 
diff --git a/gcc/testsuite/gcc.target/i386/pr103861-4.c b/gcc/testsuite/gcc.target/i386/pr103861-4.c
new file mode 100644 (file)
index 0000000..54c1859
--- /dev/null
@@ -0,0 +1,19 @@
+/* PR target/100637 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -ftree-vectorize -msse4" } */
+
+typedef char T;
+
+#define M 2
+
+extern T a[M], b[M], s1[M], s2[M], r[M];
+
+void foo (void)
+{
+  int j;
+
+  for (j = 0; j < M; j++)
+    r[j] = (a[j] < b[j]) ? s1[j] : s2[j];
+}
+
+/* { dg-final { scan-assembler "pcmpgtb" { xfail *-*-* } } } */