/* ----------------------------------------------------------------------------- * * (c) The GHC Team 1998-2008 * * Weak pointers and weak-like things in the GC * * Documentation on the architecture of the Garbage Collector can be * found in the online commentary: * * https://gitlab.haskell.org/ghc/ghc/wikis/commentary/rts/storage/gc * * ---------------------------------------------------------------------------*/ #include "rts/PosixSource.h" #include "Rts.h" #include "MarkWeak.h" #include "GC.h" #include "GCThread.h" #include "GCTDecl.h" #include "Evac.h" #include "Trace.h" #include "Schedule.h" #include "Weak.h" #include "Storage.h" #include "Threads.h" #include "sm/GCUtils.h" #include "sm/MarkWeak.h" #include "sm/Sanity.h" /* ----------------------------------------------------------------------------- Weak Pointers traverseWeakPtrList is called possibly many times during garbage collection. It returns a flag indicating whether it did any work (i.e. called evacuate on any live pointers). Invariant: traverseWeakPtrList is called when the heap is in an idempotent state. That means that there are no pending evacuate/scavenge operations. This invariant helps the weak pointer code decide which weak pointers are dead - if there are no new live weak pointers, then all the currently unreachable ones are dead. For generational GC: we don't try to finalize weak pointers in older generations than the one we're collecting. There are three distinct stages to processing weak pointers: - weak_stage == WeakPtrs We process all the weak pointers whose keys are alive (evacuate their values and finalizers), and repeat until we can find no new live keys. If no live keys are found in this pass, then we evacuate the finalizers of all the dead weak pointers in order to run them. - weak_stage == WeakThreads Now, we discover which *threads* are still alive. Pointers to threads from the all_threads and main thread lists are the weakest of all: a pointer from the finalizer of a dead weak pointer can keep a thread alive. Any threads found to be unreachable are evacuated and placed on the resurrected_threads list so we can send them a signal later. - weak_stage == WeakDone No more evacuation is done. -------------------------------------------------------------------------- */ /* Which stage of processing various kinds of weak pointer are we at? * (see traverseWeakPtrList() below for discussion). */ typedef enum { WeakPtrs, WeakThreads, WeakDone } WeakStage; static WeakStage weak_stage; static void collectDeadWeakPtrs (generation *gen, StgWeak **dead_weak_ptr_list); static bool tidyWeakList (generation *gen); static bool resurrectUnreachableThreads (generation *gen, StgTSO **resurrected_threads); static void tidyThreadList (generation *gen); /* * Note [Weak pointer processing and the non-moving GC] * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * When using the non-moving GC we defer weak pointer processing * until the concurrent marking phase as weaks in the non-moving heap may be * keyed on objects living in the non-moving generation. To accomplish this * initWeakForGC keeps all weak pointers on oldest_gen->weak_ptr_list, where * nonmovingCollect will find them. From there they will be moved to * nonmoving_old_weak_ptr_list. During the mark loop we will move weaks with * reachable keys to nonmoving_weak_ptr_list. At the end of concurrent marking * we tidy the weak list (in nonmovingTidyWeakList) and perform another set of * marking as necessary, just as is done in tidyWeakList. * * Note that this treatment takes advantage of the fact that we usually need * not worry about Weak#s living in the non-moving heap but being keyed on an * object in the moving heap since the Weak# must be strictly older than the * key. Such objects would otherwise pose a problem since the non-moving * collector would be unable to safely determine the liveness of the key. * In the rare case that we *do* see such a key (e.g. in the case of a * pinned ByteArray# living in a partially-filled accumulator block) * the nonmoving collector assumes that it is live. * */ /* * Prepare the weak object lists for GC. Specifically, reset weak_stage * and move all generations' `weak_ptr_list`s to `old_weak_ptr_list`. * Weaks with live keys will later be moved back to `weak_ptr_list` by * `tidyWeakList`. */ void initWeakForGC(void) { uint32_t oldest = N; if (RtsFlags.GcFlags.useNonmoving && N == oldest_gen->no) { // See Note [Weak pointer processing and the non-moving GC]. oldest = oldest_gen->no - 1; } for (uint32_t g = 0; g <= oldest; g++) { generation *gen = &generations[g]; gen->old_weak_ptr_list = gen->weak_ptr_list; gen->weak_ptr_list = NULL; } weak_stage = WeakThreads; } /* * Walk the weak pointer lists after having finished a round of scavenging, * tidying the weak (and possibly thread) lists (depending upon the current * weak_stage). * * Returns true if new live weak pointers were found, implying that another * round of scavenging is necessary. */ bool traverseWeakPtrList(StgWeak **dead_weak_ptr_list, StgTSO **resurrected_threads) { bool flag = false; switch (weak_stage) { case WeakDone: return false; case WeakThreads: /* Now deal with the gen->threads lists, which behave somewhat like * the weak ptr list. If we discover any threads that are about to * become garbage, we wake them up and administer an exception. */ { uint32_t g; for (g = 0; g <= N; g++) { tidyThreadList(&generations[g]); } // Use weak pointer relationships (value is reachable if // key is reachable): for (g = 0; g <= N; g++) { if (tidyWeakList(&generations[g])) { flag = true; } } // if we evacuated anything new, we must scavenge thoroughly // before we can determine which threads are unreachable. if (flag) return true; // Resurrect any threads which were unreachable for (g = 0; g <= N; g++) { if (resurrectUnreachableThreads(&generations[g], resurrected_threads)) { flag = true; } } // Next, move to the WeakPtrs stage after fully // scavenging the finalizers we've just evacuated. weak_stage = WeakPtrs; // if we evacuated anything new, we must scavenge thoroughly // before entering the WeakPtrs stage. if (flag) return true; // otherwise, fall through... } FALLTHROUGH; case WeakPtrs: { uint32_t g; // resurrecting threads might have made more weak pointers // alive, so traverse those lists again: for (g = 0; g <= N; g++) { if (tidyWeakList(&generations[g])) { flag = true; } } /* If we didn't make any changes, then we can go round and kill all * the dead weak pointers. The dead_weak_ptr list is used as a list * of pending finalizers later on. */ if (flag == false) { for (g = 0; g <= N; g++) { collectDeadWeakPtrs(&generations[g], dead_weak_ptr_list); } weak_stage = WeakDone; // *now* we're done, } return true; // but one more round of scavenging, please } default: barf("traverseWeakPtrList"); return true; } } /* * Deal with weak pointers with unreachable keys after GC has concluded. * This means marking the finalizer (and possibly value) in preparation for * later finalization. */ static void collectDeadWeakPtrs (generation *gen, StgWeak **dead_weak_ptr_list) { StgWeak *w, *next_w; for (w = gen->old_weak_ptr_list; w != NULL; w = next_w) { // If we have C finalizers, keep the value alive for this GC. // See Note [MallocPtr finalizers] in GHC.ForeignPtr, and #10904 if (w->cfinalizers != &stg_NO_FINALIZER_closure) { evacuate(&w->value); } evacuate(&w->finalizer); next_w = w->link; w->link = *dead_weak_ptr_list; *dead_weak_ptr_list = w; } } /* * Deal with threads left on the old_threads list after GC has concluded, * moving them onto the resurrected_threads list where appropriate. */ static bool resurrectUnreachableThreads (generation *gen, StgTSO **resurrected_threads) { StgTSO *t, *tmp, *next; bool flag = false; for (t = gen->old_threads; t != END_TSO_QUEUE; t = next) { next = t->global_link; // ThreadFinished and ThreadComplete: we have to keep // these on the all_threads list until they // become garbage, because they might get // pending exceptions. switch (t->what_next) { case ThreadKilled: case ThreadComplete: // The thread was unreachable so far, but it might still end up // being reachable later, e.g. after collectDeadWeakPtrs(). We don't // want the global_link field to be dangling in that case, so reset // it to END_TSO_QUEUE. The copying GC doesn't currently care, but // the compacting GC does, see #17785. t->global_link = END_TSO_QUEUE; continue; default: tmp = t; evacuate((StgClosure **)&tmp); tmp->global_link = *resurrected_threads; *resurrected_threads = tmp; flag = true; } } gen->old_threads = END_TSO_QUEUE; return flag; } /* * Walk over the `old_weak_ptr_list` of the given generation and: * * - remove any DEAD_WEAKs * - move any weaks with reachable keys to the `weak_ptr_list` of the * appropriate to-space and mark the weak's value and finalizer. */ static bool tidyWeakList(generation *gen) { if (RtsFlags.GcFlags.useNonmoving && gen == oldest_gen) { // See Note [Weak pointer processing and the non-moving GC]. ASSERT(gen->old_weak_ptr_list == NULL); return false; } StgWeak *w, **last_w, *next_w; const StgInfoTable *info; StgClosure *new; bool flag = false; last_w = &gen->old_weak_ptr_list; for (w = gen->old_weak_ptr_list; w != NULL; w = next_w) { info = w->header.info; /* N.B. This function is executed only during the serial part of GC * so consequently there is no potential for data races and therefore * no need for memory barriers. */ /* There might be a DEAD_WEAK on the list if finalizeWeak# was * called on a live weak pointer object. Just remove it. */ if (info == &stg_DEAD_WEAK_info) { next_w = w->link; *last_w = next_w; continue; } info = INFO_PTR_TO_STRUCT(info); switch (info->type) { case WEAK: /* Now, check whether the key is reachable. */ new = isAlive(w->key); if (new != NULL) { generation *new_gen; w->key = new; // Find out which generation this weak ptr is in, and // move it onto the weak ptr list of that generation. new_gen = Bdescr((P_)w)->gen; gct->evac_gen_no = new_gen->no; gct->failed_to_evac = false; // evacuate the fields of the weak ptr scavengeLiveWeak(w); if (gct->failed_to_evac) { debugTrace(DEBUG_weak, "putting weak pointer %p into mutable list", w); gct->failed_to_evac = false; recordMutableGen_GC((StgClosure *)w, new_gen->no); } // remove this weak ptr from the old_weak_ptr list *last_w = w->link; next_w = w->link; // and put it on the correct weak ptr list. w->link = new_gen->weak_ptr_list; new_gen->weak_ptr_list = w; flag = true; if (gen->no != new_gen->no) { debugTrace(DEBUG_weak, "moving weak pointer %p from %d to %d", w, gen->no, new_gen->no); } debugTrace(DEBUG_weak, "weak pointer still alive at %p -> %p", w, w->key); continue; } else { last_w = &(w->link); next_w = w->link; continue; } default: barf("tidyWeakList: not WEAK: %d, %p", info->type, w); } } return flag; } /* * Walk over the `old_threads` list of the given generation and move any * reachable threads onto the `threads` list. */ static void tidyThreadList (generation *gen) { StgTSO *t, *tmp, *next, **prev; prev = &gen->old_threads; for (t = gen->old_threads; t != END_TSO_QUEUE; t = next) { tmp = (StgTSO *)isAlive((StgClosure *)t); if (tmp != NULL) { t = tmp; } ASSERT(get_itbl((StgClosure *)t)->type == TSO); next = t->global_link; // if the thread is not masking exceptions but there are // pending exceptions on its queue, then something has gone // wrong. However, pending exceptions are OK if there is an // FFI call. ASSERT(t->blocked_exceptions == END_BLOCKED_EXCEPTIONS_QUEUE || t->why_blocked == BlockedOnCCall || t->why_blocked == BlockedOnCCall_Interruptible || (t->flags & TSO_BLOCKEX)); if (tmp == NULL) { // not alive (yet): leave this thread on the // old_threads list. prev = &(t->global_link); } else { // alive *prev = next; // move this thread onto the correct threads list. generation *new_gen; new_gen = Bdescr((P_)t)->gen; t->global_link = new_gen->threads; new_gen->threads = t; } } } #if defined(DEBUG) static void checkWeakPtrSanity(StgWeak *hd, StgWeak *tl) { StgWeak *w, *prev; for (prev = NULL, w = hd; w != NULL; prev = w, w = w->link) { ASSERT(INFO_PTR_TO_STRUCT(UNTAG_CLOSURE((StgClosure*)w)->header.info)->type == WEAK || UNTAG_CLOSURE((StgClosure*)w)->header.info == &stg_DEAD_WEAK_info); checkClosure((StgClosure*)w); } if (tl != NULL) { ASSERT(prev == tl); } } #endif /* * Traverse the capabilities' local new-weak-pointer lists at the beginning of * GC and move them to the nursery's weak_ptr_list. */ void collectFreshWeakPtrs() { uint32_t i; // move recently allocated weak_ptr_list to the old list as well for (i = 0; i < getNumCapabilities(); i++) { Capability *cap = getCapability(i); if (cap->weak_ptr_list_tl != NULL) { IF_DEBUG(sanity, checkWeakPtrSanity(cap->weak_ptr_list_hd, cap->weak_ptr_list_tl)); cap->weak_ptr_list_tl->link = g0->weak_ptr_list; g0->weak_ptr_list = cap->weak_ptr_list_hd; cap->weak_ptr_list_tl = NULL; cap->weak_ptr_list_hd = NULL; } else { ASSERT(cap->weak_ptr_list_hd == NULL); } } } /* ----------------------------------------------------------------------------- Evacuate every weak pointer object on the weak_ptr_list, and update the link fields. -------------------------------------------------------------------------- */ void markWeakPtrList ( void ) { uint32_t g; for (g = 0; g <= N; g++) { generation *gen = &generations[g]; StgWeak *w, **last_w; last_w = &gen->weak_ptr_list; for (w = gen->weak_ptr_list; w != NULL; w = RELAXED_LOAD(&w->link)) { // w might be WEAK, EVACUATED, or DEAD_WEAK (actually CON_STATIC) here #if defined(ASSERTS_ENABLED) { // careful to do this assertion only reading the info ptr // once, because during parallel GC it might change under our feet. const StgInfoTable *info = RELAXED_LOAD(&w->header.info); ASSERT(IS_FORWARDING_PTR(info) || info == &stg_DEAD_WEAK_info || INFO_PTR_TO_STRUCT(info)->type == WEAK); } #endif evacuate((StgClosure **)last_w); w = *last_w; last_w = &(w->link); } } } /* ----------------------------------------------------------------------------- Fully scavenge a known-to-be-alive weak pointer. In scavenge_block, we only partially scavenge a weak pointer because it may turn out to be dead. This function should be called when we decide that the weak pointer is alive after this GC. -------------------------------------------------------------------------- */ void scavengeLiveWeak(StgWeak *w) { evacuate(&w->value); evacuate(&w->key); evacuate(&w->finalizer); evacuate(&w->cfinalizers); }