X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fincludes%2FStgStorage.h;h=11cca7033e0b7e896a00721aa8a2ae9cdf7c5bd8;hb=a1cb8472337f6a3ba1533010bc1598e2cc6c8212;hp=1b9c61a26b9be7f2193cd3fe7fc6f8f646611d04;hpb=6f83fbc0a8b201a3d2ad20e4d8c707613d45cf2a;p=ghc-hetmet.git diff --git a/ghc/includes/StgStorage.h b/ghc/includes/StgStorage.h index 1b9c61a..11cca70 100644 --- a/ghc/includes/StgStorage.h +++ b/ghc/includes/StgStorage.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: StgStorage.h,v 1.8 2001/07/23 10:47:16 simonmar Exp $ + * $Id: StgStorage.h,v 1.11 2001/11/08 12:46:31 simonmar Exp $ * * (c) The GHC Team, 1998-1999 * @@ -48,36 +48,40 @@ */ typedef struct _step { - unsigned int no; /* step number */ - bdescr *blocks; /* blocks in this step */ - unsigned int n_blocks; /* number of blocks */ - struct _step *to; /* where collected objects from this step go */ - struct _generation *gen; /* generation this step belongs to */ - unsigned int gen_no; /* generation number (cached) */ - bdescr *large_objects; /* large objects (doubly linked) */ + unsigned int no; /* step number */ + bdescr * blocks; /* blocks in this step */ + unsigned int n_blocks; /* number of blocks */ + struct _step * to; /* destination step for live objects */ + struct _generation * gen; /* generation this step belongs to */ + unsigned int gen_no; /* generation number (cached) */ + bdescr * large_objects; /* large objects (doubly linked) */ + unsigned int n_large_blocks; /* no. of blocks used by large objs */ + int is_compacted; /* compact this step? (old gen only) */ /* temporary use during GC: */ - StgPtr hp; /* next free locn in to-space */ - StgPtr hpLim; /* end of current to-space block */ - bdescr *hp_bd; /* bdescr of current to-space block */ - bdescr *to_space; /* bdescr of first to-space block */ - unsigned int to_blocks; /* number of blocks in to-space */ - bdescr *scan_bd; /* block currently being scanned */ - StgPtr scan; /* scan pointer in current block */ - bdescr *new_large_objects; /* large objects collected so far */ - bdescr *scavenged_large_objects; /* live large objects after GC (dbl link) */ + StgPtr hp; /* next free locn in to-space */ + StgPtr hpLim; /* end of current to-space block */ + bdescr * hp_bd; /* bdescr of current to-space block */ + bdescr * to_blocks; /* bdescr of first to-space block */ + unsigned int n_to_blocks; /* number of blocks in to-space */ + bdescr * scan_bd; /* block currently being scanned */ + StgPtr scan; /* scan pointer in current block */ + bdescr * new_large_objects; /* large objects collected so far */ + bdescr * scavenged_large_objects; /* live large objs after GC (d-link) */ + unsigned int n_scavenged_large_blocks;/* size of above */ + bdescr * bitmap; /* bitmap for compacting collection */ } step; typedef struct _generation { - unsigned int no; /* generation number */ - step *steps; /* steps */ - unsigned int n_steps; /* number of steps */ - unsigned int max_blocks; /* max blocks in step 0 */ - StgMutClosure *mut_list; /* mutable objects in this generation (not G0)*/ - StgMutClosure *mut_once_list; /* objects that point to younger generations */ + unsigned int no; /* generation number */ + step * steps; /* steps */ + unsigned int n_steps; /* number of steps */ + unsigned int max_blocks; /* max blocks in step 0 */ + StgMutClosure *mut_list; /* mut objects in this gen (not G0)*/ + StgMutClosure *mut_once_list; /* objects that point to younger gens */ /* temporary use during GC: */ - StgMutClosure *saved_mut_list; + StgMutClosure * saved_mut_list; /* stats information */ unsigned int collections; @@ -100,16 +104,22 @@ typedef struct _generation { #define OpenNursery(hp,hplim) \ (hp = CurrentNursery->free-1, \ - hplim = CurrentNursery->start + BLOCK_SIZE_W - 1) + hplim = CurrentNursery->start + CurrentNursery->blocks*BLOCK_SIZE_W - 1) #define CloseNursery(hp) (CurrentNursery->free = (P_)(hp)+1) /* ----------------------------------------------------------------------------- + Prototype for an evacuate-like function + -------------------------------------------------------------------------- */ + +typedef void (*evac_fn)(StgClosure **); + +/* ----------------------------------------------------------------------------- Trigger a GC from Haskell land. -------------------------------------------------------------------------- */ extern void performGC(void); extern void performMajorGC(void); -extern void performGCWithRoots(void (*get_roots)(void)); +extern void performGCWithRoots(void (*get_roots)(evac_fn)); #endif /* STGSTORAGE_H */