From: YunQiang Su Date: Tue, 18 Jun 2024 09:03:51 +0000 (+0800) Subject: MIPS: Set condmove cost to SET(REG, REG) X-Git-Tag: basepoints/gcc-16~8048 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b67ec4b50ae523a1e1be410644abb627daa9590;p=thirdparty%2Fgcc.git MIPS: Set condmove cost to SET(REG, REG) On most uarch, the cost condmove is same as other noraml integer, and it should be COSTS_N_INSNS(1). In GCC12 or previous, the condmove is always enabled, and from GCC13, we start to compare the cost. The generic rtx_cost give the result of COSTS_N_INSN(2). Let's define it to COSTS_N_INSN(1) in mips_rtx_costs. gcc * config/mips/mips.cc(mips_rtx_costs): Set condmove cost. * config/mips/mips.md(mov_on_, mov_on__mips16e2, mov_on__ne mov_on__ne_mips16e2): Define name by remove starting *, so that we can use CODE_FOR_. gcc/testsuite * gcc.target/mips/movcc-2.c: Add k?100:1000 test. --- diff --git a/gcc/config/mips/mips.cc b/gcc/config/mips/mips.cc index b7acf041903..48924116937 100644 --- a/gcc/config/mips/mips.cc +++ b/gcc/config/mips/mips.cc @@ -4692,6 +4692,30 @@ mips_rtx_costs (rtx x, machine_mode mode, int outer_code, *total = mips_set_reg_reg_cost (GET_MODE (SET_DEST (x))); return true; } + int insn_code; + if (register_operand (SET_DEST (x), VOIDmode) + && GET_CODE (SET_SRC (x)) == IF_THEN_ELSE) + insn_code = recog_memoized (make_insn_raw (x)); + else + insn_code = -1; + switch (insn_code) + { + /* MIPS16e2 ones may be listed here, while the only known CPU core + that implements MIPS16e2 is interAptiv. The Dependency delays + of MOVN/MOVZ on interAptiv is 3. */ + case CODE_FOR_movsi_on_si: + case CODE_FOR_movdi_on_si: + case CODE_FOR_movsi_on_di: + case CODE_FOR_movdi_on_di: + case CODE_FOR_movsi_on_si_ne: + case CODE_FOR_movdi_on_si_ne: + case CODE_FOR_movsi_on_di_ne: + case CODE_FOR_movdi_on_di_ne: + *total = mips_set_reg_reg_cost (GET_MODE (SET_DEST (x))); + return true; + default: + break; + } return false; default: diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 806fd29cf97..f9da06663bb 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -7459,7 +7459,7 @@ ;; MIPS4 Conditional move instructions. -(define_insn "*mov_on_" +(define_insn "mov_on_" [(set (match_operand:GPR 0 "register_operand" "=d,d") (if_then_else:GPR (match_operator 4 "equality_operator" @@ -7474,7 +7474,7 @@ [(set_attr "type" "condmove") (set_attr "mode" "")]) -(define_insn "*mov_on__mips16e2" +(define_insn "mov_on__mips16e2" [(set (match_operand:GPR 0 "register_operand" "=d,d,d,d") (if_then_else:GPR (match_operator 4 "equality_operator" @@ -7492,7 +7492,7 @@ (set_attr "mode" "") (set_attr "extended_mips16" "yes")]) -(define_insn "*mov_on__ne" +(define_insn "mov_on__ne" [(set (match_operand:GPR 0 "register_operand" "=d,d") (if_then_else:GPR (match_operand:GPR2 1 "register_operand" ",") @@ -7505,7 +7505,7 @@ [(set_attr "type" "condmove") (set_attr "mode" "")]) -(define_insn "*mov_on__ne_mips16e2" +(define_insn "mov_on__ne_mips16e2" [(set (match_operand:GPR 0 "register_operand" "=d,d,d,d") (if_then_else:GPR (match_operand:GPR2 1 "register_operand" ",,t,t") diff --git a/gcc/testsuite/gcc.target/mips/movcc-2.c b/gcc/testsuite/gcc.target/mips/movcc-2.c index 1926e6460d1..cbda3c8febc 100644 --- a/gcc/testsuite/gcc.target/mips/movcc-2.c +++ b/gcc/testsuite/gcc.target/mips/movcc-2.c @@ -3,6 +3,8 @@ /* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */ /* { dg-final { scan-assembler "\tmovz\t" } } */ /* { dg-final { scan-assembler "\tmovn\t" } } */ +/* { dg-final { scan-assembler "\tmovz\t" } } */ +/* { dg-final { scan-assembler "\tmovn\t" } } */ void ext_long (long); @@ -17,3 +19,15 @@ sub5 (long i, long j, int k) { ext_long (!k ? i : j); } + +NOMIPS16 long +sub6 (int k) +{ + return !k ? 100 : 1000; +} + +NOMIPS16 long +sub7 (int k) +{ + return !k ? 100 : 1000; +}