From: Kewen Lin Date: Wed, 10 Jan 2024 05:06:13 +0000 (-0600) Subject: rs6000: Eliminate zext fed by vclzlsbb [PR111480] X-Git-Tag: basepoints/gcc-15~3048 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6660904c3f5872262f466b5cbbd48fb11e9fe966;p=thirdparty%2Fgcc.git rs6000: Eliminate zext fed by vclzlsbb [PR111480] As PR111480 shows, commit r14-4079 only optimizes the case of vctzlsbb but not for the similar vclzlsbb. This patch is to consider vclzlsbb as well and avoid the failure on the reported test case. It also simplifies the patterns with iterator and attribute. PR target/111480 gcc/ChangeLog: * config/rs6000/vsx.md (VCZLSBB): New int iterator. (vczlsbb_char): New int attribute. (vclzlsbb_, vctzlsbb_): Merge to ... (vczlsbb_): ... this. (*vctzlsbb_zext_): Rename to ... (*vczlsbb_zext_): ... this, and extend it to cover vclzlsbb. --- diff --git a/gcc/config/rs6000/vsx.md b/gcc/config/rs6000/vsx.md index 4c1725a7ecdf..6111cc90eb74 100644 --- a/gcc/config/rs6000/vsx.md +++ b/gcc/config/rs6000/vsx.md @@ -411,6 +411,12 @@ (V2DF "d") (V4SF "w")]) +;; Iterator and attribute for vector count leading/trailing +;; zero least-significant bits byte +(define_int_iterator VCZLSBB [UNSPEC_VCLZLSBB + UNSPEC_VCTZLSBB]) +(define_int_attr vczlsbb_char [(UNSPEC_VCLZLSBB "l") + (UNSPEC_VCTZLSBB "t")]) ;; VSX moves @@ -5855,35 +5861,24 @@ "vcmpnezw %0,%1,%2" [(set_attr "type" "vecsimple")]) -;; Vector Count Leading Zero Least-Significant Bits Byte -(define_insn "vclzlsbb_" - [(set (match_operand:SI 0 "register_operand" "=r") - (unspec:SI - [(match_operand:VSX_EXTRACT_I 1 "altivec_register_operand" "v")] - UNSPEC_VCLZLSBB))] - "TARGET_P9_VECTOR" - "vclzlsbb %0,%1" - [(set_attr "type" "vecsimple")]) - -;; Vector Count Trailing Zero Least-Significant Bits Byte -(define_insn "*vctzlsbb_zext_" +;; Vector Count Leading/Trailing Zero Least-Significant Bits Byte +(define_insn "*vczlsbb_zext_" [(set (match_operand:DI 0 "register_operand" "=r") - (zero_extend:DI - (unspec:SI - [(match_operand:VSX_EXTRACT_I 1 "altivec_register_operand" "v")] - UNSPEC_VCTZLSBB)))] + (zero_extend:DI + (unspec:SI + [(match_operand:VSX_EXTRACT_I 1 "altivec_register_operand" "v")] + VCZLSBB)))] "TARGET_P9_VECTOR" - "vctzlsbb %0,%1" + "vczlsbb %0,%1" [(set_attr "type" "vecsimple")]) -;; Vector Count Trailing Zero Least-Significant Bits Byte -(define_insn "vctzlsbb_" +(define_insn "vczlsbb_" [(set (match_operand:SI 0 "register_operand" "=r") - (unspec:SI - [(match_operand:VSX_EXTRACT_I 1 "altivec_register_operand" "v")] - UNSPEC_VCTZLSBB))] + (unspec:SI + [(match_operand:VSX_EXTRACT_I 1 "altivec_register_operand" "v")] + VCZLSBB))] "TARGET_P9_VECTOR" - "vctzlsbb %0,%1" + "vczlsbb %0,%1" [(set_attr "type" "vecsimple")]) ;; Vector Extract Unsigned Byte Left-Indexed