aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/riscv
diff options
context:
space:
mode:
authorPan Li <pan2.li@intel.com>2024-08-30 14:07:12 +0800
committerPan Li <pan2.li@intel.com>2024-09-02 09:24:44 +0800
commite96d4bf6a6e8b8a5ea1b81a79f4efa07dee77af1 (patch)
tree127906f4c2bba73fc57d6ece5410ebe4322ed66e /gcc/config/riscv
parent880834d3e7ea8764c62f1d361409caf965d7b5c8 (diff)
downloadgcc-e96d4bf6a6e8b8a5ea1b81a79f4efa07dee77af1.zip
gcc-e96d4bf6a6e8b8a5ea1b81a79f4efa07dee77af1.tar.gz
gcc-e96d4bf6a6e8b8a5ea1b81a79f4efa07dee77af1.tar.bz2
RISC-V: Refactor gen zero_extend rtx for SAT_* when expand SImode in RV64
In previous, we have some specially handling for both the .SAT_ADD and .SAT_SUB for unsigned int. There are similar to take care of SImode in RV64 for zero extend. Thus refactor these two helper function into one for possible code duplication. The below test suite are passed for this patch. * The rv64gcv fully regression test. gcc/ChangeLog: * config/riscv/riscv.cc (riscv_gen_zero_extend_rtx): Merge the zero_extend handing from func riscv_gen_unsigned_xmode_reg. (riscv_gen_unsigned_xmode_reg): Remove. (riscv_expand_ussub): Leverage riscv_gen_zero_extend_rtx instead of riscv_gen_unsigned_xmode_reg. gcc/testsuite/ChangeLog: * gcc.target/riscv/sat_u_sub-11.c: Adjust asm check. * gcc.target/riscv/sat_u_sub-15.c: Ditto. * gcc.target/riscv/sat_u_sub-19.c: Ditto. * gcc.target/riscv/sat_u_sub-23.c: Ditto. * gcc.target/riscv/sat_u_sub-27.c: Ditto. * gcc.target/riscv/sat_u_sub-3.c: Ditto. * gcc.target/riscv/sat_u_sub-31.c: Ditto. * gcc.target/riscv/sat_u_sub-35.c: Ditto. * gcc.target/riscv/sat_u_sub-39.c: Ditto. * gcc.target/riscv/sat_u_sub-43.c: Ditto. * gcc.target/riscv/sat_u_sub-47.c: Ditto. * gcc.target/riscv/sat_u_sub-7.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-11.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-11_1.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-11_2.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-15.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-15_1.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-15_2.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-3.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-3_1.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-3_2.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-7.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-7_1.c: Ditto. * gcc.target/riscv/sat_u_sub_imm-7_2.c: Ditto. Signed-off-by: Pan Li <pan2.li@intel.com>
Diffstat (limited to 'gcc/config/riscv')
-rw-r--r--gcc/config/riscv/riscv.cc99
1 files changed, 46 insertions, 53 deletions
diff --git a/gcc/config/riscv/riscv.cc b/gcc/config/riscv/riscv.cc
index 496dd17..75b37b5 100644
--- a/gcc/config/riscv/riscv.cc
+++ b/gcc/config/riscv/riscv.cc
@@ -11894,19 +11894,56 @@ riscv_get_raw_result_mode (int regno)
return default_get_reg_raw_mode (regno);
}
-/* Generate a new rtx of Xmode based on the rtx and mode in define pattern.
- The rtx x will be zero extended to Xmode if the mode is HI/QImode, and
- the new zero extended Xmode rtx will be returned.
- Or the gen_lowpart rtx of Xmode will be returned. */
+/* Generate a REG rtx of Xmode from the given rtx and mode.
+ The rtx x can be REG (QI/HI/SI/DI) or const_int.
+ The machine_mode mode is the original mode from define pattern.
+
+ If rtx is REG and Xmode, the RTX x will be returned directly.
+
+ If rtx is REG and non-Xmode, the zero extended to new REG of Xmode will be
+ returned.
+
+ If rtx is const_int, a new REG rtx will be created to hold the value of
+ const_int and then returned.
+
+ According to the gccint doc, the constants generated for modes with fewer
+ bits than in HOST_WIDE_INT must be sign extended to full width. Thus there
+ will be two cases here, take QImode as example.
+
+ For .SAT_SUB (127, y) in QImode, we have (const_int 127) and one simple
+ mov from const_int to the new REG rtx is good enough here.
+
+ For .SAT_SUB (254, y) in QImode, we have (const_int -2) after define_expand.
+ Aka 0xfffffffffffffffe in Xmode of RV64 but we actually need 0xfe in Xmode
+ of RV64. So we need to cleanup the highest 56 bits of the new REG rtx moved
+ from the (const_int -2).
+
+ Then the underlying expanding can perform the code generation based on
+ the REG rtx of Xmode, instead of taking care of these in expand func. */
static rtx
riscv_gen_zero_extend_rtx (rtx x, machine_mode mode)
{
+ rtx xmode_reg = gen_reg_rtx (Xmode);
+
+ if (!CONST_INT_P (x))
+ {
+ if (mode == Xmode)
+ return x;
+
+ riscv_emit_unary (ZERO_EXTEND, xmode_reg, x);
+ return xmode_reg;
+ }
+
if (mode == Xmode)
- return x;
+ emit_move_insn (xmode_reg, x);
+ else
+ {
+ rtx reg_x = gen_reg_rtx (mode);
- rtx xmode_reg = gen_reg_rtx (Xmode);
- riscv_emit_unary (ZERO_EXTEND, xmode_reg, x);
+ emit_move_insn (reg_x, x);
+ riscv_emit_unary (ZERO_EXTEND, xmode_reg, reg_x);
+ }
return xmode_reg;
}
@@ -11959,50 +11996,6 @@ riscv_expand_usadd (rtx dest, rtx x, rtx y)
emit_move_insn (dest, gen_lowpart (mode, xmode_dest));
}
-/* Generate a REG rtx of Xmode from the given rtx and mode.
- The rtx x can be REG (QI/HI/SI/DI) or const_int.
- The machine_mode mode is the original mode from define pattern.
-
- If rtx is REG, the gen_lowpart of Xmode will be returned.
-
- If rtx is const_int, a new REG rtx will be created to hold the value of
- const_int and then returned.
-
- According to the gccint doc, the constants generated for modes with fewer
- bits than in HOST_WIDE_INT must be sign extended to full width. Thus there
- will be two cases here, take QImode as example.
-
- For .SAT_SUB (127, y) in QImode, we have (const_int 127) and one simple
- mov from const_int to the new REG rtx is good enough here.
-
- For .SAT_SUB (254, y) in QImode, we have (const_int -2) after define_expand.
- Aka 0xfffffffffffffffe in Xmode of RV64 but we actually need 0xfe in Xmode
- of RV64. So we need to cleanup the highest 56 bits of the new REG rtx moved
- from the (const_int -2).
-
- Then the underlying expanding can perform the code generation based on
- the REG rtx of Xmode, instead of taking care of these in expand func. */
-
-static rtx
-riscv_gen_unsigned_xmode_reg (rtx x, machine_mode mode)
-{
- if (!CONST_INT_P (x))
- return gen_lowpart (Xmode, x);
-
- rtx xmode_x = gen_reg_rtx (Xmode);
-
- if (mode == Xmode)
- emit_move_insn (xmode_x, x);
- else
- {
- rtx reg_x = gen_reg_rtx (mode);
- emit_move_insn (reg_x, x);
- riscv_emit_unary (ZERO_EXTEND, xmode_x, reg_x);
- }
-
- return xmode_x;
-}
-
/* Implements the unsigned saturation sub standard name usadd for int mode.
z = SAT_SUB(x, y).
@@ -12016,8 +12009,8 @@ void
riscv_expand_ussub (rtx dest, rtx x, rtx y)
{
machine_mode mode = GET_MODE (dest);
- rtx xmode_x = riscv_gen_unsigned_xmode_reg (x, mode);
- rtx xmode_y = riscv_gen_unsigned_xmode_reg (y, mode);
+ rtx xmode_x = riscv_gen_zero_extend_rtx (x, mode);
+ rtx xmode_y = riscv_gen_zero_extend_rtx (y, mode);
rtx xmode_lt = gen_reg_rtx (Xmode);
rtx xmode_minus = gen_reg_rtx (Xmode);
rtx xmode_dest = gen_reg_rtx (Xmode);