X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FRtsStartup.c;h=c5fa744c8332b0dba4a7ac4c289237e341c04832;hb=153b9cb9b11e05c4edb1b6bc0a7b972660e41f70;hp=5255386de36b186a6d3cf3b46d8ad5bc09ae82dc;hpb=8fcae518e33613c93b55ab5f165954727cf4aa30;p=ghc-hetmet.git diff --git a/ghc/rts/RtsStartup.c b/ghc/rts/RtsStartup.c index 5255386..c5fa744 100644 --- a/ghc/rts/RtsStartup.c +++ b/ghc/rts/RtsStartup.c @@ -1,5 +1,4 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsStartup.c,v 1.79 2004/02/27 13:35:16 simonmar Exp $ * * (c) The GHC Team, 1998-2002 * @@ -13,19 +12,19 @@ #include "RtsUtils.h" #include "RtsFlags.h" #include "Storage.h" /* initStorage, exitStorage */ -#include "StablePriv.h" /* initStablePtrTable */ #include "Schedule.h" /* initScheduler */ #include "Stats.h" /* initStats */ +#include "STM.h" /* initSTM */ #include "Signals.h" #include "Timer.h" /* startTimer, stopTimer */ #include "Weak.h" #include "Ticky.h" #include "StgRun.h" -#include "StgStartup.h" #include "Prelude.h" /* fixupRTStoPreludeRefs */ #include "HsFFI.h" #include "Linker.h" #include "ThreadLabels.h" +#include "BlockAlloc.h" #if defined(RTS_GTK_FRONTPANEL) #include "FrontPanel.h" @@ -50,7 +49,7 @@ # include "LLC.h" #endif -#if defined(mingw32_TARGET_OS) +#if defined(mingw32_HOST_OS) #include "win32/AsyncIO.h" #endif @@ -67,9 +66,6 @@ #include #endif -// Flag Structure -struct RTS_FLAGS RtsFlags; - // Count of how many outstanding hs_init()s there have been. static int hs_init_count = 0; @@ -94,6 +90,33 @@ __hscore_set_saved_termios(int fd, void* ts) } /* ----------------------------------------------------------------------------- + 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 + +/* ----------------------------------------------------------------------------- Starting up the RTS -------------------------------------------------------------------------- */ @@ -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(); @@ -188,10 +216,12 @@ hs_init(int *argc, char **argv[]) initDefaultHandlers(); #endif -#if defined(mingw32_TARGET_OS) +#if defined(mingw32_HOST_OS) startupAsyncIO(); #endif + initSTM(); + #ifdef RTS_GTK_FRONTPANEL if (RtsFlags.GcFlags.frontpanel) { initFrontPanel(); @@ -199,7 +229,11 @@ hs_init(int *argc, char **argv[]) #endif #ifdef HAVE_LOCALE_H - setlocale(LC_ALL,""); + setlocale(LC_CTYPE,""); +#endif + +#if X86_INIT_FPU + x86_init_fpu(); #endif /* Record initialization times */ @@ -285,12 +319,14 @@ hs_add_root(void (*init_root)(void)) barf("hs_add_root() must be called after hs_init()"); } - init_sp = 0; + /* The initialisation stack grows downward, with sp pointing + to the last occupied word */ + init_sp = INIT_STACK_BLOCKS*BLOCK_SIZE_W; bd = allocGroup(INIT_STACK_BLOCKS); init_stack = (F_ *)bd->start; - init_stack[init_sp++] = (F_)stg_init_ret; + init_stack[--init_sp] = (F_)stg_init_finish; if (init_root != NULL) { - init_stack[init_sp++] = (F_)init_root; + init_stack[--init_sp] = (F_)init_root; } cap.r.rSp = (P_)(init_stack + init_sp); @@ -324,11 +360,6 @@ hs_exit(void) /* start timing the shutdown */ stat_startExit(); -#if !defined(GRAN) - /* Finalize any remaining weak pointers */ - finalizeWeakPointersNow(); -#endif - /* stop all running tasks */ exitScheduler(); @@ -408,7 +439,7 @@ hs_exit(void) if (RtsFlags.TickyFlags.showTickyStats) PrintTickyInfo(); #endif -#if defined(mingw32_TARGET_OS) +#if defined(mingw32_HOST_OS) shutdownAsyncIO(); #endif } @@ -452,9 +483,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); } -