]> gcc.gnu.org Git - gcc.git/commit
RISC-V: Bugfix for merging undefined tmp register in math
authorPan Li <pan2.li@intel.com>
Mon, 23 Oct 2023 01:17:58 +0000 (09:17 +0800)
committerPan Li <pan2.li@intel.com>
Mon, 23 Oct 2023 01:50:06 +0000 (09:50 +0800)
commit85858c71a89dfe0d9e7d96fc9f7bdf1a18df65ba
tree114430ae902085be1636b5c9272e5500ef0a2545
parenta6e74b0b3316f3f0b2096d6a175c31bed58ae4ed
RISC-V: Bugfix for merging undefined tmp register in math

For math function autovec, there will be one step like

rtx tmp = gen_reg_rtx (vec_int_mode);
emit_vec_cvt_x_f (tmp, op_1, mask, UNARY_OP_TAMU_FRM_DYN, vec_fp_mode);

The MU will leave the tmp (aka dest register) register unmasked elements
unchanged and it is undefined here. This patch would like to adjust the
MU to MA.

gcc/ChangeLog:

* config/riscv/riscv-protos.h (enum insn_type): Add new type
values.
* config/riscv/riscv-v.cc (emit_vec_cvt_x_f): Add undef merge
operand handling.
(expand_vec_ceil): Take MA instead of MU for tmp register.
(expand_vec_floor): Ditto.
(expand_vec_nearbyint): Ditto.
(expand_vec_rint): Ditto.
(expand_vec_round): Ditto.
(expand_vec_roundeven): Ditto.

Signed-off-by: Pan Li <pan2.li@intel.com>
gcc/config/riscv/riscv-protos.h
gcc/config/riscv/riscv-v.cc
This page took 0.079806 seconds and 5 git commands to generate.