From patchwork Mon Jan 3 14:34:29 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 77276 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D3C91B70E9 for ; Tue, 4 Jan 2011 01:38:01 +1100 (EST) Received: from localhost ([127.0.0.1]:50317 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PZlXr-0004Bk-2L for incoming@patchwork.ozlabs.org; Mon, 03 Jan 2011 09:37:59 -0500 Received: from [140.186.70.92] (port=55268 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PZlUj-0002yF-Sa for qemu-devel@nongnu.org; Mon, 03 Jan 2011 09:34:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PZlUi-0002QU-N7 for qemu-devel@nongnu.org; Mon, 03 Jan 2011 09:34:45 -0500 Received: from hall.aurel32.net ([88.191.126.93]:45104) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PZlUi-0002QO-HL for qemu-devel@nongnu.org; Mon, 03 Jan 2011 09:34:44 -0500 Received: from [2001:470:d4ed:0:5e26:aff:fe2b:6f5b] (helo=volta.aurel32.net) by hall.aurel32.net with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1PZlUh-0000Iy-SS; Mon, 03 Jan 2011 15:34:43 +0100 Received: from aurel32 by volta.aurel32.net with local (Exim 4.72) (envelope-from ) id 1PZlUd-0007w1-Lv; Mon, 03 Jan 2011 15:34:39 +0100 From: Aurelien Jarno To: qemu-devel@nongnu.org Date: Mon, 3 Jan 2011 15:34:29 +0100 Message-Id: <1294065273-30274-3-git-send-email-aurelien@aurel32.net> X-Mailer: git-send-email 1.7.2.3 In-Reply-To: <1294065273-30274-1-git-send-email-aurelien@aurel32.net> References: <1294065273-30274-1-git-send-email-aurelien@aurel32.net> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) Cc: Aurelien Jarno Subject: [Qemu-devel] [PATCH 2/6] softfloat: fix float{32, 64}_maybe_silence_nan() for MIPS X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org On targets that define sNaN with the sNaN bit as one, simply clearing this bit may correspond to an infinite value. Convert it to a default NaN if SNAN_BIT_IS_ONE, as it corresponds to the MIPS implementation, the only emulated CPU with SNAN_BIT_IS_ONE. When other CPU of this type are added, this might be updated to include more cases. Signed-off-by: Aurelien Jarno --- fpu/softfloat-specialize.h | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/fpu/softfloat-specialize.h b/fpu/softfloat-specialize.h index f23bd6a..31481e7 100644 --- a/fpu/softfloat-specialize.h +++ b/fpu/softfloat-specialize.h @@ -107,13 +107,13 @@ int float32_is_signaling_nan( float32 a_ ) float32 float32_maybe_silence_nan( float32 a_ ) { if (float32_is_signaling_nan(a_)) { - bits32 a = float32_val(a_); #if SNAN_BIT_IS_ONE - a &= ~(1 << 22); + return float32_default_nan; #else + bits32 a = float32_val(a_); a |= (1 << 22); -#endif return make_float32(a); +#endif } return a_; } @@ -321,13 +321,13 @@ int float64_is_signaling_nan( float64 a_ ) float64 float64_maybe_silence_nan( float64 a_ ) { if (float64_is_signaling_nan(a_)) { - bits64 a = float64_val(a_); #if SNAN_BIT_IS_ONE - a &= ~LIT64( 0x0008000000000000 ); + return float64_default_nan; #else + bits64 a = float64_val(a_); a |= LIT64( 0x0008000000000000 ); -#endif return make_float64(a); +#endif } return a_; }