1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team, 1998-1999
5 * Weak pointers / finalizers
7 * ---------------------------------------------------------------------------*/
9 #include "PosixSource.h"
20 StgWeak *weak_ptr_list;
23 * scheduleFinalizers() is called on the list of weak pointers found
24 * to be dead after a garbage collection. It overwrites each object
25 * with DEAD_WEAK, and creates a new thread to run the pending finalizers.
27 * This function is called just after GC. The weak pointers on the
28 * argument list are those whose keys were found to be not reachable,
29 * however the value and finalizer fields have by now been marked live.
30 * The weak pointer object itself may not be alive - i.e. we may be
31 * looking at either an object in from-space or one in to-space. It
32 * doesn't really matter either way.
34 * Pre-condition: sched_mutex _not_ held.
38 scheduleFinalizers(Capability *cap, StgWeak *list)
45 // count number of finalizers, and kill all the weak pointers first...
47 for (w = list; w; w = w->link) {
49 // Better not be a DEAD_WEAK at this stage; the garbage
50 // collector removes DEAD_WEAKs from the weak pointer list.
51 ASSERT(w->header.info != &stg_DEAD_WEAK_info);
53 if (w->finalizer != &stg_NO_FINALIZER_closure) {
58 // A weak pointer is inherently used, so we do not need to call
61 // Furthermore, when PROFILING is turned on, dead weak
62 // pointers are exactly as large as weak pointers, so there is
63 // no need to fill the slop, either. See stg_DEAD_WEAK_info
64 // in StgMiscClosures.hc.
66 SET_HDR(w, &stg_DEAD_WEAK_info, w->header.prof.ccs);
69 // No finalizers to run?
72 debugTrace(DEBUG_weak, "weak: batching %d finalizers", n);
74 arr = (StgMutArrPtrs *)allocateLocal(cap, sizeofW(StgMutArrPtrs) + n);
75 TICK_ALLOC_PRIM(sizeofW(StgMutArrPtrs), n, 0);
76 SET_HDR(arr, &stg_MUT_ARR_PTRS_FROZEN_info, CCS_SYSTEM);
80 for (w = list; w; w = w->link) {
81 if (w->finalizer != &stg_NO_FINALIZER_closure) {
82 arr->payload[n] = w->finalizer;
87 t = createIOThread(cap,
88 RtsFlags.GcFlags.initialStkSize,
91 (StgClosure *)runFinalizerBatch_closure,
95 scheduleThread(cap,t);