public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Andrew Burgess <aburgess@redhat.com>
To: Bernd Edlinger <bernd.edlinger@hotmail.de>,
	"gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Subject: Re: [PATCH 1/2] sim: riscv: fix a divw division by -1 bug
Date: Tue, 11 Jun 2024 16:38:52 +0100	[thread overview]
Message-ID: <87ikyfa3qr.fsf@redhat.com> (raw)
In-Reply-To: <AS8P193MB1285190D16ECDFD0DD14DBE6E4092@AS8P193MB1285.EURP193.PROD.OUTLOOK.COM>

Bernd Edlinger <bernd.edlinger@hotmail.de> writes:

> There is a bug in divw for riscv64 target
> with dividing by -1, the result was always 0,
> when it should in fact be sign-extended -dividend.
> It did not affect the rv32 target, because
> these instructions are rv64 only.
> Since 1 << 31 is an integer overflow this avoids
> an undefined behaviour bug at the same time.
>
> This caused test failures in the gcc testsuite like:
>
> FAIL: gcc.c-torture/execute/arith-rand-ll.c   -O0  execution test
> FAIL: gcc.c-torture/execute/arith-rand-ll.c   -O1  execution test
> FAIL: gcc.c-torture/execute/arith-rand-ll.c   -O2  execution test
> FAIL: gcc.c-torture/execute/arith-rand-ll.c   -O3  execution test
> FAIL: gcc.c-torture/execute/arith-rand.c   -O0  execution test
> FAIL: gcc.c-torture/execute/arith-rand.c   -O1  execution test
> FAIL: gcc.c-torture/execute/arith-rand.c   -O2  execution test
> FAIL: gcc.c-torture/execute/arith-rand.c   -O3  execution test
> ...
> ---
>  sim/riscv/sim-main.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/sim/riscv/sim-main.c b/sim/riscv/sim-main.c
> index c8adb65139b..515ff835223 100644
> --- a/sim/riscv/sim-main.c
> +++ b/sim/riscv/sim-main.c
> @@ -724,7 +724,7 @@ execute_m (SIM_CPU *cpu, unsigned_word iw, const struct riscv_opcode *op)
>  		  rd_name, rs1_name, rs2_name, rd_name, rs1_name, rs2_name);
>        RISCV_ASSERT_RV64 (cpu, "insn: %s", op->name);
>        if (EXTEND32 (riscv_cpu->regs[rs2]) == -1)
> -	tmp = 1 << 31;
> +	tmp = EXTEND32 (-(uint32_t) riscv_cpu->regs[rs1]);

I think this part of the if tree is no longer needed, the following...

>        else if (EXTEND32 (riscv_cpu->regs[rs2]))
>  	tmp = EXTEND32 (riscv_cpu->regs[rs1]) / EXTEND32 (riscv_cpu->regs[rs2]);

... should give the correct answer, right?

Additionally, we should be adding tests for these bugs as we fix them.

Below is what I wrote in order to check this patch, feel free to include
this with a v2 of this patch, or do your own thing if you prefer.

Thanks,
Andrew

---

diff --git a/sim/testsuite/riscv/divw.s b/sim/testsuite/riscv/divw.s
new file mode 100644
index 00000000000..ed130358607
--- /dev/null
+++ b/sim/testsuite/riscv/divw.s
@@ -0,0 +1,31 @@
+# Basic divw tests.
+# mach: riscv64
+# sim(riscv64): --model RV64GC
+# ld(riscv64): -m elf64lriscv
+# as(riscv64): -march=rv64gc
+
+.include "testutils.inc"
+
+	.macro test_divw  dividend, divisor, answer
+	# Setup inputs.
+	li	a1, \dividend
+	li	a2, \divisor
+
+	# Do the divide.
+	divw	a3, a1, a2
+
+	# Check answer is correct.
+	li	a4, \answer
+	bne	a3, a4, test_failed
+	.endm
+
+
+	start
+
+	test_divw	1, -1, -1
+	test_divw	6, 2, 3
+
+	pass
+
+test_failed:
+	fail


  reply	other threads:[~2024-06-11 15:38 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-15 14:46 Bernd Edlinger
2024-06-11 15:38 ` Andrew Burgess [this message]
2024-06-17  5:30   ` Bernd Edlinger
2024-06-17  8:44     ` Andrew Burgess

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ikyfa3qr.fsf@redhat.com \
    --to=aburgess@redhat.com \
    --cc=bernd.edlinger@hotmail.de \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).