diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-11-30 14:15:28 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-11-30 14:15:28 -0800 |
commit | b3ee9cdddd521d0ee87a114269fc683f93d215e0 (patch) | |
tree | 721cd2d5fb677efde0dd9349b29a54bb31409739 /gc.c | |
parent | 42eb490febc7633ed162289921ce997ea4e35d18 (diff) | |
download | txr-b3ee9cdddd521d0ee87a114269fc683f93d215e0.tar.gz txr-b3ee9cdddd521d0ee87a114269fc683f93d215e0.tar.bz2 txr-b3ee9cdddd521d0ee87a114269fc683f93d215e0.zip |
* configure (extra_debugging): New variable. EXTRA_DEBUGGING
conditionally generated in config.h.
* gc.c (break_obj): New static variable.
(mark_obj): Debugging feature: if the object is the one stored in
break_obj and not yet reached, then call breakpt.
(deheap): New debugging function for viewing regions of the heaps.
* lib.c (breakpt): New function.
* lib.h (breakpt): Declared.
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -72,6 +72,10 @@ static val heap_min_bound, heap_max_bound; int gc_enabled = 1; +#if EXTRA_DEBUGGING +static val break_obj; +#endif + val prot1(val *loc) { assert (top < prot_stack_limit); @@ -243,6 +247,11 @@ tail_call: obj->t.type = (type_t) (obj->t.type | REACHABLE); +#if EXTRA_DEBUGGING + if (obj == break_obj) + breakpt(); +#endif + switch (t) { case CONS: mark_obj(obj->c.car); @@ -512,6 +521,15 @@ void unmark(void) } } +void dheap(heap_t *heap, int start, int end); + +void dheap(heap_t *heap, int start, int end) +{ + int i; + for (i = start; i < end; i++) + format(std_output, lit("(~a ~s)\n"), num(i), &heap->block[i], nao); +} + /* * This function does nothing. * gc_hint(x) just takes the address of local variable x |