public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] riscv: thead: Fix failing XTheadCondMov tests (indirect-rv[32|64])
@ 2023-07-11  4:44 Christoph Muellner
  2023-07-12  2:05 ` Jeff Law
  0 siblings, 1 reply; 8+ messages in thread
From: Christoph Muellner @ 2023-07-11  4:44 UTC (permalink / raw)
  To: gcc-patches, Kito Cheng, Jeff Law, Jim Wilson, Palmer Dabbelt,
	Andrew Waterman, Philipp Tomsich, Liao Shihua, Lehua Ding,
	JuzheZhong
  Cc: Christoph Müllner

From: Christoph Müllner <christoph.muellner@vrull.eu>

Recently, two identical XTheadCondMov tests have been added, which both fail.
Let's fix that by changing the following:
* Merge both files into one (no need for separate tests for rv32 and rv64)
* Drop unrelated attribute check test (we already test for `th.mveqz`
  and `th.mvnez` instructions, so there is little additional value)
* Fix the pattern to allow matching

gcc/testsuite/ChangeLog:

	* gcc.target/riscv/xtheadcondmov-indirect-rv32.c: Moved to...
	* gcc.target/riscv/xtheadcondmov-indirect.c: ...here.
	* gcc.target/riscv/xtheadcondmov-indirect-rv64.c: Removed.

Fixes: a1806f0918c0 ("RISC-V: Optimize TARGET_XTHEADCONDMOV")
Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
---
 .../riscv/xtheadcondmov-indirect-rv32.c       | 104 ---------------
 .../riscv/xtheadcondmov-indirect-rv64.c       | 104 ---------------
 .../gcc.target/riscv/xtheadcondmov-indirect.c | 118 ++++++++++++++++++
 3 files changed, 118 insertions(+), 208 deletions(-)
 delete mode 100644 gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect-rv32.c
 delete mode 100644 gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect-rv64.c
 create mode 100644 gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect.c

diff --git a/gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect-rv32.c b/gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect-rv32.c
deleted file mode 100644
index d0df59c5e1c..00000000000
--- a/gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect-rv32.c
+++ /dev/null
@@ -1,104 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -march=rv32gc_xtheadcondmov -mabi=ilp32 -mriscv-attribute" } */
-/* { dg-skip-if "" { *-*-* } {"-O0" "-O1" "-Os" "-Og" "-O3" "-Oz" "-flto"} } */
-/* { dg-final { check-function-bodies "**" ""  } } */
-
-/*
-**ConEmv_imm_imm_reg:
-**	addi\t\s*[a-x0-9]+,\s*[a-x0-9]+,-1000+
-**	li\t\s*[a-x0-9]+,10+
-**	th.mvnez\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConEmv_imm_imm_reg(int x, int y){
-  if (x == 1000) return 10;
-  return y;
-}
-
-/*
-**ConEmv_imm_reg_reg:
-**	addi\t\s*[a-x0-9]+,\s*[a-x0-9]+,-1000+
-**	th.mveqz\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	mv\t\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConEmv_imm_reg_reg(int x, int y, int z){
-  if (x == 1000) return y;
-  return z;
-}
-
-/*
-**ConEmv_reg_imm_reg:
-**	sub\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	li\t\s*[a-x0-9]+,10+
-**	th.mvnez\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConEmv_reg_imm_reg(int x, int y, int z){
-  if (x == y) return 10;
-  return z;
-}
-
-/*
-**ConEmv_reg_reg_reg:
-**	sub\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	th.mveqz\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	mv\t\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConEmv_reg_reg_reg(int x, int y, int z, int n){
-  if (x == y) return z;
-  return n;
-}
-
-/*
-**ConNmv_imm_imm_reg:
-**	addi\t\s*[a-x0-9]+,\s*[a-x0-9]+,-1000+
-**	li\t\s*[a-x0-9]+,9998336+
-**	addi\t\s*[a-x0-9]+,\s*[a-x0-9]+,1664+
-**	th.mveqz\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConNmv_imm_imm_reg(int x, int y){
-  if (x != 1000) return 10000000;
-  return y;
-}
-
-/*
-**ConNmv_imm_reg_reg:
-**	addi\t\s*[a-x0-9]+,\s*[a-x0-9]+,-1000+
-**	th.mvnez\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	mv\t\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConNmv_imm_reg_reg(int x, int y, int z){
-  if (x != 1000) return y;
-  return z;
-}
-
-/*
-**ConNmv_reg_imm_reg:
-**	sub\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	li\t\s*[a-x0-9]+,10+
-**	th.mveqz\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConNmv_reg_imm_reg(int x, int y, int z){
-  if (x != y) return 10;
-  return z;
-}
-
-/*
-**ConNmv_reg_reg_reg:
-**	sub\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	th.mvnez\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	mv\t\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConNmv_reg_reg_reg(int x, int y, int z, int n){
-  if (x != y) return z;
-  return n;
-}
-
-
-/* { dg-final { scan-assembler ".attribute arch, \"rv32i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0\"" } } */
diff --git a/gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect-rv64.c b/gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect-rv64.c
deleted file mode 100644
index cc971a75ace..00000000000
--- a/gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect-rv64.c
+++ /dev/null
@@ -1,104 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -march=rv64gc_xtheadcondmov -mabi=lp64d -mriscv-attribute" } */
-/* { dg-skip-if "" { *-*-* } {"-O0" "-O1" "-Os" "-Og" "-O3" "-Oz" "-flto"} } */
-/* { dg-final { check-function-bodies "**" ""  } } */
-
-/*
-**ConEmv_imm_imm_reg:
-**	addi\t\s*[a-x0-9]+,\s*[a-x0-9]+,-1000+
-**	li\t\s*[a-x0-9]+,10+
-**	th.mvnez\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConEmv_imm_imm_reg(int x, int y){
-  if (x == 1000) return 10;
-  return y;
-}
-
-/*
-**ConEmv_imm_reg_reg:
-**	addi\t\s*[a-x0-9]+,\s*[a-x0-9]+,-1000+
-**	th.mveqz\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	mv\t\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConEmv_imm_reg_reg(int x, int y, int z){
-  if (x == 1000) return y;
-  return z;
-}
-
-/*
-**ConEmv_reg_imm_reg:
-**	sub\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	li\t\s*[a-x0-9]+,10+
-**	th.mvnez\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConEmv_reg_imm_reg(int x, int y, int z){
-  if (x == y) return 10;
-  return z;
-}
-
-/*
-**ConEmv_reg_reg_reg:
-**	sub\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	th.mveqz\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	mv\t\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConEmv_reg_reg_reg(int x, int y, int z, int n){
-  if (x == y) return z;
-  return n;
-}
-
-/*
-**ConNmv_imm_imm_reg:
-**	addi\t\s*[a-x0-9]+,\s*[a-x0-9]+,-1000+
-**	li\t\s*[a-x0-9]+,9998336+
-**	addi\t\s*[a-x0-9]+,\s*[a-x0-9]+,1664+
-**	th.mveqz\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConNmv_imm_imm_reg(int x, int y){
-  if (x != 1000) return 10000000;
-  return y;
-}
-
-/*
-**ConNmv_imm_reg_reg:
-**	addi\t\s*[a-x0-9]+,\s*[a-x0-9]+,-1000+
-**	th.mvnez\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	mv\t\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConNmv_imm_reg_reg(int x, int y, int z){
-  if (x != 1000) return y;
-  return z;
-}
-
-/*
-**ConNmv_reg_imm_reg:
-**	sub\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	li\t\s*[a-x0-9]+,10+
-**	th.mveqz\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConNmv_reg_imm_reg(int x, int y, int z){
-  if (x != y) return 10;
-  return z;
-}
-
-/*
-**ConNmv_reg_reg_reg:
-**	sub\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	th.mvnez\t\s*[a-x0-9]+,\s*[a-x0-9]+,\s*[a-x0-9]+
-**	mv\t\s*[a-x0-9]+,\s*[a-x0-9]+
-**	ret
-*/
-int ConNmv_reg_reg_reg(int x, int y, int z, int n){
-  if (x != y) return z;
-  return n;
-}
-
-
-/* { dg-final { scan-assembler ".attribute arch, \"rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0\"" } } */
diff --git a/gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect.c b/gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect.c
new file mode 100644
index 00000000000..8292999d0c7
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/xtheadcondmov-indirect.c
@@ -0,0 +1,118 @@
+/* { dg-do compile } */
+/* { dg-options "-march=rv32gc_xtheadcondmov" { target { rv32 } } } */
+/* { dg-options "-march=rv64gc_xtheadcondmov" { target { rv64 } } } */
+/* { dg-skip-if "" { *-*-* } {"-O0" "-Os" "-Og" "-Oz" "-flto" } } */
+/* { dg-final { check-function-bodies "**" "" } } */
+
+/*
+** ConEmv_imm_imm_reg:
+**	addi	a[0-9]+,a[0-9]+,-1000
+**	li	a[0-9]+,10
+**	th\.mvnez	a[0-9]+,a[0-9]+,a[0-9]+
+**	ret
+*/
+int ConEmv_imm_imm_reg(int x, int y)
+{
+  if (x == 1000)
+    return 10;
+  return y;
+}
+
+/*
+** ConEmv_imm_reg_reg:
+**	addi	a[0-9]+,a[0-9]+,-1000
+**	th.mveqz	a[0-9]+,a[0-9]+,a[0-9]+
+**	mv	a[0-9]+,a[0-9]+
+**	ret
+*/
+int ConEmv_imm_reg_reg(int x, int y, int z)
+{
+  if (x == 1000)
+    return y;
+  return z;
+}
+
+/*
+** ConEmv_reg_imm_reg:
+**	sub	a[0-9]+,a[0-9]+,a[0-9]+
+**	li	a[0-9]+,10
+**	th.mvnez	a[0-9]+,a[0-9]+,a[0-9]+
+**	ret
+*/
+int ConEmv_reg_imm_reg(int x, int y, int z)
+{
+  if (x == y)
+    return 10;
+  return z;
+}
+
+/*
+** ConEmv_reg_reg_reg:
+**	sub	a[0-9]+,a[0-9]+,a[0-9]+
+**	th.mveqz	a[0-9]+,a[0-9]+,a[0-9]+
+**	mv	a[0-9]+,a[0-9]+
+**	ret
+*/
+int ConEmv_reg_reg_reg(int x, int y, int z, int n)
+{
+  if (x == y)
+    return z;
+  return n;
+}
+
+/*
+** ConNmv_imm_imm_reg:
+**	addi	a[0-9]+,a[0-9]+,-1000+
+**	li	a[0-9]+,9998336+
+**	addi	a[0-9]+,a[0-9]+,1664+
+**	th.mveqz	a[0-9]+,a[0-9]+,a[0-9]+
+**	ret
+*/
+int ConNmv_imm_imm_reg(int x, int y)
+{
+  if (x != 1000)
+    return 10000000;
+  return y;
+}
+
+/*
+**ConNmv_imm_reg_reg:
+**	addi	a[0-9]+,a[0-9]+,-1000+
+**	th.mvnez	a[0-9]+,a[0-9]+,a[0-9]+
+**	mv	a[0-9]+,a[0-9]+
+**	ret
+*/
+int ConNmv_imm_reg_reg(int x, int y, int z)
+{
+  if (x != 1000)
+    return y;
+  return z;
+}
+
+/*
+**ConNmv_reg_imm_reg:
+**	sub	a[0-9]+,a[0-9]+,a[0-9]+
+**	li	a[0-9]+,10+
+**	th.mveqz	a[0-9]+,a[0-9]+,a[0-9]+
+**	ret
+*/
+int ConNmv_reg_imm_reg(int x, int y, int z)
+{
+  if (x != y)
+    return 10;
+  return z;
+}
+
+/*
+**ConNmv_reg_reg_reg:
+**	sub	a[0-9]+,a[0-9]+,a[0-9]+
+**	th.mvnez	a[0-9]+,a[0-9]+,a[0-9]+
+**	mv	a[0-9]+,a[0-9]+
+**	ret
+*/
+int ConNmv_reg_reg_reg(int x, int y, int z, int n)
+{
+  if (x != y)
+    return z;
+  return n;
+}
-- 
2.41.0


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] riscv: thead: Fix failing XTheadCondMov tests (indirect-rv[32|64])
  2023-07-11  4:44 [PATCH] riscv: thead: Fix failing XTheadCondMov tests (indirect-rv[32|64]) Christoph Muellner
@ 2023-07-12  2:05 ` Jeff Law
  2023-07-12 12:48   ` Christoph Müllner
  0 siblings, 1 reply; 8+ messages in thread
From: Jeff Law @ 2023-07-12  2:05 UTC (permalink / raw)
  To: Christoph Muellner, gcc-patches, Kito Cheng, Jim Wilson,
	Palmer Dabbelt, Andrew Waterman, Philipp Tomsich, Liao Shihua,
	Lehua Ding, JuzheZhong



On 7/10/23 22:44, Christoph Muellner wrote:
> From: Christoph Müllner <christoph.muellner@vrull.eu>
> 
> Recently, two identical XTheadCondMov tests have been added, which both fail.
> Let's fix that by changing the following:
> * Merge both files into one (no need for separate tests for rv32 and rv64)
> * Drop unrelated attribute check test (we already test for `th.mveqz`
>    and `th.mvnez` instructions, so there is little additional value)
> * Fix the pattern to allow matching
> 
> gcc/testsuite/ChangeLog:
> 
> 	* gcc.target/riscv/xtheadcondmov-indirect-rv32.c: Moved to...
> 	* gcc.target/riscv/xtheadcondmov-indirect.c: ...here.
> 	* gcc.target/riscv/xtheadcondmov-indirect-rv64.c: Removed.
I thought this stuff got fixed recently.  Certainly happy to see the 
files merged though.  Here's what I got from the July 4 run:

> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O0
> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O1
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2  (test for excess errors)
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConEmv_imm_imm_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConEmv_imm_reg_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConEmv_reg_imm_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConEmv_reg_reg_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConNmv_imm_imm_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConNmv_imm_reg_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConNmv_reg_imm_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConNmv_reg_reg_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   scan-assembler .attribute arch, "rv32i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O3 -g
> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -Os
> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none
> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects
> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O0
> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O1
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2  (test for excess errors)
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConEmv_imm_imm_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConEmv_imm_reg_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConEmv_reg_imm_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConEmv_reg_reg_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConNmv_imm_imm_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConNmv_imm_reg_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConNmv_reg_imm_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConNmv_reg_reg_reg
> PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   scan-assembler .attribute arch, "rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O3 -g
> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -Os
> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none
> UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects


jeff

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] riscv: thead: Fix failing XTheadCondMov tests (indirect-rv[32|64])
  2023-07-12  2:05 ` Jeff Law
@ 2023-07-12 12:48   ` Christoph Müllner
  2023-07-12 14:05     ` Jeff Law
  0 siblings, 1 reply; 8+ messages in thread
From: Christoph Müllner @ 2023-07-12 12:48 UTC (permalink / raw)
  To: Jeff Law
  Cc: gcc-patches, Kito Cheng, Jim Wilson, Palmer Dabbelt,
	Andrew Waterman, Philipp Tomsich, Liao Shihua, Lehua Ding,
	JuzheZhong

On Wed, Jul 12, 2023 at 4:05 AM Jeff Law <jeffreyalaw@gmail.com> wrote:
>
>
>
> On 7/10/23 22:44, Christoph Muellner wrote:
> > From: Christoph Müllner <christoph.muellner@vrull.eu>
> >
> > Recently, two identical XTheadCondMov tests have been added, which both fail.
> > Let's fix that by changing the following:
> > * Merge both files into one (no need for separate tests for rv32 and rv64)
> > * Drop unrelated attribute check test (we already test for `th.mveqz`
> >    and `th.mvnez` instructions, so there is little additional value)
> > * Fix the pattern to allow matching
> >
> > gcc/testsuite/ChangeLog:
> >
> >       * gcc.target/riscv/xtheadcondmov-indirect-rv32.c: Moved to...
> >       * gcc.target/riscv/xtheadcondmov-indirect.c: ...here.
> >       * gcc.target/riscv/xtheadcondmov-indirect-rv64.c: Removed.
> I thought this stuff got fixed recently.  Certainly happy to see the
> files merged though.  Here's what I got from the July 4 run:

I have the following with a GCC master from today
(a454325bea77a0dd79415480d48233a7c296bc0a):

FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2
scan-assembler .attribute arch,
"rv32i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2
scan-assembler .attribute arch,
"rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"

With this patch the fails are gone.

BR
Christoph

>
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O0
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O1
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2  (test for excess errors)
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConEmv_imm_imm_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConEmv_imm_reg_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConEmv_reg_imm_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConEmv_reg_reg_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConNmv_imm_imm_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConNmv_imm_reg_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConNmv_reg_imm_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   check-function-bodies ConNmv_reg_reg_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2   scan-assembler .attribute arch, "rv32i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O3 -g
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -Os
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O0
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O1
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2  (test for excess errors)
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConEmv_imm_imm_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConEmv_imm_reg_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConEmv_reg_imm_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConEmv_reg_reg_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConNmv_imm_imm_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConNmv_imm_reg_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConNmv_reg_imm_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   check-function-bodies ConNmv_reg_reg_reg
> > PASS: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2   scan-assembler .attribute arch, "rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O3 -g
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -Os
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none
> > UNSUPPORTED: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects
>
>
> jeff

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] riscv: thead: Fix failing XTheadCondMov tests (indirect-rv[32|64])
  2023-07-12 12:48   ` Christoph Müllner
@ 2023-07-12 14:05     ` Jeff Law
  2023-07-12 14:07       ` Philipp Tomsich
  0 siblings, 1 reply; 8+ messages in thread
From: Jeff Law @ 2023-07-12 14:05 UTC (permalink / raw)
  To: Christoph Müllner
  Cc: gcc-patches, Kito Cheng, Jim Wilson, Palmer Dabbelt,
	Andrew Waterman, Philipp Tomsich, Liao Shihua, Lehua Ding,
	JuzheZhong



On 7/12/23 06:48, Christoph Müllner wrote:
> On Wed, Jul 12, 2023 at 4:05 AM Jeff Law <jeffreyalaw@gmail.com> wrote:
>>
>>
>>
>> On 7/10/23 22:44, Christoph Muellner wrote:
>>> From: Christoph Müllner <christoph.muellner@vrull.eu>
>>>
>>> Recently, two identical XTheadCondMov tests have been added, which both fail.
>>> Let's fix that by changing the following:
>>> * Merge both files into one (no need for separate tests for rv32 and rv64)
>>> * Drop unrelated attribute check test (we already test for `th.mveqz`
>>>     and `th.mvnez` instructions, so there is little additional value)
>>> * Fix the pattern to allow matching
>>>
>>> gcc/testsuite/ChangeLog:
>>>
>>>        * gcc.target/riscv/xtheadcondmov-indirect-rv32.c: Moved to...
>>>        * gcc.target/riscv/xtheadcondmov-indirect.c: ...here.
>>>        * gcc.target/riscv/xtheadcondmov-indirect-rv64.c: Removed.
>> I thought this stuff got fixed recently.  Certainly happy to see the
>> files merged though.  Here's what I got from the July 4 run:
> 
> I have the following with a GCC master from today
> (a454325bea77a0dd79415480d48233a7c296bc0a):
> 
> FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2
> scan-assembler .attribute arch,
> "rv32i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2
> scan-assembler .attribute arch,
> "rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> 
> With this patch the fails are gone.
Then it's fine with me :-)

jeff

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] riscv: thead: Fix failing XTheadCondMov tests (indirect-rv[32|64])
  2023-07-12 14:05     ` Jeff Law
@ 2023-07-12 14:07       ` Philipp Tomsich
  2023-07-12 14:08         ` Jeff Law
  2023-07-12 14:09         ` Kito Cheng
  0 siblings, 2 replies; 8+ messages in thread
From: Philipp Tomsich @ 2023-07-12 14:07 UTC (permalink / raw)
  To: Jeff Law
  Cc: Christoph Müllner, gcc-patches, Kito Cheng, Jim Wilson,
	Palmer Dabbelt, Andrew Waterman, Liao Shihua, Lehua Ding,
	JuzheZhong

[-- Attachment #1: Type: text/plain, Size: 1796 bytes --]

On Wed, 12 Jul 2023 at 16:05, Jeff Law <jeffreyalaw@gmail.com> wrote:

>
>
> On 7/12/23 06:48, Christoph Müllner wrote:
> > On Wed, Jul 12, 2023 at 4:05 AM Jeff Law <jeffreyalaw@gmail.com> wrote:
> >>
> >>
> >>
> >> On 7/10/23 22:44, Christoph Muellner wrote:
> >>> From: Christoph Müllner <christoph.muellner@vrull.eu>
> >>>
> >>> Recently, two identical XTheadCondMov tests have been added, which
> both fail.
> >>> Let's fix that by changing the following:
> >>> * Merge both files into one (no need for separate tests for rv32 and
> rv64)
> >>> * Drop unrelated attribute check test (we already test for `th.mveqz`
> >>>     and `th.mvnez` instructions, so there is little additional value)
> >>> * Fix the pattern to allow matching
> >>>
> >>> gcc/testsuite/ChangeLog:
> >>>
> >>>        * gcc.target/riscv/xtheadcondmov-indirect-rv32.c: Moved to...
> >>>        * gcc.target/riscv/xtheadcondmov-indirect.c: ...here.
> >>>        * gcc.target/riscv/xtheadcondmov-indirect-rv64.c: Removed.
> >> I thought this stuff got fixed recently.  Certainly happy to see the
> >> files merged though.  Here's what I got from the July 4 run:
> >
> > I have the following with a GCC master from today
> > (a454325bea77a0dd79415480d48233a7c296bc0a):
> >
> > FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2
> > scan-assembler .attribute arch,
> > "rv32i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> > FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2
> > scan-assembler .attribute arch,
> > "rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> >
> > With this patch the fails are gone.
> Then it's fine with me :-)


For the avoidance of all doubt: could I hear an "OK"?

Thanks,
Philipp.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] riscv: thead: Fix failing XTheadCondMov tests (indirect-rv[32|64])
  2023-07-12 14:07       ` Philipp Tomsich
@ 2023-07-12 14:08         ` Jeff Law
  2023-07-12 14:45           ` Philipp Tomsich
  2023-07-12 14:09         ` Kito Cheng
  1 sibling, 1 reply; 8+ messages in thread
From: Jeff Law @ 2023-07-12 14:08 UTC (permalink / raw)
  To: Philipp Tomsich
  Cc: Christoph Müllner, gcc-patches, Kito Cheng, Jim Wilson,
	Palmer Dabbelt, Andrew Waterman, Liao Shihua, Lehua Ding,
	JuzheZhong



On 7/12/23 08:07, Philipp Tomsich wrote:
> 
> 
> On Wed, 12 Jul 2023 at 16:05, Jeff Law <jeffreyalaw@gmail.com 
> <mailto:jeffreyalaw@gmail.com>> wrote:
> 
> 
> 
>     On 7/12/23 06:48, Christoph Müllner wrote:
>      > On Wed, Jul 12, 2023 at 4:05 AM Jeff Law <jeffreyalaw@gmail.com
>     <mailto:jeffreyalaw@gmail.com>> wrote:
>      >>
>      >>
>      >>
>      >> On 7/10/23 22:44, Christoph Muellner wrote:
>      >>> From: Christoph Müllner <christoph.muellner@vrull.eu
>     <mailto:christoph.muellner@vrull.eu>>
>      >>>
>      >>> Recently, two identical XTheadCondMov tests have been added,
>     which both fail.
>      >>> Let's fix that by changing the following:
>      >>> * Merge both files into one (no need for separate tests for
>     rv32 and rv64)
>      >>> * Drop unrelated attribute check test (we already test for
>     `th.mveqz`
>      >>>     and `th.mvnez` instructions, so there is little additional
>     value)
>      >>> * Fix the pattern to allow matching
>      >>>
>      >>> gcc/testsuite/ChangeLog:
>      >>>
>      >>>        * gcc.target/riscv/xtheadcondmov-indirect-rv32.c: Moved
>     to...
>      >>>        * gcc.target/riscv/xtheadcondmov-indirect.c: ...here.
>      >>>        * gcc.target/riscv/xtheadcondmov-indirect-rv64.c: Removed.
>      >> I thought this stuff got fixed recently.  Certainly happy to see the
>      >> files merged though.  Here's what I got from the July 4 run:
>      >
>      > I have the following with a GCC master from today
>      > (a454325bea77a0dd79415480d48233a7c296bc0a):
>      >
>      > FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2
>      > scan-assembler .attribute arch,
>      >
>     "rv32i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
>      > FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2
>      > scan-assembler .attribute arch,
>      >
>     "rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
>      >
>      > With this patch the fails are gone.
>     Then it's fine with me :-)
> 
> 
> For the avoidance of all doubt: could I hear an "OK"?
OK for the trunk.
jeff

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] riscv: thead: Fix failing XTheadCondMov tests (indirect-rv[32|64])
  2023-07-12 14:07       ` Philipp Tomsich
  2023-07-12 14:08         ` Jeff Law
@ 2023-07-12 14:09         ` Kito Cheng
  1 sibling, 0 replies; 8+ messages in thread
From: Kito Cheng @ 2023-07-12 14:09 UTC (permalink / raw)
  To: Philipp Tomsich
  Cc: Andrew Waterman, Christoph Müllner, Jeff Law, Jim Wilson,
	JuzheZhong, Kito Cheng, Lehua Ding, Liao Shihua, Palmer Dabbelt,
	gcc-patches

[-- Attachment #1: Type: text/plain, Size: 1994 bytes --]

Ok

Philipp Tomsich <philipp.tomsich@vrull.eu>於 2023年7月12日 週三,22:08寫道:

> On Wed, 12 Jul 2023 at 16:05, Jeff Law <jeffreyalaw@gmail.com> wrote:
>
> >
> >
> > On 7/12/23 06:48, Christoph Müllner wrote:
> > > On Wed, Jul 12, 2023 at 4:05 AM Jeff Law <jeffreyalaw@gmail.com>
> wrote:
> > >>
> > >>
> > >>
> > >> On 7/10/23 22:44, Christoph Muellner wrote:
> > >>> From: Christoph Müllner <christoph.muellner@vrull.eu>
> > >>>
> > >>> Recently, two identical XTheadCondMov tests have been added, which
> > both fail.
> > >>> Let's fix that by changing the following:
> > >>> * Merge both files into one (no need for separate tests for rv32 and
> > rv64)
> > >>> * Drop unrelated attribute check test (we already test for `th.mveqz`
> > >>>     and `th.mvnez` instructions, so there is little additional value)
> > >>> * Fix the pattern to allow matching
> > >>>
> > >>> gcc/testsuite/ChangeLog:
> > >>>
> > >>>        * gcc.target/riscv/xtheadcondmov-indirect-rv32.c: Moved to...
> > >>>        * gcc.target/riscv/xtheadcondmov-indirect.c: ...here.
> > >>>        * gcc.target/riscv/xtheadcondmov-indirect-rv64.c: Removed.
> > >> I thought this stuff got fixed recently.  Certainly happy to see the
> > >> files merged though.  Here's what I got from the July 4 run:
> > >
> > > I have the following with a GCC master from today
> > > (a454325bea77a0dd79415480d48233a7c296bc0a):
> > >
> > > FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2
> > > scan-assembler .attribute arch,
> > >
> "rv32i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> > > FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2
> > > scan-assembler .attribute arch,
> > >
> "rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> > >
> > > With this patch the fails are gone.
> > Then it's fine with me :-)
>
>
> For the avoidance of all doubt: could I hear an "OK"?
>
> Thanks,
> Philipp.
>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] riscv: thead: Fix failing XTheadCondMov tests (indirect-rv[32|64])
  2023-07-12 14:08         ` Jeff Law
@ 2023-07-12 14:45           ` Philipp Tomsich
  0 siblings, 0 replies; 8+ messages in thread
From: Philipp Tomsich @ 2023-07-12 14:45 UTC (permalink / raw)
  To: Jeff Law
  Cc: Christoph Müllner, gcc-patches, Kito Cheng, Jim Wilson,
	Palmer Dabbelt, Andrew Waterman, Liao Shihua, Lehua Ding,
	JuzheZhong

[-- Attachment #1: Type: text/plain, Size: 2430 bytes --]

Thanks, applied to trunk!

Philipp.

On Wed, 12 Jul 2023 at 16:08, Jeff Law <jeffreyalaw@gmail.com> wrote:

>
>
> On 7/12/23 08:07, Philipp Tomsich wrote:
> >
> >
> > On Wed, 12 Jul 2023 at 16:05, Jeff Law <jeffreyalaw@gmail.com
> > <mailto:jeffreyalaw@gmail.com>> wrote:
> >
> >
> >
> >     On 7/12/23 06:48, Christoph Müllner wrote:
> >      > On Wed, Jul 12, 2023 at 4:05 AM Jeff Law <jeffreyalaw@gmail.com
> >     <mailto:jeffreyalaw@gmail.com>> wrote:
> >      >>
> >      >>
> >      >>
> >      >> On 7/10/23 22:44, Christoph Muellner wrote:
> >      >>> From: Christoph Müllner <christoph.muellner@vrull.eu
> >     <mailto:christoph.muellner@vrull.eu>>
> >      >>>
> >      >>> Recently, two identical XTheadCondMov tests have been added,
> >     which both fail.
> >      >>> Let's fix that by changing the following:
> >      >>> * Merge both files into one (no need for separate tests for
> >     rv32 and rv64)
> >      >>> * Drop unrelated attribute check test (we already test for
> >     `th.mveqz`
> >      >>>     and `th.mvnez` instructions, so there is little additional
> >     value)
> >      >>> * Fix the pattern to allow matching
> >      >>>
> >      >>> gcc/testsuite/ChangeLog:
> >      >>>
> >      >>>        * gcc.target/riscv/xtheadcondmov-indirect-rv32.c: Moved
> >     to...
> >      >>>        * gcc.target/riscv/xtheadcondmov-indirect.c: ...here.
> >      >>>        * gcc.target/riscv/xtheadcondmov-indirect-rv64.c:
> Removed.
> >      >> I thought this stuff got fixed recently.  Certainly happy to see
> the
> >      >> files merged though.  Here's what I got from the July 4 run:
> >      >
> >      > I have the following with a GCC master from today
> >      > (a454325bea77a0dd79415480d48233a7c296bc0a):
> >      >
> >      > FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv32.c   -O2
> >      > scan-assembler .attribute arch,
> >      >
> >
>  "rv32i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> >      > FAIL: gcc.target/riscv/xtheadcondmov-indirect-rv64.c   -O2
> >      > scan-assembler .attribute arch,
> >      >
> >
>  "rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_xtheadcondmov1p0"
> >      >
> >      > With this patch the fails are gone.
> >     Then it's fine with me :-)
> >
> >
> > For the avoidance of all doubt: could I hear an "OK"?
> OK for the trunk.
> jeff
>

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-07-12 14:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-11  4:44 [PATCH] riscv: thead: Fix failing XTheadCondMov tests (indirect-rv[32|64]) Christoph Muellner
2023-07-12  2:05 ` Jeff Law
2023-07-12 12:48   ` Christoph Müllner
2023-07-12 14:05     ` Jeff Law
2023-07-12 14:07       ` Philipp Tomsich
2023-07-12 14:08         ` Jeff Law
2023-07-12 14:45           ` Philipp Tomsich
2023-07-12 14:09         ` Kito Cheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).