diff options
Diffstat (limited to 'types.c')
-rw-r--r-- | types.c | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -2064,10 +2064,18 @@ ucv_gc_common(uc_vm_t *vm, bool final) if (!final) { /* mark reachable objects */ ucv_gc_mark(vm->globals); + ucv_gc_mark(vm->exception.stacktrace); - for (i = 0; i < vm->callframes.count; i++) + for (i = 0; i < vm->callframes.count; i++) { ucv_gc_mark(vm->callframes.entries[i].ctx); + if (vm->callframes.entries[i].closure) + ucv_gc_mark(&vm->callframes.entries[i].closure->header); + + if (vm->callframes.entries[i].cfunction) + ucv_gc_mark(&vm->callframes.entries[i].cfunction->header); + } + for (i = 0; i < vm->stack.count; i++) ucv_gc_mark(vm->stack.entries[i]); } |