From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43413) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WPhoO-00083m-1a for qemu-devel@nongnu.org; Mon, 17 Mar 2014 20:23:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WPhoI-0002TO-5e for qemu-devel@nongnu.org; Mon, 17 Mar 2014 20:23:19 -0400 Received: from s16892447.onlinehome-server.info ([82.165.15.123]:53958) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WPhoH-0002TI-VI for qemu-devel@nongnu.org; Mon, 17 Mar 2014 20:23:14 -0400 Message-ID: <53279167.70901@ilande.co.uk> Date: Tue, 18 Mar 2014 00:20:55 +0000 From: Mark Cave-Ayland MIME-Version: 1.0 References: <5320D11F.3060703@caramail.com> In-Reply-To: <5320D11F.3060703@caramail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] sparc32 : Signed integer division overflow List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Olivier Danet Cc: Blue Swirl , Peter Maydell , qemu-devel On 12/03/14 21:26, Olivier Danet wrote: Hi Olivier, > Here is a patch for handling this corner case on SPARC32. > SPARC64 division already checks this in helper_sdivx(), some other > architectures > seem to do the same (for example, target-arm/helper.c: HELPER(sdiv)) > > =================================================================== > The integer division 0x8000_0000_0000_0000 / -1 must be handled separately > to avoid overflows on the QEMU host. > > Signed-off-by: Olivier Danet > > ------------------------------------------------------------------- > diff --git a/target-sparc/helper.c b/target-sparc/helper.c > index 57c20af..b6b5937 100644 > --- a/target-sparc/helper.c > +++ b/target-sparc/helper.c > @@ -116,14 +116,16 @@ static target_ulong > helper_sdiv_common(CPUSPARCState *env, target_ulong a, > if (x1 == 0) { > cpu_restore_state(env, 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 == 0x8000000000000000) { > + x0 = 0x7fffffff; > overflow = 1; Thanks for the patch! I think based upon Peter's recent series that the sign constant would need a ULL suffix in order to function correctly on 32-bit platforms. My personal preference would be for (1ULL << 63) unless Peter (CC added) can think of a reason to leave the hex constant in its current form? That said, I've tested the patch on a Debian etch Linux image and it works for me. > + } else { > + x0 = x0 / x1; > + if ((int32_t) x0 != x0) { > + x0 = x0 < 0 ? 0x80000000 : 0x7fffffff; > + overflow = 1; > + } > } > - Looks like a whitespace change accidentally made it into this patch too. > if (cc) { > env->cc_dst = x0; > env->cc_src2 = overflow; > ------------------------------------------------------------------- ATB, Mark.