diff options
author | Philipp Tomsich <philipp.tomsich@vrull.eu> | 2021-11-10 17:30:20 +0100 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@vrull.eu> | 2022-11-13 16:38:46 +0100 |
commit | f90cb39235c4971c4399c782d4d7566242b5886b (patch) | |
tree | 6b94233d93fd261fb25b1530cdc3e23fbd99c648 /gcc/fortran/interface.cc | |
parent | 5e749ee3019d7917184af30dab8d09c933c0a4a1 (diff) | |
download | gcc-f90cb39235c4971c4399c782d4d7566242b5886b.zip gcc-f90cb39235c4971c4399c782d4d7566242b5886b.tar.gz gcc-f90cb39235c4971c4399c782d4d7566242b5886b.tar.bz2 |
RISC-V: costs: support shift-and-add in strength-reduction
The strength-reduction implementation in expmed.cc will assess the
profitability of using shift-and-add using a RTL expression that wraps
a MULT (with a power-of-2) in a PLUS. Unless the RISC-V rtx_costs
function recognizes this as expressing a sh[123]add instruction, we
will return an inflated cost---thus defeating the optimization.
This change adds the necessary idiom recognition to provide an
accurate cost for this for of expressing sh[123]add.
Instead on expanding to
li a5,200
mulw a0,a5,a0
with this change, the expression 'a * 200' is sythesized as:
sh2add a0,a0,a0 // *5 = a + 4 * a
sh2add a0,a0,a0 // *5 = a + 4 * a
slli a0,a0,3 // *8
gcc/ChangeLog:
* config/riscv/riscv.cc (riscv_rtx_costs): Recognize shNadd,
if expressed as a plus and multiplication with a power-of-2.
Split costing for MINUS from PLUS.
gcc/testsuite/ChangeLog:
* gcc.target/riscv/zba-shNadd-07.c: New test.
Diffstat (limited to 'gcc/fortran/interface.cc')
0 files changed, 0 insertions, 0 deletions