X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FStgPrimFloat.c;h=5bd6aebb1cd1923608653d27599a247baca98af4;hb=28a464a75e14cece5db40f2765a29348273ff2d2;hp=960d5f8fd0558a165647ad894d44d534dac9bf7e;hpb=330ff38d1257d80fb5f4a5aff0db6360f34eb948;p=ghc-hetmet.git diff --git a/ghc/rts/StgPrimFloat.c b/ghc/rts/StgPrimFloat.c index 960d5f8..5bd6aeb 100644 --- a/ghc/rts/StgPrimFloat.c +++ b/ghc/rts/StgPrimFloat.c @@ -1,5 +1,4 @@ /* ----------------------------------------------------------------------------- - * $Id: StgPrimFloat.c,v 1.6 2000/11/07 13:30:41 simonmar Exp $ * * (c) The GHC Team, 1998-2000 * @@ -7,16 +6,36 @@ * * ---------------------------------------------------------------------------*/ +#include "PosixSource.h" #include "Rts.h" +#include + /* * Encoding and decoding Doubles. Code based on the HBC code * (lib/fltcode.c). */ +#ifdef _SHORT_LIMB +#define SIZEOF_LIMB_T SIZEOF_UNSIGNED_INT +#else +#ifdef _LONG_LONG_LIMB +#define SIZEOF_LIMB_T SIZEOF_UNSIGNED_LONG_LONG +#else +#define SIZEOF_LIMB_T SIZEOF_UNSIGNED_LONG +#endif +#endif + +#if SIZEOF_LIMB_T == 4 #define GMP_BASE 4294967296.0 -#define DNBIGIT 2 /* mantissa of a double will fit in two longs */ -#define FNBIGIT 1 /* for float, one long */ +#elif SIZEOF_LIMB_T == 8 +#define GMP_BASE 18446744073709551616.0 +#else +#error Cannot cope with SIZEOF_LIMB_T -- please add definition of GMP_BASE +#endif + +#define DNBIGIT ((SIZEOF_DOUBLE+SIZEOF_LIMB_T-1)/SIZEOF_LIMB_T) +#define FNBIGIT ((SIZEOF_FLOAT +SIZEOF_LIMB_T-1)/SIZEOF_LIMB_T) #if IEEE_FLOATING_POINT #define MY_DMINEXP ((DBL_MIN_EXP) - (DBL_MANT_DIG) - 1) @@ -43,7 +62,7 @@ StgDouble __encodeDouble (I_ size, StgByteArray ba, I_ e) /* result = s * 2^e */ { StgDouble r; - W_ *arr = (W_ *)ba; + const mp_limb_t *const arr = (const mp_limb_t *)ba; I_ i; /* Convert MP_INT to a double; knows a lot about internal rep! */ @@ -84,7 +103,7 @@ StgFloat __encodeFloat (I_ size, StgByteArray ba, I_ e) /* result = s * 2^e */ { StgFloat r; - W_ *arr = (W_ *)ba; + const mp_limb_t *arr = (const mp_limb_t *)ba; I_ i; /* Convert MP_INT to a float; knows a lot about internal rep! */ @@ -127,9 +146,14 @@ void __decodeDouble (MP_INT *man, I_ *exp, StgDouble dbl) { /* Do some bit fiddling on IEEE */ - nat low, high; /* assuming 32 bit ints */ + unsigned int low, high; /* assuming 32 bit ints */ int sign, iexp; - union { double d; int i[2]; } u; /* assuming 32 bit ints, 64 bit double */ + union { double d; unsigned int i[2]; } u; /* assuming 32 bit ints, 64 bit double */ + + ASSERT(sizeof(unsigned int ) == 4 ); + ASSERT(sizeof(dbl ) == SIZEOF_DOUBLE); + ASSERT(sizeof(man->_mp_d[0]) == SIZEOF_LIMB_T); + ASSERT(DNBIGIT*SIZEOF_LIMB_T >= SIZEOF_DOUBLE); u.d = dbl; /* grab chunks of the double */ low = u.i[L]; @@ -164,13 +188,13 @@ __decodeDouble (MP_INT *man, I_ *exp, StgDouble dbl) } *exp = (I_) iexp; #if DNBIGIT == 2 - man->_mp_d[0] = low; - man->_mp_d[1] = high; + man->_mp_d[0] = (mp_limb_t)low; + man->_mp_d[1] = (mp_limb_t)high; #else #if DNBIGIT == 1 - man->_mp_d[0] = ((unsigned long)high) << 32 | (unsigned long)low; + man->_mp_d[0] = ((mp_limb_t)high) << 32 | (mp_limb_t)low; #else - error : error : error : Cannae cope with DNBIGIT +#error Cannot cope with DNBIGIT #endif #endif if (sign < 0) @@ -185,6 +209,11 @@ __decodeFloat (MP_INT *man, I_ *exp, StgFloat flt) int high, sign; /* assuming 32 bit ints */ union { float f; int i; } u; /* assuming 32 bit float and int */ + ASSERT(sizeof(int ) == 4 ); + ASSERT(sizeof(flt ) == SIZEOF_FLOAT ); + ASSERT(sizeof(man->_mp_d[0]) == SIZEOF_LIMB_T); + ASSERT(FNBIGIT*SIZEOF_LIMB_T >= SIZEOF_FLOAT ); + u.f = flt; /* grab the float */ high = u.i; @@ -213,9 +242,9 @@ __decodeFloat (MP_INT *man, I_ *exp, StgFloat flt) } } #if FNBIGIT == 1 - man->_mp_d[0] = high; + man->_mp_d[0] = (mp_limb_t)high; #else - error : error : error : Cannae cope with FNBIGIT +#error Cannot cope with FNBIGIT #endif if (sign < 0) man->_mp_size = -man->_mp_size;