From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59184) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoKdx-0004U5-RD for qemu-devel@nongnu.org; Mon, 09 Jul 2012 16:33:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SoKdv-0005QQ-T3 for qemu-devel@nongnu.org; Mon, 09 Jul 2012 16:33:17 -0400 Received: from mail-lb0-f173.google.com ([209.85.217.173]:41691) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoKdv-0005Q3-Ip for qemu-devel@nongnu.org; Mon, 09 Jul 2012 16:33:15 -0400 Received: by lbok6 with SMTP id k6so16916812lbo.4 for ; Mon, 09 Jul 2012 13:33:12 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <1341242735-19875-1-git-send-email-catalinp@google.com> References: <1341242735-19875-1-git-send-email-catalinp@google.com> Date: Mon, 9 Jul 2012 16:33:12 -0400 Message-ID: From: Catalin Patulea Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [Qemu-devel] [PATCH] target-i386: implement FPREM and FPREM1 using softfloat only List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On Mon, Jul 2, 2012 at 11:25 AM, Catalin Patulea wrote: > FPREM1 now passes the TestFloat floatx80_rem suite (and FPREM is implemented very > similarly). > > The code (the bulk of which is remainder_kernel and do_fprem) is derived from > Bochs SVN revision 11224 dated 2012-06-21 10:33:37 -0700, with conversions to > Qemu type aliases, C features only, etc. as needed. > > Signed-off-by: Catalin Patulea > --- > fpu/softfloat.c | 195 +++++++++++++++++++++++++++++++++++++++++++++++ > fpu/softfloat.h | 4 + > target-i386/op_helper.c | 166 ++++++++++++++++------------------------ > 3 files changed, 266 insertions(+), 99 deletions(-) > > diff --git a/fpu/softfloat.c b/fpu/softfloat.c > index b29256a..bd1879d 100644 > [...] Ping - how do people feel about the latest patch?