public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] RISC-V: Fix cbo.zero expansion for rv32
@ 2024-05-15  6:48 Christoph Müllner
  2024-05-15  7:14 ` Kito Cheng
  2024-05-15 13:05 ` Jeff Law
  0 siblings, 2 replies; 5+ messages in thread
From: Christoph Müllner @ 2024-05-15  6:48 UTC (permalink / raw)
  To: gcc-patches, Kito Cheng, Jim Wilson, Palmer Dabbelt,
	Andrew Waterman, Philipp Tomsich, Jeff Law, Vineet Gupta
  Cc: Christoph Müllner

Emitting a DI pattern won't find a match for rv32 and manifests in
the failing test case gcc.target/riscv/cmo-zicboz-zic64-1.c.
Let's fix this in the expansion and also address the different
code that gets generated for rv32/rv64.

gcc/ChangeLog:

	* config/riscv/riscv-string.cc (riscv_expand_block_clear_zicboz_zic64b):
	Fix expansion for rv32.

gcc/testsuite/ChangeLog:

	* gcc.target/riscv/cmo-zicboz-zic64-1.c: Fix for rv32.

Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
---
 gcc/config/riscv/riscv-string.cc              |  5 ++-
 .../gcc.target/riscv/cmo-zicboz-zic64-1.c     | 36 ++++++-------------
 2 files changed, 14 insertions(+), 27 deletions(-)

diff --git a/gcc/config/riscv/riscv-string.cc b/gcc/config/riscv/riscv-string.cc
index 87f5fdee3c1..b515f44d17a 100644
--- a/gcc/config/riscv/riscv-string.cc
+++ b/gcc/config/riscv/riscv-string.cc
@@ -827,7 +827,10 @@ riscv_expand_block_clear_zicboz_zic64b (rtx dest, rtx length)
     {
       rtx mem = adjust_address (dest, BLKmode, offset);
       rtx addr = force_reg (Pmode, XEXP (mem, 0));
-      emit_insn (gen_riscv_zero_di (addr));
+      if (TARGET_64BIT)
+	emit_insn (gen_riscv_zero_di (addr));
+      else
+	emit_insn (gen_riscv_zero_si (addr));
       offset += cbo_bytes;
     }
 
diff --git a/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c b/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c
index c2d79eb7ae6..9192b391b11 100644
--- a/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c
+++ b/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c
@@ -1,25 +1,9 @@
 /* { dg-do compile } */
-/* { dg-options "-march=rv64gc_zic64b_zicboz" { target { rv64 } } } */
 /* { dg-options "-march=rv32gc_zic64b_zicboz" { target { rv32 } } } */
+/* { dg-options "-march=rv64gc_zic64b_zicboz" { target { rv64 } } } */
 /* { dg-skip-if "" { *-*-* } {"-O0" "-Os" "-Og" "-Oz" "-flto" } } */
-/* { dg-final { check-function-bodies "**" "" } } */
-/* { dg-allow-blank-lines-in-output 1 } */
 
-/*
-**clear_buf_123:
-**    ...
-**    cbo\.zero\t0\(a[0-9]+\)
-**    sd\tzero,64\(a[0-9]+\)
-**    sd\tzero,72\(a[0-9]+\)
-**    sd\tzero,80\(a[0-9]+\)
-**    sd\tzero,88\(a[0-9]+\)
-**    sd\tzero,96\(a[0-9]+\)
-**    sd\tzero,104\(a[0-9]+\)
-**    sd\tzero,112\(a[0-9]+\)
-**    sh\tzero,120\(a[0-9]+\)
-**    sb\tzero,122\(a[0-9]+\)
-**    ...
-*/
+// 1x cbo.zero, 7x sd (rv64) or 14x sw (rv32), 1x sh, 1x sb
 int
 clear_buf_123 (void *p)
 {
@@ -27,17 +11,17 @@ clear_buf_123 (void *p)
   __builtin_memset (p, 0, 123);
 }
 
-/*
-**clear_buf_128:
-**    ...
-**    cbo\.zero\t0\(a[0-9]+\)
-**    addi\ta[0-9]+,a[0-9]+,64
-**    cbo\.zero\t0\(a[0-9]+\)
-**    ...
-*/
+// 2x cbo.zero, 1x addi 64
 int
 clear_buf_128 (void *p)
 {
   p = __builtin_assume_aligned(p, 64);
   __builtin_memset (p, 0, 128);
 }
+
+/* { dg-final { scan-assembler-times "cbo\.zero\t" 3 } } */
+/* { dg-final { scan-assembler-times "addi\ta\[0-9\]+,a\[0-9\]+,64" 1 } } */
+/* { dg-final { scan-assembler-times "sd\t" 7 { target { rv64 } } } } */
+/* { dg-final { scan-assembler-times "sw\t" 14 { target { rv32 } } } } */
+/* { dg-final { scan-assembler-times "sh\t" 1 } } */
+/* { dg-final { scan-assembler-times "sb\t" 1 } } */
-- 
2.44.0


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

* Re: [PATCH] RISC-V: Fix cbo.zero expansion for rv32
  2024-05-15  6:48 [PATCH] RISC-V: Fix cbo.zero expansion for rv32 Christoph Müllner
@ 2024-05-15  7:14 ` Kito Cheng
  2024-05-15  7:28   ` Christoph Müllner
  2024-05-15 13:05 ` Jeff Law
  1 sibling, 1 reply; 5+ messages in thread
From: Kito Cheng @ 2024-05-15  7:14 UTC (permalink / raw)
  To: Christoph Müllner
  Cc: gcc-patches, Jim Wilson, Palmer Dabbelt, Andrew Waterman,
	Philipp Tomsich, Jeff Law, Vineet Gupta

LGTM :)

On Wed, May 15, 2024 at 2:48 PM Christoph Müllner
<christoph.muellner@vrull.eu> wrote:
>
> Emitting a DI pattern won't find a match for rv32 and manifests in
> the failing test case gcc.target/riscv/cmo-zicboz-zic64-1.c.
> Let's fix this in the expansion and also address the different
> code that gets generated for rv32/rv64.
>
> gcc/ChangeLog:
>
>         * config/riscv/riscv-string.cc (riscv_expand_block_clear_zicboz_zic64b):
>         Fix expansion for rv32.
>
> gcc/testsuite/ChangeLog:
>
>         * gcc.target/riscv/cmo-zicboz-zic64-1.c: Fix for rv32.
>
> Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
> ---
>  gcc/config/riscv/riscv-string.cc              |  5 ++-
>  .../gcc.target/riscv/cmo-zicboz-zic64-1.c     | 36 ++++++-------------
>  2 files changed, 14 insertions(+), 27 deletions(-)
>
> diff --git a/gcc/config/riscv/riscv-string.cc b/gcc/config/riscv/riscv-string.cc
> index 87f5fdee3c1..b515f44d17a 100644
> --- a/gcc/config/riscv/riscv-string.cc
> +++ b/gcc/config/riscv/riscv-string.cc
> @@ -827,7 +827,10 @@ riscv_expand_block_clear_zicboz_zic64b (rtx dest, rtx length)
>      {
>        rtx mem = adjust_address (dest, BLKmode, offset);
>        rtx addr = force_reg (Pmode, XEXP (mem, 0));
> -      emit_insn (gen_riscv_zero_di (addr));
> +      if (TARGET_64BIT)
> +       emit_insn (gen_riscv_zero_di (addr));
> +      else
> +       emit_insn (gen_riscv_zero_si (addr));
>        offset += cbo_bytes;
>      }
>
> diff --git a/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c b/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c
> index c2d79eb7ae6..9192b391b11 100644
> --- a/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c
> +++ b/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c
> @@ -1,25 +1,9 @@
>  /* { dg-do compile } */
> -/* { dg-options "-march=rv64gc_zic64b_zicboz" { target { rv64 } } } */
>  /* { dg-options "-march=rv32gc_zic64b_zicboz" { target { rv32 } } } */
> +/* { dg-options "-march=rv64gc_zic64b_zicboz" { target { rv64 } } } */
>  /* { dg-skip-if "" { *-*-* } {"-O0" "-Os" "-Og" "-Oz" "-flto" } } */
> -/* { dg-final { check-function-bodies "**" "" } } */
> -/* { dg-allow-blank-lines-in-output 1 } */
>
> -/*
> -**clear_buf_123:
> -**    ...
> -**    cbo\.zero\t0\(a[0-9]+\)
> -**    sd\tzero,64\(a[0-9]+\)
> -**    sd\tzero,72\(a[0-9]+\)
> -**    sd\tzero,80\(a[0-9]+\)
> -**    sd\tzero,88\(a[0-9]+\)
> -**    sd\tzero,96\(a[0-9]+\)
> -**    sd\tzero,104\(a[0-9]+\)
> -**    sd\tzero,112\(a[0-9]+\)
> -**    sh\tzero,120\(a[0-9]+\)
> -**    sb\tzero,122\(a[0-9]+\)
> -**    ...
> -*/
> +// 1x cbo.zero, 7x sd (rv64) or 14x sw (rv32), 1x sh, 1x sb
>  int
>  clear_buf_123 (void *p)
>  {
> @@ -27,17 +11,17 @@ clear_buf_123 (void *p)
>    __builtin_memset (p, 0, 123);
>  }
>
> -/*
> -**clear_buf_128:
> -**    ...
> -**    cbo\.zero\t0\(a[0-9]+\)
> -**    addi\ta[0-9]+,a[0-9]+,64
> -**    cbo\.zero\t0\(a[0-9]+\)
> -**    ...
> -*/
> +// 2x cbo.zero, 1x addi 64
>  int
>  clear_buf_128 (void *p)
>  {
>    p = __builtin_assume_aligned(p, 64);
>    __builtin_memset (p, 0, 128);
>  }
> +
> +/* { dg-final { scan-assembler-times "cbo\.zero\t" 3 } } */
> +/* { dg-final { scan-assembler-times "addi\ta\[0-9\]+,a\[0-9\]+,64" 1 } } */
> +/* { dg-final { scan-assembler-times "sd\t" 7 { target { rv64 } } } } */
> +/* { dg-final { scan-assembler-times "sw\t" 14 { target { rv32 } } } } */
> +/* { dg-final { scan-assembler-times "sh\t" 1 } } */
> +/* { dg-final { scan-assembler-times "sb\t" 1 } } */
> --
> 2.44.0
>

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

* Re: [PATCH] RISC-V: Fix cbo.zero expansion for rv32
  2024-05-15  7:14 ` Kito Cheng
@ 2024-05-15  7:28   ` Christoph Müllner
  0 siblings, 0 replies; 5+ messages in thread
From: Christoph Müllner @ 2024-05-15  7:28 UTC (permalink / raw)
  To: Kito Cheng
  Cc: gcc-patches, Jim Wilson, Palmer Dabbelt, Andrew Waterman,
	Philipp Tomsich, Jeff Law, Vineet Gupta

On Wed, May 15, 2024 at 9:14 AM Kito Cheng <kito.cheng@sifive.com> wrote:
>
> LGTM :)

Jeff already committed a fix before, which also disables the test for rv32.
I'll send up a follow-up patch to enable the test for rv32.

>
> On Wed, May 15, 2024 at 2:48 PM Christoph Müllner
> <christoph.muellner@vrull.eu> wrote:
> >
> > Emitting a DI pattern won't find a match for rv32 and manifests in
> > the failing test case gcc.target/riscv/cmo-zicboz-zic64-1.c.
> > Let's fix this in the expansion and also address the different
> > code that gets generated for rv32/rv64.
> >
> > gcc/ChangeLog:
> >
> >         * config/riscv/riscv-string.cc (riscv_expand_block_clear_zicboz_zic64b):
> >         Fix expansion for rv32.
> >
> > gcc/testsuite/ChangeLog:
> >
> >         * gcc.target/riscv/cmo-zicboz-zic64-1.c: Fix for rv32.
> >
> > Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
> > ---
> >  gcc/config/riscv/riscv-string.cc              |  5 ++-
> >  .../gcc.target/riscv/cmo-zicboz-zic64-1.c     | 36 ++++++-------------
> >  2 files changed, 14 insertions(+), 27 deletions(-)
> >
> > diff --git a/gcc/config/riscv/riscv-string.cc b/gcc/config/riscv/riscv-string.cc
> > index 87f5fdee3c1..b515f44d17a 100644
> > --- a/gcc/config/riscv/riscv-string.cc
> > +++ b/gcc/config/riscv/riscv-string.cc
> > @@ -827,7 +827,10 @@ riscv_expand_block_clear_zicboz_zic64b (rtx dest, rtx length)
> >      {
> >        rtx mem = adjust_address (dest, BLKmode, offset);
> >        rtx addr = force_reg (Pmode, XEXP (mem, 0));
> > -      emit_insn (gen_riscv_zero_di (addr));
> > +      if (TARGET_64BIT)
> > +       emit_insn (gen_riscv_zero_di (addr));
> > +      else
> > +       emit_insn (gen_riscv_zero_si (addr));
> >        offset += cbo_bytes;
> >      }
> >
> > diff --git a/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c b/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c
> > index c2d79eb7ae6..9192b391b11 100644
> > --- a/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c
> > +++ b/gcc/testsuite/gcc.target/riscv/cmo-zicboz-zic64-1.c
> > @@ -1,25 +1,9 @@
> >  /* { dg-do compile } */
> > -/* { dg-options "-march=rv64gc_zic64b_zicboz" { target { rv64 } } } */
> >  /* { dg-options "-march=rv32gc_zic64b_zicboz" { target { rv32 } } } */
> > +/* { dg-options "-march=rv64gc_zic64b_zicboz" { target { rv64 } } } */
> >  /* { dg-skip-if "" { *-*-* } {"-O0" "-Os" "-Og" "-Oz" "-flto" } } */
> > -/* { dg-final { check-function-bodies "**" "" } } */
> > -/* { dg-allow-blank-lines-in-output 1 } */
> >
> > -/*
> > -**clear_buf_123:
> > -**    ...
> > -**    cbo\.zero\t0\(a[0-9]+\)
> > -**    sd\tzero,64\(a[0-9]+\)
> > -**    sd\tzero,72\(a[0-9]+\)
> > -**    sd\tzero,80\(a[0-9]+\)
> > -**    sd\tzero,88\(a[0-9]+\)
> > -**    sd\tzero,96\(a[0-9]+\)
> > -**    sd\tzero,104\(a[0-9]+\)
> > -**    sd\tzero,112\(a[0-9]+\)
> > -**    sh\tzero,120\(a[0-9]+\)
> > -**    sb\tzero,122\(a[0-9]+\)
> > -**    ...
> > -*/
> > +// 1x cbo.zero, 7x sd (rv64) or 14x sw (rv32), 1x sh, 1x sb
> >  int
> >  clear_buf_123 (void *p)
> >  {
> > @@ -27,17 +11,17 @@ clear_buf_123 (void *p)
> >    __builtin_memset (p, 0, 123);
> >  }
> >
> > -/*
> > -**clear_buf_128:
> > -**    ...
> > -**    cbo\.zero\t0\(a[0-9]+\)
> > -**    addi\ta[0-9]+,a[0-9]+,64
> > -**    cbo\.zero\t0\(a[0-9]+\)
> > -**    ...
> > -*/
> > +// 2x cbo.zero, 1x addi 64
> >  int
> >  clear_buf_128 (void *p)
> >  {
> >    p = __builtin_assume_aligned(p, 64);
> >    __builtin_memset (p, 0, 128);
> >  }
> > +
> > +/* { dg-final { scan-assembler-times "cbo\.zero\t" 3 } } */
> > +/* { dg-final { scan-assembler-times "addi\ta\[0-9\]+,a\[0-9\]+,64" 1 } } */
> > +/* { dg-final { scan-assembler-times "sd\t" 7 { target { rv64 } } } } */
> > +/* { dg-final { scan-assembler-times "sw\t" 14 { target { rv32 } } } } */
> > +/* { dg-final { scan-assembler-times "sh\t" 1 } } */
> > +/* { dg-final { scan-assembler-times "sb\t" 1 } } */
> > --
> > 2.44.0
> >

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

* Re: [PATCH] RISC-V: Fix cbo.zero expansion for rv32
  2024-05-15  6:48 [PATCH] RISC-V: Fix cbo.zero expansion for rv32 Christoph Müllner
  2024-05-15  7:14 ` Kito Cheng
@ 2024-05-15 13:05 ` Jeff Law
  2024-05-15 13:33   ` Christoph Müllner
  1 sibling, 1 reply; 5+ messages in thread
From: Jeff Law @ 2024-05-15 13:05 UTC (permalink / raw)
  To: Christoph Müllner, gcc-patches, Kito Cheng, Jim Wilson,
	Palmer Dabbelt, Andrew Waterman, Philipp Tomsich, Vineet Gupta



On 5/15/24 12:48 AM, Christoph Müllner wrote:
> Emitting a DI pattern won't find a match for rv32 and manifests in
> the failing test case gcc.target/riscv/cmo-zicboz-zic64-1.c.
> Let's fix this in the expansion and also address the different
> code that gets generated for rv32/rv64.
> 
> gcc/ChangeLog:
> 
> 	* config/riscv/riscv-string.cc (riscv_expand_block_clear_zicboz_zic64b):
> 	Fix expansion for rv32.
> 
> gcc/testsuite/ChangeLog:
> 
> 	* gcc.target/riscv/cmo-zicboz-zic64-1.c: Fix for rv32.
The exact change I made yesterday for the code generator.  Glad to see I 
didn't muck it up :-)  And thanks for fixing the test to have some 
coverage on rv32.

Jeff


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

* Re: [PATCH] RISC-V: Fix cbo.zero expansion for rv32
  2024-05-15 13:05 ` Jeff Law
@ 2024-05-15 13:33   ` Christoph Müllner
  0 siblings, 0 replies; 5+ messages in thread
From: Christoph Müllner @ 2024-05-15 13:33 UTC (permalink / raw)
  To: Jeff Law
  Cc: gcc-patches, Kito Cheng, Jim Wilson, Palmer Dabbelt,
	Andrew Waterman, Philipp Tomsich, Vineet Gupta

On Wed, May 15, 2024 at 3:05 PM Jeff Law <jeffreyalaw@gmail.com> wrote:
>
>
>
> On 5/15/24 12:48 AM, Christoph Müllner wrote:
> > Emitting a DI pattern won't find a match for rv32 and manifests in
> > the failing test case gcc.target/riscv/cmo-zicboz-zic64-1.c.
> > Let's fix this in the expansion and also address the different
> > code that gets generated for rv32/rv64.
> >
> > gcc/ChangeLog:
> >
> >       * config/riscv/riscv-string.cc (riscv_expand_block_clear_zicboz_zic64b):
> >       Fix expansion for rv32.
> >
> > gcc/testsuite/ChangeLog:
> >
> >       * gcc.target/riscv/cmo-zicboz-zic64-1.c: Fix for rv32.
> The exact change I made yesterday for the code generator.  Glad to see I
> didn't muck it up :-)  And thanks for fixing the test to have some
> coverage on rv32.

I prepared this patch a few weeks ago.
And I was convinced that I did a multilib-test back then (as I usually do),
so I just rebased and executed the rv64 tests before sending them last week.
I was quite surprised to find this failing while working on the cmpmem
expansion,
since this was still in my queue to rebase/retest.
Whatever, sorry for not testing earlier and thanks for fixing it!

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

end of thread, other threads:[~2024-05-15 13:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-15  6:48 [PATCH] RISC-V: Fix cbo.zero expansion for rv32 Christoph Müllner
2024-05-15  7:14 ` Kito Cheng
2024-05-15  7:28   ` Christoph Müllner
2024-05-15 13:05 ` Jeff Law
2024-05-15 13:33   ` Christoph Müllner

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).