X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2Fsm%2FGCUtils.h;h=7fafe51ba2ca064b0a4e43d091cf1da424689a57;hb=9a9803e8dc80ba41bd3e2d31228e64fa6b61060e;hp=a121dbd38c31133585c519c6d4fb4948f39bbead;hpb=eea6454f0bcbec6c6612e963cd85702c475ef146;p=ghc-hetmet.git diff --git a/rts/sm/GCUtils.h b/rts/sm/GCUtils.h index a121dbd..7fafe51 100644 --- a/rts/sm/GCUtils.h +++ b/rts/sm/GCUtils.h @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- * - * (c) The GHC Team 1998-2006 + * (c) The GHC Team 1998-2008 * * Generational garbage collector: utilities * @@ -11,30 +11,56 @@ * * --------------------------------------------------------------------------*/ -#include "SMP.h" +#ifndef SM_GCUTILS_H +#define SM_GCUTILS_H -#ifdef THREADED_RTS -extern SpinLock gc_alloc_block_sync; -#endif +BEGIN_RTS_PRIVATE bdescr *allocBlock_sync(void); void freeChain_sync(bdescr *bd); -void push_scan_block (bdescr *bd, step_workspace *ws); -bdescr *grab_todo_block (step_workspace *ws); -StgPtr gc_alloc_todo_block (step_workspace *ws); -bdescr *gc_alloc_scavd_block (step_workspace *ws); +void push_scanned_block (bdescr *bd, step_workspace *ws); +StgPtr todo_block_full (nat size, step_workspace *ws); +StgPtr alloc_todo_block (step_workspace *ws, nat size); + +bdescr *grab_local_todo_block (step_workspace *ws); +#if defined(THREADED_RTS) +bdescr *steal_todo_block (nat s); +#endif -// Returns true if a block is 3/4 full. This predicate is used to try +// Returns true if a block is partially full. This predicate is used to try // to re-use partial blocks wherever possible, and to reduce wastage. // We might need to tweak the actual value. INLINE_HEADER rtsBool isPartiallyFull(bdescr *bd) { - return (bd->free + BLOCK_SIZE_W/4 < bd->start + BLOCK_SIZE_W); + return (bd->free + WORK_UNIT_WORDS < bd->start + BLOCK_SIZE_W); } #if DEBUG void printMutableList (generation *gen); #endif + +// Version of recordMutableGen for use during GC. This uses the +// mutable lists attached to the current gc_thread structure, which +// are the same as the mutable lists on the Capability. +INLINE_HEADER void +recordMutableGen_GC (StgClosure *p, nat gen_no) +{ + bdescr *bd; + + bd = gct->mut_lists[gen_no]; + if (bd->free >= bd->start + BLOCK_SIZE_W) { + bdescr *new_bd; + new_bd = allocBlock_sync(); + new_bd->link = bd; + bd = new_bd; + gct->mut_lists[gen_no] = bd; + } + *bd->free++ = (StgWord)p; +} + +END_RTS_PRIVATE + +#endif /* SM_GCUTILS_H */