summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2019-04-22 17:14:36 -0700
committerAaron Patterson <tenderlove@ruby-lang.org>2019-04-22 20:08:01 -0700
commitea520ca9273699fc1c77a71bbeba4b6e06ccfc6c (patch)
tree835783d0d3a7d09ff0f6064056a06e70178928e7 /vm.c
parent660c0716595a8fc942d12317a5c55c038b830e94 (diff)
Prevent rb_define_(class|module) classes from moving
Before this commit, classes and modules would be registered with the VM's `defined_module_hash`. The key was the ID of the class, but that meant that it was possible for hash collisions to occur. The compactor doesn't allow classes in the `defined_module_hash` to move, but if there is a conflict, then it's possible a class would be removed from the hash and not get pined. This commit changes the key / value of the hash just to be the class itself, thus preventing movement.
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/vm.c b/vm.c
index c4144b5b99..41064f07c3 100644
--- a/vm.c
+++ b/vm.c
@@ -2251,9 +2251,8 @@ rb_vm_mark(void *ptr)
rb_gc_mark(vm->loaded_features_snapshot);
rb_gc_mark(vm->top_self);
RUBY_MARK_UNLESS_NULL(vm->coverages);
- rb_gc_mark(vm->defined_module_hash);
/* Prevent classes from moving */
- rb_mark_tbl(rb_hash_tbl(vm->defined_module_hash, __FILE__, __LINE__));
+ rb_mark_tbl(vm->defined_module_hash);
if (vm->loading_table) {
rb_mark_tbl(vm->loading_table);
@@ -2286,7 +2285,7 @@ rb_vm_add_root_module(ID id, VALUE module)
{
rb_vm_t *vm = GET_VM();
- rb_hash_aset(vm->defined_module_hash, ID2SYM(id), module);
+ st_insert(vm->defined_module_hash, (st_data_t)module, (st_data_t)module);
return TRUE;
}
@@ -2561,6 +2560,9 @@ thread_mark(void *ptr)
RUBY_MARK_UNLESS_NULL(th->top_self);
RUBY_MARK_UNLESS_NULL(th->top_wrapper);
if (th->root_fiber) rb_fiber_mark_self(th->root_fiber);
+
+ /* Ensure EC stack objects are pinned */
+ rb_execution_context_mark(th->ec);
RUBY_MARK_UNLESS_NULL(th->stat_insn_usage);
RUBY_MARK_UNLESS_NULL(th->last_status);
RUBY_MARK_UNLESS_NULL(th->locking_mutex);
@@ -3230,7 +3232,7 @@ Init_vm_objects(void)
{
rb_vm_t *vm = GET_VM();
- vm->defined_module_hash = rb_hash_new();
+ vm->defined_module_hash = st_init_numtable();
/* initialize mark object array, hash */
vm->mark_object_ary = rb_ary_tmp_new(128);