diff options
author | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-08-29 06:30:03 +0000 |
---|---|---|
committer | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-08-29 06:30:03 +0000 |
commit | a1e95636acd2b507b3d5d7b770f271992622a571 (patch) | |
tree | cfe7aad8f88234842387beee4636720f5cada27a /eval.c | |
parent | dacc19e409fba7a79b2a1c7e30f21c00191a9a7b (diff) | |
download | ruby-a1e95636acd2b507b3d5d7b770f271992622a571.tar.gz |
string.c: move frozen_strings table to rb_vm_t
Cleanup in case MVM development proceeds.
* string.c: remove static frozen_strings
* string.c (Init_frozen_strings): new function
* string.c (rb_fstring): remove check for frozen strings,
use per-VM table
* string.c (rb_str_free): use per-VM table
* string.c (Init_String): use per-VM table
* vm_core.h (rb_vm_t): add frozen_strings table
* internal.h (Init_frozen_strings): new function prototype
* eval.c (ruby_setup): call Init_frozen_strings
[Feature #10182]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47310 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -52,6 +52,7 @@ ruby_setup(void) Init_BareVM(); Init_heap(); Init_vm_objects(); + Init_frozen_strings(); PUSH_TAG(); if ((state = EXEC_TAG()) == 0) { |