X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FRtsStartup.c;h=04bad6d661d0ab4b78fa65aee50dc5566bc66960;hb=f7db2c30a659aae5fe59ba2be7ab72f8ca64f712;hp=4e6a68cf22c80b3c22e5a4aad2032c1e3418f4d5;hpb=95ca6bff6fc9918203173b442192d9298ef9757a;p=ghc-hetmet.git diff --git a/ghc/rts/RtsStartup.c b/ghc/rts/RtsStartup.c index 4e6a68c..04bad6d 100644 --- a/ghc/rts/RtsStartup.c +++ b/ghc/rts/RtsStartup.c @@ -1,5 +1,4 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsStartup.c,v 1.83 2004/09/03 15:28:42 simonmar Exp $ * * (c) The GHC Team, 1998-2002 * @@ -89,8 +88,31 @@ __hscore_set_saved_termios(int fd, void* ts) } } -#if i386_TARGET_ARCH -static void x86_init_fpu ( void ); +/* ----------------------------------------------------------------------------- + Initialise floating point unit on x86 (currently disabled. why?) + -------------------------------------------------------------------------- */ + +#define X86_INIT_FPU 0 + +#if X86_INIT_FPU +static void +x86_init_fpu ( void ) +{ + __volatile unsigned short int fpu_cw; + + // Grab the control word + __asm __volatile ("fnstcw %0" : "=m" (fpu_cw)); + +#if 0 + printf("fpu_cw: %x\n", fpu_cw); +#endif + + // Set bits 8-9 to 10 (64-bit precision). + fpu_cw = (fpu_cw & 0xfcff) | 0x0200; + + // Store the new control word back + __asm __volatile ("fldcw %0" : : "m" (fpu_cw)); +} #endif /* ----------------------------------------------------------------------------- @@ -171,8 +193,10 @@ hs_init(int *argc, char **argv[]) /* initialise the stable pointer table */ initStablePtrTable(); +#if defined(DEBUG) /* initialise thread label table (tso->char*) */ initThreadLabelTable(); +#endif #if defined(PROFILING) || defined(DEBUG) initProfiling1(); @@ -205,8 +229,8 @@ hs_init(int *argc, char **argv[]) setlocale(LC_CTYPE,""); #endif -#if i386_TARGET_ARCH -// x86_init_fpu(); +#if X86_INIT_FPU + x86_init_fpu(); #endif /* Record initialization times */ @@ -466,29 +490,3 @@ stg_exit(int n) #endif exit(n); } - -/* ----------------------------------------------------------------------------- - Initialise floating point unit on x86 - -------------------------------------------------------------------------- */ - -#if i386_TARGET_ARCH -static void -x86_init_fpu ( void ) -{ - __volatile unsigned short int fpu_cw; - - // Grab the control word - __asm __volatile ("fnstcw %0" : "=m" (fpu_cw)); - -#if 0 - printf("fpu_cw: %x\n", fpu_cw); -#endif - - // Set bits 8-9 to 10 (64-bit precision). - fpu_cw = (fpu_cw & 0xfcff) | 0x0200; - - // Store the new control word back - __asm __volatile ("fldcw %0" : : "m" (fpu_cw)); -} -#endif -