X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FRtsStartup.c;h=3b6f050f6af67807105256309ff015e26d2d9d57;hb=b61f70ce5ff947642c96b1ad980351691bb1e07a;hp=59300c4811c9a1640e53cad06d6f57761fa9599a;hpb=423d477bfecd490de1449c59325c8776f91d7aac;p=ghc-hetmet.git diff --git a/ghc/rts/RtsStartup.c b/ghc/rts/RtsStartup.c index 59300c4..3b6f050 100644 --- a/ghc/rts/RtsStartup.c +++ b/ghc/rts/RtsStartup.c @@ -1,5 +1,4 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsStartup.c,v 1.81 2004/08/13 13:10:32 simonmar Exp $ * * (c) The GHC Team, 1998-2002 * @@ -15,6 +14,7 @@ #include "Storage.h" /* initStorage, exitStorage */ #include "Schedule.h" /* initScheduler */ #include "Stats.h" /* initStats */ +#include "STM.h" /* initSTM */ #include "Signals.h" #include "Timer.h" /* startTimer, stopTimer */ #include "Weak.h" @@ -89,8 +89,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 /* ----------------------------------------------------------------------------- @@ -143,10 +166,13 @@ hs_init(int *argc, char **argv[]) #if defined(PAR) /* NB: this really must be done after processing the RTS flags */ IF_PAR_DEBUG(verbose, - fprintf(stderr, "==== Synchronising system (%d PEs)\n", nPEs)); + debugBelch("==== Synchronising system (%d PEs)\n", nPEs)); synchroniseSystem(); // calls initParallelSystem etc #endif /* PAR */ + /* Perform initialisation of adjustor thunk layer. */ + initAdjustor(); + /* initialise scheduler data structures (needs to be done before * initStorage()). */ @@ -168,8 +194,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(); @@ -192,6 +220,8 @@ hs_init(int *argc, char **argv[]) startupAsyncIO(); #endif + initSTM(); + #ifdef RTS_GTK_FRONTPANEL if (RtsFlags.GcFlags.frontpanel) { initFrontPanel(); @@ -202,8 +232,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 */ @@ -458,34 +488,8 @@ stg_exit(int n) return; exit_started=rtsTrue; - IF_PAR_DEBUG(verbose, fprintf(stderr,"==-- stg_exit %d on [%x]...", n, mytid)); + IF_PAR_DEBUG(verbose, debugBelch("==-- stg_exit %d on [%x]...", n, mytid)); shutdownParallelSystem(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 -