qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] sparc32 : Signed integer division overflow
@ 2014-03-19 22:29 Olivier Danet
  2014-03-20 15:54 ` Richard Henderson
  2014-03-20 16:15 ` Richard Henderson
  0 siblings, 2 replies; 3+ messages in thread
From: Olivier Danet @ 2014-03-19 22:29 UTC (permalink / raw)
  To: qemu-devel, Blue Swirl, Mark Cave-Ayland

The signed integer division -0x8000_0000_0000_0000 / -1 must be handled
separately to avoid an overflow on the QEMU host.

Signed-off-by: Olivier Danet <odanet@caramail.com>
---
 target-sparc/helper.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/target-sparc/helper.c b/target-sparc/helper.c
index f3c7fbf..3822c48 100644
--- a/target-sparc/helper.c
+++ b/target-sparc/helper.c
@@ -122,12 +122,15 @@ static target_ulong helper_sdiv_common(CPUSPARCState *env, target_ulong a,
     if (x1 == 0) {
         cpu_restore_state(CPU(cpu), GETPC());
         helper_raise_exception(env, TT_DIV_ZERO);
-    }
-
-    x0 = x0 / x1;
-    if ((int32_t) x0 != x0) {
-        x0 = x0 < 0 ? 0x80000000 : 0x7fffffff;
+    } else if (x1 == -1 && x0 == INT64_MIN) {
+        x0 = 0x7fffffff;
         overflow = 1;
+    } else {
+        x0 = x0 / x1;
+        if ((int32_t) x0 != x0) {
+            x0 = x0 < 0 ? 0x80000000 : 0x7fffffff;
+            overflow = 1;
+        }
     }
 
     if (cc) {
-- 
1.8.1.5

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

* Re: [Qemu-devel] [PATCH v2] sparc32 : Signed integer division overflow
  2014-03-19 22:29 [Qemu-devel] [PATCH v2] sparc32 : Signed integer division overflow Olivier Danet
@ 2014-03-20 15:54 ` Richard Henderson
  2014-03-20 16:15 ` Richard Henderson
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Henderson @ 2014-03-20 15:54 UTC (permalink / raw)
  To: Olivier Danet, qemu-devel, Blue Swirl, Mark Cave-Ayland

On 03/19/2014 03:29 PM, Olivier Danet wrote:
> The signed integer division -0x8000_0000_0000_0000 / -1 must be handled
> separately to avoid an overflow on the QEMU host.
> 
> Signed-off-by: Olivier Danet <odanet@caramail.com>
> ---
>  target-sparc/helper.c | 13 ++++++++-----
>  1 file changed, 8 insertions(+), 5 deletions(-)

Reviewed-by: Richard Henderson <rth@twiddle.net>


r~

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

* Re: [Qemu-devel] [PATCH v2] sparc32 : Signed integer division overflow
  2014-03-19 22:29 [Qemu-devel] [PATCH v2] sparc32 : Signed integer division overflow Olivier Danet
  2014-03-20 15:54 ` Richard Henderson
@ 2014-03-20 16:15 ` Richard Henderson
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Henderson @ 2014-03-20 16:15 UTC (permalink / raw)
  To: Olivier Danet, qemu-devel, Blue Swirl, Mark Cave-Ayland

On 03/19/2014 03:29 PM, Olivier Danet wrote:
> +        if ((int32_t) x0 != x0) {
> +            x0 = x0 < 0 ? 0x80000000 : 0x7fffffff;
> +            overflow = 1;
> +        }

Actually, there's an existing bug here that we might as well fix.

  ## ... the 32-bit result is sign-extended to 64 bits and
  ## written into register R[rd].

That 0x80000000 is not going to promote properly to 64-bits.  We might as well
go ahead and use INT32_MIN and INT32_MAX here at the same time.



r~

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

end of thread, other threads:[~2014-03-20 16:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-19 22:29 [Qemu-devel] [PATCH v2] sparc32 : Signed integer division overflow Olivier Danet
2014-03-20 15:54 ` Richard Henderson
2014-03-20 16:15 ` Richard Henderson

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 NNTP newsgroup(s).