X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=inline;f=ghc%2Frts%2FWeak.c;h=afc8baeab2907b64ee5e6f68b6d280bfc6cc989f;hb=b0306f6e4545478d031ff619ee7c666cc1d8d381;hp=bc993ecf3b6b8889d2510d03d9b59368479362af;hpb=853cec457ea334d164a9b2656be884799bd373e1;p=ghc-hetmet.git diff --git a/ghc/rts/Weak.c b/ghc/rts/Weak.c index bc993ec..afc8bae 100644 --- a/ghc/rts/Weak.c +++ b/ghc/rts/Weak.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Weak.c,v 1.15 2000/06/20 15:18:40 simonmar Exp $ + * $Id: Weak.c,v 1.33 2004/09/03 15:28:59 simonmar Exp $ * * (c) The GHC Team, 1998-1999 * @@ -7,13 +7,17 @@ * * ---------------------------------------------------------------------------*/ +#include "PosixSource.h" +#define COMPILING_RTS_MAIN #include "Rts.h" -#include "RtsAPI.h" +#include "RtsUtils.h" #include "SchedAPI.h" #include "RtsFlags.h" #include "Weak.h" #include "Storage.h" +#include "Schedule.h" #include "Prelude.h" +#include "RtsAPI.h" StgWeak *weak_ptr_list; @@ -32,16 +36,20 @@ finalizeWeakPointersNow(void) { StgWeak *w; + rts_lock(); while ((w = weak_ptr_list)) { weak_ptr_list = w->link; - if (w->header.info != &DEAD_WEAK_info) { - w->header.info = &DEAD_WEAK_info; - IF_DEBUG(weak,fprintf(stderr,"Finalising weak pointer at %p -> %p\n", w, w->key)); - if (w->finalizer != &NO_FINALIZER_closure) { - rts_evalIO(w->finalizer,NULL); + if (w->header.info != &stg_DEAD_WEAK_info) { + SET_HDR(w, &stg_DEAD_WEAK_info, w->header.prof.ccs); + IF_DEBUG(weak,debugBelch("Finalising weak pointer at %p -> %p\n", w, w->key)); + if (w->finalizer != &stg_NO_FINALIZER_closure) { + rts_evalLazyIO(w->finalizer,NULL); + rts_unlock(); + rts_lock(); } } } + rts_unlock(); } /* @@ -55,6 +63,8 @@ finalizeWeakPointersNow(void) * The weak pointer object itself may not be alive - i.e. we may be * looking at either an object in from-space or one in to-space. It * doesn't really matter either way. + * + * Pre-condition: sched_mutex _not_ held. */ void @@ -65,26 +75,47 @@ scheduleFinalizers(StgWeak *list) StgMutArrPtrs *arr; nat n; - /* count number of finalizers first... */ - for (n = 0, w = list; w; w = w->link) { - if (w->finalizer != &NO_FINALIZER_closure) + // count number of finalizers, and kill all the weak pointers first... + n = 0; + for (w = list; w; w = w->link) { + + // Better not be a DEAD_WEAK at this stage; the garbage + // collector removes DEAD_WEAKs from the weak pointer list. + ASSERT(w->header.info != &stg_DEAD_WEAK_info); + + if (w->finalizer != &stg_NO_FINALIZER_closure) { n++; + } + +#ifdef PROFILING + // A weak pointer is inherently used, so we do not need to call + // LDV_recordDead(). + // + // Furthermore, when PROFILING is turned on, dead weak + // pointers are exactly as large as weak pointers, so there is + // no need to fill the slop, either. See stg_DEAD_WEAK_info + // in StgMiscClosures.hc. +#endif + SET_HDR(w, &stg_DEAD_WEAK_info, w->header.prof.ccs); } + // No finalizers to run? if (n == 0) return; - IF_DEBUG(weak,fprintf(stderr,"weak: batching %d finalizers\n", n)); + IF_DEBUG(weak,debugBelch("weak: batching %d finalizers\n", n)); arr = (StgMutArrPtrs *)allocate(sizeofW(StgMutArrPtrs) + n); - SET_HDR(arr, &MUT_ARR_PTRS_FROZEN_info, CCS_SYSTEM); + TICK_ALLOC_PRIM(sizeofW(StgMutArrPtrs), n, 0); + SET_HDR(arr, &stg_MUT_ARR_PTRS_FROZEN_info, CCS_SYSTEM); + arr->mut_link = NULL; arr->ptrs = n; - for (n = 0, w = list; w; w = w->link) { - if (w->finalizer != &NO_FINALIZER_closure) { + n = 0; + for (w = list; w; w = w->link) { + if (w->finalizer != &stg_NO_FINALIZER_closure) { arr->payload[n] = w->finalizer; n++; } - w->header.info = &DEAD_WEAK_info; } t = createIOThread(RtsFlags.GcFlags.initialStkSize,