[gcc(refs/users/meissner/heads/work119)] Combine variable element vec_extract of V4SF with DF convert.

Michael Meissner meissner@gcc.gnu.org
Fri Apr 21 04:02:43 GMT 2023


https://gcc.gnu.org/g:cbad65bd5d95dcabcf8d72dc0b71e85c4d67f806

commit cbad65bd5d95dcabcf8d72dc0b71e85c4d67f806
Author: Michael Meissner <meissner@linux.ibm.com>
Date:   Fri Apr 21 00:02:25 2023 -0400

    Combine variable element vec_extract of V4SF with DF convert.
    
    This patch adds a combine insn that merges loading up a vec_extract of V4SFmode
    where the element number is variable combined with a conversion to DFmode.
    
    2023-04-21   Michael Meissner  <meissner@linux.ibm.com>
    
    gcc/
    
            * config/rs6000/vsx.md (vsx_extract_v4sf_var_load_to_df): New insn.

Diff:
---
 gcc/config/rs6000/vsx.md | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gcc/config/rs6000/vsx.md b/gcc/config/rs6000/vsx.md
index bb06abceb00..b234b807087 100644
--- a/gcc/config/rs6000/vsx.md
+++ b/gcc/config/rs6000/vsx.md
@@ -3637,6 +3637,27 @@
 }
   [(set_attr "type" "fpload,load")])
 
+;; Combine V4SF extract from memory with a variable element number with
+;; conversion to DFmode.
+(define_insn_and_split "*vsx_extract_v4sf_var_load_to_df"
+  [(set (match_operand:DF 0 "gpc_reg_operand" "=wa")
+	(float_extend:DF
+	 (unspec:SF [(match_operand:V4SF 1 "memory_operand" "Q")
+		     (match_operand:DI 2 "gpc_reg_operand" "r")]
+		    UNSPEC_VSX_EXTRACT)))
+   (clobber (match_scratch:DI 3 "=&b"))]
+  "VECTOR_MEM_VSX_P (V4SFmode) && TARGET_DIRECT_MOVE_64BIT"
+  "#"
+  "&& 1"
+  [(set (match_dup 0)
+	(float_extend:DF (match_dup 4)))]
+{
+  operands[4] = rs6000_adjust_vec_address (operands[0], operands[1], operands[2],
+					   operands[3], SFmode);
+}
+  [(set_attr "type" "fpload")
+   (set_attr "length" "12")])
+
 ;; Expand the builtin form of xxpermdi to canonical rtl.
 (define_expand "vsx_xxpermdi_<mode>"
   [(match_operand:VSX_L 0 "vsx_register_operand")


More information about the Gcc-cvs mailing list