forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RISC-V: Allow RVV VMS{Compare}(V1, V1) simplify to VMCLR
When some RVV integer compare operators act on the same vector registers without mask. They can be simplified to VMCLR. This PATCH allow the ne, lt, ltu, gt, gtu to perform such kind of the simplification by adding one new define_split. Given we have: vbool1_t test_shortcut_for_riscv_vmslt_case_0(vint8m8_t v1, size_t vl) { return __riscv_vmslt_vv_i8m8_b1(v1, v1, vl); } Before this patch: vsetvli zero,a2,e8,m8,ta,ma vl8re8.v v24,0(a1) vmslt.vv v8,v24,v24 vsetvli a5,zero,e8,m8,ta,ma vsm.v v8,0(a0) ret After this patch: vsetvli zero,a2,e8,mf8,ta,ma vmclr.m v24 <- optimized to vmclr.m vsetvli zero,a5,e8,mf8,ta,ma vsm.v v24,0(a0) ret As above, we may have one instruction eliminated and require less vector registers. gcc/ChangeLog: * config/riscv/vector.md: Add new define split to perform the simplification. gcc/testsuite/ChangeLog: * gcc.target/riscv/rvv/base/integer_compare_insn_shortcut.c: New test. Signed-off-by: Pan Li <pan2.li@intel.com> Co-authored-by: kito-cheng <kito.cheng@sifive.com>
- Loading branch information
1 parent
d711f8f
commit 8b84d87
Showing
2 changed files
with
323 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
291 changes: 291 additions & 0 deletions
291
gcc/testsuite/gcc.target/riscv/rvv/base/integer_compare_insn_shortcut.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,291 @@ | ||
/* { dg-do compile } */ | ||
/* { dg-options "-march=rv64gcv -mabi=lp64 -O3" } */ | ||
|
||
#include "riscv_vector.h" | ||
|
||
vbool1_t test_shortcut_for_riscv_vmseq_case_0(vint8m8_t v1, size_t vl) { | ||
return __riscv_vmseq_vv_i8m8_b1(v1, v1, vl); | ||
} | ||
|
||
vbool2_t test_shortcut_for_riscv_vmseq_case_1(vint8m4_t v1, size_t vl) { | ||
return __riscv_vmseq_vv_i8m4_b2(v1, v1, vl); | ||
} | ||
|
||
vbool4_t test_shortcut_for_riscv_vmseq_case_2(vint8m2_t v1, size_t vl) { | ||
return __riscv_vmseq_vv_i8m2_b4(v1, v1, vl); | ||
} | ||
|
||
vbool8_t test_shortcut_for_riscv_vmseq_case_3(vint8m1_t v1, size_t vl) { | ||
return __riscv_vmseq_vv_i8m1_b8(v1, v1, vl); | ||
} | ||
|
||
vbool16_t test_shortcut_for_riscv_vmseq_case_4(vint8mf2_t v1, size_t vl) { | ||
return __riscv_vmseq_vv_i8mf2_b16(v1, v1, vl); | ||
} | ||
|
||
vbool32_t test_shortcut_for_riscv_vmseq_case_5(vint8mf4_t v1, size_t vl) { | ||
return __riscv_vmseq_vv_i8mf4_b32(v1, v1, vl); | ||
} | ||
|
||
vbool64_t test_shortcut_for_riscv_vmseq_case_6(vint8mf8_t v1, size_t vl) { | ||
return __riscv_vmseq_vv_i8mf8_b64(v1, v1, vl); | ||
} | ||
|
||
vbool1_t test_shortcut_for_riscv_vmsne_case_0(vint8m8_t v1, size_t vl) { | ||
return __riscv_vmsne_vv_i8m8_b1(v1, v1, vl); | ||
} | ||
|
||
vbool2_t test_shortcut_for_riscv_vmsne_case_1(vint8m4_t v1, size_t vl) { | ||
return __riscv_vmsne_vv_i8m4_b2(v1, v1, vl); | ||
} | ||
|
||
vbool4_t test_shortcut_for_riscv_vmsne_case_2(vint8m2_t v1, size_t vl) { | ||
return __riscv_vmsne_vv_i8m2_b4(v1, v1, vl); | ||
} | ||
|
||
vbool8_t test_shortcut_for_riscv_vmsne_case_3(vint8m1_t v1, size_t vl) { | ||
return __riscv_vmsne_vv_i8m1_b8(v1, v1, vl); | ||
} | ||
|
||
vbool16_t test_shortcut_for_riscv_vmsne_case_4(vint8mf2_t v1, size_t vl) { | ||
return __riscv_vmsne_vv_i8mf2_b16(v1, v1, vl); | ||
} | ||
|
||
vbool32_t test_shortcut_for_riscv_vmsne_case_5(vint8mf4_t v1, size_t vl) { | ||
return __riscv_vmsne_vv_i8mf4_b32(v1, v1, vl); | ||
} | ||
|
||
vbool64_t test_shortcut_for_riscv_vmsne_case_6(vint8mf8_t v1, size_t vl) { | ||
return __riscv_vmsne_vv_i8mf8_b64(v1, v1, vl); | ||
} | ||
|
||
vbool1_t test_shortcut_for_riscv_vmslt_case_0(vint8m8_t v1, size_t vl) { | ||
return __riscv_vmslt_vv_i8m8_b1(v1, v1, vl); | ||
} | ||
|
||
vbool2_t test_shortcut_for_riscv_vmslt_case_1(vint8m4_t v1, size_t vl) { | ||
return __riscv_vmslt_vv_i8m4_b2(v1, v1, vl); | ||
} | ||
|
||
vbool4_t test_shortcut_for_riscv_vmslt_case_2(vint8m2_t v1, size_t vl) { | ||
return __riscv_vmslt_vv_i8m2_b4(v1, v1, vl); | ||
} | ||
|
||
vbool8_t test_shortcut_for_riscv_vmslt_case_3(vint8m1_t v1, size_t vl) { | ||
return __riscv_vmslt_vv_i8m1_b8(v1, v1, vl); | ||
} | ||
|
||
vbool16_t test_shortcut_for_riscv_vmslt_case_4(vint8mf2_t v1, size_t vl) { | ||
return __riscv_vmslt_vv_i8mf2_b16(v1, v1, vl); | ||
} | ||
|
||
vbool32_t test_shortcut_for_riscv_vmslt_case_5(vint8mf4_t v1, size_t vl) { | ||
return __riscv_vmslt_vv_i8mf4_b32(v1, v1, vl); | ||
} | ||
|
||
vbool64_t test_shortcut_for_riscv_vmslt_case_6(vint8mf8_t v1, size_t vl) { | ||
return __riscv_vmslt_vv_i8mf8_b64(v1, v1, vl); | ||
} | ||
|
||
vbool1_t test_shortcut_for_riscv_vmsltu_case_0(vuint8m8_t v1, size_t vl) { | ||
return __riscv_vmsltu_vv_u8m8_b1(v1, v1, vl); | ||
} | ||
|
||
vbool2_t test_shortcut_for_riscv_vmsltu_case_1(vuint8m4_t v1, size_t vl) { | ||
return __riscv_vmsltu_vv_u8m4_b2(v1, v1, vl); | ||
} | ||
|
||
vbool4_t test_shortcut_for_riscv_vmsltu_case_2(vuint8m2_t v1, size_t vl) { | ||
return __riscv_vmsltu_vv_u8m2_b4(v1, v1, vl); | ||
} | ||
|
||
vbool8_t test_shortcut_for_riscv_vmsltu_case_3(vuint8m1_t v1, size_t vl) { | ||
return __riscv_vmsltu_vv_u8m1_b8(v1, v1, vl); | ||
} | ||
|
||
vbool16_t test_shortcut_for_riscv_vmsltu_case_4(vuint8mf2_t v1, size_t vl) { | ||
return __riscv_vmsltu_vv_u8mf2_b16(v1, v1, vl); | ||
} | ||
|
||
vbool32_t test_shortcut_for_riscv_vmsltu_case_5(vuint8mf4_t v1, size_t vl) { | ||
return __riscv_vmsltu_vv_u8mf4_b32(v1, v1, vl); | ||
} | ||
|
||
vbool64_t test_shortcut_for_riscv_vmsltu_case_6(vuint8mf8_t v1, size_t vl) { | ||
return __riscv_vmsltu_vv_u8mf8_b64(v1, v1, vl); | ||
} | ||
|
||
vbool1_t test_shortcut_for_riscv_vmsle_case_0(vint8m8_t v1, size_t vl) { | ||
return __riscv_vmsle_vv_i8m8_b1(v1, v1, vl); | ||
} | ||
|
||
vbool2_t test_shortcut_for_riscv_vmsle_case_1(vint8m4_t v1, size_t vl) { | ||
return __riscv_vmsle_vv_i8m4_b2(v1, v1, vl); | ||
} | ||
|
||
vbool4_t test_shortcut_for_riscv_vmsle_case_2(vint8m2_t v1, size_t vl) { | ||
return __riscv_vmsle_vv_i8m2_b4(v1, v1, vl); | ||
} | ||
|
||
vbool8_t test_shortcut_for_riscv_vmsle_case_3(vint8m1_t v1, size_t vl) { | ||
return __riscv_vmsle_vv_i8m1_b8(v1, v1, vl); | ||
} | ||
|
||
vbool16_t test_shortcut_for_riscv_vmsle_case_4(vint8mf2_t v1, size_t vl) { | ||
return __riscv_vmsle_vv_i8mf2_b16(v1, v1, vl); | ||
} | ||
|
||
vbool32_t test_shortcut_for_riscv_vmsle_case_5(vint8mf4_t v1, size_t vl) { | ||
return __riscv_vmsle_vv_i8mf4_b32(v1, v1, vl); | ||
} | ||
|
||
vbool64_t test_shortcut_for_riscv_vmsle_case_6(vint8mf8_t v1, size_t vl) { | ||
return __riscv_vmsle_vv_i8mf8_b64(v1, v1, vl); | ||
} | ||
|
||
vbool1_t test_shortcut_for_riscv_vmsleu_case_0(vuint8m8_t v1, size_t vl) { | ||
return __riscv_vmsleu_vv_u8m8_b1(v1, v1, vl); | ||
} | ||
|
||
vbool2_t test_shortcut_for_riscv_vmsleu_case_1(vuint8m4_t v1, size_t vl) { | ||
return __riscv_vmsleu_vv_u8m4_b2(v1, v1, vl); | ||
} | ||
|
||
vbool4_t test_shortcut_for_riscv_vmsleu_case_2(vuint8m2_t v1, size_t vl) { | ||
return __riscv_vmsleu_vv_u8m2_b4(v1, v1, vl); | ||
} | ||
|
||
vbool8_t test_shortcut_for_riscv_vmsleu_case_3(vuint8m1_t v1, size_t vl) { | ||
return __riscv_vmsleu_vv_u8m1_b8(v1, v1, vl); | ||
} | ||
|
||
vbool16_t test_shortcut_for_riscv_vmsleu_case_4(vuint8mf2_t v1, size_t vl) { | ||
return __riscv_vmsleu_vv_u8mf2_b16(v1, v1, vl); | ||
} | ||
|
||
vbool32_t test_shortcut_for_riscv_vmsleu_case_5(vuint8mf4_t v1, size_t vl) { | ||
return __riscv_vmsleu_vv_u8mf4_b32(v1, v1, vl); | ||
} | ||
|
||
vbool64_t test_shortcut_for_riscv_vmsleu_case_6(vuint8mf8_t v1, size_t vl) { | ||
return __riscv_vmsleu_vv_u8mf8_b64(v1, v1, vl); | ||
} | ||
|
||
vbool1_t test_shortcut_for_riscv_vmsgt_case_0(vint8m8_t v1, size_t vl) { | ||
return __riscv_vmsgt_vv_i8m8_b1(v1, v1, vl); | ||
} | ||
|
||
vbool2_t test_shortcut_for_riscv_vmsgt_case_1(vint8m4_t v1, size_t vl) { | ||
return __riscv_vmsgt_vv_i8m4_b2(v1, v1, vl); | ||
} | ||
|
||
vbool4_t test_shortcut_for_riscv_vmsgt_case_2(vint8m2_t v1, size_t vl) { | ||
return __riscv_vmsgt_vv_i8m2_b4(v1, v1, vl); | ||
} | ||
|
||
vbool8_t test_shortcut_for_riscv_vmsgt_case_3(vint8m1_t v1, size_t vl) { | ||
return __riscv_vmsgt_vv_i8m1_b8(v1, v1, vl); | ||
} | ||
|
||
vbool16_t test_shortcut_for_riscv_vmsgt_case_4(vint8mf2_t v1, size_t vl) { | ||
return __riscv_vmsgt_vv_i8mf2_b16(v1, v1, vl); | ||
} | ||
|
||
vbool32_t test_shortcut_for_riscv_vmsgt_case_5(vint8mf4_t v1, size_t vl) { | ||
return __riscv_vmsgt_vv_i8mf4_b32(v1, v1, vl); | ||
} | ||
|
||
vbool64_t test_shortcut_for_riscv_vmsgt_case_6(vint8mf8_t v1, size_t vl) { | ||
return __riscv_vmsgt_vv_i8mf8_b64(v1, v1, vl); | ||
} | ||
|
||
vbool1_t test_shortcut_for_riscv_vmsgtu_case_0(vuint8m8_t v1, size_t vl) { | ||
return __riscv_vmsgtu_vv_u8m8_b1(v1, v1, vl); | ||
} | ||
|
||
vbool2_t test_shortcut_for_riscv_vmsgtu_case_1(vuint8m4_t v1, size_t vl) { | ||
return __riscv_vmsgtu_vv_u8m4_b2(v1, v1, vl); | ||
} | ||
|
||
vbool4_t test_shortcut_for_riscv_vmsgtu_case_2(vuint8m2_t v1, size_t vl) { | ||
return __riscv_vmsgtu_vv_u8m2_b4(v1, v1, vl); | ||
} | ||
|
||
vbool8_t test_shortcut_for_riscv_vmsgtu_case_3(vuint8m1_t v1, size_t vl) { | ||
return __riscv_vmsgtu_vv_u8m1_b8(v1, v1, vl); | ||
} | ||
|
||
vbool16_t test_shortcut_for_riscv_vmsgtu_case_4(vuint8mf2_t v1, size_t vl) { | ||
return __riscv_vmsgtu_vv_u8mf2_b16(v1, v1, vl); | ||
} | ||
|
||
vbool32_t test_shortcut_for_riscv_vmsgtu_case_5(vuint8mf4_t v1, size_t vl) { | ||
return __riscv_vmsgtu_vv_u8mf4_b32(v1, v1, vl); | ||
} | ||
|
||
vbool64_t test_shortcut_for_riscv_vmsgtu_case_6(vuint8mf8_t v1, size_t vl) { | ||
return __riscv_vmsgtu_vv_u8mf8_b64(v1, v1, vl); | ||
} | ||
|
||
vbool1_t test_shortcut_for_riscv_vmsge_case_0(vint8m8_t v1, size_t vl) { | ||
return __riscv_vmsge_vv_i8m8_b1(v1, v1, vl); | ||
} | ||
|
||
vbool2_t test_shortcut_for_riscv_vmsge_case_1(vint8m4_t v1, size_t vl) { | ||
return __riscv_vmsge_vv_i8m4_b2(v1, v1, vl); | ||
} | ||
|
||
vbool4_t test_shortcut_for_riscv_vmsge_case_2(vint8m2_t v1, size_t vl) { | ||
return __riscv_vmsge_vv_i8m2_b4(v1, v1, vl); | ||
} | ||
|
||
vbool8_t test_shortcut_for_riscv_vmsge_case_3(vint8m1_t v1, size_t vl) { | ||
return __riscv_vmsge_vv_i8m1_b8(v1, v1, vl); | ||
} | ||
|
||
vbool16_t test_shortcut_for_riscv_vmsge_case_4(vint8mf2_t v1, size_t vl) { | ||
return __riscv_vmsge_vv_i8mf2_b16(v1, v1, vl); | ||
} | ||
|
||
vbool32_t test_shortcut_for_riscv_vmsge_case_5(vint8mf4_t v1, size_t vl) { | ||
return __riscv_vmsge_vv_i8mf4_b32(v1, v1, vl); | ||
} | ||
|
||
vbool64_t test_shortcut_for_riscv_vmsge_case_6(vint8mf8_t v1, size_t vl) { | ||
return __riscv_vmsge_vv_i8mf8_b64(v1, v1, vl); | ||
} | ||
|
||
vbool1_t test_shortcut_for_riscv_vmsgeu_case_0(vuint8m8_t v1, size_t vl) { | ||
return __riscv_vmsgeu_vv_u8m8_b1(v1, v1, vl); | ||
} | ||
|
||
vbool2_t test_shortcut_for_riscv_vmsgeu_case_1(vuint8m4_t v1, size_t vl) { | ||
return __riscv_vmsgeu_vv_u8m4_b2(v1, v1, vl); | ||
} | ||
|
||
vbool4_t test_shortcut_for_riscv_vmsgeu_case_2(vuint8m2_t v1, size_t vl) { | ||
return __riscv_vmsgeu_vv_u8m2_b4(v1, v1, vl); | ||
} | ||
|
||
vbool8_t test_shortcut_for_riscv_vmsgeu_case_3(vuint8m1_t v1, size_t vl) { | ||
return __riscv_vmsgeu_vv_u8m1_b8(v1, v1, vl); | ||
} | ||
|
||
vbool16_t test_shortcut_for_riscv_vmsgeu_case_4(vuint8mf2_t v1, size_t vl) { | ||
return __riscv_vmsgeu_vv_u8mf2_b16(v1, v1, vl); | ||
} | ||
|
||
vbool32_t test_shortcut_for_riscv_vmsgeu_case_5(vuint8mf4_t v1, size_t vl) { | ||
return __riscv_vmsgeu_vv_u8mf4_b32(v1, v1, vl); | ||
} | ||
|
||
vbool64_t test_shortcut_for_riscv_vmsgeu_case_6(vuint8mf8_t v1, size_t vl) { | ||
return __riscv_vmsgeu_vv_u8mf8_b64(v1, v1, vl); | ||
} | ||
|
||
/* { dg-final { scan-assembler-times {vmseq\.vv\sv[0-9],\s*v[0-9],\s*v[0-9]} 7 } } */ | ||
/* { dg-final { scan-assembler-times {vmsle\.vv\sv[0-9],\s*v[0-9],\s*v[0-9]} 7 } } */ | ||
/* { dg-final { scan-assembler-times {vmsleu\.vv\sv[0-9],\s*v[0-9],\s*v[0-9]} 7 } } */ | ||
/* { dg-final { scan-assembler-times {vmsge\.vv\sv[0-9],\s*v[0-9],\s*v[0-9]} 7 } } */ | ||
/* { dg-final { scan-assembler-times {vmsgeu\.vv\sv[0-9],\s*v[0-9],\s*v[0-9]} 7 } } */ | ||
/* { dg-final { scan-assembler-times {vmclr\.m\sv[0-9]} 35 } } */ |