i386: Add V2SFmode NEG, ABS and logic insn patterns [PR95046]
authorUros Bizjak <ubizjak@gmail.com>
Tue, 12 May 2020 15:06:13 +0000 (17:06 +0200)
committerUros Bizjak <ubizjak@gmail.com>
Tue, 12 May 2020 15:06:13 +0000 (17:06 +0200)
gcc/ChangeLog:

PR target/95046
* config/i386/mmx.md (<code>v2sf2): New insn pattern.
(*mmx_<code>v2sf2): New insn_and_split pattern.
(*mmx_nabsv2sf2): Ditto.
(*mmx_andnotv2sf3): New insn pattern.
(*mmx_<code>v2sf3): Ditto.
* config/i386/i386.md (absneg_op): New code attribute.
* config/i386/i386.c (ix86_build_const_vector): Handle V2SFmode.
(ix86_build_signbit_mask): Ditto.

testsuite/ChangeLog:

PR target/95046
* gcc.target/i386/pr95046-2.c: New test.

gcc/config/i386/i386.c
gcc/config/i386/i386.md
gcc/config/i386/mmx.md
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr95046-1.c
gcc/testsuite/gcc.target/i386/pr95046-2.c [new file with mode: 0644]

index d1c0e354162e04825b72dfbbc6995414059bf130..17883ffd13171d3243d8075aecb060919ebd85aa 100644 (file)
@@ -15091,6 +15091,7 @@ ix86_build_const_vector (machine_mode mode, bool vect, rtx value)
     case E_V16SFmode:
     case E_V8SFmode:
     case E_V4SFmode:
+    case E_V2SFmode:
     case E_V8DFmode:
     case E_V4DFmode:
     case E_V2DFmode:
@@ -15131,6 +15132,7 @@ ix86_build_signbit_mask (machine_mode mode, bool vect, bool invert)
     case E_V4SImode:
     case E_V8SFmode:
     case E_V4SFmode:
+    case E_V2SFmode:
       vec_mode = mode;
       imode = SImode;
       break;
index 8bfc9cb0b7180c07d4202f7ff23c8b500fe2bded..722eb9b5ec85a3e42bed0182635fb30e86458c0f 100644 (file)
 ;; Mapping of abs neg operators
 (define_code_iterator absneg [abs neg])
 
+;; Mapping of abs neg operators to logic operation
+(define_code_attr absneg_op [(abs "and") (neg "xor")])
+
 ;; Base name for x87 insn mnemonic.
 (define_code_attr absneg_mnemonic [(abs "fabs") (neg "fchs")])
 
index a8f603b94f88c3b35c64ad86be34369759bc90de..0ec80c06d352f3e6f7878620adb5b0d3cf092d16 100644 (file)
 ;;
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
+(define_expand "<code>v2sf2"
+  [(set (match_operand:V2SF 0 "register_operand")
+       (absneg:V2SF
+         (match_operand:V2SF 1 "register_operand")))]
+  "TARGET_MMX_WITH_SSE"
+  "ix86_expand_fp_absneg_operator (<CODE>, V2SFmode, operands); DONE;")
+
+(define_insn_and_split "*mmx_<code>v2sf2"
+  [(set (match_operand:V2SF 0 "register_operand" "=x,x")
+       (absneg:V2SF
+         (match_operand:V2SF 1 "register_operand" "%0,x")))
+   (use (match_operand:V2SF 2 "nonimmediate_operand" "x,x"))]
+  "TARGET_MMX_WITH_SSE"
+  "#"
+  "&& reload_completed"
+  [(set (match_dup 0)
+       (<absneg_op>:V2SF (match_dup 1) (match_dup 2)))]
+  ""
+  [(set_attr "isa" "noavx,avx")])
+
+(define_insn_and_split "*mmx_nabsv2sf2"
+  [(set (match_operand:V2SF 0 "register_operand" "=x,x")
+       (neg:V2SF
+         (abs:V2SF
+           (match_operand:V2SF 1 "register_operand" "%0,x"))))
+   (use (match_operand:V2SF 2 "nonimmediate_operand" "x,x"))]
+  "TARGET_MMX_WITH_SSE"
+  "#"
+  "&& reload_completed"
+  [(set (match_dup 0)
+       (ior:V2SF (match_dup 1) (match_dup 2)))]
+  ""
+  [(set_attr "isa" "noavx,avx")])
+
 (define_expand "mmx_addv2sf3"
   [(set (match_operand:V2SF 0 "register_operand")
        (plus:V2SF
    (set_attr "prefix_extra" "1")
    (set_attr "mode" "V2SF")])
 
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;
+;; Parallel single-precision floating point logical operations
+;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+(define_insn "*mmx_andnotv2sf3"
+  [(set (match_operand:V2SF 0 "register_operand" "=x,x")
+       (and:V2SF
+         (not:V2SF
+           (match_operand:V2SF 1 "register_operand" "0,x"))
+         (match_operand:V2SF 2 "register_operand" "x,x")))]
+  "TARGET_MMX_WITH_SSE"
+  "@
+   andps\t{%2, %0|%0, %2}
+   vandps\t{%2, %1, %0|%0, %1, %2}"
+  [(set_attr "isa" "noavx,avx")
+   (set_attr "type" "sselog")
+   (set_attr "prefix" "orig,vex")
+   (set_attr "mode" "V4SF")])
+
+(define_insn "*mmx_<code>v2sf3"
+  [(set (match_operand:V2SF 0 "register_operand" "=x,x")
+       (any_logic:V2SF
+         (match_operand:V2SF 1 "register_operand" "%0,x")
+         (match_operand:V2SF 2 "register_operand" "x,x")))]
+  "TARGET_MMX_WITH_SSE"
+  "@
+   <logic>ps\t{%2, %0|%0, %2}
+   v<logic>ps\t{%2, %1, %0|%0, %1, %2}"
+  [(set_attr "isa" "noavx,avx")
+   (set_attr "type" "sselog")
+   (set_attr "prefix" "orig,vex")
+   (set_attr "mode" "V4SF")])
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;
 ;; Parallel single-precision floating point conversion operations
index b83e0ee45a56f77e486ee53a986c216db9ce4906..795727424098c56e7dd538eb7a64964ef3c42b63 100644 (file)
@@ -1,3 +1,8 @@
+2020-05-12  Uroš Bizjak  <ubizjak@gmail.com>
+
+       PR target/95046
+       * gcc.target/i386/pr95046-2.c: New test.
+
 2020-05-12  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
 
        * gcc.c-torture/execute/noinit-attribute.c: Skip for msp430
index 7adc2069c53d41332acb1dcb519ae341688e4df5..bcc8bb5bfab40e4f78fc15a07ca677871c38f283 100644 (file)
@@ -1,4 +1,4 @@
-/* PR target/94942 */
+/* PR target/95046 */
 /* { dg-do compile { target { ! ia32 } } } */
 /* { dg-options "-O3 -ffast-math -msse2" } */
 
@@ -12,7 +12,7 @@ test_plus (void)
     r[i] = a[i] + b[i];
 }
 
-/* { dg-final { scan-assembler "addps" } } */
+/* { dg-final { scan-assembler "\tv?addps" } } */
 
 void
 test_minus (void)
@@ -21,7 +21,7 @@ test_minus (void)
     r[i] = a[i] - b[i];
 }
 
-/* { dg-final { scan-assembler "subps" } } */
+/* { dg-final { scan-assembler "\tv?subps" } } */
 
 void
 test_mult (void)
@@ -30,7 +30,7 @@ test_mult (void)
     r[i] = a[i] * b[i];
 }
 
-/* { dg-final { scan-assembler "mulps" } } */
+/* { dg-final { scan-assembler "\tv?mulps" } } */
 
 void
 test_min (void)
@@ -39,7 +39,7 @@ test_min (void)
     r[i] = a[i] < b[i] ? a[i] : b[i];
 }
 
-/* { dg-final { scan-assembler "minps" } } */
+/* { dg-final { scan-assembler "\tv?minps" } } */
 
 void
 test_max (void)
@@ -48,7 +48,7 @@ test_max (void)
     r[i] = a[i] > b[i] ? a[i] : b[i];
 }
 
-/* { dg-final { scan-assembler "maxps" } } */
+/* { dg-final { scan-assembler "\tv?maxps" } } */
 
 float sqrtf (float);
 
@@ -59,4 +59,4 @@ test_sqrt (void)
     r[i] = sqrtf (a[i]);
 }
 
-/* { dg-final { scan-assembler "sqrtps" } } */
+/* { dg-final { scan-assembler "\tv?sqrtps" } } */
diff --git a/gcc/testsuite/gcc.target/i386/pr95046-2.c b/gcc/testsuite/gcc.target/i386/pr95046-2.c
new file mode 100644 (file)
index 0000000..277cc2d
--- /dev/null
@@ -0,0 +1,35 @@
+/* PR target/95046 */
+/* { dg-do compile { target { ! ia32 } } } */
+/* { dg-options "-O3 -msse2" } */
+
+
+float r[2], a[2];
+
+float fabsf (float);
+
+void
+test_abs (void)
+{
+  for (int i = 0; i < 2; i++)
+    r[i] = fabsf (a[i]);
+}
+
+/* { dg-final { scan-assembler "\tv?andps" } } */
+
+void
+test_neg (void)
+{
+  for (int i = 0; i < 2; i++)
+    r[i] = -a[i];
+}
+
+/* { dg-final { scan-assembler "\tv?xorps" } } */
+
+void
+test_nabs (void)
+{
+  for (int i = 0; i < 2; i++)
+    r[i] = -fabsf (a[i]);
+}
+
+/* { dg-final { scan-assembler "\tv?orps" } } */