[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v5 10/10] softfloat: Use [u]int_fast64_t consist
From: |
Aurelien Jarno |
Subject: |
Re: [Qemu-devel] [PATCH v5 10/10] softfloat: Use [u]int_fast64_t consistently |
Date: |
Tue, 8 Mar 2011 07:04:29 +0100 |
User-agent: |
Mutt/1.5.20 (2009-06-14) |
On Tue, Mar 08, 2011 at 12:10:50AM +0100, Andreas Färber wrote:
> Am 07.03.2011 um 10:56 schrieb Aurelien Jarno:
>
> >On Mon, Mar 07, 2011 at 01:34:13AM +0100, Andreas Färber wrote:
> >>v5:
> >>* Initial.
> >>
> >>Signed-off-by: Andreas Färber <address@hidden>
> >>---
> >>fpu/softfloat-native.c | 26 +++++++++++++-------------
> >>fpu/softfloat-native.h | 28 ++++++++++++++--------------
> >>fpu/softfloat.c | 4 ++--
> >>3 files changed, 29 insertions(+), 29 deletions(-)
>
> >>diff --git a/fpu/softfloat-native.h b/fpu/softfloat-native.h
> >>index 6cf5dc3..b198f48 100644
> >>--- a/fpu/softfloat-native.h
> >>+++ b/fpu/softfloat-native.h
>
> >>@@ -392,8 +392,8 @@ INLINE float64 float64_scalbn(float64 a, int n)
> >>*----------------------------------------------------------------------------*/
> >>int_fast32_t floatx80_to_int32( floatx80 STATUS_PARAM );
> >>int_fast32_t floatx80_to_int32_round_to_zero( floatx80
> >>STATUS_PARAM );
> >>-int64_t floatx80_to_int64( floatx80 STATUS_PARAM);
> >>-int64_t floatx80_to_int64_round_to_zero( floatx80 STATUS_PARAM);
> >>+int64_fast_t floatx80_to_int64( floatx80 STATUS_PARAM);
> >>+int64_fast_t floatx80_to_int64_round_to_zero( floatx80
> >>STATUS_PARAM);
> >
> >This type doesn't exist, so the code doesn't even compile...
>
> I did compile-tested these, so apparently my host or targets do not
> use softfloat-native... It was late so I can't rule out other
> mistakes there.
softfloat-native is used on i386 and x86_64 targets, which are enabled
by default when running ./configure.
> Would you prefer to treat softfloat-native as a separate API and not
> touch it in this series?
>
In my opinion, if we do such change, we should do them in both
softfloat and softfloat-native.
--
Aurelien Jarno GPG: 1024D/F1BCDB73
address@hidden http://www.aurel32.net
- [Qemu-devel] [PATCH v5 03/10] softfloat: Drop [s]bits{8, 16, 32, 64} types in favor of [u]int{8, 16, 32, 64}_t, (continued)
- [Qemu-devel] [PATCH v5 03/10] softfloat: Drop [s]bits{8, 16, 32, 64} types in favor of [u]int{8, 16, 32, 64}_t, Andreas Färber, 2011/03/06
- [Qemu-devel] [PATCH v5 04/10] softfloat: Drop [u]int16 types in favor of [u]int_fast16_t, Andreas Färber, 2011/03/06
- [Qemu-devel] [PATCH v5 05/10] softfloat: Use [u]int_fast16_t consistently, Andreas Färber, 2011/03/06
- [Qemu-devel] [PATCH v5 06/10] softfloat: Drop [u]int8 types in favor of int_fast8_t, Andreas Färber, 2011/03/06
- [Qemu-devel] [PATCH v5 07/10] softfloat: Drop [u]int32 types in favor of [u]int_fast32_t, Andreas Färber, 2011/03/06
- [Qemu-devel] [PATCH v5 08/10] softfloat: Use [u]int_fast32_t consistently, Andreas Färber, 2011/03/06
- [Qemu-devel] [PATCH v5 09/10] softfloat: Drop [u]int64 types in favor of [u]int_fast64_t, Andreas Färber, 2011/03/06
- [Qemu-devel] [PATCH v5 10/10] softfloat: Use [u]int_fast64_t consistently, Andreas Färber, 2011/03/06
- Re: [Qemu-devel] [PATCH v5 10/10] softfloat: Use [u]int_fast64_t consistently, Aurelien Jarno, 2011/03/07
- Re: [Qemu-devel] [PATCH v5 10/10] softfloat: Use [u]int_fast64_t consistently, Andreas Färber, 2011/03/07
- Re: [Qemu-devel] [PATCH v5 10/10] softfloat: Use [u]int_fast64_t consistently,
Aurelien Jarno <=
- Re: [Qemu-devel] [PATCH v5 07/10] softfloat: Drop [u]int32 types in favor of [u]int_fast32_t, Aurelien Jarno, 2011/03/07
- Re: [Qemu-devel] [PATCH v5 07/10] softfloat: Drop [u]int32 types in favor of [u]int_fast32_t, Andreas Färber, 2011/03/07
- Re: [Qemu-devel] [PATCH v5 07/10] softfloat: Drop [u]int32 types in favor of [u]int_fast32_t, Aurelien Jarno, 2011/03/07
- Re: [Qemu-devel] [PATCH v5 04/10] softfloat: Drop [u]int16 types in favor of [u]int_fast16_t, Aurelien Jarno, 2011/03/07
- Re: [Qemu-devel] [PATCH v5 04/10] softfloat: Drop [u]int16 types in favor of [u]int_fast16_t, Andreas Färber, 2011/03/07
- Re: [Qemu-devel] [PATCH v5 04/10] softfloat: Drop [u]int16 types in favor of [u]int_fast16_t, Aurelien Jarno, 2011/03/07
- Re: [Qemu-devel] [PATCH v5 04/10] softfloat: Drop [u]int16 types in favor of [u]int_fast16_t, Peter Maydell, 2011/03/07
- Re: [Qemu-devel] [PATCH v5 04/10] softfloat: Drop [u]int16 types in favor of [u]int_fast16_t, Aurelien Jarno, 2011/03/07
- Re: [Qemu-devel] [PATCH v5 04/10] softfloat: Drop [u]int16 types in favor of [u]int_fast16_t, Peter Maydell, 2011/03/08
- Re: [Qemu-devel] [PATCH v5 04/10] softfloat: Drop [u]int16 types in favor of [u]int_fast16_t, Aurelien Jarno, 2011/03/08