diff options
author | Aaron Patterson <[email protected]> | 2020-05-12 12:00:35 -0700 |
---|---|---|
committer | Aaron Patterson <[email protected]> | 2020-05-18 16:57:10 -0700 |
commit | 6efb9fe04229c9e96205025bfd8b6cfec1b9a30f (patch) | |
tree | 86708733d3faba07dab1fcc10baf29bf5589c608 /gc.c | |
parent | 9ee66d2bef4a32b5b9880a5226f3fbeb7fde5884 (diff) |
Allow references stored in the VM stack to move
We can update these references too, so lets allow them to move.
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -4800,14 +4800,13 @@ rb_gc_mark_values(long n, const VALUE *values) } static void -gc_mark_and_pin_stack_values(rb_objspace_t *objspace, long n, const VALUE *values) +gc_mark_stack_values(rb_objspace_t *objspace, long n, const VALUE *values) { long i; for (i=0; i<n; i++) { - /* skip MOVED objects that are on the stack */ - if (is_markable_object(objspace, values[i]) && T_MOVED != BUILTIN_TYPE(values[i])) { - gc_mark_and_pin(objspace, values[i]); + if (is_markable_object(objspace, values[i])) { + gc_mark(objspace, values[i]); } } } @@ -4816,7 +4815,7 @@ void rb_gc_mark_vm_stack_values(long n, const VALUE *values) { rb_objspace_t *objspace = &rb_objspace; - gc_mark_and_pin_stack_values(objspace, n, values); + gc_mark_stack_values(objspace, n, values); } static int |