diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-12-03 19:13:25 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-12-03 19:13:25 -0800 |
commit | 208f8a44f899460c182da8644a7cd982d18aade9 (patch) | |
tree | 56ac5fbf9f94cd53bcea1a1a81f376f6f4631c1d /gc.c | |
parent | ea34a4bc8826715e754b84077b244a2941eae7f4 (diff) | |
download | txr-208f8a44f899460c182da8644a7cd982d18aade9.tar.gz txr-208f8a44f899460c182da8644a7cd982d18aade9.tar.bz2 txr-208f8a44f899460c182da8644a7cd982d18aade9.zip |
* gc.c (heap_min_bound, heap_max_bound): New static globals.
(more): Update heap_min_bound and heap_max_bound.
(in_heap): Do early rejection tests on the pointer. If it's
not aligned, or it's completely outside of the bounding
box of the heap area, short circuit to false.
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -63,6 +63,7 @@ static val **top = prot_stack; static val free_list, *free_tail = &free_list; static heap_t *heap_list; +static val heap_min_bound, heap_max_bound; int gc_enabled = 1; @@ -115,6 +116,12 @@ static void more(void) assert (free_list == 0); + if (end > heap_max_bound) + heap_max_bound = end; + + if (block < heap_min_bound) + heap_min_bound = block; + while (block < end) { block->t.next = free_list; block->t.type = (type_t) FREE; @@ -277,6 +284,12 @@ static int in_heap(val ptr) { heap_t *heap; + if (!is_ptr(ptr)) + return 0; + + if (ptr < heap_min_bound || ptr >= heap_max_bound) + return 0; + for (heap = heap_list; heap != 0; heap = heap->next) { if (ptr >= heap->block && ptr < heap->block + HEAP_SIZE) if (((char *) ptr - (char *) heap->block) % sizeof (obj_t) == 0) |