https://gcc.gnu.org/g:daeb32580f74d0dde79a1eb79b4bec9a6f444f74

commit daeb32580f74d0dde79a1eb79b4bec9a6f444f74
Author: Pan Li <pan2...@intel.com>
Date:   Fri Jun 14 09:49:22 2024 +0800

    RISC-V: Add testcases for scalar unsigned SAT_SUB form 7
    
    After the middle-end support the form 7 of unsigned SAT_SUB and
    the RISC-V backend implement the scalar .SAT_SUB, add more test
    case to cover the form 7 of unsigned .SAT_SUB.
    
    Form 7:
      #define SAT_SUB_U_7(T) \
      T sat_sub_u_7_##T (T x, T y) \
      { \
        T ret; \
        T overflow = __builtin_sub_overflow (x, y, &ret); \
        return ret & (T)(overflow - 1); \
      }
    
    Passed the rv64gcv fully regression test.
    
    gcc/testsuite/ChangeLog:
    
            * gcc.target/riscv/sat_arith.h: Add helper macro for test.
            * gcc.target/riscv/sat_u_sub-25.c: New test.
            * gcc.target/riscv/sat_u_sub-26.c: New test.
            * gcc.target/riscv/sat_u_sub-27.c: New test.
            * gcc.target/riscv/sat_u_sub-28.c: New test.
            * gcc.target/riscv/sat_u_sub-run-25.c: New test.
            * gcc.target/riscv/sat_u_sub-run-26.c: New test.
            * gcc.target/riscv/sat_u_sub-run-27.c: New test.
            * gcc.target/riscv/sat_u_sub-run-28.c: New test.
    
    Signed-off-by: Pan Li <pan2...@intel.com>
    (cherry picked from commit 1d37b81cbfb4b5ead7112855ef6c215ad1042456)

Diff:
---
 gcc/testsuite/gcc.target/riscv/sat_arith.h        | 10 +++++++++
 gcc/testsuite/gcc.target/riscv/sat_u_sub-25.c     | 18 ++++++++++++++++
 gcc/testsuite/gcc.target/riscv/sat_u_sub-26.c     | 19 +++++++++++++++++
 gcc/testsuite/gcc.target/riscv/sat_u_sub-27.c     | 18 ++++++++++++++++
 gcc/testsuite/gcc.target/riscv/sat_u_sub-28.c     | 17 +++++++++++++++
 gcc/testsuite/gcc.target/riscv/sat_u_sub-run-25.c | 25 +++++++++++++++++++++++
 gcc/testsuite/gcc.target/riscv/sat_u_sub-run-26.c | 25 +++++++++++++++++++++++
 gcc/testsuite/gcc.target/riscv/sat_u_sub-run-27.c | 25 +++++++++++++++++++++++
 gcc/testsuite/gcc.target/riscv/sat_u_sub-run-28.c | 25 +++++++++++++++++++++++
 9 files changed, 182 insertions(+)

diff --git a/gcc/testsuite/gcc.target/riscv/sat_arith.h 
b/gcc/testsuite/gcc.target/riscv/sat_arith.h
index 4296235cf62..bde054d5c9d 100644
--- a/gcc/testsuite/gcc.target/riscv/sat_arith.h
+++ b/gcc/testsuite/gcc.target/riscv/sat_arith.h
@@ -120,12 +120,22 @@ sat_u_sub_##T##_fmt_6 (T x, T y) \
   return x <= y ? 0 : x - y;     \
 }
 
+#define DEF_SAT_U_SUB_FMT_7(T)                      \
+T __attribute__((noinline))                         \
+sat_u_sub_##T##_fmt_7 (T x, T y)                    \
+{                                                   \
+  T ret;                                            \
+  T overflow = __builtin_sub_overflow (x, y, &ret); \
+  return ret & (T)(overflow - 1);                   \
+}
+
 #define RUN_SAT_U_SUB_FMT_1(T, x, y) sat_u_sub_##T##_fmt_1(x, y)
 #define RUN_SAT_U_SUB_FMT_2(T, x, y) sat_u_sub_##T##_fmt_2(x, y)
 #define RUN_SAT_U_SUB_FMT_3(T, x, y) sat_u_sub_##T##_fmt_3(x, y)
 #define RUN_SAT_U_SUB_FMT_4(T, x, y) sat_u_sub_##T##_fmt_4(x, y)
 #define RUN_SAT_U_SUB_FMT_5(T, x, y) sat_u_sub_##T##_fmt_5(x, y)
 #define RUN_SAT_U_SUB_FMT_6(T, x, y) sat_u_sub_##T##_fmt_6(x, y)
+#define RUN_SAT_U_SUB_FMT_7(T, x, y) sat_u_sub_##T##_fmt_7(x, y)
 
 #define DEF_VEC_SAT_U_SUB_FMT_1(T)                                   \
 void __attribute__((noinline))                                       \
diff --git a/gcc/testsuite/gcc.target/riscv/sat_u_sub-25.c 
b/gcc/testsuite/gcc.target/riscv/sat_u_sub-25.c
new file mode 100644
index 00000000000..8780ef0c8f1
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/sat_u_sub-25.c
@@ -0,0 +1,18 @@
+/* { dg-do compile } */
+/* { dg-options "-march=rv64gc -mabi=lp64d -O3 -fdump-rtl-expand-details 
-fno-schedule-insns -fno-schedule-insns2" } */
+/* { dg-final { check-function-bodies "**" "" } } */
+
+#include "sat_arith.h"
+
+/*
+** sat_u_sub_uint8_t_fmt_7:
+** sub\s+[atx][0-9]+,\s*a0,\s*a1
+** sltu\s+[atx][0-9]+,\s*[atx][0-9]+,\s*[atx][0-9]+
+** addi\s+[atx][0-9]+,\s*[atx][0-9]+,\s*-1
+** and\s+a0,\s*a0,\s*[atx][0-9]+
+** andi\s+a0,\s*a0,\s*0xff
+** ret
+*/
+DEF_SAT_U_SUB_FMT_7(uint8_t)
+
+/* { dg-final { scan-rtl-dump-times ".SAT_SUB " 2 "expand" } } */
diff --git a/gcc/testsuite/gcc.target/riscv/sat_u_sub-26.c 
b/gcc/testsuite/gcc.target/riscv/sat_u_sub-26.c
new file mode 100644
index 00000000000..f720f619d09
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/sat_u_sub-26.c
@@ -0,0 +1,19 @@
+/* { dg-do compile } */
+/* { dg-options "-march=rv64gc -mabi=lp64d -O3 -fdump-rtl-expand-details 
-fno-schedule-insns -fno-schedule-insns2" } */
+/* { dg-final { check-function-bodies "**" "" } } */
+
+#include "sat_arith.h"
+
+/*
+** sat_u_sub_uint16_t_fmt_7:
+** sub\s+[atx][0-9]+,\s*a0,\s*a1
+** sltu\s+[atx][0-9]+,\s*a0,\s*a1
+** addi\s+[atx][0-9]+,\s*[atx][0-9]+,\s*-1
+** and\s+a0,\s*[atx][0-9]+,\s*[atx][0-9]+
+** slli\s+a0,\s*a0,\s*48
+** srli\s+a0,\s*a0,\s*48
+** ret
+*/
+DEF_SAT_U_SUB_FMT_7(uint16_t)
+
+/* { dg-final { scan-rtl-dump-times ".SAT_SUB " 2 "expand" } } */
diff --git a/gcc/testsuite/gcc.target/riscv/sat_u_sub-27.c 
b/gcc/testsuite/gcc.target/riscv/sat_u_sub-27.c
new file mode 100644
index 00000000000..779c9247e02
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/sat_u_sub-27.c
@@ -0,0 +1,18 @@
+/* { dg-do compile } */
+/* { dg-options "-march=rv64gc -mabi=lp64d -O3 -fdump-rtl-expand-details 
-fno-schedule-insns -fno-schedule-insns2" } */
+/* { dg-final { check-function-bodies "**" "" } } */
+
+#include "sat_arith.h"
+
+/*
+** sat_u_sub_uint32_t_fmt_7:
+** sub\s+[atx][0-9]+,\s*a0,\s*a1
+** sltu\s+[atx][0-9]+,\s*a0,\s*a1
+** addi\s+[atx][0-9]+,\s*[atx][0-9]+,\s*-1
+** and\s+a0,\s*[atx][0-9]+,\s*[atx][0-9]+
+** sext.w\s+a0,\s*a0
+** ret
+*/
+DEF_SAT_U_SUB_FMT_7(uint32_t)
+
+/* { dg-final { scan-rtl-dump-times ".SAT_SUB " 2 "expand" } } */
diff --git a/gcc/testsuite/gcc.target/riscv/sat_u_sub-28.c 
b/gcc/testsuite/gcc.target/riscv/sat_u_sub-28.c
new file mode 100644
index 00000000000..86b80dbccd5
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/sat_u_sub-28.c
@@ -0,0 +1,17 @@
+/* { dg-do compile } */
+/* { dg-options "-march=rv64gc -mabi=lp64d -O3 -fdump-rtl-expand-details 
-fno-schedule-insns -fno-schedule-insns2" } */
+/* { dg-final { check-function-bodies "**" "" } } */
+
+#include "sat_arith.h"
+
+/*
+** sat_u_sub_uint64_t_fmt_7:
+** sub\s+[atx][0-9]+,\s*a0,\s*a1
+** sltu\s+[atx][0-9]+,\s*a0,\s*a1
+** addi\s+a0,\s*[atx][0-9]+,\s*-1
+** and\s+a0,\s*[atx][0-9]+,\s*[atx][0-9]+
+** ret
+*/
+DEF_SAT_U_SUB_FMT_7(uint64_t)
+
+/* { dg-final { scan-rtl-dump-times ".SAT_SUB " 2 "expand" } } */
diff --git a/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-25.c 
b/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-25.c
new file mode 100644
index 00000000000..d101d2897c9
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-25.c
@@ -0,0 +1,25 @@
+/* { dg-do run { target { riscv_v } } } */
+/* { dg-additional-options "-std=c99" } */
+
+#include "sat_arith.h"
+
+#define T              uint8_t
+#define RUN_SAT_BINARY RUN_SAT_U_SUB_FMT_7
+
+DEF_SAT_U_SUB_FMT_7(T)
+
+T test_data[][3] = {
+  /* arg_0, arg_1, expect */
+  {      0,     0,      0, },
+  {      0,     1,      0, },
+  {      1,     1,      0, },
+  {    255,   254,      1, },
+  {    255,   255,      0, },
+  {    254,   255,      0, },
+  {    253,   254,      0, },
+  {      0,   255,      0, },
+  {      1,   255,      0, },
+  {     32,     5,     27, },
+};
+
+#include "scalar_sat_binary.h"
diff --git a/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-26.c 
b/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-26.c
new file mode 100644
index 00000000000..10c65fec97d
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-26.c
@@ -0,0 +1,25 @@
+/* { dg-do run { target { riscv_v } } } */
+/* { dg-additional-options "-std=c99" } */
+
+#include "sat_arith.h"
+
+#define T              uint16_t
+#define RUN_SAT_BINARY RUN_SAT_U_SUB_FMT_7
+
+DEF_SAT_U_SUB_FMT_7(T)
+
+T test_data[][3] = {
+  /* arg_0, arg_1, expect */
+  {      0,     0,      0, },
+  {      0,     1,      0, },
+  {      1,     1,      0, },
+  {  65535, 65534,      1, },
+  {  65535, 65535,      0, },
+  {  65534, 65535,      0, },
+  {  65533, 65534,      0, },
+  {      0, 65535,      0, },
+  {      1, 65535,      0, },
+  {     35,     5,     30, },
+};
+
+#include "scalar_sat_binary.h"
diff --git a/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-27.c 
b/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-27.c
new file mode 100644
index 00000000000..e3b4dde683d
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-27.c
@@ -0,0 +1,25 @@
+/* { dg-do run { target { riscv_v } } } */
+/* { dg-additional-options "-std=c99" } */
+
+#include "sat_arith.h"
+
+#define T              uint32_t
+#define RUN_SAT_BINARY RUN_SAT_U_SUB_FMT_7
+
+DEF_SAT_U_SUB_FMT_7(T)
+
+T test_data[][3] = {
+  /*     arg_0,      arg_1,      expect */
+  {          0,          0,           0, },
+  {          0,          1,           0, },
+  {          1,          1,           0, },
+  { 4294967295, 4294967294,           1, },
+  { 4294967295, 4294967295,           0, },
+  { 4294967294, 4294967295,           0, },
+  { 4294967293, 4294967294,           0, },
+  {          1, 4294967295,           0, },
+  {          2, 4294967295,           0, },
+  {          5,          1,           4, },
+};
+
+#include "scalar_sat_binary.h"
diff --git a/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-28.c 
b/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-28.c
new file mode 100644
index 00000000000..6e93fcff032
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/sat_u_sub-run-28.c
@@ -0,0 +1,25 @@
+/* { dg-do run { target { riscv_v } } } */
+/* { dg-additional-options "-std=c99" } */
+
+#include "sat_arith.h"
+
+#define T              uint64_t
+#define RUN_SAT_BINARY RUN_SAT_U_SUB_FMT_7
+
+DEF_SAT_U_SUB_FMT_7(T)
+
+T test_data[][3] = {
+  /*                arg_0,                 arg_1,                 expect */
+  {                     0,                     0,                      0, },
+  {                     0,                     1,                      0, },
+  {                     1,                     1,                      0, },
+  { 18446744073709551615u, 18446744073709551614u,                      1, },
+  { 18446744073709551615u, 18446744073709551615u,                      0, },
+  { 18446744073709551614u, 18446744073709551615u,                      0, },
+  { 18446744073709551613u, 18446744073709551614u,                      0, },
+  {                     0, 18446744073709551615u,                      0, },
+  {                     1, 18446744073709551615u,                      0, },
+  {                    43,                    11,                     32, },
+};
+
+#include "scalar_sat_binary.h"

Reply via email to