summaryrefslogtreecommitdiff
path: root/transient_heap.c
diff options
context:
space:
mode:
Diffstat (limited to 'transient_heap.c')
-rw-r--r--transient_heap.c17
1 files changed, 4 insertions, 13 deletions
diff --git a/transient_heap.c b/transient_heap.c
index 444f4fdcc4..51886d8dc1 100644
--- a/transient_heap.c
+++ b/transient_heap.c
@@ -864,26 +864,17 @@ blocks_clear_marked_index(struct transient_heap_block* block)
static void
transient_heap_block_update_refs(struct transient_heap* theap, struct transient_heap_block* block)
{
- int i=0, n=0;
+ int marked_index = block->info.last_marked_index;
- while (i<block->info.index) {
- void *ptr = &block->buff[i];
- struct transient_alloc_header *header = ptr;
+ while (marked_index >= 0) {
+ struct transient_alloc_header *header = alloc_header(block, marked_index);
asan_unpoison_memory_region(header, sizeof *header, false);
- void *poisoned = __asan_region_is_poisoned((void *)header->obj, SIZEOF_VALUE);
- asan_unpoison_object(header->obj, false);
-
header->obj = rb_gc_location(header->obj);
- if (poisoned) {
- asan_poison_object(header->obj);
- }
-
- i += header->size;
+ marked_index = header->next_marked_index;
asan_poison_memory_region(header, sizeof *header);
- n++;
}
}