]> git.ipfire.org Git - thirdparty/gcc.git/commit
RISC-V: Combine vec_duplicate + vmsgtu.vv to vmsgtu.vx on GR2VR cost
authorPan Li <pan2.li@intel.com>
Mon, 27 Apr 2026 02:01:52 +0000 (10:01 +0800)
committerPan Li <pan2.li@intel.com>
Wed, 29 Apr 2026 09:55:54 +0000 (17:55 +0800)
commitcb3ca149a51be12f835df60b88e830aea35a3bbd
tree988d7517121db47184fe99249b825e048753220e
parentefe29124c7486a72f23d002e40376fc0f38c21fc
RISC-V: Combine vec_duplicate + vmsgtu.vv to vmsgtu.vx on GR2VR cost

This patch would like to combine the vec_duplicate + vmsgtu.vv to the
vmsgtu.vx.  From example as below code.  The related pattern will depend
on the cost of vec_duplicate from GR2VR.  Then the late-combine will
take action if the cost of GR2VR is zero, and reject the combination
if the GR2VR cost is greater than zero.

Assume we have asm code like below, GR2VR cost is 0.

Before this patch:
  11       beq a3,zero,.L8
  12       vsetvli a5,zero,e32,m1,ta,ma
  13       vmv.v.x v2,a2
  ...
  16   .L3:
  17       vsetvli a5,a3,e32,m1,ta,ma
  ...
  22       vmsgtu.vv v1,v2,v3
  ...
  25       bne a3,zero,.L3

After this patch:
  11       beq a3,zero,.L8
  ...
  14    .L3:
  15       vsetvli a5,a3,e32,m1,ta,ma
  ...
  20       vmsgtu.vx v1,a2,v3
  ...
  23       bne a3,zero,.L3

gcc/ChangeLog:

* config/riscv/predicates.md: Add ltu to swappable
cmp operator.
* config/riscv/riscv-v.cc (get_swapped_cmp_rtx_code): Handle
the swapped rtx code as well.

Signed-off-by: Pan Li <pan2.li@intel.com>
gcc/config/riscv/predicates.md
gcc/config/riscv/riscv-v.cc