From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K5nsZ-00077y-Kq for qemu-devel@nongnu.org; Mon, 09 Jun 2008 16:22:11 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K5nsX-00077j-Nn for qemu-devel@nongnu.org; Mon, 09 Jun 2008 16:22:11 -0400 Received: from [199.232.76.173] (port=44870 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K5nsX-00077g-Kq for qemu-devel@nongnu.org; Mon, 09 Jun 2008 16:22:09 -0400 Received: from relay3-v.mail.gandi.net ([217.70.178.77]:35428) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K5nsX-0007FG-CL for qemu-devel@nongnu.org; Mon, 09 Jun 2008 16:22:09 -0400 Message-ID: <484D90AD.2020500@bellard.org> Date: Mon, 09 Jun 2008 22:21:01 +0200 From: Fabrice Bellard MIME-Version: 1.0 Subject: Re: [Qemu-devel] [4705] Fix div[u]2. References: <484CEAFD.9020906@bellard.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org malc wrote: > On Mon, 9 Jun 2008, Fabrice Bellard wrote: > >> malc wrote: >>> Revision: 4705 >>> http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4705 >>> Author: malc >>> Date: 2008-06-09 06:06:25 +0000 (Mon, 09 Jun 2008) >>> >>> Log Message: >>> ----------- >>> Fix div[u]2. >>> >>> Previous code assummed 32 by 32 bit divmod operation, and survived >>> x86_64 test only by sheer luck. MIPS wasn't so forgiving. >> >> Are you sure it is needed ? div[u]2 support in currently optional in >> TCG. On some hosts such as PowerPC, implementing div[u] directly is >> simpler. rem[u] can be implemented generically then. > > When i added TCG_TARGET_HAS_div_i32 plus all that is necessary to handle > div[u]/rem[u]_i32 tcg started to abort at tcg.c:1180 (at least for > arm-softmmu) So this is the bug to solve. Adding divu2 is not necessary, at least until we decided it is necessary for all TCG targets. Fabrice.