summaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-11-30 14:15:28 -0800
committerKaz Kylheku <kaz@kylheku.com>2011-11-30 14:15:28 -0800
commitb3ee9cdddd521d0ee87a114269fc683f93d215e0 (patch)
tree721cd2d5fb677efde0dd9349b29a54bb31409739 /gc.c
parent42eb490febc7633ed162289921ce997ea4e35d18 (diff)
downloadtxr-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.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/gc.c b/gc.c
index 4f8c41bc..72b1af05 100644
--- a/gc.c
+++ b/gc.c
@@ -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