diff options
author | Pan Li <pan2.li@intel.com> | 2024-06-17 16:31:26 +0800 |
---|---|---|
committer | Pan Li <pan2.li@intel.com> | 2024-06-19 14:08:22 +0800 |
commit | 1daf54aa7818519b5a1dcc441c8b235d15a8726e (patch) | |
tree | 959367f8373069a10ab20e8c9c0a0701e9efe7ab /gcc/tree-vectorizer.h | |
parent | 24ae0a0a3dea27d8c81f2f102d637cf09424b4b9 (diff) | |
download | gcc-1daf54aa7818519b5a1dcc441c8b235d15a8726e.zip gcc-1daf54aa7818519b5a1dcc441c8b235d15a8726e.tar.gz gcc-1daf54aa7818519b5a1dcc441c8b235d15a8726e.tar.bz2 |
RISC-V: Add testcases for unsigned .SAT_ADD vector form 5
After the middle-end support the form 5 of unsigned SAT_ADD and
the RISC-V backend implement the .SAT_ADD for vector mode, add
more test case to cover the form 5.
Form 5:
#define DEF_VEC_SAT_U_ADD_FMT_5(T) \
void __attribute__((noinline)) \
vec_sat_u_add_##T##_fmt_5 (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; \
out[i] = __builtin_add_overflow (x, y, &ret) == 0 ? ret : -1; \
} \
}
Passed the rv64gcv regression tests.
gcc/testsuite/ChangeLog:
* gcc.target/riscv/rvv/autovec/binop/vec_sat_arith.h: Add helper
macro for testing.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_add-17.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_add-18.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_add-19.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_add-20.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_add-run-17.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_add-run-18.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_add-run-19.c: New test.
* gcc.target/riscv/rvv/autovec/binop/vec_sat_u_add-run-20.c: New test.
Signed-off-by: Pan Li <pan2.li@intel.com>
Diffstat (limited to 'gcc/tree-vectorizer.h')
0 files changed, 0 insertions, 0 deletions