]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
rs6000: Fold xxsel to vsel since they have same semantics
authorXionghu Luo <luoxhu@linux.ibm.com>
Thu, 28 Oct 2021 02:22:39 +0000 (21:22 -0500)
committerXionghu Luo <luoxhu@linux.ibm.com>
Thu, 28 Oct 2021 03:17:33 +0000 (22:17 -0500)
Fold xxsel to vsel like xxperm/vperm to avoid duplicate code.

gcc/ChangeLog:

2021-10-28  Xionghu Luo  <luoxhu@linux.ibm.com>

PR target/94613
* config/rs6000/altivec.md: Add vsx register constraints.
* config/rs6000/vsx.md (vsx_xxsel<mode>): Delete.
(vsx_xxsel<mode>2): Likewise.
(vsx_xxsel<mode>3): Likewise.
(vsx_xxsel<mode>4): Likewise.

gcc/testsuite/ChangeLog:

2021-10-28  Xionghu Luo  <luoxhu@linux.ibm.com>

* gcc.target/powerpc/builtins-1.c: Adjust.

gcc/config/rs6000/altivec.md
gcc/config/rs6000/vsx.md
gcc/testsuite/gcc.target/powerpc/builtins-1.c

index 158b3a708a3131401042fe008ea4276e3799150a..a057218aa2885a12d07efe22642b7cb93b766a45 100644 (file)
   [(set_attr "type" "veccmp")])
 
 (define_insn "altivec_vsel<mode>"
-  [(set (match_operand:VM 0 "altivec_register_operand" "=v")
+  [(set (match_operand:VM 0 "register_operand" "=wa,v")
        (ior:VM
          (and:VM
-           (not:VM (match_operand:VM 3 "altivec_register_operand" "v"))
-           (match_operand:VM 1 "altivec_register_operand" "v"))
+           (not:VM (match_operand:VM 3 "register_operand" "wa,v"))
+           (match_operand:VM 1 "register_operand" "wa,v"))
          (and:VM
            (match_dup 3)
-           (match_operand:VM 2 "altivec_register_operand" "v"))))]
+           (match_operand:VM 2 "register_operand" "wa,v"))))]
   "VECTOR_MEM_ALTIVEC_OR_VSX_P (<MODE>mode)"
-  "vsel %0,%1,%2,%3"
-  [(set_attr "type" "vecmove")])
+  "@
+   xxsel %x0,%x1,%x2,%x3
+   vsel %0,%1,%2,%3"
+  [(set_attr "type" "vecmove")
+   (set_attr "isa" "<VSisa>")])
 
 (define_insn "altivec_vsel<mode>2"
-  [(set (match_operand:VM 0 "altivec_register_operand" "=v")
+  [(set (match_operand:VM 0 "register_operand" "=wa,v")
        (ior:VM
          (and:VM
-           (not:VM (match_operand:VM 3 "altivec_register_operand" "v"))
-           (match_operand:VM 1 "altivec_register_operand" "v"))
+           (not:VM (match_operand:VM 3 "register_operand" "wa,v"))
+           (match_operand:VM 1 "register_operand" "wa,v"))
          (and:VM
-           (match_operand:VM 2 "altivec_register_operand" "v")
+           (match_operand:VM 2 "register_operand" "wa,v")
            (match_dup 3))))]
   "VECTOR_MEM_ALTIVEC_OR_VSX_P (<MODE>mode)"
-  "vsel %0,%1,%2,%3"
-  [(set_attr "type" "vecmove")])
+  "@
+   xxsel %x0,%x1,%x2,%x3
+   vsel %0,%1,%2,%3"
+  [(set_attr "type" "vecmove")
+   (set_attr "isa" "<VSisa>")])
 
 (define_insn "altivec_vsel<mode>3"
-  [(set (match_operand:VM 0 "altivec_register_operand" "=v")
+  [(set (match_operand:VM 0 "register_operand" "=wa,v")
        (ior:VM
          (and:VM
-           (match_operand:VM 3 "altivec_register_operand" "v")
-           (match_operand:VM 1 "altivec_register_operand" "v"))
+           (match_operand:VM 3 "register_operand" "wa,v")
+           (match_operand:VM 1 "register_operand" "wa,v"))
          (and:VM
            (not:VM (match_dup 3))
-           (match_operand:VM 2 "altivec_register_operand" "v"))))]
+           (match_operand:VM 2 "register_operand" "wa,v"))))]
   "VECTOR_MEM_ALTIVEC_OR_VSX_P (<MODE>mode)"
-  "vsel %0,%2,%1,%3"
-  [(set_attr "type" "vecmove")])
+  "@
+   xxsel %x0,%x2,%x1,%x3
+   vsel %0,%2,%1,%3"
+  [(set_attr "type" "vecmove")
+   (set_attr "isa" "<VSisa>")])
 
 (define_insn "altivec_vsel<mode>4"
-  [(set (match_operand:VM 0 "altivec_register_operand" "=v")
+  [(set (match_operand:VM 0 "register_operand" "=wa,v")
        (ior:VM
          (and:VM
-           (match_operand:VM 1 "altivec_register_operand" "v")
-           (match_operand:VM 3 "altivec_register_operand" "v"))
+           (match_operand:VM 1 "register_operand" "wa,v")
+           (match_operand:VM 3 "register_operand" "wa,v"))
          (and:VM
            (not:VM (match_dup 3))
-           (match_operand:VM 2 "altivec_register_operand" "v"))))]
+           (match_operand:VM 2 "register_operand" "wa,v"))))]
   "VECTOR_MEM_ALTIVEC_OR_VSX_P (<MODE>mode)"
-  "vsel %0,%2,%1,%3"
-  [(set_attr "type" "vecmove")])
+  "@
+   xxsel %x0,%x2,%x1,%x3
+   vsel %0,%2,%1,%3"
+  [(set_attr "type" "vecmove")
+   (set_attr "isa" "<VSisa>")])
 
 ;; Fused multiply add.
 
index 73fd2ce8abb213b3670c4f89c34ea822c5fb0b85..0bf04feb6c4ad52c07c2bddb6033a2bae3707d06 100644 (file)
   "xvcmpge<sd>p. %x0,%x1,%x2"
   [(set_attr "type" "<VStype_simple>")])
 
-;; Vector select
-(define_insn "vsx_xxsel<mode>"
-  [(set (match_operand:VSX_L 0 "vsx_register_operand" "=<VSr>,?wa")
-       (ior:VSX_L
-         (and:VSX_L
-           (not:VSX_L (match_operand:VSX_L 3 "vsx_register_operand" "<VSr>,wa"))
-           (match_operand:VSX_L 1 "vsx_register_operand" "<VSr>,wa"))
-         (and:VSX_L
-           (match_dup 3)
-           (match_operand:VSX_L 2 "vsx_register_operand" "<VSr>,wa"))))]
-  "VECTOR_MEM_VSX_P (<MODE>mode)"
-  "xxsel %x0,%x1,%x2,%x3"
-  [(set_attr "type" "vecmove")
-   (set_attr "isa" "<VSisa>")])
-
-(define_insn "vsx_xxsel<mode>2"
-  [(set (match_operand:VSX_L 0 "vsx_register_operand" "=<VSr>,?wa")
-       (ior:VSX_L
-         (and:VSX_L
-           (not:VSX_L (match_operand:VSX_L 3 "vsx_register_operand" "<VSr>,wa"))
-           (match_operand:VSX_L 1 "vsx_register_operand" "<VSr>,wa"))
-         (and:VSX_L
-           (match_operand:VSX_L 2 "vsx_register_operand" "<VSr>,wa")
-           (match_dup 3))))]
-  "VECTOR_MEM_VSX_P (<MODE>mode)"
-  "xxsel %x0,%x1,%x2,%x3"
-  [(set_attr "type" "vecmove")
-   (set_attr "isa" "<VSisa>")])
-
-(define_insn "vsx_xxsel<mode>3"
-  [(set (match_operand:VSX_L 0 "vsx_register_operand" "=<VSr>,?wa")
-       (ior:VSX_L
-         (and:VSX_L
-           (match_operand:VSX_L 3 "vsx_register_operand" "<VSr>,wa")
-           (match_operand:VSX_L 1 "vsx_register_operand" "<VSr>,wa"))
-         (and:VSX_L
-           (not:VSX_L (match_dup 3))
-           (match_operand:VSX_L 2 "vsx_register_operand" "<VSr>,wa"))))]
- "VECTOR_MEM_VSX_P (<MODE>mode)"
-  "xxsel %x0,%x2,%x1,%x3"
- [(set_attr "type" "vecmove")
- (set_attr "isa" "<VSisa>")])
-
-(define_insn "vsx_xxsel<mode>4"
-  [(set (match_operand:VSX_L 0 "vsx_register_operand" "=<VSr>,?wa")
-       (ior:VSX_L
-         (and:VSX_L
-           (match_operand:VSX_L 1 "vsx_register_operand" "<VSr>,wa")
-           (match_operand:VSX_L 3 "vsx_register_operand" "<VSr>,wa"))
-         (and:VSX_L
-           (not:VSX_L (match_dup 3))
-           (match_operand:VSX_L 2 "vsx_register_operand" "<VSr>,wa"))))]
- "VECTOR_MEM_VSX_P (<MODE>mode)"
- "xxsel %x0,%x2,%x1,%x3"
- [(set_attr "type" "vecmove")
- (set_attr "isa" "<VSisa>")])
-
 ;; Copy sign
 (define_insn "vsx_copysign<mode>3"
   [(set (match_operand:VSX_F 0 "vsx_register_operand" "=wa")
index 2dafa9029534f81f6f0b6dffba9a6376b236c3dc..63fbd2e3be12d2cf8257e3214b2677b3e85e7323 100644 (file)
@@ -326,7 +326,7 @@ int main ()
 /* { dg-final { scan-assembler-times {\mvpkudus\M} 1 } } */
 /* { dg-final { scan-assembler-times "vperm" 4 } } */
 /* { dg-final { scan-assembler-times "xvrdpi" 2 } } */
-/* { dg-final { scan-assembler-times "xxsel" 10 } } */
+/* { dg-final { scan-assembler-times "xxsel" 5 } } */
 /* { dg-final { scan-assembler-times "xxlxor" 6 } } */
 /* { dg-final { scan-assembler-times "divd" 8  { target lp64 } } } */
 /* { dg-final { scan-assembler-times "divdu" 2  { target lp64 } } } */