parrotcode: Dead object destruction of the various headers | |
Contents | C |
src/dod.c - Dead object destruction of the various headers
This file implements dead object destruction. This is documented in PDD 9 with supplementary notes in docs/dev/dod.dev.
It's possible to turn on/off the checking of the system stack and processor registers. The actual checking is implemented in src/cpu_dep.c.
There's also a verbose mode for garbage collection.
static void mark_special(Parrot_Interp interp, PMC *obj)
PMC_EXT
structure,
append or prepend the next_for_GC
pointer; otherwise,
do the custom mark directly.static int trace_active_PMCs(Parrot_Interp interp, int trace_stack)
int Parrot_dod_trace_root(Parrot_Interp interp, int trace_stack)
trace_stack
can have these values: 0 ... trace normal roots, no system areas
1 ... trace whole root set
2 ... trace system areas only
int Parrot_dod_trace_children(Parrot_Interp interp, size_t how_many)
void clear_cow(Parrot_Interp interp, Small_Object_Pool *pool, int cleanup)
void used_cow(Parrot_Interp interp, Small_Object_Pool *pool, int cleanup)
bufstart
.void Parrot_dod_sweep(Parrot_Interp interp, Small_Object_Pool *pool)
GC_IS_MALLOC
, bufstart gets freed too, if possible. Avoid buffers that are immune from collection (i.e. constant).static size_t find_common_mask(size_t val1, size_t val2)
val1
and val2
.void trace_mem_block(Parrot_Interp interp, size_t lo_var_ptr, size_t hi_var_ptr)
lo_var_ptr
and hi_var_ptr
.void Parrot_dod_profile_start(Parrot_Interp interp)
void Parrot_dod_profile_end(Parrot_Interp interp, int what)
what
run when profiling is enabled. Also record start time of next part.void Parrot_do_dod_run(Parrot_Interp interp, UINTVAL flags)
void Parrot_dod_ms_run(Parrot_Interp interp, UINTVAL flags)
void Parrot_dod_ms_run_init(Parrot_Interp interp)
include/parrot/dod.h, src/cpu_dep.c, docs/dev/dod.dev and docs/pdds/pdd09_gc.pod.
Initial version by Mike Lambert on 2002.05.27.
|