From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:34615) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QLc4Y-0008Vx-8W for qemu-devel@nongnu.org; Sun, 15 May 2011 10:13:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QLc4X-0007i8-7r for qemu-devel@nongnu.org; Sun, 15 May 2011 10:13:30 -0400 Received: from hall.aurel32.net ([88.191.126.93]:42084) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QLc4X-0007hm-35 for qemu-devel@nongnu.org; Sun, 15 May 2011 10:13:29 -0400 From: Aurelien Jarno Date: Sun, 15 May 2011 16:13:18 +0200 Message-Id: <1305468801-6015-9-git-send-email-aurelien@aurel32.net> In-Reply-To: <1305468801-6015-1-git-send-email-aurelien@aurel32.net> References: <1305468801-6015-1-git-send-email-aurelien@aurel32.net> Subject: [Qemu-devel] [PATCH 08/11] target-i386: cleanup helper_fxam_ST0() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Aurelien Jarno Rewrite helper_fxam_ST0() using only softfloat functions. Signed-off-by: Aurelien Jarno --- target-i386/op_helper.c | 30 ++++++++++++------------------ 1 files changed, 12 insertions(+), 18 deletions(-) diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index cec0c76..8ba2b5f 100644 --- a/target-i386/op_helper.c +++ b/target-i386/op_helper.c @@ -4241,29 +4241,23 @@ void helper_fcos(void) void helper_fxam_ST0(void) { - CPU_LDoubleU temp; - int expdif; - - temp.d = ST0; - env->fpus &= (~0x4700); /* (C3,C2,C1,C0) <-- 0000 */ - if (SIGND(temp)) + + if (floatx80_is_neg(ST0)) { env->fpus |= 0x200; /* C1 <-- 1 */ + } /* XXX: test fptags too */ - expdif = EXPD(temp); - if (expdif == MAXEXPD) { - if (MANTD(temp) == 0x8000000000000000ULL) - env->fpus |= 0x500 /*Infinity*/; - else - env->fpus |= 0x100 /*NaN*/; - } else if (expdif == 0) { - if (MANTD(temp) == 0) - env->fpus |= 0x4000 /*Zero*/; - else - env->fpus |= 0x4400 /*Denormal*/; + if (floatx80_is_infinity(ST0)) { + env->fpus |= 0x500; /* (C3,C2,C0) <-- 011 */ + } else if (floatx80_is_any_nan(ST0)) { + env->fpus |= 0x100; /* (C3,C2,C0) <-- 001 */ + } else if (floatx80_is_zero(ST0)) { + env->fpus |= 0x4000; /* (C3,C2,C0) <-- 100 */ + } else if (floatx80_is_zero_or_denormal(ST0)) { + env->fpus |= 0x4400; /* (C3,C2,C0) <-- 110 */ } else { - env->fpus |= 0x400; + env->fpus |= 0x400; /* (C3,C2,C0) <-- 010 */ } } -- 1.7.2.3