diff options
author | Pan Li <pan2.li@intel.com> | 2024-06-19 20:38:43 +0800 |
---|---|---|
committer | Pan Li <pan2.li@intel.com> | 2024-06-19 21:29:15 +0800 |
commit | ff3729e94a114f5b24a5c3d0a6c3b7a9aeb8cbc9 (patch) | |
tree | 5e91b89e828781c3855d5c2b28c4289bc4ebf708 /libcc1 | |
parent | be8dc4bf3b25ca2600886f6e1d9ba7299e78b856 (diff) | |
download | gcc-ff3729e94a114f5b24a5c3d0a6c3b7a9aeb8cbc9.zip gcc-ff3729e94a114f5b24a5c3d0a6c3b7a9aeb8cbc9.tar.gz gcc-ff3729e94a114f5b24a5c3d0a6c3b7a9aeb8cbc9.tar.bz2 |
RISC-V: Add testcases for unsigned .SAT_SUB vector form 8
After the middle-end support the form 8 of unsigned SAT_SUB and
the RISC-V backend implement the .SAT_SUB for vector mode, thus
add more test case to cover that.
Form 8:
#define DEF_VEC_SAT_U_SUB_FMT_8(T) \
void __attribute__((noinline)) \
vec_sat_u_sub_##T##_fmt_8 (T *out, T *op_1, T *op_2, unsigned limit) \
{ \
unsigned i; \
for (i = 0; i < limit; i++) \
{ \
T x = op_1[i]; \
T y = op_2[i]; \
T ret; \
T overflow = __builtin_sub_overflow (x, y, &ret); \
out[i] = ret & (T)-(!overflow); \
} \
}
Passed the rv64gcv regression test.
gcc/testsuite/ChangeLog:
* gcc.target/riscv/rvv/autovec/binop/vec_sat_arith.h: Add test macro.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_sub-29.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_sub-30.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_sub-31.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_sub-32.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_sub-run-29.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_sub-run-30.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_sub-run-31.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_sub-run-32.c: New test.
Signed-off-by: Pan Li <pan2.li@intel.com>
Diffstat (limited to 'libcc1')
0 files changed, 0 insertions, 0 deletions