From: Carl Love Date: Sat, 17 Jun 2017 03:14:53 +0000 (+0000) Subject: altivec.md (define_mode_attr VF_sxddp): Move to vsx.md. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=394a527f8556c4e3952b783e41d1d22b6589bec8;p=gcc.git altivec.md (define_mode_attr VF_sxddp): Move to vsx.md. gcc/ChangeLog: 2017-06-16 Carl Love * config/rs6000/altivec.md (define_mode_attr VF_sxddp): Move to vsx.md. * config/rs6000/vsx.md (define_mode_attr VF_sxddp define_expand "floate", define_expand "floato"): Add VF_sxddp definition, replace undefined VFC_inst with VF_sxddp definition From-SVN: r249337 --- diff --git a/gcc/config/rs6000/altivec.md b/gcc/config/rs6000/altivec.md index fd1528668c4..25b2768b0f3 100644 --- a/gcc/config/rs6000/altivec.md +++ b/gcc/config/rs6000/altivec.md @@ -207,9 +207,6 @@ ;; versus floating point (define_mode_attr VS_sxwsp [(V4SI "sxw") (V4SF "sp")]) -;; Mode attribute for vector floate and floato conversions -(define_mode_attr VF_sxddp [(V2DI "sxd") (V2DF "dp")]) - ;; Specific iterator for parity which does not have a byte/half-word form, but ;; does have a quad word form (define_mode_iterator VParity [V4SI diff --git a/gcc/config/rs6000/vsx.md b/gcc/config/rs6000/vsx.md index 284c87bf355..7aa6d32e821 100644 --- a/gcc/config/rs6000/vsx.md +++ b/gcc/config/rs6000/vsx.md @@ -21,6 +21,9 @@ ;; Iterator for comparison types (define_code_iterator CMP_TEST [eq lt gt unordered]) +;; Mode attribute for vector floate and floato conversions +(define_mode_attr VF_sxddp [(V2DI "sxd") (V2DF "dp")]) + ;; Iterator for both scalar and vector floating point types supported by VSX (define_mode_iterator VSX_B [DF V4SF V2DF]) @@ -2056,7 +2059,7 @@ rtx_tmp, rtx_tmp, rtx_val)); } else - emit_insn (gen_vsx_xvcvsp (operands[0], operands[1])); + emit_insn (gen_vsx_xvcvsp (operands[0], operands[1])); DONE; }) @@ -2095,7 +2098,7 @@ "VECTOR_UNIT_VSX_P (V4SFmode)" { if (VECTOR_ELT_ORDER_BIG) - emit_insn (gen_vsx_xvcvsp (operands[0], operands[1])); + emit_insn (gen_vsx_xvcvsp (operands[0], operands[1])); else { /* Shift left one word to put odd word correct location */ @@ -2103,7 +2106,7 @@ rtx rtx_val = GEN_INT (4); rtx_tmp = gen_reg_rtx (V4SFmode); - emit_insn (gen_vsx_xvcvsp (rtx_tmp, operands[1])); + emit_insn (gen_vsx_xvcvsp (rtx_tmp, operands[1])); emit_insn (gen_altivec_vsldoi_v4sf (operands[0], rtx_tmp, rtx_tmp, rtx_val)); }