From: Ju-Zhe Zhong Date: Wed, 8 Feb 2023 02:34:30 +0000 (+0800) Subject: RISC-V: Add vsbc.vvm/vsbc.vxm C API tests X-Git-Tag: basepoints/gcc-14~1305 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2f4dc5810517f3c5465ecea4ce3820f655a0375;p=thirdparty%2Fgcc.git RISC-V: Add vsbc.vvm/vsbc.vxm C API tests gcc/testsuite/ChangeLog: * gcc.target/riscv/rvv/base/vsbc-1.c: New test. * gcc.target/riscv/rvv/base/vsbc-2.c: New test. * gcc.target/riscv/rvv/base/vsbc-3.c: New test. * gcc.target/riscv/rvv/base/vsbc-4.c: New test. * gcc.target/riscv/rvv/base/vsbc_vvm-1.c: New test. * gcc.target/riscv/rvv/base/vsbc_vvm-2.c: New test. * gcc.target/riscv/rvv/base/vsbc_vvm-3.c: New test. * gcc.target/riscv/rvv/base/vsbc_vvm_tu-1.c: New test. * gcc.target/riscv/rvv/base/vsbc_vvm_tu-2.c: New test. * gcc.target/riscv/rvv/base/vsbc_vvm_tu-3.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_rv32-1.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_rv32-2.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_rv32-3.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_rv64-1.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_rv64-2.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_rv64-3.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-1.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-2.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-3.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-1.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-2.c: New test. * gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-3.c: New test. --- diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-1.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-1.c new file mode 100644 index 000000000000..0ec5ac1f716a --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-1.c @@ -0,0 +1,27 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv32gcv -mabi=ilp32d -O3" } */ +#include "riscv_vector.h" + +void f1 (void * in, void *out) +{ + vbool32_t mask = __riscv_vlm_v_b32 (in + 100, 4); + vint32m1_t v = __riscv_vle32_v_i32m1 (in, 4); + vint32m1_t v2 = __riscv_vle32_v_i32m1_tu (v, in, 4); + vint32m1_t v3 = __riscv_vsbc_vvm_i32m1 (v2, v2, mask, 4); + vint32m1_t v4 = __riscv_vsbc_vvm_i32m1_tu (v3, v2, v2, mask, 4); + __riscv_vse32_v_i32m1 (out, v4, 4); +} + +void f2 (void * in, void *out) +{ + vbool32_t mask = *(vbool32_t*)in; + asm volatile ("":::"memory"); + vint32m1_t v = __riscv_vle32_v_i32m1 (in, 4); + vint32m1_t v2 = __riscv_vle32_v_i32m1_tumu (mask, v, in, 4); + vint32m1_t v3 = __riscv_vsbc_vvm_i32m1 (v2, v2, mask, 4); + vint32m1_t v4 = __riscv_vsbc_vvm_i32m1_tu (v3, v2, v2, mask, 4); + __riscv_vse32_v_i32m1 (out, v4, 4); +} + +/* { dg-final { scan-assembler-times {vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 4 } } */ +/* { dg-final { scan-assembler-not {vmv} } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-2.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-2.c new file mode 100644 index 000000000000..02fd17edbf59 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-2.c @@ -0,0 +1,56 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv32gcv -mabi=ilp32d -O3" } */ +#include "riscv_vector.h" + +void f0 (void * in, void *out, int32_t x) +{ + vbool32_t mask = __riscv_vlm_v_b32 (in + 100, 4); + vint32m1_t v = __riscv_vle32_v_i32m1 (in, 4); + vint32m1_t v2 = __riscv_vle32_v_i32m1_tu (v, in, 4); + vint32m1_t v3 = __riscv_vsbc_vxm_i32m1 (v2, 0, mask, 4); + vint32m1_t v4 = __riscv_vsbc_vxm_i32m1_tu (v3, v2, 0, mask, 4); + __riscv_vse32_v_i32m1 (out, v4, 4); +} + +void f1 (void * in, void *out, int32_t x) +{ + vbool32_t mask = __riscv_vlm_v_b32 (in + 100, 4); + vint32m1_t v = __riscv_vle32_v_i32m1 (in, 4); + vint32m1_t v2 = __riscv_vle32_v_i32m1_tu (v, in, 4); + vint32m1_t v3 = __riscv_vsbc_vxm_i32m1 (v2, -16, mask, 4); + vint32m1_t v4 = __riscv_vsbc_vxm_i32m1_tu (v3, v2, -16, mask, 4); + __riscv_vse32_v_i32m1 (out, v4, 4); +} + +void f2 (void * in, void *out, int32_t x) +{ + vbool32_t mask = __riscv_vlm_v_b32 (in + 100, 4); + vint32m1_t v = __riscv_vle32_v_i32m1 (in, 4); + vint32m1_t v2 = __riscv_vle32_v_i32m1_tu (v, in, 4); + vint32m1_t v3 = __riscv_vsbc_vxm_i32m1 (v2, 15, mask, 4); + vint32m1_t v4 = __riscv_vsbc_vxm_i32m1_tu (v3, v2, 15, mask, 4); + __riscv_vse32_v_i32m1 (out, v4, 4); +} + +void f3 (void * in, void *out, int32_t x) +{ + vbool32_t mask = __riscv_vlm_v_b32 (in + 100, 4); + vint32m1_t v = __riscv_vle32_v_i32m1 (in, 4); + vint32m1_t v2 = __riscv_vle32_v_i32m1_tu (v, in, 4); + vint32m1_t v3 = __riscv_vsbc_vxm_i32m1 (v2, -17, mask, 4); + vint32m1_t v4 = __riscv_vsbc_vxm_i32m1_tu (v3, v2, -17, mask, 4); + __riscv_vse32_v_i32m1 (out, v4, 4); +} + +void f4 (void * in, void *out, int32_t x) +{ + vbool32_t mask = __riscv_vlm_v_b32 (in + 100, 4); + vint32m1_t v = __riscv_vle32_v_i32m1 (in, 4); + vint32m1_t v2 = __riscv_vle32_v_i32m1_tu (v, in, 4); + vint32m1_t v3 = __riscv_vsbc_vxm_i32m1 (v2, 16, mask, 4); + vint32m1_t v4 = __riscv_vsbc_vxm_i32m1_tu (v3, v2, 16, mask, 4); + __riscv_vse32_v_i32m1 (out, v4, 4); +} + +/* { dg-final { scan-assembler-times {vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*zero,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 8 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-3.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-3.c new file mode 100644 index 000000000000..85feeb93a591 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-3.c @@ -0,0 +1,77 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3" } */ + +#include "riscv_vector.h" + +void f0 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, 0, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, 0, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f1 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, 15, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, 15, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f2 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, -17, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, -17, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f3 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, 16, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, 16, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f4 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, 0xAAAAAAAA, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, 0xAAAAAAAA, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f5 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, 0xAAAAAAAAAAAAAAAA, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, 0xAAAAAAAAAAAAAAAA, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f6 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, x, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, x, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +/* { dg-final { scan-assembler-times {vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*zero,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 12 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-4.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-4.c new file mode 100644 index 000000000000..2f6c64db0b61 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc-4.c @@ -0,0 +1,78 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv32gcv -mabi=ilp32 -O3" } */ + +#include "riscv_vector.h" + +void f0 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, 0, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, 0, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f1 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, 15, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, 15, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f2 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, -17, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, -17, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f3 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, 16, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, 16, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f4 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, 0xAAAAAAA, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, 0xAAAAAAA, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f5 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, 0xAAAAAAAAAAAAAAAA, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, 0xAAAAAAAAAAAAAAAA, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +void f6 (void * in, void *out, int64_t x, int n) +{ + vbool64_t mask = __riscv_vlm_v_b64 (in + 100, 4); + vint64m1_t v = __riscv_vle64_v_i64m1 (in + 1, 4); + vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in + 2, 4); + vint64m1_t v3 = __riscv_vsbc_vxm_i64m1 (v2, x, mask, 4); + vint64m1_t v4 = __riscv_vsbc_vxm_i64m1 (v3, x, mask, 4); + __riscv_vse64_v_i64m1 (out + 2, v4, 4); +} + +/* { dg-final { scan-assembler-times {vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*zero,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 8 } } */ +/* { dg-final { scan-assembler-times {vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 4 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm-1.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm-1.c new file mode 100644 index 000000000000..6cc2acbcd787 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm-1.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vvm_i8mf8(vint8mf8_t op1,vint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf8(op1,op2,borrowin,vl); +} + + +vint8mf4_t test___riscv_vsbc_vvm_i8mf4(vint8mf4_t op1,vint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf4(op1,op2,borrowin,vl); +} + + +vint8mf2_t test___riscv_vsbc_vvm_i8mf2(vint8mf2_t op1,vint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf2(op1,op2,borrowin,vl); +} + + +vint8m1_t test___riscv_vsbc_vvm_i8m1(vint8m1_t op1,vint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m1(op1,op2,borrowin,vl); +} + + +vint8m2_t test___riscv_vsbc_vvm_i8m2(vint8m2_t op1,vint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m2(op1,op2,borrowin,vl); +} + + +vint8m4_t test___riscv_vsbc_vvm_i8m4(vint8m4_t op1,vint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m4(op1,op2,borrowin,vl); +} + + +vint8m8_t test___riscv_vsbc_vvm_i8m8(vint8m8_t op1,vint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m8(op1,op2,borrowin,vl); +} + + +vint16mf4_t test___riscv_vsbc_vvm_i16mf4(vint16mf4_t op1,vint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf4(op1,op2,borrowin,vl); +} + + +vint16mf2_t test___riscv_vsbc_vvm_i16mf2(vint16mf2_t op1,vint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf2(op1,op2,borrowin,vl); +} + + +vint16m1_t test___riscv_vsbc_vvm_i16m1(vint16m1_t op1,vint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m1(op1,op2,borrowin,vl); +} + + +vint16m2_t test___riscv_vsbc_vvm_i16m2(vint16m2_t op1,vint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m2(op1,op2,borrowin,vl); +} + + +vint16m4_t test___riscv_vsbc_vvm_i16m4(vint16m4_t op1,vint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m4(op1,op2,borrowin,vl); +} + + +vint16m8_t test___riscv_vsbc_vvm_i16m8(vint16m8_t op1,vint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m8(op1,op2,borrowin,vl); +} + + +vint32mf2_t test___riscv_vsbc_vvm_i32mf2(vint32mf2_t op1,vint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32mf2(op1,op2,borrowin,vl); +} + + +vint32m1_t test___riscv_vsbc_vvm_i32m1(vint32m1_t op1,vint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m1(op1,op2,borrowin,vl); +} + + +vint32m2_t test___riscv_vsbc_vvm_i32m2(vint32m2_t op1,vint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m2(op1,op2,borrowin,vl); +} + + +vint32m4_t test___riscv_vsbc_vvm_i32m4(vint32m4_t op1,vint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m4(op1,op2,borrowin,vl); +} + + +vint32m8_t test___riscv_vsbc_vvm_i32m8(vint32m8_t op1,vint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m8(op1,op2,borrowin,vl); +} + + +vint64m1_t test___riscv_vsbc_vvm_i64m1(vint64m1_t op1,vint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m1(op1,op2,borrowin,vl); +} + + +vint64m2_t test___riscv_vsbc_vvm_i64m2(vint64m2_t op1,vint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m2(op1,op2,borrowin,vl); +} + + +vint64m4_t test___riscv_vsbc_vvm_i64m4(vint64m4_t op1,vint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m4(op1,op2,borrowin,vl); +} + + +vint64m8_t test___riscv_vsbc_vvm_i64m8(vint64m8_t op1,vint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m8(op1,op2,borrowin,vl); +} + + +vuint8mf8_t test___riscv_vsbc_vvm_u8mf8(vuint8mf8_t op1,vuint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf8(op1,op2,borrowin,vl); +} + + +vuint8mf4_t test___riscv_vsbc_vvm_u8mf4(vuint8mf4_t op1,vuint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf4(op1,op2,borrowin,vl); +} + + +vuint8mf2_t test___riscv_vsbc_vvm_u8mf2(vuint8mf2_t op1,vuint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf2(op1,op2,borrowin,vl); +} + + +vuint8m1_t test___riscv_vsbc_vvm_u8m1(vuint8m1_t op1,vuint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m1(op1,op2,borrowin,vl); +} + + +vuint8m2_t test___riscv_vsbc_vvm_u8m2(vuint8m2_t op1,vuint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m2(op1,op2,borrowin,vl); +} + + +vuint8m4_t test___riscv_vsbc_vvm_u8m4(vuint8m4_t op1,vuint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m4(op1,op2,borrowin,vl); +} + + +vuint8m8_t test___riscv_vsbc_vvm_u8m8(vuint8m8_t op1,vuint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m8(op1,op2,borrowin,vl); +} + + +vuint16mf4_t test___riscv_vsbc_vvm_u16mf4(vuint16mf4_t op1,vuint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf4(op1,op2,borrowin,vl); +} + + +vuint16mf2_t test___riscv_vsbc_vvm_u16mf2(vuint16mf2_t op1,vuint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf2(op1,op2,borrowin,vl); +} + + +vuint16m1_t test___riscv_vsbc_vvm_u16m1(vuint16m1_t op1,vuint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m1(op1,op2,borrowin,vl); +} + + +vuint16m2_t test___riscv_vsbc_vvm_u16m2(vuint16m2_t op1,vuint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m2(op1,op2,borrowin,vl); +} + + +vuint16m4_t test___riscv_vsbc_vvm_u16m4(vuint16m4_t op1,vuint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m4(op1,op2,borrowin,vl); +} + + +vuint16m8_t test___riscv_vsbc_vvm_u16m8(vuint16m8_t op1,vuint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m8(op1,op2,borrowin,vl); +} + + +vuint32mf2_t test___riscv_vsbc_vvm_u32mf2(vuint32mf2_t op1,vuint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32mf2(op1,op2,borrowin,vl); +} + + +vuint32m1_t test___riscv_vsbc_vvm_u32m1(vuint32m1_t op1,vuint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m1(op1,op2,borrowin,vl); +} + + +vuint32m2_t test___riscv_vsbc_vvm_u32m2(vuint32m2_t op1,vuint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m2(op1,op2,borrowin,vl); +} + + +vuint32m4_t test___riscv_vsbc_vvm_u32m4(vuint32m4_t op1,vuint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m4(op1,op2,borrowin,vl); +} + + +vuint32m8_t test___riscv_vsbc_vvm_u32m8(vuint32m8_t op1,vuint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m8(op1,op2,borrowin,vl); +} + + +vuint64m1_t test___riscv_vsbc_vvm_u64m1(vuint64m1_t op1,vuint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m1(op1,op2,borrowin,vl); +} + + +vuint64m2_t test___riscv_vsbc_vvm_u64m2(vuint64m2_t op1,vuint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m2(op1,op2,borrowin,vl); +} + + +vuint64m4_t test___riscv_vsbc_vvm_u64m4(vuint64m4_t op1,vuint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m4(op1,op2,borrowin,vl); +} + + +vuint64m8_t test___riscv_vsbc_vvm_u64m8(vuint64m8_t op1,vuint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m8(op1,op2,borrowin,vl); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm-2.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm-2.c new file mode 100644 index 000000000000..b9efdf9632e0 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm-2.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vvm_i8mf8(vint8mf8_t op1,vint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf8(op1,op2,borrowin,31); +} + + +vint8mf4_t test___riscv_vsbc_vvm_i8mf4(vint8mf4_t op1,vint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf4(op1,op2,borrowin,31); +} + + +vint8mf2_t test___riscv_vsbc_vvm_i8mf2(vint8mf2_t op1,vint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf2(op1,op2,borrowin,31); +} + + +vint8m1_t test___riscv_vsbc_vvm_i8m1(vint8m1_t op1,vint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m1(op1,op2,borrowin,31); +} + + +vint8m2_t test___riscv_vsbc_vvm_i8m2(vint8m2_t op1,vint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m2(op1,op2,borrowin,31); +} + + +vint8m4_t test___riscv_vsbc_vvm_i8m4(vint8m4_t op1,vint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m4(op1,op2,borrowin,31); +} + + +vint8m8_t test___riscv_vsbc_vvm_i8m8(vint8m8_t op1,vint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m8(op1,op2,borrowin,31); +} + + +vint16mf4_t test___riscv_vsbc_vvm_i16mf4(vint16mf4_t op1,vint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf4(op1,op2,borrowin,31); +} + + +vint16mf2_t test___riscv_vsbc_vvm_i16mf2(vint16mf2_t op1,vint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf2(op1,op2,borrowin,31); +} + + +vint16m1_t test___riscv_vsbc_vvm_i16m1(vint16m1_t op1,vint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m1(op1,op2,borrowin,31); +} + + +vint16m2_t test___riscv_vsbc_vvm_i16m2(vint16m2_t op1,vint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m2(op1,op2,borrowin,31); +} + + +vint16m4_t test___riscv_vsbc_vvm_i16m4(vint16m4_t op1,vint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m4(op1,op2,borrowin,31); +} + + +vint16m8_t test___riscv_vsbc_vvm_i16m8(vint16m8_t op1,vint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m8(op1,op2,borrowin,31); +} + + +vint32mf2_t test___riscv_vsbc_vvm_i32mf2(vint32mf2_t op1,vint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32mf2(op1,op2,borrowin,31); +} + + +vint32m1_t test___riscv_vsbc_vvm_i32m1(vint32m1_t op1,vint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m1(op1,op2,borrowin,31); +} + + +vint32m2_t test___riscv_vsbc_vvm_i32m2(vint32m2_t op1,vint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m2(op1,op2,borrowin,31); +} + + +vint32m4_t test___riscv_vsbc_vvm_i32m4(vint32m4_t op1,vint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m4(op1,op2,borrowin,31); +} + + +vint32m8_t test___riscv_vsbc_vvm_i32m8(vint32m8_t op1,vint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m8(op1,op2,borrowin,31); +} + + +vint64m1_t test___riscv_vsbc_vvm_i64m1(vint64m1_t op1,vint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m1(op1,op2,borrowin,31); +} + + +vint64m2_t test___riscv_vsbc_vvm_i64m2(vint64m2_t op1,vint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m2(op1,op2,borrowin,31); +} + + +vint64m4_t test___riscv_vsbc_vvm_i64m4(vint64m4_t op1,vint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m4(op1,op2,borrowin,31); +} + + +vint64m8_t test___riscv_vsbc_vvm_i64m8(vint64m8_t op1,vint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m8(op1,op2,borrowin,31); +} + + +vuint8mf8_t test___riscv_vsbc_vvm_u8mf8(vuint8mf8_t op1,vuint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf8(op1,op2,borrowin,31); +} + + +vuint8mf4_t test___riscv_vsbc_vvm_u8mf4(vuint8mf4_t op1,vuint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf4(op1,op2,borrowin,31); +} + + +vuint8mf2_t test___riscv_vsbc_vvm_u8mf2(vuint8mf2_t op1,vuint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf2(op1,op2,borrowin,31); +} + + +vuint8m1_t test___riscv_vsbc_vvm_u8m1(vuint8m1_t op1,vuint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m1(op1,op2,borrowin,31); +} + + +vuint8m2_t test___riscv_vsbc_vvm_u8m2(vuint8m2_t op1,vuint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m2(op1,op2,borrowin,31); +} + + +vuint8m4_t test___riscv_vsbc_vvm_u8m4(vuint8m4_t op1,vuint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m4(op1,op2,borrowin,31); +} + + +vuint8m8_t test___riscv_vsbc_vvm_u8m8(vuint8m8_t op1,vuint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m8(op1,op2,borrowin,31); +} + + +vuint16mf4_t test___riscv_vsbc_vvm_u16mf4(vuint16mf4_t op1,vuint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf4(op1,op2,borrowin,31); +} + + +vuint16mf2_t test___riscv_vsbc_vvm_u16mf2(vuint16mf2_t op1,vuint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf2(op1,op2,borrowin,31); +} + + +vuint16m1_t test___riscv_vsbc_vvm_u16m1(vuint16m1_t op1,vuint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m1(op1,op2,borrowin,31); +} + + +vuint16m2_t test___riscv_vsbc_vvm_u16m2(vuint16m2_t op1,vuint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m2(op1,op2,borrowin,31); +} + + +vuint16m4_t test___riscv_vsbc_vvm_u16m4(vuint16m4_t op1,vuint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m4(op1,op2,borrowin,31); +} + + +vuint16m8_t test___riscv_vsbc_vvm_u16m8(vuint16m8_t op1,vuint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m8(op1,op2,borrowin,31); +} + + +vuint32mf2_t test___riscv_vsbc_vvm_u32mf2(vuint32mf2_t op1,vuint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32mf2(op1,op2,borrowin,31); +} + + +vuint32m1_t test___riscv_vsbc_vvm_u32m1(vuint32m1_t op1,vuint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m1(op1,op2,borrowin,31); +} + + +vuint32m2_t test___riscv_vsbc_vvm_u32m2(vuint32m2_t op1,vuint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m2(op1,op2,borrowin,31); +} + + +vuint32m4_t test___riscv_vsbc_vvm_u32m4(vuint32m4_t op1,vuint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m4(op1,op2,borrowin,31); +} + + +vuint32m8_t test___riscv_vsbc_vvm_u32m8(vuint32m8_t op1,vuint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m8(op1,op2,borrowin,31); +} + + +vuint64m1_t test___riscv_vsbc_vvm_u64m1(vuint64m1_t op1,vuint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m1(op1,op2,borrowin,31); +} + + +vuint64m2_t test___riscv_vsbc_vvm_u64m2(vuint64m2_t op1,vuint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m2(op1,op2,borrowin,31); +} + + +vuint64m4_t test___riscv_vsbc_vvm_u64m4(vuint64m4_t op1,vuint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m4(op1,op2,borrowin,31); +} + + +vuint64m8_t test___riscv_vsbc_vvm_u64m8(vuint64m8_t op1,vuint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m8(op1,op2,borrowin,31); +} + + + +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm-3.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm-3.c new file mode 100644 index 000000000000..1dbb7b90c53e --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm-3.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vvm_i8mf8(vint8mf8_t op1,vint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf8(op1,op2,borrowin,32); +} + + +vint8mf4_t test___riscv_vsbc_vvm_i8mf4(vint8mf4_t op1,vint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf4(op1,op2,borrowin,32); +} + + +vint8mf2_t test___riscv_vsbc_vvm_i8mf2(vint8mf2_t op1,vint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf2(op1,op2,borrowin,32); +} + + +vint8m1_t test___riscv_vsbc_vvm_i8m1(vint8m1_t op1,vint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m1(op1,op2,borrowin,32); +} + + +vint8m2_t test___riscv_vsbc_vvm_i8m2(vint8m2_t op1,vint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m2(op1,op2,borrowin,32); +} + + +vint8m4_t test___riscv_vsbc_vvm_i8m4(vint8m4_t op1,vint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m4(op1,op2,borrowin,32); +} + + +vint8m8_t test___riscv_vsbc_vvm_i8m8(vint8m8_t op1,vint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m8(op1,op2,borrowin,32); +} + + +vint16mf4_t test___riscv_vsbc_vvm_i16mf4(vint16mf4_t op1,vint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf4(op1,op2,borrowin,32); +} + + +vint16mf2_t test___riscv_vsbc_vvm_i16mf2(vint16mf2_t op1,vint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf2(op1,op2,borrowin,32); +} + + +vint16m1_t test___riscv_vsbc_vvm_i16m1(vint16m1_t op1,vint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m1(op1,op2,borrowin,32); +} + + +vint16m2_t test___riscv_vsbc_vvm_i16m2(vint16m2_t op1,vint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m2(op1,op2,borrowin,32); +} + + +vint16m4_t test___riscv_vsbc_vvm_i16m4(vint16m4_t op1,vint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m4(op1,op2,borrowin,32); +} + + +vint16m8_t test___riscv_vsbc_vvm_i16m8(vint16m8_t op1,vint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m8(op1,op2,borrowin,32); +} + + +vint32mf2_t test___riscv_vsbc_vvm_i32mf2(vint32mf2_t op1,vint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32mf2(op1,op2,borrowin,32); +} + + +vint32m1_t test___riscv_vsbc_vvm_i32m1(vint32m1_t op1,vint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m1(op1,op2,borrowin,32); +} + + +vint32m2_t test___riscv_vsbc_vvm_i32m2(vint32m2_t op1,vint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m2(op1,op2,borrowin,32); +} + + +vint32m4_t test___riscv_vsbc_vvm_i32m4(vint32m4_t op1,vint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m4(op1,op2,borrowin,32); +} + + +vint32m8_t test___riscv_vsbc_vvm_i32m8(vint32m8_t op1,vint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m8(op1,op2,borrowin,32); +} + + +vint64m1_t test___riscv_vsbc_vvm_i64m1(vint64m1_t op1,vint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m1(op1,op2,borrowin,32); +} + + +vint64m2_t test___riscv_vsbc_vvm_i64m2(vint64m2_t op1,vint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m2(op1,op2,borrowin,32); +} + + +vint64m4_t test___riscv_vsbc_vvm_i64m4(vint64m4_t op1,vint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m4(op1,op2,borrowin,32); +} + + +vint64m8_t test___riscv_vsbc_vvm_i64m8(vint64m8_t op1,vint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m8(op1,op2,borrowin,32); +} + + +vuint8mf8_t test___riscv_vsbc_vvm_u8mf8(vuint8mf8_t op1,vuint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf8(op1,op2,borrowin,32); +} + + +vuint8mf4_t test___riscv_vsbc_vvm_u8mf4(vuint8mf4_t op1,vuint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf4(op1,op2,borrowin,32); +} + + +vuint8mf2_t test___riscv_vsbc_vvm_u8mf2(vuint8mf2_t op1,vuint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf2(op1,op2,borrowin,32); +} + + +vuint8m1_t test___riscv_vsbc_vvm_u8m1(vuint8m1_t op1,vuint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m1(op1,op2,borrowin,32); +} + + +vuint8m2_t test___riscv_vsbc_vvm_u8m2(vuint8m2_t op1,vuint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m2(op1,op2,borrowin,32); +} + + +vuint8m4_t test___riscv_vsbc_vvm_u8m4(vuint8m4_t op1,vuint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m4(op1,op2,borrowin,32); +} + + +vuint8m8_t test___riscv_vsbc_vvm_u8m8(vuint8m8_t op1,vuint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m8(op1,op2,borrowin,32); +} + + +vuint16mf4_t test___riscv_vsbc_vvm_u16mf4(vuint16mf4_t op1,vuint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf4(op1,op2,borrowin,32); +} + + +vuint16mf2_t test___riscv_vsbc_vvm_u16mf2(vuint16mf2_t op1,vuint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf2(op1,op2,borrowin,32); +} + + +vuint16m1_t test___riscv_vsbc_vvm_u16m1(vuint16m1_t op1,vuint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m1(op1,op2,borrowin,32); +} + + +vuint16m2_t test___riscv_vsbc_vvm_u16m2(vuint16m2_t op1,vuint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m2(op1,op2,borrowin,32); +} + + +vuint16m4_t test___riscv_vsbc_vvm_u16m4(vuint16m4_t op1,vuint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m4(op1,op2,borrowin,32); +} + + +vuint16m8_t test___riscv_vsbc_vvm_u16m8(vuint16m8_t op1,vuint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m8(op1,op2,borrowin,32); +} + + +vuint32mf2_t test___riscv_vsbc_vvm_u32mf2(vuint32mf2_t op1,vuint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32mf2(op1,op2,borrowin,32); +} + + +vuint32m1_t test___riscv_vsbc_vvm_u32m1(vuint32m1_t op1,vuint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m1(op1,op2,borrowin,32); +} + + +vuint32m2_t test___riscv_vsbc_vvm_u32m2(vuint32m2_t op1,vuint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m2(op1,op2,borrowin,32); +} + + +vuint32m4_t test___riscv_vsbc_vvm_u32m4(vuint32m4_t op1,vuint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m4(op1,op2,borrowin,32); +} + + +vuint32m8_t test___riscv_vsbc_vvm_u32m8(vuint32m8_t op1,vuint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m8(op1,op2,borrowin,32); +} + + +vuint64m1_t test___riscv_vsbc_vvm_u64m1(vuint64m1_t op1,vuint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m1(op1,op2,borrowin,32); +} + + +vuint64m2_t test___riscv_vsbc_vvm_u64m2(vuint64m2_t op1,vuint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m2(op1,op2,borrowin,32); +} + + +vuint64m4_t test___riscv_vsbc_vvm_u64m4(vuint64m4_t op1,vuint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m4(op1,op2,borrowin,32); +} + + +vuint64m8_t test___riscv_vsbc_vvm_u64m8(vuint64m8_t op1,vuint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m8(op1,op2,borrowin,32); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm_tu-1.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm_tu-1.c new file mode 100644 index 000000000000..f45a90a27203 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm_tu-1.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vvm_i8mf8_tu(vint8mf8_t maskedoff,vint8mf8_t op1,vint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8mf4_t test___riscv_vsbc_vvm_i8mf4_tu(vint8mf4_t maskedoff,vint8mf4_t op1,vint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8mf2_t test___riscv_vsbc_vvm_i8mf2_tu(vint8mf2_t maskedoff,vint8mf2_t op1,vint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m1_t test___riscv_vsbc_vvm_i8m1_tu(vint8m1_t maskedoff,vint8m1_t op1,vint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m2_t test___riscv_vsbc_vvm_i8m2_tu(vint8m2_t maskedoff,vint8m2_t op1,vint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m4_t test___riscv_vsbc_vvm_i8m4_tu(vint8m4_t maskedoff,vint8m4_t op1,vint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m8_t test___riscv_vsbc_vvm_i8m8_tu(vint8m8_t maskedoff,vint8m8_t op1,vint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16mf4_t test___riscv_vsbc_vvm_i16mf4_tu(vint16mf4_t maskedoff,vint16mf4_t op1,vint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16mf2_t test___riscv_vsbc_vvm_i16mf2_tu(vint16mf2_t maskedoff,vint16mf2_t op1,vint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m1_t test___riscv_vsbc_vvm_i16m1_tu(vint16m1_t maskedoff,vint16m1_t op1,vint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m2_t test___riscv_vsbc_vvm_i16m2_tu(vint16m2_t maskedoff,vint16m2_t op1,vint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m4_t test___riscv_vsbc_vvm_i16m4_tu(vint16m4_t maskedoff,vint16m4_t op1,vint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m8_t test___riscv_vsbc_vvm_i16m8_tu(vint16m8_t maskedoff,vint16m8_t op1,vint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32mf2_t test___riscv_vsbc_vvm_i32mf2_tu(vint32mf2_t maskedoff,vint32mf2_t op1,vint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m1_t test___riscv_vsbc_vvm_i32m1_tu(vint32m1_t maskedoff,vint32m1_t op1,vint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m2_t test___riscv_vsbc_vvm_i32m2_tu(vint32m2_t maskedoff,vint32m2_t op1,vint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m4_t test___riscv_vsbc_vvm_i32m4_tu(vint32m4_t maskedoff,vint32m4_t op1,vint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m8_t test___riscv_vsbc_vvm_i32m8_tu(vint32m8_t maskedoff,vint32m8_t op1,vint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m1_t test___riscv_vsbc_vvm_i64m1_tu(vint64m1_t maskedoff,vint64m1_t op1,vint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m2_t test___riscv_vsbc_vvm_i64m2_tu(vint64m2_t maskedoff,vint64m2_t op1,vint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m4_t test___riscv_vsbc_vvm_i64m4_tu(vint64m4_t maskedoff,vint64m4_t op1,vint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m8_t test___riscv_vsbc_vvm_i64m8_tu(vint64m8_t maskedoff,vint64m8_t op1,vint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8mf8_t test___riscv_vsbc_vvm_u8mf8_tu(vuint8mf8_t maskedoff,vuint8mf8_t op1,vuint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8mf4_t test___riscv_vsbc_vvm_u8mf4_tu(vuint8mf4_t maskedoff,vuint8mf4_t op1,vuint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8mf2_t test___riscv_vsbc_vvm_u8mf2_tu(vuint8mf2_t maskedoff,vuint8mf2_t op1,vuint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m1_t test___riscv_vsbc_vvm_u8m1_tu(vuint8m1_t maskedoff,vuint8m1_t op1,vuint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m2_t test___riscv_vsbc_vvm_u8m2_tu(vuint8m2_t maskedoff,vuint8m2_t op1,vuint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m4_t test___riscv_vsbc_vvm_u8m4_tu(vuint8m4_t maskedoff,vuint8m4_t op1,vuint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m8_t test___riscv_vsbc_vvm_u8m8_tu(vuint8m8_t maskedoff,vuint8m8_t op1,vuint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16mf4_t test___riscv_vsbc_vvm_u16mf4_tu(vuint16mf4_t maskedoff,vuint16mf4_t op1,vuint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16mf2_t test___riscv_vsbc_vvm_u16mf2_tu(vuint16mf2_t maskedoff,vuint16mf2_t op1,vuint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m1_t test___riscv_vsbc_vvm_u16m1_tu(vuint16m1_t maskedoff,vuint16m1_t op1,vuint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m2_t test___riscv_vsbc_vvm_u16m2_tu(vuint16m2_t maskedoff,vuint16m2_t op1,vuint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m4_t test___riscv_vsbc_vvm_u16m4_tu(vuint16m4_t maskedoff,vuint16m4_t op1,vuint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m8_t test___riscv_vsbc_vvm_u16m8_tu(vuint16m8_t maskedoff,vuint16m8_t op1,vuint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32mf2_t test___riscv_vsbc_vvm_u32mf2_tu(vuint32mf2_t maskedoff,vuint32mf2_t op1,vuint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m1_t test___riscv_vsbc_vvm_u32m1_tu(vuint32m1_t maskedoff,vuint32m1_t op1,vuint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m2_t test___riscv_vsbc_vvm_u32m2_tu(vuint32m2_t maskedoff,vuint32m2_t op1,vuint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m4_t test___riscv_vsbc_vvm_u32m4_tu(vuint32m4_t maskedoff,vuint32m4_t op1,vuint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m8_t test___riscv_vsbc_vvm_u32m8_tu(vuint32m8_t maskedoff,vuint32m8_t op1,vuint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m1_t test___riscv_vsbc_vvm_u64m1_tu(vuint64m1_t maskedoff,vuint64m1_t op1,vuint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m2_t test___riscv_vsbc_vvm_u64m2_tu(vuint64m2_t maskedoff,vuint64m2_t op1,vuint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m4_t test___riscv_vsbc_vvm_u64m4_tu(vuint64m4_t maskedoff,vuint64m4_t op1,vuint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m8_t test___riscv_vsbc_vvm_u64m8_tu(vuint64m8_t maskedoff,vuint64m8_t op1,vuint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm_tu-2.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm_tu-2.c new file mode 100644 index 000000000000..e646d3365444 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm_tu-2.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vvm_i8mf8_tu(vint8mf8_t maskedoff,vint8mf8_t op1,vint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8mf4_t test___riscv_vsbc_vvm_i8mf4_tu(vint8mf4_t maskedoff,vint8mf4_t op1,vint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8mf2_t test___riscv_vsbc_vvm_i8mf2_tu(vint8mf2_t maskedoff,vint8mf2_t op1,vint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m1_t test___riscv_vsbc_vvm_i8m1_tu(vint8m1_t maskedoff,vint8m1_t op1,vint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m2_t test___riscv_vsbc_vvm_i8m2_tu(vint8m2_t maskedoff,vint8m2_t op1,vint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m4_t test___riscv_vsbc_vvm_i8m4_tu(vint8m4_t maskedoff,vint8m4_t op1,vint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m8_t test___riscv_vsbc_vvm_i8m8_tu(vint8m8_t maskedoff,vint8m8_t op1,vint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16mf4_t test___riscv_vsbc_vvm_i16mf4_tu(vint16mf4_t maskedoff,vint16mf4_t op1,vint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16mf2_t test___riscv_vsbc_vvm_i16mf2_tu(vint16mf2_t maskedoff,vint16mf2_t op1,vint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m1_t test___riscv_vsbc_vvm_i16m1_tu(vint16m1_t maskedoff,vint16m1_t op1,vint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m2_t test___riscv_vsbc_vvm_i16m2_tu(vint16m2_t maskedoff,vint16m2_t op1,vint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m4_t test___riscv_vsbc_vvm_i16m4_tu(vint16m4_t maskedoff,vint16m4_t op1,vint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m8_t test___riscv_vsbc_vvm_i16m8_tu(vint16m8_t maskedoff,vint16m8_t op1,vint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32mf2_t test___riscv_vsbc_vvm_i32mf2_tu(vint32mf2_t maskedoff,vint32mf2_t op1,vint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m1_t test___riscv_vsbc_vvm_i32m1_tu(vint32m1_t maskedoff,vint32m1_t op1,vint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m2_t test___riscv_vsbc_vvm_i32m2_tu(vint32m2_t maskedoff,vint32m2_t op1,vint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m4_t test___riscv_vsbc_vvm_i32m4_tu(vint32m4_t maskedoff,vint32m4_t op1,vint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m8_t test___riscv_vsbc_vvm_i32m8_tu(vint32m8_t maskedoff,vint32m8_t op1,vint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m1_t test___riscv_vsbc_vvm_i64m1_tu(vint64m1_t maskedoff,vint64m1_t op1,vint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m2_t test___riscv_vsbc_vvm_i64m2_tu(vint64m2_t maskedoff,vint64m2_t op1,vint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m4_t test___riscv_vsbc_vvm_i64m4_tu(vint64m4_t maskedoff,vint64m4_t op1,vint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m8_t test___riscv_vsbc_vvm_i64m8_tu(vint64m8_t maskedoff,vint64m8_t op1,vint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8mf8_t test___riscv_vsbc_vvm_u8mf8_tu(vuint8mf8_t maskedoff,vuint8mf8_t op1,vuint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8mf4_t test___riscv_vsbc_vvm_u8mf4_tu(vuint8mf4_t maskedoff,vuint8mf4_t op1,vuint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8mf2_t test___riscv_vsbc_vvm_u8mf2_tu(vuint8mf2_t maskedoff,vuint8mf2_t op1,vuint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m1_t test___riscv_vsbc_vvm_u8m1_tu(vuint8m1_t maskedoff,vuint8m1_t op1,vuint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m2_t test___riscv_vsbc_vvm_u8m2_tu(vuint8m2_t maskedoff,vuint8m2_t op1,vuint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m4_t test___riscv_vsbc_vvm_u8m4_tu(vuint8m4_t maskedoff,vuint8m4_t op1,vuint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m8_t test___riscv_vsbc_vvm_u8m8_tu(vuint8m8_t maskedoff,vuint8m8_t op1,vuint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16mf4_t test___riscv_vsbc_vvm_u16mf4_tu(vuint16mf4_t maskedoff,vuint16mf4_t op1,vuint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16mf2_t test___riscv_vsbc_vvm_u16mf2_tu(vuint16mf2_t maskedoff,vuint16mf2_t op1,vuint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m1_t test___riscv_vsbc_vvm_u16m1_tu(vuint16m1_t maskedoff,vuint16m1_t op1,vuint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m2_t test___riscv_vsbc_vvm_u16m2_tu(vuint16m2_t maskedoff,vuint16m2_t op1,vuint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m4_t test___riscv_vsbc_vvm_u16m4_tu(vuint16m4_t maskedoff,vuint16m4_t op1,vuint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m8_t test___riscv_vsbc_vvm_u16m8_tu(vuint16m8_t maskedoff,vuint16m8_t op1,vuint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32mf2_t test___riscv_vsbc_vvm_u32mf2_tu(vuint32mf2_t maskedoff,vuint32mf2_t op1,vuint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m1_t test___riscv_vsbc_vvm_u32m1_tu(vuint32m1_t maskedoff,vuint32m1_t op1,vuint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m2_t test___riscv_vsbc_vvm_u32m2_tu(vuint32m2_t maskedoff,vuint32m2_t op1,vuint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m4_t test___riscv_vsbc_vvm_u32m4_tu(vuint32m4_t maskedoff,vuint32m4_t op1,vuint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m8_t test___riscv_vsbc_vvm_u32m8_tu(vuint32m8_t maskedoff,vuint32m8_t op1,vuint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m1_t test___riscv_vsbc_vvm_u64m1_tu(vuint64m1_t maskedoff,vuint64m1_t op1,vuint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m2_t test___riscv_vsbc_vvm_u64m2_tu(vuint64m2_t maskedoff,vuint64m2_t op1,vuint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m4_t test___riscv_vsbc_vvm_u64m4_tu(vuint64m4_t maskedoff,vuint64m4_t op1,vuint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m8_t test___riscv_vsbc_vvm_u64m8_tu(vuint64m8_t maskedoff,vuint64m8_t op1,vuint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m8_tu(maskedoff,op1,op2,borrowin,31); +} + + + +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm_tu-3.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm_tu-3.c new file mode 100644 index 000000000000..6bf79680fc64 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vvm_tu-3.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vvm_i8mf8_tu(vint8mf8_t maskedoff,vint8mf8_t op1,vint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8mf4_t test___riscv_vsbc_vvm_i8mf4_tu(vint8mf4_t maskedoff,vint8mf4_t op1,vint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8mf2_t test___riscv_vsbc_vvm_i8mf2_tu(vint8mf2_t maskedoff,vint8mf2_t op1,vint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m1_t test___riscv_vsbc_vvm_i8m1_tu(vint8m1_t maskedoff,vint8m1_t op1,vint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m2_t test___riscv_vsbc_vvm_i8m2_tu(vint8m2_t maskedoff,vint8m2_t op1,vint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m4_t test___riscv_vsbc_vvm_i8m4_tu(vint8m4_t maskedoff,vint8m4_t op1,vint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m8_t test___riscv_vsbc_vvm_i8m8_tu(vint8m8_t maskedoff,vint8m8_t op1,vint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i8m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16mf4_t test___riscv_vsbc_vvm_i16mf4_tu(vint16mf4_t maskedoff,vint16mf4_t op1,vint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16mf2_t test___riscv_vsbc_vvm_i16mf2_tu(vint16mf2_t maskedoff,vint16mf2_t op1,vint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m1_t test___riscv_vsbc_vvm_i16m1_tu(vint16m1_t maskedoff,vint16m1_t op1,vint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m2_t test___riscv_vsbc_vvm_i16m2_tu(vint16m2_t maskedoff,vint16m2_t op1,vint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m4_t test___riscv_vsbc_vvm_i16m4_tu(vint16m4_t maskedoff,vint16m4_t op1,vint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m8_t test___riscv_vsbc_vvm_i16m8_tu(vint16m8_t maskedoff,vint16m8_t op1,vint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i16m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32mf2_t test___riscv_vsbc_vvm_i32mf2_tu(vint32mf2_t maskedoff,vint32mf2_t op1,vint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m1_t test___riscv_vsbc_vvm_i32m1_tu(vint32m1_t maskedoff,vint32m1_t op1,vint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m2_t test___riscv_vsbc_vvm_i32m2_tu(vint32m2_t maskedoff,vint32m2_t op1,vint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m4_t test___riscv_vsbc_vvm_i32m4_tu(vint32m4_t maskedoff,vint32m4_t op1,vint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m8_t test___riscv_vsbc_vvm_i32m8_tu(vint32m8_t maskedoff,vint32m8_t op1,vint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i32m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m1_t test___riscv_vsbc_vvm_i64m1_tu(vint64m1_t maskedoff,vint64m1_t op1,vint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m2_t test___riscv_vsbc_vvm_i64m2_tu(vint64m2_t maskedoff,vint64m2_t op1,vint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m4_t test___riscv_vsbc_vvm_i64m4_tu(vint64m4_t maskedoff,vint64m4_t op1,vint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m8_t test___riscv_vsbc_vvm_i64m8_tu(vint64m8_t maskedoff,vint64m8_t op1,vint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_i64m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8mf8_t test___riscv_vsbc_vvm_u8mf8_tu(vuint8mf8_t maskedoff,vuint8mf8_t op1,vuint8mf8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8mf4_t test___riscv_vsbc_vvm_u8mf4_tu(vuint8mf4_t maskedoff,vuint8mf4_t op1,vuint8mf4_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8mf2_t test___riscv_vsbc_vvm_u8mf2_tu(vuint8mf2_t maskedoff,vuint8mf2_t op1,vuint8mf2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m1_t test___riscv_vsbc_vvm_u8m1_tu(vuint8m1_t maskedoff,vuint8m1_t op1,vuint8m1_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m2_t test___riscv_vsbc_vvm_u8m2_tu(vuint8m2_t maskedoff,vuint8m2_t op1,vuint8m2_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m4_t test___riscv_vsbc_vvm_u8m4_tu(vuint8m4_t maskedoff,vuint8m4_t op1,vuint8m4_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m8_t test___riscv_vsbc_vvm_u8m8_tu(vuint8m8_t maskedoff,vuint8m8_t op1,vuint8m8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u8m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16mf4_t test___riscv_vsbc_vvm_u16mf4_tu(vuint16mf4_t maskedoff,vuint16mf4_t op1,vuint16mf4_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16mf2_t test___riscv_vsbc_vvm_u16mf2_tu(vuint16mf2_t maskedoff,vuint16mf2_t op1,vuint16mf2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m1_t test___riscv_vsbc_vvm_u16m1_tu(vuint16m1_t maskedoff,vuint16m1_t op1,vuint16m1_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m2_t test___riscv_vsbc_vvm_u16m2_tu(vuint16m2_t maskedoff,vuint16m2_t op1,vuint16m2_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m4_t test___riscv_vsbc_vvm_u16m4_tu(vuint16m4_t maskedoff,vuint16m4_t op1,vuint16m4_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m8_t test___riscv_vsbc_vvm_u16m8_tu(vuint16m8_t maskedoff,vuint16m8_t op1,vuint16m8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u16m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32mf2_t test___riscv_vsbc_vvm_u32mf2_tu(vuint32mf2_t maskedoff,vuint32mf2_t op1,vuint32mf2_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m1_t test___riscv_vsbc_vvm_u32m1_tu(vuint32m1_t maskedoff,vuint32m1_t op1,vuint32m1_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m2_t test___riscv_vsbc_vvm_u32m2_tu(vuint32m2_t maskedoff,vuint32m2_t op1,vuint32m2_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m4_t test___riscv_vsbc_vvm_u32m4_tu(vuint32m4_t maskedoff,vuint32m4_t op1,vuint32m4_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m8_t test___riscv_vsbc_vvm_u32m8_tu(vuint32m8_t maskedoff,vuint32m8_t op1,vuint32m8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u32m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m1_t test___riscv_vsbc_vvm_u64m1_tu(vuint64m1_t maskedoff,vuint64m1_t op1,vuint64m1_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m2_t test___riscv_vsbc_vvm_u64m2_tu(vuint64m2_t maskedoff,vuint64m2_t op1,vuint64m2_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m4_t test___riscv_vsbc_vvm_u64m4_tu(vuint64m4_t maskedoff,vuint64m4_t op1,vuint64m4_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m8_t test___riscv_vsbc_vvm_u64m8_tu(vuint64m8_t maskedoff,vuint64m8_t op1,vuint64m8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vvm_u64m8_tu(maskedoff,op1,op2,borrowin,32); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 2 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv32-1.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv32-1.c new file mode 100644 index 000000000000..327dcd98c639 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv32-1.c @@ -0,0 +1,289 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv32gcv -mabi=ilp32d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8(vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8(op1,op2,borrowin,vl); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4(vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4(op1,op2,borrowin,vl); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2(vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2(op1,op2,borrowin,vl); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1(vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1(op1,op2,borrowin,vl); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2(vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2(op1,op2,borrowin,vl); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4(vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4(op1,op2,borrowin,vl); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8(vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8(op1,op2,borrowin,vl); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4(vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4(op1,op2,borrowin,vl); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2(vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2(op1,op2,borrowin,vl); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1(vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1(op1,op2,borrowin,vl); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2(vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2(op1,op2,borrowin,vl); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4(vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4(op1,op2,borrowin,vl); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8(vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8(op1,op2,borrowin,vl); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2(vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2(op1,op2,borrowin,vl); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1(vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1(op1,op2,borrowin,vl); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2(vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2(op1,op2,borrowin,vl); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4(vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4(op1,op2,borrowin,vl); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8(vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8(op1,op2,borrowin,vl); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1(vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1(op1,op2,borrowin,vl); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2(vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2(op1,op2,borrowin,vl); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4(vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4(op1,op2,borrowin,vl); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8(vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8(op1,op2,borrowin,vl); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8(vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8(op1,op2,borrowin,vl); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4(vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4(op1,op2,borrowin,vl); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2(vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2(op1,op2,borrowin,vl); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1(vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1(op1,op2,borrowin,vl); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2(vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2(op1,op2,borrowin,vl); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4(vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4(op1,op2,borrowin,vl); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8(vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8(op1,op2,borrowin,vl); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4(vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4(op1,op2,borrowin,vl); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2(vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2(op1,op2,borrowin,vl); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1(vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1(op1,op2,borrowin,vl); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2(vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2(op1,op2,borrowin,vl); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4(vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4(op1,op2,borrowin,vl); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8(vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8(op1,op2,borrowin,vl); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2(vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2(op1,op2,borrowin,vl); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1(vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1(op1,op2,borrowin,vl); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2(vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2(op1,op2,borrowin,vl); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4(vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4(op1,op2,borrowin,vl); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8(vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8(op1,op2,borrowin,vl); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1(vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1(op1,op2,borrowin,vl); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2(vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2(op1,op2,borrowin,vl); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4(vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4(op1,op2,borrowin,vl); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8(vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8(op1,op2,borrowin,vl); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 8 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv32-2.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv32-2.c new file mode 100644 index 000000000000..1a2cdac3de48 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv32-2.c @@ -0,0 +1,289 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv32gcv -mabi=ilp32d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8(vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8(op1,op2,borrowin,31); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4(vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4(op1,op2,borrowin,31); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2(vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2(op1,op2,borrowin,31); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1(vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1(op1,op2,borrowin,31); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2(vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2(op1,op2,borrowin,31); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4(vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4(op1,op2,borrowin,31); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8(vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8(op1,op2,borrowin,31); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4(vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4(op1,op2,borrowin,31); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2(vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2(op1,op2,borrowin,31); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1(vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1(op1,op2,borrowin,31); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2(vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2(op1,op2,borrowin,31); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4(vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4(op1,op2,borrowin,31); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8(vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8(op1,op2,borrowin,31); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2(vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2(op1,op2,borrowin,31); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1(vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1(op1,op2,borrowin,31); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2(vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2(op1,op2,borrowin,31); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4(vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4(op1,op2,borrowin,31); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8(vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8(op1,op2,borrowin,31); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1(vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1(op1,op2,borrowin,31); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2(vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2(op1,op2,borrowin,31); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4(vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4(op1,op2,borrowin,31); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8(vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8(op1,op2,borrowin,31); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8(vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8(op1,op2,borrowin,31); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4(vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4(op1,op2,borrowin,31); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2(vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2(op1,op2,borrowin,31); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1(vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1(op1,op2,borrowin,31); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2(vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2(op1,op2,borrowin,31); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4(vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4(op1,op2,borrowin,31); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8(vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8(op1,op2,borrowin,31); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4(vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4(op1,op2,borrowin,31); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2(vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2(op1,op2,borrowin,31); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1(vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1(op1,op2,borrowin,31); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2(vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2(op1,op2,borrowin,31); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4(vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4(op1,op2,borrowin,31); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8(vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8(op1,op2,borrowin,31); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2(vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2(op1,op2,borrowin,31); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1(vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1(op1,op2,borrowin,31); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2(vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2(op1,op2,borrowin,31); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4(vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4(op1,op2,borrowin,31); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8(vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8(op1,op2,borrowin,31); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1(vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1(op1,op2,borrowin,31); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2(vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2(op1,op2,borrowin,31); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4(vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4(op1,op2,borrowin,31); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8(vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8(op1,op2,borrowin,31); +} + + + +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 8 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv32-3.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv32-3.c new file mode 100644 index 000000000000..113857fe89ee --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv32-3.c @@ -0,0 +1,289 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv32gcv -mabi=ilp32d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8(vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8(op1,op2,borrowin,32); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4(vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4(op1,op2,borrowin,32); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2(vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2(op1,op2,borrowin,32); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1(vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1(op1,op2,borrowin,32); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2(vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2(op1,op2,borrowin,32); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4(vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4(op1,op2,borrowin,32); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8(vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8(op1,op2,borrowin,32); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4(vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4(op1,op2,borrowin,32); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2(vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2(op1,op2,borrowin,32); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1(vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1(op1,op2,borrowin,32); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2(vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2(op1,op2,borrowin,32); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4(vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4(op1,op2,borrowin,32); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8(vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8(op1,op2,borrowin,32); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2(vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2(op1,op2,borrowin,32); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1(vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1(op1,op2,borrowin,32); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2(vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2(op1,op2,borrowin,32); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4(vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4(op1,op2,borrowin,32); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8(vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8(op1,op2,borrowin,32); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1(vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1(op1,op2,borrowin,32); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2(vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2(op1,op2,borrowin,32); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4(vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4(op1,op2,borrowin,32); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8(vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8(op1,op2,borrowin,32); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8(vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8(op1,op2,borrowin,32); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4(vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4(op1,op2,borrowin,32); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2(vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2(op1,op2,borrowin,32); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1(vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1(op1,op2,borrowin,32); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2(vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2(op1,op2,borrowin,32); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4(vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4(op1,op2,borrowin,32); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8(vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8(op1,op2,borrowin,32); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4(vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4(op1,op2,borrowin,32); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2(vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2(op1,op2,borrowin,32); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1(vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1(op1,op2,borrowin,32); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2(vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2(op1,op2,borrowin,32); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4(vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4(op1,op2,borrowin,32); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8(vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8(op1,op2,borrowin,32); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2(vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2(op1,op2,borrowin,32); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1(vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1(op1,op2,borrowin,32); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2(vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2(op1,op2,borrowin,32); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4(vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4(op1,op2,borrowin,32); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8(vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8(op1,op2,borrowin,32); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1(vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1(op1,op2,borrowin,32); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2(vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2(op1,op2,borrowin,32); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4(vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4(op1,op2,borrowin,32); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8(vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8(op1,op2,borrowin,32); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 8 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv64-1.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv64-1.c new file mode 100644 index 000000000000..7fab8c30cf18 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv64-1.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8(vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8(op1,op2,borrowin,vl); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4(vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4(op1,op2,borrowin,vl); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2(vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2(op1,op2,borrowin,vl); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1(vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1(op1,op2,borrowin,vl); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2(vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2(op1,op2,borrowin,vl); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4(vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4(op1,op2,borrowin,vl); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8(vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8(op1,op2,borrowin,vl); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4(vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4(op1,op2,borrowin,vl); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2(vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2(op1,op2,borrowin,vl); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1(vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1(op1,op2,borrowin,vl); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2(vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2(op1,op2,borrowin,vl); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4(vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4(op1,op2,borrowin,vl); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8(vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8(op1,op2,borrowin,vl); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2(vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2(op1,op2,borrowin,vl); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1(vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1(op1,op2,borrowin,vl); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2(vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2(op1,op2,borrowin,vl); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4(vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4(op1,op2,borrowin,vl); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8(vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8(op1,op2,borrowin,vl); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1(vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1(op1,op2,borrowin,vl); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2(vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2(op1,op2,borrowin,vl); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4(vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4(op1,op2,borrowin,vl); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8(vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8(op1,op2,borrowin,vl); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8(vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8(op1,op2,borrowin,vl); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4(vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4(op1,op2,borrowin,vl); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2(vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2(op1,op2,borrowin,vl); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1(vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1(op1,op2,borrowin,vl); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2(vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2(op1,op2,borrowin,vl); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4(vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4(op1,op2,borrowin,vl); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8(vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8(op1,op2,borrowin,vl); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4(vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4(op1,op2,borrowin,vl); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2(vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2(op1,op2,borrowin,vl); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1(vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1(op1,op2,borrowin,vl); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2(vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2(op1,op2,borrowin,vl); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4(vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4(op1,op2,borrowin,vl); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8(vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8(op1,op2,borrowin,vl); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2(vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2(op1,op2,borrowin,vl); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1(vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1(op1,op2,borrowin,vl); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2(vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2(op1,op2,borrowin,vl); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4(vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4(op1,op2,borrowin,vl); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8(vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8(op1,op2,borrowin,vl); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1(vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1(op1,op2,borrowin,vl); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2(vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2(op1,op2,borrowin,vl); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4(vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4(op1,op2,borrowin,vl); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8(vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8(op1,op2,borrowin,vl); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv64-2.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv64-2.c new file mode 100644 index 000000000000..6603e2a1746e --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv64-2.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8(vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8(op1,op2,borrowin,31); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4(vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4(op1,op2,borrowin,31); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2(vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2(op1,op2,borrowin,31); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1(vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1(op1,op2,borrowin,31); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2(vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2(op1,op2,borrowin,31); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4(vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4(op1,op2,borrowin,31); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8(vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8(op1,op2,borrowin,31); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4(vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4(op1,op2,borrowin,31); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2(vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2(op1,op2,borrowin,31); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1(vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1(op1,op2,borrowin,31); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2(vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2(op1,op2,borrowin,31); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4(vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4(op1,op2,borrowin,31); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8(vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8(op1,op2,borrowin,31); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2(vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2(op1,op2,borrowin,31); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1(vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1(op1,op2,borrowin,31); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2(vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2(op1,op2,borrowin,31); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4(vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4(op1,op2,borrowin,31); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8(vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8(op1,op2,borrowin,31); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1(vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1(op1,op2,borrowin,31); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2(vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2(op1,op2,borrowin,31); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4(vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4(op1,op2,borrowin,31); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8(vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8(op1,op2,borrowin,31); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8(vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8(op1,op2,borrowin,31); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4(vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4(op1,op2,borrowin,31); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2(vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2(op1,op2,borrowin,31); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1(vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1(op1,op2,borrowin,31); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2(vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2(op1,op2,borrowin,31); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4(vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4(op1,op2,borrowin,31); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8(vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8(op1,op2,borrowin,31); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4(vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4(op1,op2,borrowin,31); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2(vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2(op1,op2,borrowin,31); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1(vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1(op1,op2,borrowin,31); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2(vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2(op1,op2,borrowin,31); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4(vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4(op1,op2,borrowin,31); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8(vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8(op1,op2,borrowin,31); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2(vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2(op1,op2,borrowin,31); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1(vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1(op1,op2,borrowin,31); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2(vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2(op1,op2,borrowin,31); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4(vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4(op1,op2,borrowin,31); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8(vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8(op1,op2,borrowin,31); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1(vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1(op1,op2,borrowin,31); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2(vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2(op1,op2,borrowin,31); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4(vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4(op1,op2,borrowin,31); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8(vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8(op1,op2,borrowin,31); +} + + + +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv64-3.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv64-3.c new file mode 100644 index 000000000000..4a1d42d71e44 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_rv64-3.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8(vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8(op1,op2,borrowin,32); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4(vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4(op1,op2,borrowin,32); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2(vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2(op1,op2,borrowin,32); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1(vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1(op1,op2,borrowin,32); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2(vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2(op1,op2,borrowin,32); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4(vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4(op1,op2,borrowin,32); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8(vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8(op1,op2,borrowin,32); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4(vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4(op1,op2,borrowin,32); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2(vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2(op1,op2,borrowin,32); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1(vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1(op1,op2,borrowin,32); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2(vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2(op1,op2,borrowin,32); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4(vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4(op1,op2,borrowin,32); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8(vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8(op1,op2,borrowin,32); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2(vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2(op1,op2,borrowin,32); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1(vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1(op1,op2,borrowin,32); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2(vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2(op1,op2,borrowin,32); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4(vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4(op1,op2,borrowin,32); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8(vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8(op1,op2,borrowin,32); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1(vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1(op1,op2,borrowin,32); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2(vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2(op1,op2,borrowin,32); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4(vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4(op1,op2,borrowin,32); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8(vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8(op1,op2,borrowin,32); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8(vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8(op1,op2,borrowin,32); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4(vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4(op1,op2,borrowin,32); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2(vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2(op1,op2,borrowin,32); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1(vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1(op1,op2,borrowin,32); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2(vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2(op1,op2,borrowin,32); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4(vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4(op1,op2,borrowin,32); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8(vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8(op1,op2,borrowin,32); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4(vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4(op1,op2,borrowin,32); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2(vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2(op1,op2,borrowin,32); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1(vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1(op1,op2,borrowin,32); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2(vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2(op1,op2,borrowin,32); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4(vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4(op1,op2,borrowin,32); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8(vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8(op1,op2,borrowin,32); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2(vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2(op1,op2,borrowin,32); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1(vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1(op1,op2,borrowin,32); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2(vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2(op1,op2,borrowin,32); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4(vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4(op1,op2,borrowin,32); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8(vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8(op1,op2,borrowin,32); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1(vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1(op1,op2,borrowin,32); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2(vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2(op1,op2,borrowin,32); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4(vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4(op1,op2,borrowin,32); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8(vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8(op1,op2,borrowin,32); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m1,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m2,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m4,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m8,\s*t[au],\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-1.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-1.c new file mode 100644 index 000000000000..11adfa8a7ea3 --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-1.c @@ -0,0 +1,289 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv32gcv -mabi=ilp32d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8_tu(vint8mf8_t maskedoff,vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4_tu(vint8mf4_t maskedoff,vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2_tu(vint8mf2_t maskedoff,vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1_tu(vint8m1_t maskedoff,vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2_tu(vint8m2_t maskedoff,vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4_tu(vint8m4_t maskedoff,vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8_tu(vint8m8_t maskedoff,vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4_tu(vint16mf4_t maskedoff,vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2_tu(vint16mf2_t maskedoff,vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1_tu(vint16m1_t maskedoff,vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2_tu(vint16m2_t maskedoff,vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4_tu(vint16m4_t maskedoff,vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8_tu(vint16m8_t maskedoff,vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2_tu(vint32mf2_t maskedoff,vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1_tu(vint32m1_t maskedoff,vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2_tu(vint32m2_t maskedoff,vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4_tu(vint32m4_t maskedoff,vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8_tu(vint32m8_t maskedoff,vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1_tu(vint64m1_t maskedoff,vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2_tu(vint64m2_t maskedoff,vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4_tu(vint64m4_t maskedoff,vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8_tu(vint64m8_t maskedoff,vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8_tu(vuint8mf8_t maskedoff,vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4_tu(vuint8mf4_t maskedoff,vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2_tu(vuint8mf2_t maskedoff,vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1_tu(vuint8m1_t maskedoff,vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2_tu(vuint8m2_t maskedoff,vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4_tu(vuint8m4_t maskedoff,vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8_tu(vuint8m8_t maskedoff,vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4_tu(vuint16mf4_t maskedoff,vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2_tu(vuint16mf2_t maskedoff,vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1_tu(vuint16m1_t maskedoff,vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2_tu(vuint16m2_t maskedoff,vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4_tu(vuint16m4_t maskedoff,vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8_tu(vuint16m8_t maskedoff,vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2_tu(vuint32mf2_t maskedoff,vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1_tu(vuint32m1_t maskedoff,vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2_tu(vuint32m2_t maskedoff,vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4_tu(vuint32m4_t maskedoff,vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8_tu(vuint32m8_t maskedoff,vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1_tu(vuint64m1_t maskedoff,vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2_tu(vuint64m2_t maskedoff,vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4_tu(vuint64m4_t maskedoff,vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8_tu(vuint64m8_t maskedoff,vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 8 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-2.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-2.c new file mode 100644 index 000000000000..72ce96b7600f --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-2.c @@ -0,0 +1,289 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv32gcv -mabi=ilp32d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8_tu(vint8mf8_t maskedoff,vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4_tu(vint8mf4_t maskedoff,vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2_tu(vint8mf2_t maskedoff,vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1_tu(vint8m1_t maskedoff,vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2_tu(vint8m2_t maskedoff,vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4_tu(vint8m4_t maskedoff,vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8_tu(vint8m8_t maskedoff,vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4_tu(vint16mf4_t maskedoff,vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2_tu(vint16mf2_t maskedoff,vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1_tu(vint16m1_t maskedoff,vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2_tu(vint16m2_t maskedoff,vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4_tu(vint16m4_t maskedoff,vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8_tu(vint16m8_t maskedoff,vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2_tu(vint32mf2_t maskedoff,vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1_tu(vint32m1_t maskedoff,vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2_tu(vint32m2_t maskedoff,vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4_tu(vint32m4_t maskedoff,vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8_tu(vint32m8_t maskedoff,vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1_tu(vint64m1_t maskedoff,vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2_tu(vint64m2_t maskedoff,vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4_tu(vint64m4_t maskedoff,vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8_tu(vint64m8_t maskedoff,vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8_tu(vuint8mf8_t maskedoff,vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4_tu(vuint8mf4_t maskedoff,vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2_tu(vuint8mf2_t maskedoff,vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1_tu(vuint8m1_t maskedoff,vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2_tu(vuint8m2_t maskedoff,vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4_tu(vuint8m4_t maskedoff,vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8_tu(vuint8m8_t maskedoff,vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4_tu(vuint16mf4_t maskedoff,vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2_tu(vuint16mf2_t maskedoff,vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1_tu(vuint16m1_t maskedoff,vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2_tu(vuint16m2_t maskedoff,vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4_tu(vuint16m4_t maskedoff,vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8_tu(vuint16m8_t maskedoff,vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2_tu(vuint32mf2_t maskedoff,vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1_tu(vuint32m1_t maskedoff,vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2_tu(vuint32m2_t maskedoff,vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4_tu(vuint32m4_t maskedoff,vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8_tu(vuint32m8_t maskedoff,vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1_tu(vuint64m1_t maskedoff,vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2_tu(vuint64m2_t maskedoff,vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4_tu(vuint64m4_t maskedoff,vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8_tu(vuint64m8_t maskedoff,vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8_tu(maskedoff,op1,op2,borrowin,31); +} + + + +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 8 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-3.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-3.c new file mode 100644 index 000000000000..501101a7c2dc --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv32-3.c @@ -0,0 +1,289 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv32gcv -mabi=ilp32d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8_tu(vint8mf8_t maskedoff,vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4_tu(vint8mf4_t maskedoff,vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2_tu(vint8mf2_t maskedoff,vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1_tu(vint8m1_t maskedoff,vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2_tu(vint8m2_t maskedoff,vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4_tu(vint8m4_t maskedoff,vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8_tu(vint8m8_t maskedoff,vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4_tu(vint16mf4_t maskedoff,vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2_tu(vint16mf2_t maskedoff,vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1_tu(vint16m1_t maskedoff,vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2_tu(vint16m2_t maskedoff,vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4_tu(vint16m4_t maskedoff,vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8_tu(vint16m8_t maskedoff,vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2_tu(vint32mf2_t maskedoff,vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1_tu(vint32m1_t maskedoff,vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2_tu(vint32m2_t maskedoff,vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4_tu(vint32m4_t maskedoff,vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8_tu(vint32m8_t maskedoff,vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1_tu(vint64m1_t maskedoff,vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2_tu(vint64m2_t maskedoff,vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4_tu(vint64m4_t maskedoff,vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8_tu(vint64m8_t maskedoff,vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8_tu(vuint8mf8_t maskedoff,vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4_tu(vuint8mf4_t maskedoff,vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2_tu(vuint8mf2_t maskedoff,vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1_tu(vuint8m1_t maskedoff,vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2_tu(vuint8m2_t maskedoff,vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4_tu(vuint8m4_t maskedoff,vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8_tu(vuint8m8_t maskedoff,vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4_tu(vuint16mf4_t maskedoff,vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2_tu(vuint16mf2_t maskedoff,vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1_tu(vuint16m1_t maskedoff,vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2_tu(vuint16m2_t maskedoff,vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4_tu(vuint16m4_t maskedoff,vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8_tu(vuint16m8_t maskedoff,vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2_tu(vuint32mf2_t maskedoff,vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1_tu(vuint32m1_t maskedoff,vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2_tu(vuint32m2_t maskedoff,vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4_tu(vuint32m4_t maskedoff,vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8_tu(vuint32m8_t maskedoff,vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1_tu(vuint64m1_t maskedoff,vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2_tu(vuint64m2_t maskedoff,vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4_tu(vuint64m4_t maskedoff,vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8_tu(vuint64m8_t maskedoff,vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8_tu(maskedoff,op1,op2,borrowin,32); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsbc\.vvm\s+v[0-9]+,\s*v[0-9]+,\s*v[0-9]+,\s*v[0-9]+} 8 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-1.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-1.c new file mode 100644 index 000000000000..5822314efa3e --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-1.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8_tu(vint8mf8_t maskedoff,vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4_tu(vint8mf4_t maskedoff,vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2_tu(vint8mf2_t maskedoff,vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1_tu(vint8m1_t maskedoff,vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2_tu(vint8m2_t maskedoff,vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4_tu(vint8m4_t maskedoff,vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8_tu(vint8m8_t maskedoff,vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4_tu(vint16mf4_t maskedoff,vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2_tu(vint16mf2_t maskedoff,vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1_tu(vint16m1_t maskedoff,vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2_tu(vint16m2_t maskedoff,vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4_tu(vint16m4_t maskedoff,vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8_tu(vint16m8_t maskedoff,vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2_tu(vint32mf2_t maskedoff,vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1_tu(vint32m1_t maskedoff,vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2_tu(vint32m2_t maskedoff,vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4_tu(vint32m4_t maskedoff,vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8_tu(vint32m8_t maskedoff,vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1_tu(vint64m1_t maskedoff,vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2_tu(vint64m2_t maskedoff,vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4_tu(vint64m4_t maskedoff,vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8_tu(vint64m8_t maskedoff,vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8_tu(vuint8mf8_t maskedoff,vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4_tu(vuint8mf4_t maskedoff,vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2_tu(vuint8mf2_t maskedoff,vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1_tu(vuint8m1_t maskedoff,vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2_tu(vuint8m2_t maskedoff,vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4_tu(vuint8m4_t maskedoff,vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8_tu(vuint8m8_t maskedoff,vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4_tu(vuint16mf4_t maskedoff,vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2_tu(vuint16mf2_t maskedoff,vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1_tu(vuint16m1_t maskedoff,vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2_tu(vuint16m2_t maskedoff,vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4_tu(vuint16m4_t maskedoff,vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8_tu(vuint16m8_t maskedoff,vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2_tu(vuint32mf2_t maskedoff,vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1_tu(vuint32m1_t maskedoff,vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2_tu(vuint32m2_t maskedoff,vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4_tu(vuint32m4_t maskedoff,vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8_tu(vuint32m8_t maskedoff,vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1_tu(vuint64m1_t maskedoff,vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2_tu(vuint64m2_t maskedoff,vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4_tu(vuint64m4_t maskedoff,vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4_tu(maskedoff,op1,op2,borrowin,vl); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8_tu(vuint64m8_t maskedoff,vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8_tu(maskedoff,op1,op2,borrowin,vl); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-2.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-2.c new file mode 100644 index 000000000000..a8894fd484db --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-2.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8_tu(vint8mf8_t maskedoff,vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4_tu(vint8mf4_t maskedoff,vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2_tu(vint8mf2_t maskedoff,vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1_tu(vint8m1_t maskedoff,vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2_tu(vint8m2_t maskedoff,vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4_tu(vint8m4_t maskedoff,vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8_tu(vint8m8_t maskedoff,vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4_tu(vint16mf4_t maskedoff,vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2_tu(vint16mf2_t maskedoff,vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1_tu(vint16m1_t maskedoff,vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2_tu(vint16m2_t maskedoff,vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4_tu(vint16m4_t maskedoff,vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8_tu(vint16m8_t maskedoff,vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2_tu(vint32mf2_t maskedoff,vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1_tu(vint32m1_t maskedoff,vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2_tu(vint32m2_t maskedoff,vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4_tu(vint32m4_t maskedoff,vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8_tu(vint32m8_t maskedoff,vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1_tu(vint64m1_t maskedoff,vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2_tu(vint64m2_t maskedoff,vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4_tu(vint64m4_t maskedoff,vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8_tu(vint64m8_t maskedoff,vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8_tu(vuint8mf8_t maskedoff,vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4_tu(vuint8mf4_t maskedoff,vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2_tu(vuint8mf2_t maskedoff,vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1_tu(vuint8m1_t maskedoff,vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2_tu(vuint8m2_t maskedoff,vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4_tu(vuint8m4_t maskedoff,vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8_tu(vuint8m8_t maskedoff,vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4_tu(vuint16mf4_t maskedoff,vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2_tu(vuint16mf2_t maskedoff,vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1_tu(vuint16m1_t maskedoff,vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2_tu(vuint16m2_t maskedoff,vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4_tu(vuint16m4_t maskedoff,vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8_tu(vuint16m8_t maskedoff,vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2_tu(vuint32mf2_t maskedoff,vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1_tu(vuint32m1_t maskedoff,vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2_tu(vuint32m2_t maskedoff,vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4_tu(vuint32m4_t maskedoff,vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8_tu(vuint32m8_t maskedoff,vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1_tu(vuint64m1_t maskedoff,vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2_tu(vuint64m2_t maskedoff,vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4_tu(vuint64m4_t maskedoff,vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4_tu(maskedoff,op1,op2,borrowin,31); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8_tu(vuint64m8_t maskedoff,vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8_tu(maskedoff,op1,op2,borrowin,31); +} + + + +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e8,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e16,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e32,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetivli\s+zero,\s*31,\s*e64,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-3.c b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-3.c new file mode 100644 index 000000000000..4e17ef285a2a --- /dev/null +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/vsbc_vxm_tu_rv64-3.c @@ -0,0 +1,292 @@ +/* { dg-do compile } */ +/* { dg-options "-march=rv64gcv -mabi=lp64d -O3 -fno-schedule-insns -fno-schedule-insns2" } */ + +#include "riscv_vector.h" + +vint8mf8_t test___riscv_vsbc_vxm_i8mf8_tu(vint8mf8_t maskedoff,vint8mf8_t op1,int8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8mf4_t test___riscv_vsbc_vxm_i8mf4_tu(vint8mf4_t maskedoff,vint8mf4_t op1,int8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8mf2_t test___riscv_vsbc_vxm_i8mf2_tu(vint8mf2_t maskedoff,vint8mf2_t op1,int8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m1_t test___riscv_vsbc_vxm_i8m1_tu(vint8m1_t maskedoff,vint8m1_t op1,int8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m2_t test___riscv_vsbc_vxm_i8m2_tu(vint8m2_t maskedoff,vint8m2_t op1,int8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m4_t test___riscv_vsbc_vxm_i8m4_tu(vint8m4_t maskedoff,vint8m4_t op1,int8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint8m8_t test___riscv_vsbc_vxm_i8m8_tu(vint8m8_t maskedoff,vint8m8_t op1,int8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i8m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16mf4_t test___riscv_vsbc_vxm_i16mf4_tu(vint16mf4_t maskedoff,vint16mf4_t op1,int16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16mf2_t test___riscv_vsbc_vxm_i16mf2_tu(vint16mf2_t maskedoff,vint16mf2_t op1,int16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m1_t test___riscv_vsbc_vxm_i16m1_tu(vint16m1_t maskedoff,vint16m1_t op1,int16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m2_t test___riscv_vsbc_vxm_i16m2_tu(vint16m2_t maskedoff,vint16m2_t op1,int16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m4_t test___riscv_vsbc_vxm_i16m4_tu(vint16m4_t maskedoff,vint16m4_t op1,int16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint16m8_t test___riscv_vsbc_vxm_i16m8_tu(vint16m8_t maskedoff,vint16m8_t op1,int16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i16m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32mf2_t test___riscv_vsbc_vxm_i32mf2_tu(vint32mf2_t maskedoff,vint32mf2_t op1,int32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m1_t test___riscv_vsbc_vxm_i32m1_tu(vint32m1_t maskedoff,vint32m1_t op1,int32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m2_t test___riscv_vsbc_vxm_i32m2_tu(vint32m2_t maskedoff,vint32m2_t op1,int32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m4_t test___riscv_vsbc_vxm_i32m4_tu(vint32m4_t maskedoff,vint32m4_t op1,int32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint32m8_t test___riscv_vsbc_vxm_i32m8_tu(vint32m8_t maskedoff,vint32m8_t op1,int32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i32m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m1_t test___riscv_vsbc_vxm_i64m1_tu(vint64m1_t maskedoff,vint64m1_t op1,int64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m2_t test___riscv_vsbc_vxm_i64m2_tu(vint64m2_t maskedoff,vint64m2_t op1,int64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m4_t test___riscv_vsbc_vxm_i64m4_tu(vint64m4_t maskedoff,vint64m4_t op1,int64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vint64m8_t test___riscv_vsbc_vxm_i64m8_tu(vint64m8_t maskedoff,vint64m8_t op1,int64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_i64m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8mf8_t test___riscv_vsbc_vxm_u8mf8_tu(vuint8mf8_t maskedoff,vuint8mf8_t op1,uint8_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8mf4_t test___riscv_vsbc_vxm_u8mf4_tu(vuint8mf4_t maskedoff,vuint8mf4_t op1,uint8_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8mf2_t test___riscv_vsbc_vxm_u8mf2_tu(vuint8mf2_t maskedoff,vuint8mf2_t op1,uint8_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m1_t test___riscv_vsbc_vxm_u8m1_tu(vuint8m1_t maskedoff,vuint8m1_t op1,uint8_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m2_t test___riscv_vsbc_vxm_u8m2_tu(vuint8m2_t maskedoff,vuint8m2_t op1,uint8_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m4_t test___riscv_vsbc_vxm_u8m4_tu(vuint8m4_t maskedoff,vuint8m4_t op1,uint8_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint8m8_t test___riscv_vsbc_vxm_u8m8_tu(vuint8m8_t maskedoff,vuint8m8_t op1,uint8_t op2,vbool1_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u8m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16mf4_t test___riscv_vsbc_vxm_u16mf4_tu(vuint16mf4_t maskedoff,vuint16mf4_t op1,uint16_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16mf2_t test___riscv_vsbc_vxm_u16mf2_tu(vuint16mf2_t maskedoff,vuint16mf2_t op1,uint16_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m1_t test___riscv_vsbc_vxm_u16m1_tu(vuint16m1_t maskedoff,vuint16m1_t op1,uint16_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m2_t test___riscv_vsbc_vxm_u16m2_tu(vuint16m2_t maskedoff,vuint16m2_t op1,uint16_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m4_t test___riscv_vsbc_vxm_u16m4_tu(vuint16m4_t maskedoff,vuint16m4_t op1,uint16_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint16m8_t test___riscv_vsbc_vxm_u16m8_tu(vuint16m8_t maskedoff,vuint16m8_t op1,uint16_t op2,vbool2_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u16m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32mf2_t test___riscv_vsbc_vxm_u32mf2_tu(vuint32mf2_t maskedoff,vuint32mf2_t op1,uint32_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32mf2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m1_t test___riscv_vsbc_vxm_u32m1_tu(vuint32m1_t maskedoff,vuint32m1_t op1,uint32_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m2_t test___riscv_vsbc_vxm_u32m2_tu(vuint32m2_t maskedoff,vuint32m2_t op1,uint32_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m4_t test___riscv_vsbc_vxm_u32m4_tu(vuint32m4_t maskedoff,vuint32m4_t op1,uint32_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint32m8_t test___riscv_vsbc_vxm_u32m8_tu(vuint32m8_t maskedoff,vuint32m8_t op1,uint32_t op2,vbool4_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u32m8_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m1_t test___riscv_vsbc_vxm_u64m1_tu(vuint64m1_t maskedoff,vuint64m1_t op1,uint64_t op2,vbool64_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m1_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m2_t test___riscv_vsbc_vxm_u64m2_tu(vuint64m2_t maskedoff,vuint64m2_t op1,uint64_t op2,vbool32_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m2_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m4_t test___riscv_vsbc_vxm_u64m4_tu(vuint64m4_t maskedoff,vuint64m4_t op1,uint64_t op2,vbool16_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m4_tu(maskedoff,op1,op2,borrowin,32); +} + + +vuint64m8_t test___riscv_vsbc_vxm_u64m8_tu(vuint64m8_t maskedoff,vuint64m8_t op1,uint64_t op2,vbool8_t borrowin,size_t vl) +{ + return __riscv_vsbc_vxm_u64m8_tu(maskedoff,op1,op2,borrowin,32); +} + + + +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e8,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e16,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*mf2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e32,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m1,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m2,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m4,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */ +/* { dg-final { scan-assembler-times {vsetvli\s+zero,\s*[a-x0-9]+,\s*e64,\s*m8,\s*tu,\s*m[au]\s+vsbc\.vxm\s+v[0-9]+,\s*v[0-9]+,\s*[a-x0-9]+,\s*v[0-9]+} 2 } } */