diff options
author | Xi Ruoyao <xry111@xry111.site> | 2024-07-28 19:57:02 +0800 |
---|---|---|
committer | Xi Ruoyao <xry111@xry111.site> | 2024-07-31 17:43:10 +0800 |
commit | 996c2e2144c4a534b65424170c596dcbf44ba6db (patch) | |
tree | 1000951b2825a766667a70a330c8e097da957588 /gcc/config/loongarch | |
parent | 70a4e79dc9ed73b056aa0362f61302e04227049f (diff) | |
download | gcc-996c2e2144c4a534b65424170c596dcbf44ba6db.zip gcc-996c2e2144c4a534b65424170c596dcbf44ba6db.tar.gz gcc-996c2e2144c4a534b65424170c596dcbf44ba6db.tar.bz2 |
LoongArch: Rework bswap{hi,si,di}2 definition
Per a gcc-help thread we are generating sub-optimal code for
__builtin_bswap{32,64}. To fix it:
- Use a single revb.d instruction for bswapdi2.
- Use a single revb.2w instruction for bswapsi2 for TARGET_64BIT,
revb.2h + rotri.w for !TARGET_64BIT.
- Use a single revb.2h instruction for bswapsi2 (x) r>> 16, and a single
revb.2w instruction for bswapdi2 (x) r>> 32.
Unfortunately I cannot figure out a way to make the compiler generate
revb.4h or revh.{2w,d} instructions.
gcc/ChangeLog:
* config/loongarch/loongarch.md (UNSPEC_REVB_2H, UNSPEC_REVB_4H,
UNSPEC_REVH_D): Remove UNSPECs.
(revb_4h, revh_d): Remove define_insn.
(revb_2h): Define as (rotatert:SI (bswap:SI x) 16) instead of
an UNSPEC.
(revb_2h_extend, revb_2w, *bswapsi2, bswapdi2): New define_insn.
(bswapsi2): Change to define_expand. Only expand to revb.2h +
rotri.w if !TARGET_64BIT.
(bswapdi2): Change to define_insn of which the output is just a
revb.d instruction.
gcc/testsuite/ChangeLog:
* gcc.target/loongarch/revb.c: New test.
Diffstat (limited to 'gcc/config/loongarch')
-rw-r--r-- | gcc/config/loongarch/loongarch.md | 79 |
1 files changed, 43 insertions, 36 deletions
diff --git a/gcc/config/loongarch/loongarch.md b/gcc/config/loongarch/loongarch.md index 280d1c4..ee0310f 100644 --- a/gcc/config/loongarch/loongarch.md +++ b/gcc/config/loongarch/loongarch.md @@ -20,11 +20,6 @@ ;; <http://www.gnu.org/licenses/>. (define_c_enum "unspec" [ - ;; Integer operations that are too cumbersome to describe directly. - UNSPEC_REVB_2H - UNSPEC_REVB_4H - UNSPEC_REVH_D - ;; Floating-point moves. UNSPEC_LOAD_LOW UNSPEC_LOAD_HIGH @@ -3151,55 +3146,67 @@ ;; Reverse the order of bytes of operand 1 and store the result in operand 0. -(define_insn "bswaphi2" - [(set (match_operand:HI 0 "register_operand" "=r") - (bswap:HI (match_operand:HI 1 "register_operand" "r")))] +(define_insn "revb_2h" + [(set (match_operand:SI 0 "register_operand" "=r") + (rotatert:SI (bswap:SI (match_operand:SI 1 "register_operand" "r")) + (const_int 16)))] "" "revb.2h\t%0,%1" [(set_attr "type" "shift")]) -(define_insn_and_split "bswapsi2" - [(set (match_operand:SI 0 "register_operand" "=r") - (bswap:SI (match_operand:SI 1 "register_operand" "r")))] - "" - "#" - "" - [(set (match_dup 0) (unspec:SI [(match_dup 1)] UNSPEC_REVB_2H)) - (set (match_dup 0) (rotatert:SI (match_dup 0) (const_int 16)))] - "" - [(set_attr "insn_count" "2")]) - -(define_insn_and_split "bswapdi2" +(define_insn "revb_2h_extend" [(set (match_operand:DI 0 "register_operand" "=r") - (bswap:DI (match_operand:DI 1 "register_operand" "r")))] + (sign_extend:DI + (rotatert:SI + (bswap:SI (match_operand:SI 1 "register_operand" "r")) + (const_int 16))))] "TARGET_64BIT" - "#" - "" - [(set (match_dup 0) (unspec:DI [(match_dup 1)] UNSPEC_REVB_4H)) - (set (match_dup 0) (unspec:DI [(match_dup 0)] UNSPEC_REVH_D))] - "" - [(set_attr "insn_count" "2")]) + "revb.2h\t%0,%1" + [(set_attr "type" "shift")]) -(define_insn "revb_2h" - [(set (match_operand:SI 0 "register_operand" "=r") - (unspec:SI [(match_operand:SI 1 "register_operand" "r")] UNSPEC_REVB_2H))] +(define_insn "bswaphi2" + [(set (match_operand:HI 0 "register_operand" "=r") + (bswap:HI (match_operand:HI 1 "register_operand" "r")))] "" "revb.2h\t%0,%1" [(set_attr "type" "shift")]) -(define_insn "revb_4h" +(define_insn "revb_2w" [(set (match_operand:DI 0 "register_operand" "=r") - (unspec:DI [(match_operand:DI 1 "register_operand" "r")] UNSPEC_REVB_4H))] + (rotatert:DI (bswap:DI (match_operand:DI 1 "register_operand" "r")) + (const_int 32)))] "TARGET_64BIT" - "revb.4h\t%0,%1" + "revb.2w\t%0,%1" [(set_attr "type" "shift")]) -(define_insn "revh_d" +(define_insn "*bswapsi2" + [(set (match_operand:SI 0 "register_operand" "=r") + (bswap:SI (match_operand:SI 1 "register_operand" "r")))] + "TARGET_64BIT" + "revb.2w\t%0,%1" + [(set_attr "type" "shift")]) + +(define_expand "bswapsi2" + [(set (match_operand:SI 0 "register_operand" "=r") + (bswap:SI (match_operand:SI 1 "register_operand" "r")))] + "" +{ + if (!TARGET_64BIT) + { + rtx t = gen_reg_rtx (SImode); + emit_insn (gen_revb_2h (t, operands[1])); + emit_insn (gen_rotrsi3 (operands[0], t, GEN_INT (16))); + DONE; + } +}) + +(define_insn "bswapdi2" [(set (match_operand:DI 0 "register_operand" "=r") - (unspec:DI [(match_operand:DI 1 "register_operand" "r")] UNSPEC_REVH_D))] + (bswap:DI (match_operand:DI 1 "register_operand" "r")))] "TARGET_64BIT" - "revh.d\t%0,%1" + "revb.d\t%0,%1" [(set_attr "type" "shift")]) + ;; ;; .................... |