aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorJean Boussier <byroot@ruby-lang.org>2023-11-16 17:50:21 +0100
committerJean Boussier <jean.boussier@gmail.com>2023-11-17 09:19:21 +0100
commit94c9f166632a901e563463933efd42e618432d70 (patch)
tree948304c7e1b048d53cba547c49c0bac828066659 /internal
parent498b086c374608005278c0f7d105df1925e13a22 (diff)
downloadruby-94c9f166632a901e563463933efd42e618432d70.tar.gz
Refactor rb_obj_evacuate_ivs_to_hash_table
That function is a bit too low level to called from multiple places. It's always used in tandem with `rb_shape_set_too_complex` and both have to know how the object is laid out to update the `iv_ptr`. So instead we can provide two higher level function: - `rb_obj_copy_ivs_to_hash_table` to prepare a `st_table` from an arbitrary oject. - `rb_obj_convert_to_too_complex` to assign the new `st_table` to the old object, and safely free the old `iv_ptr`. Unfortunately both can't be combined into one, because `rb_obj_copy_ivar` need `rb_obj_copy_ivs_to_hash_table` to copy from one object to another.
Diffstat (limited to 'internal')
-rw-r--r--internal/variable.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/variable.h b/internal/variable.h
index 021e7cc6a8..63b074a308 100644
--- a/internal/variable.h
+++ b/internal/variable.h
@@ -47,7 +47,8 @@ VALUE rb_mod_set_temporary_name(VALUE, VALUE);
struct gen_ivtbl;
int rb_gen_ivtbl_get(VALUE obj, ID id, struct gen_ivtbl **ivtbl);
-int rb_obj_evacuate_ivs_to_hash_table(ID key, VALUE val, st_data_t arg);
+void rb_obj_copy_ivs_to_hash_table(VALUE obj, st_table *table);
+void rb_obj_convert_to_too_complex(VALUE obj, st_table *table);
void rb_evict_ivars_to_hash(VALUE obj);
RUBY_SYMBOL_EXPORT_BEGIN