From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33676) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VZPkk-0006T2-OC for qemu-devel@nongnu.org; Thu, 24 Oct 2013 14:35:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VZPke-0005FE-9X for qemu-devel@nongnu.org; Thu, 24 Oct 2013 14:35:26 -0400 Sender: Richard Henderson Message-ID: <5269683F.2020501@twiddle.net> Date: Thu, 24 Oct 2013 11:34:39 -0700 From: Richard Henderson MIME-Version: 1.0 References: <526947CA.4020504@gmail.com> <52694821.4040001@gmail.com> In-Reply-To: <52694821.4040001@gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 01/19] Add New softfloat Routines for VSX List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Tom Musta , QEMU Developers Cc: "qemu-ppc@nongnu.org" On 10/24/2013 09:17 AM, Tom Musta wrote: > This patch adds routines to the softfloat library that are useful for > the PowerPC VSX implementation. The routines are, however, not specific > to PowerPC and are approprriate for softfloat. > > The following routines are added: > > - float32_is_denormal() returns true if the 32-bit floating point number > is denormalized. > - float64_is_denormal() returns true if the 64-bit floating point number > is denormalized. > - float32_get_unbiased_exp() returns the unbiased exponent of a 32-bit > floating point number. > - float64_get_unbiased_exp() returns the unbiased exponent of a 64-bit > floating point number. > - float32_to_uint64() converts a 32-bit floating point number to an > unsigned 64 bit number. Reviewed-by: Richard Henderson r~