14#include "ruby/internal/config.h"
17#include "ccan/list/list.h"
19#include "debug_counter.h"
23#include "internal/box.h"
24#include "internal/class.h"
25#include "internal/compilers.h"
26#include "internal/error.h"
27#include "internal/eval.h"
28#include "eval_intern.h"
29#include "internal/hash.h"
30#include "internal/object.h"
31#include "internal/gc.h"
32#include "internal/re.h"
33#include "internal/struct.h"
34#include "internal/symbol.h"
35#include "internal/thread.h"
36#include "internal/variable.h"
37#include "internal/vm.h"
45#include "ractor_core.h"
49#define GET_GLOBAL_CVAR_STATE() (ruby_vm_global_cvar_state)
51typedef void rb_gvar_compact_t(
void *var);
59static VALUE autoload_features;
64static VALUE autoload_mutex;
66static void check_before_mod_set(
VALUE,
ID,
VALUE,
const char *);
68static VALUE rb_const_search(
VALUE klass,
ID id,
int exclude,
int recurse,
int visibility,
VALUE *found_in);
77typedef int rb_ivar_foreach_callback_func(
ID key,
VALUE val, st_data_t arg);
78static void rb_field_foreach(
VALUE obj, rb_ivar_foreach_callback_func *func, st_data_t arg,
bool ivar_only);
81rb_generic_fields_lock_atfork(
void)
90 rb_global_tbl = rb_id_table_create(0);
91 generic_fields_tbl_ = st_init_numtable();
96 rb_vm_register_global_object(autoload_mutex);
98 autoload_features = rb_ident_hash_new();
100 rb_vm_register_global_object(autoload_features);
104rb_namespace_p(
VALUE obj)
125classname(
VALUE klass,
bool *permanent)
129 VALUE classpath = RCLASS_CLASSPATH(klass);
130 if (classpath == 0)
return Qnil;
132 *permanent = RCLASS_PERMANENT_CLASSPATH_P(klass);
138rb_mod_name0(
VALUE klass,
bool *permanent)
140 return classname(klass, permanent);
155 return classname(mod, &permanent);
160is_constant_path(
VALUE name)
162 const char *path = RSTRING_PTR(name);
166 const char *p = path;
168 if (p >= pend || !*p) {
173 if (p + 2 <= pend && p[0] ==
':' && p[1] ==
':') {
177 const char *pbeg = p;
178 while (p < pend && *p !=
':') p++;
180 if (pbeg == p)
return false;
182 if (rb_enc_symname_type(pbeg, p - pbeg, enc, 0) != ID_CONST) {
199set_sub_temporary_name_recursive(
VALUE mod,
VALUE data,
int recursive)
201 if (recursive)
return Qfalse;
206 name = build_const_path(rb_ary_last(0, 0, args->names), args->last);
208 set_sub_temporary_name_foreach(mod, args, name);
213set_sub_temporary_name_topmost(
VALUE mod,
VALUE data,
int recursive)
215 if (recursive)
return Qfalse;
218 VALUE name = args->names;
222 set_sub_temporary_name_foreach(mod, args, name);
226static enum rb_id_table_iterator_result
227set_sub_temporary_name_i(
ID id,
VALUE val,
void *data)
230 if (rb_namespace_p(val) && !RCLASS_PERMANENT_CLASSPATH_P(val)) {
236 return ID_TABLE_CONTINUE;
242 RCLASS_WRITE_CLASSPATH(mod, name, FALSE);
246 rb_id_table_foreach(tbl, set_sub_temporary_name_i, args);
251 rb_id_table_foreach(tbl, set_sub_temporary_name_i, args);
252 rb_ary_set_len(args->names, names_len);
313rb_mod_set_temporary_name(
VALUE mod,
VALUE name)
316 if (RCLASS_PERMANENT_CLASSPATH_P(mod)) {
323 set_sub_temporary_name(mod, 0);
330 if (RSTRING_LEN(name) == 0) {
331 rb_raise(rb_eArgError,
"empty class/module name");
334 if (is_constant_path(name)) {
335 rb_raise(rb_eArgError,
"the temporary name must not be a constant path to avoid confusion");
339 RB_OBJ_SET_SHAREABLE(name);
343 set_sub_temporary_name(mod, name);
356 path = rb_sprintf(
"#<Class:%p>", (
void*)obj);
359 path = rb_sprintf(
"#<Module:%p>", (
void*)obj);
362 path = rb_sprintf(
"#<%"PRIsVALUE
":%p>", klass, (
void*)obj);
372rb_tmp_class_path(
VALUE klass,
bool *permanent, fallback_func fallback)
374 VALUE path = classname(klass, permanent);
386 path = rb_tmp_class_path(
RBASIC(klass)->klass, &perm, fallback);
391 return fallback(klass, path);
398 VALUE path = rb_tmp_class_path(klass, &permanent, make_temporary_path);
416rb_search_class_path(
VALUE klass)
419 return rb_tmp_class_path(klass, &permanent, no_fallback);
428 return rb_fstring(path);
432build_const_path(
VALUE head,
ID tail)
434 return build_const_pathname(head, rb_id2str(tail));
440 bool permanent =
true;
447 str = rb_tmp_class_path(under, &permanent, make_temporary_path);
448 str = build_const_pathname(str, name);
451 RB_OBJ_SET_SHAREABLE(str);
452 RCLASS_SET_CLASSPATH(klass, str, permanent);
467 const char *pbeg, *pend, *p, *path = RSTRING_PTR(pathname);
471 if (!rb_enc_asciicompat(enc)) {
472 rb_raise(rb_eArgError,
"invalid class path encoding (non ASCII)");
475 pend = path + RSTRING_LEN(pathname);
476 if (path == pend || path[0] ==
'#') {
477 rb_raise(rb_eArgError,
"can't retrieve anonymous class %"PRIsVALUE,
481 while (p < pend && *p !=
':') p++;
483 if (p < pend && p[0] ==
':') {
484 if ((
size_t)(pend - p) < 2 || p[1] !=
':')
goto undefined_class;
489 goto undefined_class;
491 c = rb_const_search(c,
id, TRUE, FALSE, FALSE, NULL);
492 if (UNDEF_P(c))
goto undefined_class;
493 if (!rb_namespace_p(c)) {
494 rb_raise(
rb_eTypeError,
"%"PRIsVALUE
" does not refer to class/module",
503 rb_raise(rb_eArgError,
"undefined class/module % "PRIsVALUE,
524 VALUE path = rb_tmp_class_path(
rb_class_real(klass), &permanent, make_temporary_path);
525 if (
NIL_P(path))
return NULL;
526 return RSTRING_PTR(path);
549 rb_gvar_compact_t *compactor;
575static enum rb_id_table_iterator_result
576free_global_entry_i(
VALUE val,
void *arg)
579 entry->var->counter--;
580 if (entry->var->counter == 0) {
581 free_global_variable(entry->var);
584 return ID_TABLE_DELETE;
588rb_free_rb_global_tbl(
void)
590 rb_id_table_foreach_values(rb_global_tbl, free_global_entry_i, 0);
591 rb_id_table_free(rb_global_tbl);
595rb_free_generic_fields_tbl_(
void)
597 st_free_table(generic_fields_tbl_);
601rb_find_global_entry(
ID id)
607 if (!rb_id_table_lookup(rb_global_tbl,
id, &data)) {
616 if (UNLIKELY(!rb_ractor_main_p()) && (!entry || !entry->ractor_local)) {
617 rb_raise(rb_eRactorIsolationError,
"can not access global variable %s from non-main Ractor", rb_id2name(
id));
624rb_gvar_ractor_local(
const char *name)
627 entry->ractor_local =
true;
631rb_gvar_box_ready(
const char *name)
634 entry->var->box_ready =
true;
638rb_gvar_box_dynamic(
const char *name)
641 entry->var->box_dynamic =
true;
645rb_gvar_undef_compactor(
void *var)
654 entry = rb_find_global_entry(
id);
661 entry->ractor_local =
false;
667 var->compactor = rb_gvar_undef_compactor;
669 var->block_trace = 0;
671 var->box_ready =
false;
672 var->box_dynamic =
false;
673 rb_id_table_insert(rb_global_tbl,
id, (
VALUE)entry);
682 rb_warning(
"global variable '%"PRIsVALUE
"' not initialized", QUOTE_ID(
id));
688rb_gvar_val_compactor(
void *_var)
695 VALUE new = rb_gc_location(obj);
697 var->data = (
void*)
new;
709 var->compactor = rb_gvar_val_compactor;
711 var->data = (
void*)val;
729 var->data = (
void*)val;
736 if (data) rb_gc_mark_movable(data);
742 if (!var)
return Qnil;
755 if (var) rb_gc_mark_maybe(*var);
761 rb_name_error(
id,
"%"PRIsVALUE
" is a read-only variable", QUOTE_ID(
id));
764static enum rb_id_table_iterator_result
765mark_global_entry(
VALUE v,
void *ignored)
771 (*var->marker)(var->data);
774 if (trace->data) rb_gc_mark_maybe(trace->data);
777 return ID_TABLE_CONTINUE;
780#define gc_mark_table(task) \
781 if (rb_global_tbl) { rb_id_table_foreach_values(rb_global_tbl, task##_global_entry, 0); }
784rb_gc_mark_global_tbl(
void)
789static enum rb_id_table_iterator_result
790update_global_entry(
VALUE v,
void *ignored)
795 (*var->compactor)(var);
796 return ID_TABLE_CONTINUE;
800rb_gc_update_global_tbl(
void)
802 gc_mark_table(update);
806global_id(
const char *name)
810 if (name[0] ==
'$')
id = rb_intern(name);
812 size_t len = strlen(name);
816 memcpy(buf+1, name,
len);
817 id = rb_intern2(buf,
len+1);
824find_global_id(
const char *name)
827 size_t len = strlen(name);
829 if (name[0] ==
'$') {
836 memcpy(buf+1, name,
len);
852 ID id = global_id(name);
855 gvar->data = (
void*)var;
907 trace->next = entry->var->trace;
908 trace->func = rb_trace_eval;
911 entry->var->trace = trace;
925 while (trace->next) {
928 trace->next = next->next;
951 if ((entry = rb_find_global_entry(
id)) == NULL) {
952 rb_name_error(
id,
"undefined global variable %"PRIsVALUE
"", QUOTE_ID(
id));
955 trace = entry->var->trace;
966 if (!entry->var->block_trace) remove_trace(entry->var);
971 if (trace->data == cmd) {
973 if (!entry->var->block_trace) remove_trace(entry->var);
994 (*trace->func)(trace->data, data->val);
1005 var->block_trace = 0;
1016 (*var->setter)(val, entry->id, var->data);
1018 if (var->trace && !var->block_trace) {
1019 var->block_trace = 1;
1020 trace.trace = var->trace;
1030 return BOX_USER_P(box) &&
1031 !entry->var->box_dynamic &&
1040 const rb_box_t *box = rb_current_box();
1041 bool use_box_tbl =
false;
1046 if (gvar_use_box_tbl(box, entry)) {
1048 rb_hash_aset(box->gvar_tbl,
rb_id2sym(entry->id), val);
1055 retval = rb_gvar_set_entry(entry, val);
1063 return rb_gvar_set(global_id(name), val);
1069 VALUE retval, gvars, key;
1070 const rb_box_t *box = rb_current_box();
1071 bool use_box_tbl =
false;
1079 if (gvar_use_box_tbl(box, entry)) {
1081 gvars = box->gvar_tbl;
1083 if (
RTEST(rb_hash_has_key(gvars, key))) {
1084 retval = rb_hash_aref(gvars, key);
1089 retval = (*var->getter)(entry->id, var->data);
1091 retval =
rb_funcall(retval, rb_intern(
"clone"), 0);
1095 rb_hash_aset(gvars, key, retval);
1100 retval = (*var->getter)(entry->id, var->data);
1108 ID id = find_global_id(name);
1111 rb_warning(
"global variable '%s' not initialized", name);
1115 return rb_gvar_get(
id);
1119rb_gvar_defined(
ID id)
1126rb_gvar_getter_function_of(
ID id)
1129 return entry->var->getter;
1133rb_gvar_setter_function_of(
ID id)
1136 return entry->var->setter;
1139static enum rb_id_table_iterator_result
1140gvar_i(
ID key,
VALUE val,
void *a)
1144 return ID_TABLE_CONTINUE;
1153 if (!rb_ractor_main_p()) {
1154 rb_raise(rb_eRactorIsolationError,
"can not access global variables from non-main Ractors");
1158 rb_id_table_foreach(rb_global_tbl, gvar_i, (
void *)ary);
1159 if (!
NIL_P(backref)) {
1161 int i, nmatch = rb_match_count(backref);
1163 for (i = 1; i <= nmatch; ++i) {
1167 buf[1] = (char)(i +
'0');
1168 sym =
ID2SYM(rb_intern2(buf, 2));
1187 if (!rb_ractor_main_p()) {
1188 rb_raise(rb_eRactorIsolationError,
"can not access global variables from non-main Ractors");
1193 if (!rb_id_table_lookup(gtbl, name1, &data1)) {
1196 rb_id_table_insert(gtbl, name1, (
VALUE)entry1);
1198 else if ((entry1 = (
struct rb_global_entry *)data1)->var != entry2->var) {
1200 if (var->block_trace) {
1205 if (var->counter == 0) {
1206 free_global_variable(var);
1209 if (entry1->var != entry2->var) {
1210 entry2->var->counter++;
1211 entry1->var = entry2->var;
1217IVAR_ACCESSOR_SHOULD_BE_MAIN_RACTOR(
ID id)
1219 if (UNLIKELY(!rb_ractor_main_p())) {
1221 rb_raise(rb_eRactorIsolationError,
"can not set instance variables of classes/modules by non-main Ractors");
1227CVAR_ACCESSOR_SHOULD_BE_MAIN_RACTOR(
VALUE klass,
ID id)
1229 if (UNLIKELY(!rb_ractor_main_p())) {
1230 rb_raise(rb_eRactorIsolationError,
"can not set class variables from non-main Ractors (%"PRIsVALUE
" from %"PRIsVALUE
")", rb_id2str(
id), klass);
1238 rb_raise(rb_eRactorIsolationError,
1239 "can not read non-shareable class variable %"PRIsVALUE
" from non-main Ractors (%"PRIsVALUE
")",
1240 rb_id2str(
id), klass);
1245ivar_ractor_check(
VALUE obj,
ID id)
1249 UNLIKELY(!rb_ractor_main_p()) &&
1252 rb_raise(rb_eRactorIsolationError,
"can not access instance variables of shareable objects from non-main Ractors");
1257rb_generic_fields_tbl_get(
void)
1259 return generic_fields_tbl_;
1268 if (rb_multi_ractor_p()) {
1276 if (rb_multi_ractor_p()) {
1282rb_mark_generic_ivar(
VALUE obj)
1287 if (rb_gc_during_global_gc_p() && rb_gc_multi_objspace_p()) {
1295 st_lookup(generic_fields_tbl_, (st_data_t)obj, (st_data_t *)&data);
1298 rb_gc_mark_movable(data);
1306rb_obj_fields_generic_uncached(
VALUE obj)
1308 VALUE fields_obj = 0;
1312 found = st_lookup(generic_fields_tbl_, (st_data_t)obj, (st_data_t *)&fields_obj);
1316 rb_bug(
"Object is missing entry in generic_fields_tbl");
1322obj_use_generic_fields_tbl_p(
VALUE obj)
1337rb_obj_fields(
VALUE obj,
ID field_name)
1339 ivar_ractor_check(obj, field_name);
1347 return ROBJECT_FIELDS_OBJ(obj);
1351 return RCLASS_WRITABLE_FIELDS_OBJ(obj);
1357 return RSTRUCT_FIELDS_OBJ(obj);
1361 VALUE fields_obj = 0;
1363 if (rb_obj_shape_has_fields(obj)) {
1365 if (ec->gen_fields_cache.obj == obj && !UNDEF_P(ec->gen_fields_cache.fields_obj) && rb_imemo_fields_owner(ec->gen_fields_cache.fields_obj) == obj) {
1366 fields_obj = ec->gen_fields_cache.fields_obj;
1367 RUBY_ASSERT(fields_obj == rb_obj_fields_generic_uncached(obj));
1370 fields_obj = rb_obj_fields_generic_uncached(obj);
1371 ec->gen_fields_cache.fields_obj = fields_obj;
1372 ec->gen_fields_cache.obj = obj;
1384 if (rb_obj_gen_fields_p(obj)) {
1385 st_data_t key = (st_data_t)obj, value;
1391 RSTRUCT_SET_FIELDS_OBJ(obj, 0);
1399 if (ec->gen_fields_cache.obj == obj) {
1400 ec->gen_fields_cache.obj =
Qundef;
1401 ec->gen_fields_cache.fields_obj =
Qundef;
1406 if (rb_gc_during_global_gc_p() || ruby_vm_during_cleanup) {
1414 deleted = st_delete(generic_fields_tbl_, &key, &value);
1417 rb_bug(
"Object is missing entry in generic_fields_tbl");
1421 RBASIC_SET_SHAPE_ID(obj, ROOT_SHAPE_ID);
1426rb_obj_set_fields(
VALUE obj,
VALUE fields_obj,
ID field_name,
VALUE original_fields_obj)
1428 ivar_ractor_check(obj, field_name);
1433 rb_imemo_fields_clear(original_fields_obj);
1437 RUBY_ASSERT(IMEMO_TYPE_P(fields_obj, imemo_fields));
1441 if (fields_obj != original_fields_obj) {
1445 ROBJECT_SET_EXTENDED(obj, fields_obj);
1451 RSTRUCT_SET_FIELDS_OBJ(obj, fields_obj);
1460 bool gc_disabled =
RTEST(rb_gc_local_disable_no_rest());
1462 enum ruby_tag_type state;
1464 EC_PUSH_TAG(insert_ec);
1465 if ((state = EC_EXEC_TAG()) == TAG_NONE) {
1466 st_insert(generic_fields_tbl_, (st_data_t)obj, (st_data_t)fields_obj);
1470 if (!gc_disabled) rb_gc_local_enable();
1471 if (state != TAG_NONE) EC_JUMP_TAG(insert_ec, state);
1475 if (ec->gen_fields_cache.fields_obj != fields_obj) {
1476 ec->gen_fields_cache.obj = obj;
1477 ec->gen_fields_cache.fields_obj = fields_obj;
1482 if (original_fields_obj && original_fields_obj != obj) {
1484 rb_imemo_fields_clear(original_fields_obj);
1489 RBASIC_SET_SHAPE_ID_WITH_LAYOUT(obj, RBASIC_SHAPE_ID(fields_obj), SHAPE_ID_LAYOUT_EXTENDED);
1492 RBASIC_SET_SHAPE_ID(obj, RBASIC_SHAPE_ID(fields_obj));
1497rb_obj_replace_fields(
VALUE obj,
VALUE fields_obj)
1499 if (obj_use_generic_fields_tbl_p(obj)) {
1503 VALUE original_fields_obj = rb_obj_fields_no_ractor_check(obj);
1504 rb_obj_set_fields(obj, fields_obj, 0, original_fields_obj);
1508 VALUE original_fields_obj = rb_obj_fields_no_ractor_check(obj);
1509 rb_obj_set_fields(obj, fields_obj, 0, original_fields_obj);
1514rb_obj_field_get(
VALUE obj, shape_id_t target_shape_id)
1517 RUBY_ASSERT(RSHAPE_TYPE_P(target_shape_id, SHAPE_IVAR) || RSHAPE_TYPE_P(target_shape_id, SHAPE_OBJ_ID));
1519 VALUE fields_obj = rb_obj_fields(obj, RSHAPE_EDGE_NAME(target_shape_id));
1521 if (UNLIKELY(rb_shape_complex_p(target_shape_id))) {
1522 st_table *fields_hash = rb_imemo_fields_complex_tbl(fields_obj);
1524 st_lookup(fields_hash, RSHAPE_EDGE_NAME(target_shape_id), &value);
1529 attr_index_t index = RSHAPE_INDEX(target_shape_id);
1530 return rb_imemo_fields_ptr(fields_obj)[index];
1540 VALUE fields_obj = rb_obj_fields(obj, is_class ? 0 : id);
1546 shape_id_t shape_id = RBASIC_SHAPE_ID(fields_obj);
1549 if (UNLIKELY(rb_shape_complex_p(shape_id))) {
1550 st_table *iv_table = rb_imemo_fields_complex_tbl(fields_obj);
1551 if (!rb_st_lookup(iv_table, (st_data_t)
id, (st_data_t *)&val)) {
1556 attr_index_t index = 0;
1557 if (!rb_shape_get_iv_index(shape_id,
id, &index)) {
1560 val = rb_imemo_fields_ptr(fields_obj)[index];
1566 rb_eRactorIsolationError,
1567 "can not get unshareable values from instance variables of classes/modules from "
1568 "non-main Ractors (%"PRIsVALUE
" from %"PRIsVALUE
")",
1581 VALUE iv = rb_ivar_lookup(obj,
id,
Qnil);
1582 RB_DEBUG_COUNTER_INC(ivar_get_base);
1587rb_ivar_get_at(
VALUE obj, attr_index_t index,
ID id)
1598 VALUE fields_obj = RCLASS_WRITABLE_FIELDS_OBJ(obj);
1599 VALUE val = rb_imemo_fields_ptr(fields_obj)[index];
1602 rb_raise(rb_eRactorIsolationError,
1603 "can not get unshareable values from instance variables of classes/modules from non-main Ractors");
1610 VALUE fields_obj = rb_obj_fields(obj,
id);
1611 return rb_imemo_fields_ptr(fields_obj)[index];
1617rb_ivar_get_at_no_ractor_check(
VALUE obj, attr_index_t index)
1621 VALUE fields_obj = rb_obj_fields_no_ractor_check(obj);
1622 return rb_imemo_fields_ptr(fields_obj)[index];
1628 return rb_ivar_lookup(obj,
id,
Qnil);
1631static VALUE imemo_fields_evacutate_to_complex(
VALUE owner,
VALUE source_fields_obj, shape_id_t shape_id,
int extra_capa);
1634rb_obj_convert_too_complex(
VALUE obj,
VALUE fields_obj, shape_id_t shape_id)
1639 shape_id = rb_shape_transition_complex(shape_id);
1640 VALUE new_fields_obj = imemo_fields_evacutate_to_complex(obj, fields_obj, shape_id, 1);
1641 ROBJECT_SET_EXTENDED(obj, new_fields_obj);
1642 RBASIC_SET_SHAPE_ID_WITH_LAYOUT(obj, shape_id, SHAPE_ID_LAYOUT_EXTENDED);
1649 rb_check_frozen(obj);
1652 bool concurrent =
false;
1656 IVAR_ACCESSOR_SHOULD_BE_MAIN_RACTOR(
id);
1658 if (rb_multi_ractor_p()) {
1663 VALUE fields_obj = rb_obj_fields(obj,
id);
1668 const VALUE original_fields_obj = fields_obj;
1670 fields_obj = rb_imemo_fields_clone(fields_obj);
1673 shape_id_t old_shape_id = RBASIC_SHAPE_ID(fields_obj);
1674 shape_id_t removed_shape_id;
1675 shape_id_t next_shape_id = rb_obj_shape_transition_remove_ivar(fields_obj,
id, &removed_shape_id);
1677 if (UNLIKELY(rb_shape_complex_p(next_shape_id))) {
1678 if (UNLIKELY(!rb_shape_complex_p(old_shape_id))) {
1679 fields_obj = imemo_fields_evacutate_to_complex(obj, fields_obj, next_shape_id, -1);
1682 if (!st_delete(rb_imemo_fields_complex_tbl(fields_obj), &key, (st_data_t *)&val)) {
1687 if (next_shape_id == old_shape_id) {
1691 RUBY_ASSERT(removed_shape_id != INVALID_SHAPE_ID);
1692 RUBY_ASSERT(RSHAPE_LEN(next_shape_id) == RSHAPE_LEN(old_shape_id) - 1);
1694 VALUE *fields = rb_imemo_fields_ptr(fields_obj);
1695 attr_index_t removed_index = RSHAPE_INDEX(removed_shape_id);
1696 val = fields[removed_index];
1698 attr_index_t new_fields_count = RSHAPE_LEN(next_shape_id);
1699 if (new_fields_count) {
1700 size_t trailing_fields = new_fields_count - removed_index;
1702 MEMMOVE(&fields[removed_index], &fields[removed_index + 1],
VALUE, trailing_fields);
1703 RBASIC_SET_SHAPE_ID(fields_obj, next_shape_id);
1705 if (
type ==
T_OBJECT && obj != fields_obj && new_fields_count == rb_shape_embedded_capacity(RBASIC_SHAPE_ID(obj))) {
1710 VALUE *embedded_fields = ROBJECT_EMBEDDED_FIELDS(obj);
1711 MEMCPY(embedded_fields, fields,
VALUE, new_fields_count);
1712 for (attr_index_t i = 0; i < new_fields_count; i++) {
1724 if (fields_obj != original_fields_obj) {
1727 if (fields_obj && fields_obj != obj) {
1728 ROBJECT_SET_EXTENDED(obj, fields_obj);
1733 RCLASS_WRITABLE_SET_FIELDS_OBJ(obj, fields_obj);
1736 rb_obj_set_fields(obj, fields_obj,
id, original_fields_obj);
1742 if (!fields_obj || fields_obj == obj) {
1743 RBASIC_SET_SHAPE_ID_WITH_LAYOUT(obj, next_shape_id, SHAPE_ID_LAYOUT_ROBJECT);
1746 RBASIC_SET_SHAPE_ID_WITH_LAYOUT(obj, next_shape_id, SHAPE_ID_LAYOUT_EXTENDED);
1750 RBASIC_SET_SHAPE_ID(obj, next_shape_id);
1757rb_attr_delete(
VALUE obj,
ID id)
1759 return rb_ivar_delete(obj,
id,
Qnil);
1763imemo_fields_complex_from_obj_i(
ID key,
VALUE val, st_data_t arg)
1766 st_table *table = rb_imemo_fields_complex_tbl(fields);
1768 RUBY_ASSERT(!st_lookup(table, (st_data_t)key, NULL));
1769 st_add_direct(table, (st_data_t)key, (st_data_t)val);
1776imemo_fields_shref_i(
ID key,
VALUE val, st_data_t arg)
1783 rb_gc_writebarrier(fields_obj, val);
1791rb_imemo_fields_record_shrefs(
VALUE fields_obj)
1793 rb_field_foreach(fields_obj, imemo_fields_shref_i, (st_data_t)fields_obj,
false);
1797imemo_fields_complex_from_obj(
VALUE owner,
VALUE source, shape_id_t shape_id,
bool ivar_only,
int extra_capa)
1799 attr_index_t
len = source ? RSHAPE_LEN(RBASIC_SHAPE_ID(source)) : 0;
1800 int capa = (
len + extra_capa);
1805 rb_field_foreach(source, imemo_fields_complex_from_obj_i, (st_data_t)fields_obj, ivar_only);
1811imemo_fields_evacutate_to_complex(
VALUE owner,
VALUE source, shape_id_t shape_id,
int extra_capa)
1813 return imemo_fields_complex_from_obj(owner, source, shape_id,
false, extra_capa);
1817rb_obj_complex_fields_build(
VALUE obj)
1819 return imemo_fields_complex_from_obj(obj, obj, ROOT_COMPLEX_SHAPE_ID,
true, 0);
1823imemo_fields_copy_append(
VALUE owner,
VALUE source_fields_obj, shape_id_t current_shape_id, shape_id_t target_shape_id,
VALUE val)
1825 attr_index_t fields_count = RSHAPE_LEN(current_shape_id);
1829 VALUE *fields = rb_imemo_fields_ptr(fields_obj);
1831 if (source_fields_obj) {
1832 MEMCPY(fields, rb_imemo_fields_ptr(source_fields_obj),
VALUE, fields_count);
1833 for (attr_index_t i = 0; i < fields_count; i++) {
1844imemo_fields_set(
VALUE owner,
VALUE fields_obj, shape_id_t target_shape_id,
ID field_name,
VALUE val,
bool concurrent)
1846 const VALUE original_fields_obj = fields_obj;
1847 shape_id_t current_shape_id = fields_obj ? RBASIC_SHAPE_ID(fields_obj) : ROOT_SHAPE_ID;
1849 if (UNLIKELY(rb_shape_complex_p(target_shape_id))) {
1850 if (rb_shape_complex_p(current_shape_id)) {
1855 fields_obj = rb_imemo_fields_clone(fields_obj);
1859 fields_obj = imemo_fields_evacutate_to_complex(owner, original_fields_obj, target_shape_id, 1);
1860 current_shape_id = target_shape_id;
1863 st_table *table = rb_imemo_fields_complex_tbl(fields_obj);
1866 st_insert(table, (st_data_t)field_name, (st_data_t)val);
1868 RBASIC_SET_SHAPE_ID(fields_obj, target_shape_id);
1871 attr_index_t index = RSHAPE_INDEX(target_shape_id);
1872 if (concurrent || index >= rb_shape_embedded_capacity(current_shape_id)) {
1873 return imemo_fields_copy_append(owner, original_fields_obj, current_shape_id, target_shape_id, val);
1876 VALUE *table = rb_imemo_fields_ptr(fields_obj);
1879 if (index >= RSHAPE_LEN(current_shape_id)) {
1880 RBASIC_SET_SHAPE_ID(fields_obj, target_shape_id);
1888generic_field_set(
VALUE obj, shape_id_t target_shape_id,
ID field_name,
VALUE val)
1891 field_name = RSHAPE_EDGE_NAME(target_shape_id);
1895 const VALUE original_fields_obj = rb_obj_fields(obj, field_name);
1896 VALUE fields_obj = imemo_fields_set(obj, original_fields_obj, target_shape_id, field_name, val,
false);
1898 rb_obj_set_fields(obj, fields_obj, field_name, original_fields_obj);
1899 return rb_shape_complex_p(target_shape_id) ? ATTR_INDEX_NOT_SET : RSHAPE_INDEX(target_shape_id);
1903generic_shape_ivar(
VALUE obj,
ID id,
bool *new_ivar_out)
1905 bool new_ivar =
false;
1906 shape_id_t current_shape_id = RBASIC_SHAPE_ID(obj);
1907 shape_id_t target_shape_id = current_shape_id;
1909 if (!rb_shape_complex_p(current_shape_id)) {
1910 if (!rb_shape_find_ivar(current_shape_id,
id, &target_shape_id)) {
1912 target_shape_id = rb_obj_shape_transition_add_ivar(obj,
id);
1916 *new_ivar_out = new_ivar;
1917 return target_shape_id;
1924 shape_id_t target_shape_id = generic_shape_ivar(obj,
id, &dontcare);
1925 return generic_field_set(obj, target_shape_id,
id, val);
1929obj_field_set(
VALUE obj, shape_id_t target_shape_id,
ID field_name,
VALUE val)
1932 VALUE fields_obj = ROBJECT_FIELDS_OBJ(obj);
1933 shape_id_t current_shape_id = RBASIC_SHAPE_ID(obj);
1935 if (UNLIKELY(rb_shape_complex_p(target_shape_id))) {
1936 if (UNLIKELY(!rb_shape_complex_p(current_shape_id))) {
1937 current_shape_id = rb_obj_convert_too_complex(obj, fields_obj, current_shape_id);
1938 fields_obj = ROBJECT_FIELDS_OBJ(obj);
1945 field_name = RSHAPE_EDGE_NAME(target_shape_id);
1949 st_insert(rb_imemo_fields_complex_tbl(fields_obj), (st_data_t)field_name, (st_data_t)val);
1952 RBASIC_SET_SHAPE_ID(obj, target_shape_id);
1953 if (obj != fields_obj) {
1954 RBASIC_SET_SHAPE_ID(fields_obj, target_shape_id);
1957 return ATTR_INDEX_NOT_SET;
1960 attr_index_t index = RSHAPE_INDEX(target_shape_id);
1962 if (index < RSHAPE_LEN(current_shape_id)) {
1964 RB_OBJ_WRITE(fields_obj, &rb_imemo_fields_ptr(fields_obj)[index], val);
1968 RUBY_ASSERT(index == RSHAPE_LEN(current_shape_id));
1970 if (UNLIKELY(index >= RSHAPE_CAPACITY(current_shape_id))) {
1971 fields_obj = imemo_fields_copy_append(obj, fields_obj, current_shape_id, target_shape_id, val);
1972 ROBJECT_SET_EXTENDED(obj, fields_obj);
1973 RBASIC_SET_FULL_SHAPE_ID(obj, rb_shape_transition_layout(target_shape_id, SHAPE_ID_LAYOUT_EXTENDED));
1976 RB_OBJ_WRITE(fields_obj, &rb_imemo_fields_ptr(fields_obj)[index], val);
1977 RBASIC_SET_SHAPE_ID(obj, target_shape_id);
1980 if (obj != fields_obj) {
1981 RBASIC_SET_SHAPE_ID(fields_obj, target_shape_id);
1992 shape_id_t target_shape_id = generic_shape_ivar(obj,
id, &dontcare);
1993 return obj_field_set(obj, target_shape_id,
id, val);
2003 rb_check_frozen(obj);
2004 obj_ivar_set(obj,
id, val);
2018 shape_id_t shape_id = rb_obj_shape_transition_frozen(x);
2024 RBASIC_SET_SHAPE_ID(x, shape_id);
2027 RBASIC_SET_SHAPE_ID(x, shape_id);
2037static attr_index_t class_ivar_set(
VALUE obj,
ID id,
VALUE val,
bool *new_ivar);
2042 RB_DEBUG_COUNTER_INC(ivar_set_base);
2046 return obj_ivar_set(obj,
id, val);
2050 IVAR_ACCESSOR_SHOULD_BE_MAIN_RACTOR(
id);
2052 return class_ivar_set(obj,
id, val, &dontcare);
2055 return generic_ivar_set(obj,
id, val);
2062 rb_check_frozen(obj);
2063 ivar_set(obj,
id, val);
2070 return ivar_set(obj,
id, val);
2079 ivar_set(obj,
id, val);
2083rb_obj_field_set(
VALUE obj, shape_id_t target_shape_id,
ID field_name,
VALUE val)
2087 return obj_field_set(obj, target_shape_id, field_name, val);
2091 rb_bug(
"Unreachable");
2094 return generic_field_set(obj, target_shape_id, field_name, val);
2099ivar_defined0(
VALUE obj,
ID id)
2101 if (rb_obj_shape_complex_p(obj)) {
2103 VALUE fields_obj = rb_obj_fields_no_ractor_check(obj);
2104 st_table *table = rb_imemo_fields_complex_tbl(fields_obj);
2107 if (!table || !rb_st_lookup(table,
id, &idx)) {
2115 return RBOOL(rb_shape_get_iv_index(RBASIC_SHAPE_ID(obj),
id, &index));
2129 VALUE fields_obj = RCLASS_WRITABLE_FIELDS_OBJ(obj);
2131 defined = ivar_defined0(fields_obj,
id);
2136 defined = ivar_defined0(obj,
id);
2144 struct gen_fields_tbl *fields_tbl;
2146 rb_ivar_foreach_callback_func *func;
2148 shape_id_t shape_id;
2153iterate_over_shapes_callback(shape_id_t shape_id,
void *data)
2157 if (itr_data->ivar_only && !RSHAPE_TYPE_P(shape_id, SHAPE_IVAR)) {
2164 RUBY_ASSERT(!rb_obj_shape_complex_p(itr_data->obj));
2165 fields = ROBJECT_FIELDS(itr_data->obj);
2168 RUBY_ASSERT(IMEMO_TYPE_P(itr_data->obj, imemo_fields));
2169 RUBY_ASSERT(!rb_obj_shape_complex_p(itr_data->obj));
2171 fields = rb_imemo_fields_ptr(itr_data->obj);
2174 rb_bug(
"Unreachable");
2177 RUBY_ASSERT(itr_data->shape_id == RBASIC_SHAPE_ID(itr_data->obj));
2179 VALUE val = fields[RSHAPE_INDEX(shape_id)];
2180 int ret = itr_data->func(RSHAPE_EDGE_NAME(shape_id), val, itr_data->arg);
2182 RUBY_ASSERT(itr_data->shape_id == RBASIC_SHAPE_ID(itr_data->obj));
2191iterate_over_shapes(shape_id_t shape_id, rb_ivar_foreach_callback_func *callback,
struct iv_itr_data *itr_data)
2193 rb_shape_foreach_field(shape_id, iterate_over_shapes_callback, itr_data);
2197each_hash_iv(st_data_t
id, st_data_t val, st_data_t data)
2200 rb_ivar_foreach_callback_func *callback = itr_data->func;
2201 if ((
ID)
id == rb_shape_tree.id_object_id) {
2204 return callback((
ID)
id, (
VALUE)val, itr_data->arg);
2208obj_fields_each(
VALUE obj, rb_ivar_foreach_callback_func *func, st_data_t arg,
bool ivar_only)
2214 .ivar_only = ivar_only,
2217 VALUE fields_obj = ROBJECT_FIELDS_OBJ(obj);
2218 shape_id_t shape_id = RBASIC_SHAPE_ID(obj);
2220 if (rb_shape_complex_p(shape_id)) {
2221 st_foreach_safe(rb_imemo_fields_complex_tbl(fields_obj), each_hash_iv, (st_data_t)&itr_data);
2224 itr_data.fields = rb_imemo_fields_ptr(fields_obj);
2225 itr_data.shape_id = shape_id;
2226 iterate_over_shapes(shape_id, func, &itr_data);
2231imemo_fields_each(
VALUE fields_obj, rb_ivar_foreach_callback_func *func, st_data_t arg,
bool ivar_only)
2233 IMEMO_TYPE_P(fields_obj, imemo_fields);
2239 .ivar_only = ivar_only,
2242 shape_id_t shape_id = RBASIC_SHAPE_ID(fields_obj);
2243 if (rb_shape_complex_p(shape_id)) {
2244 rb_st_foreach(rb_imemo_fields_complex_tbl(fields_obj), each_hash_iv, (st_data_t)&itr_data);
2247 itr_data.fields = rb_imemo_fields_ptr(fields_obj);
2248 itr_data.shape_id = shape_id;
2249 iterate_over_shapes(shape_id, func, &itr_data);
2256 VALUE new_fields_obj;
2258 rb_check_frozen(dest);
2260 if (!rb_obj_gen_fields_p(obj)) {
2264 shape_id_t src_shape_id = rb_obj_shape_id(obj);
2266 VALUE fields_obj = rb_obj_fields_no_ractor_check(obj);
2274 shape_id_t initial_shape_id = rb_obj_shape_id(dest);
2275 shape_id_t dest_shape_id = rb_shape_rebuild(initial_shape_id, src_shape_id);
2277 if (UNLIKELY(rb_shape_complex_p(dest_shape_id))) {
2278 rb_obj_replace_fields(dest, rb_obj_complex_fields_build(obj));
2282 if (!RSHAPE_LEN(dest_shape_id)) {
2283 RBASIC_SET_SHAPE_ID(dest, dest_shape_id);
2288 VALUE *src_buf = rb_imemo_fields_ptr(fields_obj);
2289 VALUE *dest_buf = rb_imemo_fields_ptr(new_fields_obj);
2290 rb_shape_copy_fields(new_fields_obj, dest_buf, dest_shape_id, src_buf, src_shape_id);
2292 rb_obj_replace_fields(dest, new_fields_obj);
2300rb_generic_fields_shared_table_foreach(
void (*cb)(
struct st_table *tbl,
void *arg),
void *arg)
2303 if (generic_fields_tbl_ != NULL) {
2304 cb(generic_fields_tbl_, arg);
2313rb_generic_fields_tables_foreach(
void (*cb)(
struct st_table *tbl,
void *arg),
void *arg)
2315 if (generic_fields_tbl_ != NULL) {
2316 cb(generic_fields_tbl_, arg);
2321rb_field_foreach(
VALUE obj, rb_ivar_foreach_callback_func *func, st_data_t arg,
bool ivar_only)
2326 if (IMEMO_TYPE_P(obj, imemo_fields)) {
2327 imemo_fields_each(obj, func, arg, ivar_only);
2331 obj_fields_each(obj, func, arg, ivar_only);
2336 IVAR_ACCESSOR_SHOULD_BE_MAIN_RACTOR(0);
2337 VALUE fields_obj = RCLASS_WRITABLE_FIELDS_OBJ(obj);
2339 imemo_fields_each(fields_obj, func, arg, ivar_only);
2345 VALUE fields_obj = rb_obj_fields_no_ractor_check(obj);
2347 imemo_fields_each(fields_obj, func, arg, ivar_only);
2360collect_ivar_i(
ID id,
VALUE val, st_data_t arg)
2372 rb_field_foreach(obj, func, arg,
true);
2376rb_ivar_foreach_buffered(
VALUE obj, rb_ivar_foreach_callback_func *func, st_data_t arg)
2379 if (count == 0)
return;
2385 rb_field_foreach(obj, collect_ivar_i, (st_data_t)&pos,
true);
2388 for (st_index_t i = 0; i < count; i++) {
2389 if (func(buf[i].name, buf[i].val, arg) == ST_STOP)
break;
2400 st_index_t iv_count = 0;
2401 VALUE fields_obj = rb_obj_fields_no_ractor_check(obj);
2404 if (rb_obj_shape_complex_p(fields_obj)) {
2405 iv_count = rb_st_table_size(rb_imemo_fields_complex_tbl(fields_obj));
2408 iv_count = RBASIC_FIELDS_COUNT(obj);
2412 if (rb_obj_shape_has_id(obj)) {
2420ivar_i(
ID key,
VALUE v, st_data_t a)
2455#define rb_is_constant_id rb_is_const_id
2456#define rb_is_constant_name rb_is_const_name
2457#define id_for_var(obj, name, part, type) \
2458 id_for_var_message(obj, name, type, "'%1$s' is not allowed as "#part" "#type" variable name")
2459#define id_for_var_message(obj, name, type, message) \
2460 check_id_type(obj, &(name), rb_is_##type##_id, rb_is_##type##_name, message, strlen(message))
2463 int (*valid_id_p)(
ID),
int (*valid_name_p)(
VALUE),
2464 const char *message,
size_t message_len)
2467 VALUE name = *pname;
2469 if (
id ? !valid_id_p(
id) : !valid_name_p(name)) {
2470 rb_name_err_raise_str(rb_fstring_new(message, message_len),
2502 const ID id = id_for_var(obj, name, an, instance);
2506 rb_check_frozen(obj);
2511 if (!UNDEF_P(val))
return val;
2514 rb_name_err_raise(
"instance variable %1$s not defined",
2519NORETURN(
static void uninitialized_constant(
VALUE,
VALUE));
2521uninitialized_constant(
VALUE klass,
VALUE name)
2524 rb_name_err_raise(
"uninitialized constant %2$s::%1$s",
2527 rb_name_err_raise(
"uninitialized constant %1$s",
2535 rb_vm_inc_const_missing_count();
2584 VALUE ref = ec->private_const_reference;
2585 rb_vm_pop_cfunc_frame();
2587 ec->private_const_reference = 0;
2588 rb_name_err_raise(
"private constant %2$s::%1$s referenced", ref, name);
2590 uninitialized_constant(klass, name);
2596autoload_table_mark(
void *ptr)
2598 rb_mark_tbl_no_pin((
st_table *)ptr);
2602autoload_table_free(
void *ptr)
2608autoload_table_memsize(
const void *ptr)
2611 return st_memsize(tbl);
2615autoload_table_compact(
void *ptr)
2617 rb_gc_ref_update_table_values_only((
st_table *)ptr);
2622 {autoload_table_mark, autoload_table_free, autoload_table_memsize, autoload_table_compact,},
2623 0, 0, RUBY_TYPED_THREAD_SAFE_FREE | RUBY_TYPED_WB_PROTECTED
2626#define check_autoload_table(av) \
2627 (struct st_table *)rb_check_typeddata((av), &autoload_table_type)
2638 if (RICLASS_IS_ORIGIN_P(mod)) {
2642 mod =
RBASIC(mod)->klass;
2650 VALUE tbl_value = rb_ivar_lookup(mod, autoload,
Qfalse);
2651 if (!
RTEST(tbl_value) || !(tbl = check_autoload_table(tbl_value)) || !st_lookup(tbl, (st_data_t)
id, &val)) {
2661 struct ccan_list_node cnode;
2664 VALUE autoload_data_value;
2680 rb_const_flag_t flag;
2696 rb_serial_t fork_gen;
2699 struct ccan_list_head constants;
2703autoload_data_mark_and_move(
void *ptr)
2707 rb_gc_mark_and_move(&p->feature);
2708 rb_gc_mark_and_move(&p->mutex);
2712autoload_data_free(
void *ptr)
2717 ccan_list_for_each_safe(&p->constants,
autoload_const, next, cnode) {
2725autoload_data_memsize(
const void *ptr)
2732 {autoload_data_mark_and_move, autoload_data_free, autoload_data_memsize, autoload_data_mark_and_move},
2737autoload_const_mark_and_move(
void *ptr)
2741 rb_gc_mark_and_move(&ac->module);
2742 rb_gc_mark_and_move(&ac->autoload_data_value);
2743 rb_gc_mark_and_move(&ac->value);
2744 rb_gc_mark_and_move(&ac->file);
2745 rb_gc_mark_and_move(&ac->box_value);
2749autoload_const_memsize(
const void *ptr)
2755autoload_const_free(
void *ptr)
2765 {autoload_const_mark_and_move, autoload_const_free, autoload_const_memsize, autoload_const_mark_and_move,},
2770get_autoload_data(
VALUE autoload_const_value,
struct autoload_const **autoload_const_pointer)
2783 if (autoload_const_pointer) *autoload_const_pointer =
autoload_const;
2789rb_autoload(
VALUE module,
ID name,
const char *feature)
2791 if (!feature || !*feature) {
2792 rb_raise(rb_eArgError,
"empty feature name");
2795 rb_autoload_str(module, name, rb_fstring_cstr(feature));
2799static void const_added(
VALUE klass,
ID const_name);
2809autoload_feature_lookup_or_create(
VALUE feature,
struct autoload_data **autoload_data_pointer)
2811 RUBY_ASSERT_MUTEX_OWNED(autoload_mutex);
2812 RUBY_ASSERT_CRITICAL_SECTION_ENTER();
2814 VALUE autoload_data_value = rb_hash_aref(autoload_features, feature);
2817 if (
NIL_P(autoload_data_value)) {
2823 if (autoload_data_pointer) *autoload_data_pointer =
autoload_data;
2825 rb_hash_aset(autoload_features, feature, autoload_data_value);
2827 else if (autoload_data_pointer) {
2828 *autoload_data_pointer =
rb_check_typeddata(autoload_data_value, &autoload_data_type);
2831 RUBY_ASSERT_CRITICAL_SECTION_LEAVE();
2832 return autoload_data_value;
2836autoload_table_lookup_or_create(
VALUE module)
2838 VALUE autoload_table_value = rb_ivar_lookup(module, autoload,
Qfalse);
2839 if (
RTEST(autoload_table_value)) {
2840 return autoload_table_value;
2844 rb_class_ivar_set(module, autoload, autoload_table_value);
2846 return autoload_table_value;
2851autoload_synchronized(
VALUE _arguments)
2855 rb_const_entry_t *constant_entry = rb_const_lookup(arguments->module, arguments->name);
2856 if (constant_entry && !UNDEF_P(constant_entry->value)) {
2861 const_set(arguments->module, arguments->name,
Qundef);
2863 VALUE autoload_table_value = autoload_table_lookup_or_create(arguments->module);
2864 struct st_table *autoload_table = check_autoload_table(autoload_table_value);
2867 VALUE feature = rb_fstring(arguments->feature);
2870 VALUE autoload_data_value = autoload_feature_lookup_or_create(feature, &
autoload_data);
2882 st_insert(autoload_table, (st_data_t)arguments->name, (st_data_t)autoload_const_value);
2892 const rb_box_t *box = rb_current_box();
2893 VALUE current_box_value = rb_get_box_object((
rb_box_t *)box);
2896 rb_raise(
rb_eNameError,
"autoload must be constant name: %"PRIsVALUE
"", QUOTE_ID(name));
2900 if (!RSTRING_LEN(feature)) {
2901 rb_raise(rb_eArgError,
"empty feature name");
2908 .box_value = current_box_value,
2913 if (result ==
Qtrue) {
2914 const_added(module, name);
2919autoload_delete(
VALUE module,
ID name)
2921 RUBY_ASSERT_CRITICAL_SECTION_ENTER();
2923 st_data_t load = 0, key = name;
2927 VALUE table_value = rb_ivar_lookup(module, autoload,
Qfalse);
2928 if (
RTEST(table_value)) {
2929 struct st_table *table = check_autoload_table(table_value);
2931 st_delete(table, &key, &load);
2954 if (table->num_entries == 0) {
2955 rb_attr_delete(module, autoload);
2960 RUBY_ASSERT_CRITICAL_SECTION_LEAVE();
2966 return ele->mutex !=
Qnil && !rb_mutex_owned_p(ele->mutex);
2970check_autoload_required(
VALUE mod,
ID id,
const char **loadingpath)
2974 const char *loading;
2976 if (!autoload_const_value || !(
autoload_data = get_autoload_data(autoload_const_value, 0))) {
2989 return autoload_const_value;
2992 loading = RSTRING_PTR(feature);
2995 return autoload_const_value;
2998 if (loadingpath && loading) {
2999 *loadingpath = loading;
3000 return autoload_const_value;
3009rb_autoloading_value(
VALUE mod,
ID id,
VALUE* value, rb_const_flag_t *flag)
3012 if (!ac)
return FALSE;
3028 return ele->mutex !=
Qnil && rb_mutex_owned_p(ele->mutex);
3035autoloading_const_entry(
VALUE mod,
ID id)
3042 if (!load || !(ele = get_autoload_data(load, &ac))) {
3048 if (autoload_by_current(ele)) {
3049 if (!UNDEF_P(ac->value)) {
3058autoload_defined_p(
VALUE mod,
ID id)
3063 if (!ce || !UNDEF_P(ce->value)) {
3069 return !rb_autoloading_value(mod,
id, NULL, NULL);
3091 check_before_mod_set(ac->module, ac->name, ac->value,
"constant");
3094 const_tbl_update(ac,
true);
3101autoload_load_needed(
VALUE _arguments)
3105 const char *loading = 0, *src;
3107 if (!autoload_defined_p(arguments->module, arguments->name)) {
3111 VALUE autoload_const_value = check_autoload_required(arguments->module, arguments->name, &loading);
3112 if (!autoload_const_value) {
3117 if (src && loading && strcmp(src, loading) == 0) {
3138 return autoload_const_value;
3142autoload_apply_constants(
VALUE _arguments)
3144 RUBY_ASSERT_CRITICAL_SECTION_ENTER();
3156 ccan_list_for_each_safe(&arguments->autoload_data->constants,
autoload_const, next, cnode) {
3162 RUBY_ASSERT_CRITICAL_SECTION_LEAVE();
3168autoload_feature_require_in_box(
VALUE receiver,
VALUE feature)
3170 rb_vm_frame_flag_set_box_require(GET_EC());
3172 return rb_funcall(receiver, rb_intern(
"require"), 1, feature);
3176autoload_feature_require(
VALUE _arguments)
3192 rb_gccct_clear_table();
3194 VALUE feature = arguments->autoload_data->feature;
3196 if (rb_box_available() && BOX_OBJ_P(autoload_box_value)) {
3197 box = rb_get_box_t(autoload_box_value);
3201 if (box && box->top_self) {
3207 result = rb_vm_call_cfunc_in_box(box->top_self, autoload_feature_require_in_box,
3208 box->top_self, feature, feature, box);
3211 result =
rb_funcall(rb_vm_top_self(), rb_intern(
"require"), 1, feature);
3214 if (
RTEST(result)) {
3221autoload_try_load(
VALUE _arguments)
3225 VALUE result = autoload_feature_require(_arguments);
3228 rb_const_entry_t *ce = rb_const_lookup(arguments->module, arguments->name);
3230 if (!ce || UNDEF_P(ce->value)) {
3237 "Expected %"PRIsVALUE
" to define %"PRIsVALUE
" but it didn't",
3238 arguments->autoload_data->feature,
3244 "Expected %"PRIsVALUE
" to define %"PRIsVALUE
"::%"PRIsVALUE
" but it didn't",
3245 arguments->autoload_data->feature,
3253 ce->flag |= arguments->flag;
3265 if (!ce || !UNDEF_P(ce->value)) {
3270 if (UNLIKELY(!rb_ractor_main_p())) {
3271 return rb_ractor_autoload_load(module, name);
3281 if (autoload_const_value ==
Qfalse)
return autoload_const_value;
3283 arguments.flag = ce->flag & (CONST_DEPRECATED | CONST_VISIBILITY_MASK);
3300 return rb_autoload_at_p(mod,
id, TRUE);
3304rb_autoload_at_p(
VALUE mod,
ID id,
int recur)
3309 while (!autoload_defined_p(mod,
id)) {
3310 if (!recur)
return Qnil;
3312 if (!mod)
return Qnil;
3314 load = check_autoload_required(mod,
id, 0);
3315 if (!load)
return Qnil;
3316 return (ele = get_autoload_data(load, 0)) ? ele->feature :
Qnil;
3322 if (RB_CONST_DEPRECATED_P(ce) &&
3335rb_const_get_0(
VALUE klass,
ID id,
int exclude,
int recurse,
int visibility)
3338 VALUE c = rb_const_search(klass,
id, exclude, recurse, visibility, &found_in);
3340 if (UNLIKELY(!rb_ractor_main_p())) {
3342 rb_raise(rb_eRactorIsolationError,
"can not access non-shareable objects in constant %"PRIsVALUE
"::%"PRIsVALUE
" by non-main Ractor.",
rb_class_path(found_in), rb_id2str(
id));
3347 return rb_const_missing(klass,
ID2SYM(
id));
3351rb_const_search_from(
VALUE klass,
ID id,
int exclude,
int recurse,
int visibility,
VALUE *found_in)
3353 VALUE value, current;
3354 bool first_iteration =
true;
3356 for (current = klass;
3358 current =
RCLASS_SUPER(current), first_iteration =
false) {
3363 if (!first_iteration && RCLASS_ORIGIN(current) != current) {
3376 while ((ce = rb_const_lookup(tmp,
id))) {
3377 if (visibility && RB_CONST_PRIVATE_P(ce)) {
3378 GET_EC()->private_const_reference = tmp;
3381 rb_const_warn_if_deprecated(ce, tmp,
id);
3383 if (UNDEF_P(value)) {
3385 if (am == tmp)
break;
3387 ac = autoloading_const_entry(tmp,
id);
3389 if (found_in) { *found_in = tmp; }
3398 if (found_in) { *found_in = tmp; }
3401 if (!recurse)
break;
3405 GET_EC()->private_const_reference = 0;
3410rb_const_search(
VALUE klass,
ID id,
int exclude,
int recurse,
int visibility,
VALUE *found_in)
3415 value = rb_const_search_from(klass,
id, exclude, recurse, visibility, found_in);
3416 if (!UNDEF_P(value))
return value;
3417 if (exclude)
return value;
3420 return rb_const_search_from(
rb_cObject,
id, FALSE, recurse, visibility, found_in);
3426 return rb_const_get_0(klass,
id, TRUE, TRUE, FALSE);
3432 return rb_const_get_0(klass,
id, FALSE, TRUE, FALSE);
3438 return rb_const_get_0(klass,
id, TRUE, FALSE, FALSE);
3442rb_public_const_get_from(
VALUE klass,
ID id)
3444 return rb_const_get_0(klass,
id, TRUE, TRUE, TRUE);
3448rb_public_const_get_at(
VALUE klass,
ID id)
3450 return rb_const_get_0(klass,
id, TRUE, FALSE, TRUE);
3453NORETURN(
static void undefined_constant(
VALUE mod,
VALUE name));
3457 rb_name_err_raise(
"constant %2$s::%1$s not defined",
3462rb_const_location_from(
VALUE klass,
ID id,
int exclude,
int recurse,
int visibility)
3464 while (
RTEST(klass)) {
3467 while ((ce = rb_const_lookup(klass,
id))) {
3468 if (visibility && RB_CONST_PRIVATE_P(ce)) {
3475 if (UNDEF_P(ce->value)) {
3477 if (
RTEST(autoload_const_value)) {
3490 if (!recurse)
break;
3499rb_const_location(
VALUE klass,
ID id,
int exclude,
int recurse,
int visibility)
3504 loc = rb_const_location_from(klass,
id, exclude, recurse, visibility);
3505 if (!
NIL_P(loc))
return loc;
3506 if (exclude)
return loc;
3509 return rb_const_location_from(
rb_cObject,
id, FALSE, recurse, visibility);
3513rb_const_source_location(
VALUE klass,
ID id)
3515 return rb_const_location(klass,
id, FALSE, TRUE, FALSE);
3519rb_const_source_location_at(
VALUE klass,
ID id)
3521 return rb_const_location(klass,
id, TRUE, FALSE, FALSE);
3537 const ID id = id_for_var(mod, name, a, constant);
3540 undefined_constant(mod, name);
3553 rb_check_frozen(mod);
3555 ce = rb_const_lookup(mod,
id);
3559 rb_name_err_raise(
"cannot remove %2$s::%1$s", mod,
ID2SYM(
id));
3562 undefined_constant(mod,
ID2SYM(
id));
3565 VALUE writable_ce = 0;
3566 if (rb_id_table_lookup(RCLASS_WRITABLE_CONST_TBL(mod),
id, &writable_ce)) {
3567 rb_id_table_delete(RCLASS_WRITABLE_CONST_TBL(mod),
id);
3573 rb_const_warn_if_deprecated(ce, mod,
id);
3579 autoload_delete(mod,
id);
3583 if (ce != const_lookup(RCLASS_PRIME_CONST_TBL(mod),
id)) {
3592cv_i_update(st_data_t *k, st_data_t *v, st_data_t a,
int existing)
3594 if (existing)
return ST_STOP;
3599static enum rb_id_table_iterator_result
3606 st_update(tbl, (st_data_t)key, cv_i_update, (st_data_t)ce);
3608 return ID_TABLE_CONTINUE;
3611static enum rb_id_table_iterator_result
3612rb_local_constants_i(
ID const_name,
VALUE const_value,
void *ary)
3617 return ID_TABLE_CONTINUE;
3621rb_local_constants(
VALUE mod)
3630 rb_id_table_foreach(tbl, rb_local_constants_i, (
void *)ary);
3641 tbl = st_init_numtable();
3643 if (RCLASS_CONST_TBL(mod)) {
3645 rb_id_table_foreach(RCLASS_CONST_TBL(mod), sv_i, tbl);
3665list_i(st_data_t key, st_data_t value,
VALUE ary)
3708 bool inherit =
true;
3716 return rb_local_constants(mod);
3721rb_const_defined_0(
VALUE klass,
ID id,
int exclude,
int recurse,
int visibility)
3730 if ((ce = rb_const_lookup(tmp,
id))) {
3731 if (visibility && RB_CONST_PRIVATE_P(ce)) {
3734 if (UNDEF_P(ce->value) && !check_autoload_required(tmp,
id, 0) &&
3735 !rb_autoloading_value(tmp,
id, NULL, NULL))
3744 if (!recurse)
break;
3758 return rb_const_defined_0(klass,
id, TRUE, TRUE, FALSE);
3764 return rb_const_defined_0(klass,
id, FALSE, TRUE, FALSE);
3770 return rb_const_defined_0(klass,
id, TRUE, FALSE, FALSE);
3774rb_public_const_defined_from(
VALUE klass,
ID id)
3776 return rb_const_defined_0(klass,
id, TRUE, TRUE, TRUE);
3780check_before_mod_set(
VALUE klass,
ID id,
VALUE val,
const char *dest)
3782 rb_check_frozen(klass);
3785static void set_namespace_path(
VALUE named_namespace,
VALUE name);
3787static enum rb_id_table_iterator_result
3788set_namespace_path_i(
ID id,
VALUE v,
void *payload)
3791 VALUE value = ce->value;
3794 return ID_TABLE_CONTINUE;
3797 bool has_permanent_classpath;
3798 classname(value, &has_permanent_classpath);
3799 if (has_permanent_classpath) {
3800 return ID_TABLE_CONTINUE;
3802 set_namespace_path(value, build_const_path(parental_path,
id));
3804 if (!RCLASS_PERMANENT_CLASSPATH_P(value)) {
3805 RCLASS_WRITE_CLASSPATH(value, 0,
false);
3808 return ID_TABLE_CONTINUE;
3817set_namespace_path(
VALUE named_namespace,
VALUE namespace_path)
3819 struct rb_id_table *const_table = RCLASS_CONST_TBL(named_namespace);
3820 RB_OBJ_SET_SHAREABLE(namespace_path);
3823 RCLASS_WRITE_CLASSPATH(named_namespace, namespace_path,
true);
3826 rb_id_table_foreach(const_table, set_namespace_path_i, &namespace_path);
3832const_added(
VALUE klass,
ID const_name)
3834 if (GET_VM()->running) {
3836 rb_funcallv_uncached(klass, idConst_added, 1, &arg);
3846 rb_raise(
rb_eTypeError,
"no class/module to define constant %"PRIsVALUE
"",
3851 rb_raise(rb_eRactorIsolationError,
"can not set constants with non-shareable objects by non-main Ractors");
3854 check_before_mod_set(klass,
id, val,
"constant");
3857 struct rb_id_table *tbl = RCLASS_WRITABLE_CONST_TBL(klass);
3859 tbl = rb_id_table_create(0);
3860 RCLASS_WRITE_CONST_TBL(klass, tbl,
false);
3863 rb_id_table_insert(tbl,
id, (
VALUE)ce);
3864 setup_const_entry(ce, klass, val, CONST_PUBLIC);
3868 .module = klass, .name = id,
3869 .value = val, .flag = CONST_PUBLIC,
3872 ac.file = rb_source_location(&ac.line);
3873 const_tbl_update(&ac,
false);
3882 bool val_path_permanent;
3883 VALUE val_path = classname(val, &val_path_permanent);
3884 if (
NIL_P(val_path) || !val_path_permanent) {
3886 set_namespace_path(val, rb_id2str(
id));
3889 bool parental_path_permanent;
3890 VALUE parental_path = classname(klass, &parental_path_permanent);
3891 if (
NIL_P(parental_path)) {
3893 parental_path = rb_tmp_class_path(klass, &throwaway, make_temporary_path);
3895 if (parental_path_permanent && !val_path_permanent) {
3896 set_namespace_path(val, build_const_path(parental_path,
id));
3898 else if (!parental_path_permanent &&
NIL_P(val_path)) {
3899 VALUE path = build_const_path(parental_path,
id);
3900 RCLASS_SET_CLASSPATH(val, path,
false);
3910 const_set(klass,
id, val);
3911 const_added(klass,
id);
3915autoload_const_value_for_named_constant(
VALUE module,
ID name,
struct autoload_const **autoload_const_pointer)
3918 if (!autoload_const_value)
return Qfalse;
3925 return autoload_const_value;
3935 VALUE klass = ac->module;
3936 VALUE val = ac->value;
3938 struct rb_id_table *tbl = RCLASS_CONST_TBL(klass);
3939 rb_const_flag_t visibility = ac->flag;
3942 if (rb_id_table_lookup(tbl,
id, &value)) {
3944 if (UNDEF_P(ce->value)) {
3945 RUBY_ASSERT_CRITICAL_SECTION_ENTER();
3946 VALUE file = ac->file;
3947 int line = ac->line;
3948 VALUE autoload_const_value = autoload_const_value_for_named_constant(klass,
id, &ac);
3950 if (!autoload_force && autoload_const_value) {
3954 RB_OBJ_WRITE(autoload_const_value, &ac->file, rb_source_location(&ac->line));
3958 autoload_delete(klass,
id);
3959 ce->flag = visibility;
3964 RUBY_ASSERT_CRITICAL_SECTION_LEAVE();
3968 VALUE name = QUOTE_ID(
id);
3969 visibility = ce->flag;
3972 if (!
NIL_P(ce->file) && ce->line) {
3973 previous = rb_sprintf(
"\n%"PRIsVALUE
":%d: warning: previous definition of %"PRIsVALUE
" was here", ce->file, ce->line, name);
3977 rb_warn(
"already initialized constant %"PRIsVALUE
"%"PRIsVALUE
"", name, previous);
3979 rb_warn(
"already initialized constant %"PRIsVALUE
"::%"PRIsVALUE
"%"PRIsVALUE
"",
3983 setup_const_entry(ce, klass, val, visibility);
3986 tbl = RCLASS_WRITABLE_CONST_TBL(klass);
3990 rb_id_table_insert(tbl,
id, (
VALUE)ce);
3991 setup_const_entry(ce, klass, val, visibility);
3997 rb_const_flag_t visibility)
3999 ce->flag = visibility;
4001 RB_OBJ_WRITE(klass, &ce->file, rb_source_location(&ce->line));
4007 ID id = rb_intern(name);
4010 rb_warn(
"rb_define_const: invalid name '%s' for constant", name);
4013 rb_vm_register_global_object(val);
4025set_const_visibility(
VALUE mod,
int argc,
const VALUE *argv,
4026 rb_const_flag_t flag, rb_const_flag_t mask)
4034 rb_warning(
"%"PRIsVALUE
" with no argument is just ignored",
4035 QUOTE_ID(rb_frame_callee()));
4039 for (i = 0; i < argc; i++) {
4041 VALUE val = argv[i];
4044 undefined_constant(mod, val);
4046 if ((ce = rb_const_lookup(mod,
id))) {
4049 if (UNDEF_P(ce->value)) {
4050 if (autoload_const_value_for_named_constant(mod,
id, &ac)) {
4058 undefined_constant(mod,
ID2SYM(
id));
4068 long len = strlen(name);
4072 undefined_constant(mod, rb_fstring_new(name,
len));
4074 if (!(ce = rb_const_lookup(mod,
id))) {
4075 undefined_constant(mod,
ID2SYM(
id));
4077 ce->flag |= CONST_DEPRECATED;
4088rb_mod_private_constant(
int argc,
const VALUE *argv,
VALUE obj)
4090 set_const_visibility(obj, argc, argv, CONST_PRIVATE, CONST_VISIBILITY_MASK);
4102rb_mod_public_constant(
int argc,
const VALUE *argv,
VALUE obj)
4104 set_const_visibility(obj, argc, argv, CONST_PUBLIC, CONST_VISIBILITY_MASK);
4128rb_mod_deprecate_constant(
int argc,
const VALUE *argv,
VALUE obj)
4130 set_const_visibility(obj, argc, argv, CONST_DEPRECATED, CONST_DEPRECATED);
4135original_module(
VALUE c)
4143cvar_lookup_at(
VALUE klass,
ID id, st_data_t *v)
4146 if (RICLASS_IS_ORIGIN_P(klass)) {
4151 klass =
RBASIC(klass)->klass;
4156 if (UNDEF_P(n))
return 0;
4163cvar_front_klass(
VALUE klass)
4165 if (RCLASS_SINGLETON_P(klass)) {
4166 VALUE obj = RCLASS_ATTACHED_OBJECT(klass);
4167 if (rb_namespace_p(obj)) {
4177 if (front && target != front) {
4178 if (original_module(front) != original_module(target)) {
4180 "class variable % "PRIsVALUE
" of %"PRIsVALUE
" is overtaken by %"PRIsVALUE
"",
4185 rb_ivar_delete(front,
id,
Qundef);
4190#define CVAR_FOREACH_ANCESTORS(klass, v, r) \
4191 for (klass = cvar_front_klass(klass); klass; klass = RCLASS_SUPER(klass)) { \
4192 if (cvar_lookup_at(klass, id, (v))) { \
4197#define CVAR_LOOKUP(v,r) do {\
4198 if (cvar_lookup_at(klass, id, (v))) {r;}\
4199 CVAR_FOREACH_ANCESTORS(klass, v, r);\
4219 CVAR_ACCESSOR_SHOULD_BE_MAIN_RACTOR(klass,
id);
4221 VALUE tmp, front = 0, target = 0;
4224 CVAR_LOOKUP(0, {
if (!front) front = klass; target = klass;});
4226 cvar_overtaken(front, target,
id);
4233 target =
RBASIC(target)->klass;
4235 check_before_mod_set(target,
id, val,
"class variable");
4237 bool new_cvar = rb_class_ivar_set(target,
id, val);
4239 VALUE cvc_tbl = RCLASS_WRITABLE_CVC_TBL(target);
4244 if (!cvc_tbl || !rb_marked_id_table_lookup(cvc_tbl,
id, &ent_data)) {
4248 ent->global_cvar_state = GET_GLOBAL_CVAR_STATE();
4250 VALUE new_cvc_tbl = cvc_tbl;
4252 new_cvc_tbl = rb_marked_id_table_new(2);
4254 else if (rb_multi_ractor_p()) {
4255 new_cvc_tbl = rb_marked_id_table_dup(cvc_tbl);
4258 rb_marked_id_table_insert(new_cvc_tbl,
id, (
VALUE)ent);
4259 if (new_cvc_tbl != cvc_tbl) {
4260 RCLASS_WRITE_CVC_TBL(target, new_cvc_tbl);
4262 RB_DEBUG_COUNTER_INC(cvar_inline_miss);
4265 ent = (
void *)ent_data;
4266 ent->global_cvar_state = GET_GLOBAL_CVAR_STATE();
4273 ruby_vm_global_cvar_state++;
4283 value = find_cvar(klass, front, &target,
id);
4285 rb_name_err_raise(
"uninitialized class variable %1$s in %2$s",
4288 cvar_overtaken(*front, target,
id);
4289 cvar_read_ractor_check(klass,
id, value);
4290 return (
VALUE)value;
4303 if (!klass)
return Qfalse;
4304 CVAR_LOOKUP(0,
return Qtrue);
4309cv_intern(
VALUE klass,
const char *name)
4311 ID id = rb_intern(name);
4313 rb_name_err_raise(
"wrong class variable name %1$s",
4322 ID id = cv_intern(klass, name);
4329 ID id = cv_intern(klass, name);
4340cv_i(
ID key,
VALUE v, st_data_t a)
4345 st_update(tbl, (st_data_t)key, cv_i_update, 0);
4351mod_cvar_at(
VALUE mod,
void *data)
4355 tbl = st_init_numtable();
4357 mod = original_module(mod);
4364mod_cvar_of(
VALUE mod,
void *data)
4367 if (RCLASS_SINGLETON_P(mod)) {
4368 if (rb_namespace_p(RCLASS_ATTACHED_OBJECT(mod))) {
4369 data = mod_cvar_at(tmp, data);
4370 tmp = cvar_front_klass(tmp);
4374 data = mod_cvar_at(tmp, data);
4382cv_list_i(st_data_t key, st_data_t value,
VALUE ary)
4390cvar_list(
void *data)
4426 bool inherit =
true;
4431 tbl = mod_cvar_of(mod, 0);
4434 tbl = mod_cvar_at(mod, 0);
4436 return cvar_list(tbl);
4461 const ID id = id_for_var_message(mod, name,
class,
"wrong class variable name %1$s");
4467 rb_check_frozen(mod);
4468 val = rb_ivar_delete(mod,
id,
Qundef);
4469 if (!UNDEF_P(val)) {
4473 rb_name_err_raise(
"cannot remove %1$s for %2$s", mod,
ID2SYM(
id));
4476 rb_name_err_raise(
"class variable %1$s not defined for %2$s",
4495 ID id = rb_intern(name);
4501class_fields_ivar_set(
VALUE klass,
VALUE fields_obj,
ID id,
VALUE val,
bool concurrent,
VALUE *new_fields_obj,
bool *new_ivar_out)
4503 const VALUE original_fields_obj = fields_obj;
4504 fields_obj = original_fields_obj ? original_fields_obj : rb_imemo_fields_new(klass, ROOT_SHAPE_ID,
true);
4506 shape_id_t current_shape_id = RBASIC_SHAPE_ID(fields_obj);
4507 shape_id_t next_shape_id = current_shape_id;
4508 if (UNLIKELY(rb_shape_complex_p(current_shape_id))) {
4513 next_shape_id = generic_shape_ivar(fields_obj,
id, &new_ivar);
4515 if (UNLIKELY(rb_shape_complex_p(next_shape_id))) {
4516 fields_obj = imemo_fields_evacutate_to_complex(klass, fields_obj, next_shape_id, 1);
4520 attr_index_t index = RSHAPE_INDEX(next_shape_id);
4521 if (new_ivar && index >= RSHAPE_CAPACITY(current_shape_id)) {
4524 fields_obj = imemo_fields_copy_append(klass, fields_obj, current_shape_id, next_shape_id, val);
4527 VALUE *fields = rb_imemo_fields_ptr(fields_obj);
4529 if (concurrent && original_fields_obj == fields_obj) {
4535 RB_OBJ_ATOMIC_WRITE(fields_obj, &fields[index], val);
4542 RUBY_ASSERT(rb_shape_layout(next_shape_id) == SHAPE_ID_LAYOUT_ROBJECT);
4543 RBASIC_SET_SHAPE_ID(fields_obj, next_shape_id);
4547 *new_fields_obj = fields_obj;
4548 *new_ivar_out = new_ivar;
4553 if (concurrent && fields_obj == original_fields_obj) {
4557 fields_obj = rb_imemo_fields_clone(fields_obj);
4560 st_table *table = rb_imemo_fields_complex_tbl(fields_obj);
4561 new_ivar = !st_insert(table, (st_data_t)
id, (st_data_t)val);
4564 if (fields_obj != original_fields_obj) {
4565 RUBY_ASSERT(rb_shape_layout(next_shape_id) == SHAPE_ID_LAYOUT_ROBJECT);
4566 RBASIC_SET_SHAPE_ID(fields_obj, next_shape_id);
4570 *new_fields_obj = fields_obj;
4571 *new_ivar_out = new_ivar;
4572 return ATTR_INDEX_NOT_SET;
4576class_ivar_set(
VALUE obj,
ID id,
VALUE val,
bool *new_ivar)
4578 rb_class_ensure_writable(obj);
4580 const VALUE original_fields_obj = RCLASS_WRITABLE_FIELDS_OBJ(obj);
4581 VALUE new_fields_obj = 0;
4583 attr_index_t index = class_fields_ivar_set(obj, original_fields_obj,
id, val, rb_multi_ractor_p(), &new_fields_obj, new_ivar);
4585 if (new_fields_obj != original_fields_obj) {
4586 RCLASS_WRITABLE_SET_FIELDS_OBJ(obj, new_fields_obj);
4592 RBASIC_SET_SHAPE_ID(obj, RBASIC_SHAPE_ID(new_fields_obj));
4600 rb_check_frozen(obj);
4603 class_ivar_set(obj,
id, val, &new_ivar);
4612 RUBY_ASSERT(RSHAPE_TYPE_P(RBASIC_SHAPE_ID(dst), SHAPE_ROOT));
4614 VALUE fields_obj = RCLASS_WRITABLE_FIELDS_OBJ(src);
4616 RCLASS_WRITABLE_SET_FIELDS_OBJ(dst, rb_imemo_fields_clone(fields_obj));
4617 RBASIC_SET_SHAPE_ID(dst, RBASIC_SHAPE_ID(src));
4628 r = rb_id_table_lookup(tbl,
id, &val);
4637rb_const_lookup(
VALUE klass,
ID id)
4639 return const_lookup(RCLASS_CONST_TBL(klass),
id);
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
#define RUBY_EXTERN
Declaration of externally visible global variables.
static VALUE RB_OBJ_FROZEN_RAW(VALUE obj)
This is an implementation detail of RB_OBJ_FROZEN().
static bool RB_FL_ABLE(VALUE obj)
Checks if the object is flaggable.
static void RB_FL_SET_RAW(VALUE obj, VALUE flags)
This is an implementation detail of RB_FL_SET().
void rb_obj_freeze_inline(VALUE obj)
Prevents further modifications to the given object.
static void RB_FL_UNSET_RAW(VALUE obj, VALUE flags)
This is an implementation detail of RB_FL_UNSET().
@ RUBY_FL_FREEZE
This flag has something to do with data immutability.
void rb_class_modify_check(VALUE klass)
Asserts that klass is not a frozen class.
void rb_freeze_singleton_class(VALUE attached_object)
This is an implementation detail of RB_OBJ_FREEZE().
int rb_scan_args(int argc, const VALUE *argv, const char *fmt,...)
Retrieves argument from argc and argv to given VALUE references according to the format string.
#define rb_str_new2
Old name of rb_str_new_cstr.
#define TYPE(_)
Old name of rb_type.
#define ALLOC
Old name of RB_ALLOC.
#define T_STRING
Old name of RUBY_T_STRING.
#define Qundef
Old name of RUBY_Qundef.
#define rb_str_cat2
Old name of rb_str_cat_cstr.
#define T_IMEMO
Old name of RUBY_T_IMEMO.
#define ID2SYM
Old name of RB_ID2SYM.
#define SPECIAL_CONST_P
Old name of RB_SPECIAL_CONST_P.
#define T_STRUCT
Old name of RUBY_T_STRUCT.
#define OBJ_FREEZE
Old name of RB_OBJ_FREEZE.
#define UNREACHABLE_RETURN
Old name of RBIMPL_UNREACHABLE_RETURN.
#define T_DATA
Old name of RUBY_T_DATA.
#define ZALLOC
Old name of RB_ZALLOC.
#define CLASS_OF
Old name of rb_class_of.
#define T_MODULE
Old name of RUBY_T_MODULE.
#define T_ICLASS
Old name of RUBY_T_ICLASS.
#define rb_ary_new3
Old name of rb_ary_new_from_args.
#define FL_USER2
Old name of RUBY_FL_USER2.
#define Qtrue
Old name of RUBY_Qtrue.
#define INT2NUM
Old name of RB_INT2NUM.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define T_OBJECT
Old name of RUBY_T_OBJECT.
#define NIL_P
Old name of RB_NIL_P.
#define ALLOCV_N
Old name of RB_ALLOCV_N.
#define T_CLASS
Old name of RUBY_T_CLASS.
#define BUILTIN_TYPE
Old name of RB_BUILTIN_TYPE.
#define rb_ary_new2
Old name of rb_ary_new_capa.
#define ALLOCV_END
Old name of RB_ALLOCV_END.
void rb_category_warn(rb_warning_category_t category, const char *fmt,...)
Identical to rb_category_warning(), except it reports unless $VERBOSE is nil.
void rb_name_error(ID id, const char *fmt,...)
Raises an instance of rb_eNameError.
VALUE rb_eTypeError
TypeError exception.
void rb_name_error_str(VALUE str, const char *fmt,...)
Identical to rb_name_error(), except it takes a VALUE instead of ID.
VALUE rb_eNameError
NameError exception.
VALUE rb_eRuntimeError
RuntimeError exception.
void * rb_check_typeddata(VALUE obj, const rb_data_type_t *data_type)
Identical to rb_typeddata_is_kind_of(), except it raises exceptions instead of returning false.
void rb_warn(const char *fmt,...)
Identical to rb_warning(), except it reports unless $VERBOSE is nil.
void rb_warning(const char *fmt,...)
Issues a warning.
@ RB_WARN_CATEGORY_DEPRECATED
Warning is for deprecated features.
VALUE rb_cObject
Object class.
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
VALUE rb_obj_class(VALUE obj)
Queries the class of an object.
VALUE rb_cModule
Module class.
VALUE rb_class_real(VALUE klass)
Finds a "real" class.
#define RB_OBJ_WRITTEN(old, oldv, young)
Identical to RB_OBJ_WRITE(), except it doesn't write any values, but only a WB declaration.
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
ID rb_check_id_cstr(const char *ptr, long len, rb_encoding *enc)
Identical to rb_check_id(), except it takes a pointer to a memory region instead of Ruby's string.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
VALUE rb_funcallv(VALUE recv, ID mid, int argc, const VALUE *argv)
Identical to rb_funcall(), except it takes the method arguments as a C array.
VALUE rb_ary_new(void)
Allocates a new, empty array.
VALUE rb_ary_new_capa(long capa)
Identical to rb_ary_new(), except it additionally specifies how many rooms of objects it should alloc...
VALUE rb_ary_hidden_new(long capa)
Allocates a hidden (no class) empty array.
VALUE rb_ary_push(VALUE ary, VALUE elem)
Special case of rb_ary_cat() that it adds only one element.
VALUE rb_assoc_new(VALUE car, VALUE cdr)
Identical to rb_ary_new_from_values(), except it expects exactly two parameters.
static int rb_check_arity(int argc, int min, int max)
Ensures that the passed integer is in the passed range.
#define st_foreach_safe
Just another name of rb_st_foreach_safe.
int rb_feature_provided(const char *feature, const char **loading)
Identical to rb_provided(), except it additionally returns the "canonical" name of the loaded feature...
VALUE rb_backref_get(void)
Queries the last match, or Regexp.last_match, or the $~.
int rb_is_instance_id(ID id)
Classifies the given ID, then sees if it is an instance variable.
int rb_is_const_id(ID id)
Classifies the given ID, then sees if it is a constant.
int rb_is_class_id(ID id)
Classifies the given ID, then sees if it is a class variable.
VALUE rb_block_proc(void)
Constructs a Proc object from implicitly passed components.
VALUE rb_reg_nth_defined(int n, VALUE md)
Identical to rb_reg_nth_match(), except it just returns Boolean.
VALUE rb_str_append(VALUE dst, VALUE src)
Identical to rb_str_buf_append(), except it converts the right hand side before concatenating.
VALUE rb_str_subseq(VALUE str, long beg, long len)
Identical to rb_str_substr(), except the numbers are interpreted as byte offsets instead of character...
VALUE rb_str_new_frozen(VALUE str)
Creates a frozen copy of the string, if necessary.
VALUE rb_str_dup(VALUE str)
Duplicates a string.
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
VALUE rb_str_intern(VALUE str)
Identical to rb_to_symbol(), except it assumes the receiver being an instance of RString.
VALUE rb_mutex_new(void)
Creates a mutex.
VALUE rb_mutex_synchronize(VALUE mutex, VALUE(*func)(VALUE arg), VALUE arg)
Obtains the lock, runs the passed function, and releases the lock when it completes.
VALUE rb_exec_recursive_paired(VALUE(*f)(VALUE g, VALUE h, int r), VALUE g, VALUE p, VALUE h)
Identical to rb_exec_recursive(), except it checks for the recursion on the ordered pair of { g,...
VALUE rb_mod_remove_cvar(VALUE mod, VALUE name)
Resembles Module#remove_class_variable.
VALUE rb_obj_instance_variables(VALUE obj)
Resembles Object#instance_variables.
VALUE rb_f_untrace_var(int argc, const VALUE *argv)
Deletes the passed tracer from the passed global variable, or if omitted, deletes everything.
VALUE rb_const_get(VALUE space, ID name)
Identical to rb_const_defined(), except it returns the actual defined value.
VALUE rb_const_list(void *)
This is another mysterious API that comes with no documents at all.
VALUE rb_path2class(const char *path)
Resolves a Q::W::E::R-style path string to the actual class it points.
VALUE rb_autoload_p(VALUE space, ID name)
Queries if an autoload is defined at a point.
void rb_set_class_path(VALUE klass, VALUE space, const char *name)
Names a class.
VALUE rb_ivar_set(VALUE obj, ID name, VALUE val)
Identical to rb_iv_set(), except it accepts the name as an ID instead of a C string.
VALUE rb_mod_remove_const(VALUE space, VALUE name)
Resembles Module#remove_const.
VALUE rb_class_path_cached(VALUE mod)
Just another name of rb_mod_name.
VALUE rb_f_trace_var(int argc, const VALUE *argv)
Traces a global variable.
void rb_cvar_set(VALUE klass, ID name, VALUE val)
Assigns a value to a class variable.
VALUE rb_cvar_get(VALUE klass, ID name)
Obtains a value from a class variable.
VALUE rb_mod_constants(int argc, const VALUE *argv, VALUE recv)
Resembles Module#constants.
VALUE rb_cvar_find(VALUE klass, ID name, VALUE *front)
Identical to rb_cvar_get(), except it takes additional "front" pointer.
VALUE rb_path_to_class(VALUE path)
Identical to rb_path2class(), except it accepts the path as Ruby's string instead of C's.
VALUE rb_ivar_get(VALUE obj, ID name)
Identical to rb_iv_get(), except it accepts the name as an ID instead of a C string.
void rb_const_set(VALUE space, ID name, VALUE val)
Names a constant.
VALUE rb_autoload_load(VALUE space, ID name)
Kicks the autoload procedure as if it was "touched".
VALUE rb_mod_name(VALUE mod)
Queries the name of a module.
VALUE rb_class_name(VALUE obj)
Queries the name of the given object's class.
VALUE rb_const_get_at(VALUE space, ID name)
Identical to rb_const_defined_at(), except it returns the actual defined value.
void rb_set_class_path_string(VALUE klass, VALUE space, VALUE name)
Identical to rb_set_class_path(), except it accepts the name as Ruby's string instead of C's.
void rb_alias_variable(ID dst, ID src)
Aliases a global variable.
void rb_define_class_variable(VALUE, const char *, VALUE)
Just another name of rb_cv_set.
VALUE rb_obj_remove_instance_variable(VALUE obj, VALUE name)
Resembles Object#remove_instance_variable.
void * rb_mod_const_of(VALUE, void *)
This is a variant of rb_mod_const_at().
st_index_t rb_ivar_count(VALUE obj)
Number of instance variables defined on an object.
void * rb_mod_const_at(VALUE, void *)
This API is mysterious.
VALUE rb_const_remove(VALUE space, ID name)
Identical to rb_mod_remove_const(), except it takes the name as ID instead of VALUE.
VALUE rb_const_get_from(VALUE space, ID name)
Identical to rb_const_defined_at(), except it returns the actual defined value.
VALUE rb_ivar_defined(VALUE obj, ID name)
Queries if the instance variable is defined at the object.
VALUE rb_cv_get(VALUE klass, const char *name)
Identical to rb_cvar_get(), except it accepts C's string instead of ID.
int rb_const_defined_at(VALUE space, ID name)
Identical to rb_const_defined(), except it doesn't look for parent classes.
void rb_cv_set(VALUE klass, const char *name, VALUE val)
Identical to rb_cvar_set(), except it accepts C's string instead of ID.
VALUE rb_mod_class_variables(int argc, const VALUE *argv, VALUE recv)
Resembles Module#class_variables.
VALUE rb_f_global_variables(void)
Queries the list of global variables.
VALUE rb_cvar_defined(VALUE klass, ID name)
Queries if the given class has the given class variable.
VALUE rb_class_path(VALUE mod)
Identical to rb_mod_name(), except it returns #<Class: ...> style inspection for anonymous modules.
int rb_const_defined_from(VALUE space, ID name)
Identical to rb_const_defined(), except it returns false for private constants.
int rb_const_defined(VALUE space, ID name)
Queries if the constant is defined at the namespace.
void rb_free_generic_ivar(VALUE obj)
Frees the list of instance variables.
const char * rb_sourcefile(void)
Resembles __FILE__.
void rb_clear_constant_cache_for_id(ID id)
Clears the inline constant caches associated with a particular ID.
int rb_obj_respond_to(VALUE obj, ID mid, int private_p)
Identical to rb_respond_to(), except it additionally takes the visibility parameter.
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
VALUE rb_id2sym(ID id)
Allocates an instance of rb_cSymbol that has the given id.
ID rb_check_id(volatile VALUE *namep)
Detects if the given name is already interned or not.
ID rb_to_id(VALUE str)
Identical to rb_intern_str(), except it tries to convert the parameter object to an instance of rb_cS...
rb_gvar_setter_t rb_gvar_var_setter
rb_gvar_marker_t rb_gvar_var_marker
void rb_define_global_const(const char *name, VALUE val)
Identical to rb_define_const(), except it defines that of "global", i.e.
VALUE rb_gv_get(const char *name)
Obtains a global variable.
void rb_define_variable(const char *name, VALUE *var)
"Shares" a global variable between Ruby and C.
void rb_gvar_marker_t(VALUE *var)
Type that represents a global variable marker function.
void rb_deprecate_constant(VALUE mod, const char *name)
Asserts that the given constant is deprecated.
void rb_gvar_setter_t(VALUE val, ID id, VALUE *data)
Type that represents a global variable setter function.
rb_gvar_setter_t rb_gvar_val_setter
This is the setter function that backs global variables defined from a ruby script.
rb_gvar_marker_t rb_gvar_undef_marker
void rb_define_readonly_variable(const char *name, const VALUE *var)
Identical to rb_define_variable(), except it does not allow Ruby programs to assign values to such gl...
rb_gvar_setter_t rb_gvar_readonly_setter
This function just raises rb_eNameError.
rb_gvar_getter_t rb_gvar_undef_getter
VALUE rb_gv_set(const char *name, VALUE val)
Assigns to a global variable.
rb_gvar_marker_t rb_gvar_val_marker
This is the setter function that backs global variables defined from a ruby script.
VALUE rb_gvar_getter_t(ID id, VALUE *data)
Type that represents a global variable getter function.
VALUE rb_iv_get(VALUE obj, const char *name)
Obtains an instance variable.
rb_gvar_setter_t rb_gvar_undef_setter
rb_gvar_getter_t rb_gvar_val_getter
This is the getter function that backs global variables defined from a ruby script.
VALUE rb_iv_set(VALUE obj, const char *name, VALUE val)
Assigns to an instance variable.
rb_gvar_getter_t rb_gvar_var_getter
int capa
Designed capacity of the buffer.
int len
Length of the buffer.
static bool rb_ractor_shareable_p(VALUE obj)
Queries if multiple Ractors can share the passed object or not.
#define RB_OBJ_SHAREABLE_P(obj)
Queries if the passed object has previously classified as shareable or not.
#define MEMCPY(p1, p2, type, n)
Handy macro to call memcpy.
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
#define MEMMOVE(p1, p2, type, n)
Handy macro to call memmove.
void rb_define_hooked_variable(const char *q, VALUE *w, type *e, void_type *r)
Define a function-backended global variable.
VALUE type(ANYARGS)
ANYARGS-ed function type.
void rb_define_virtual_variable(const char *q, type *w, void_type *e)
Define a function-backended global variable.
void rb_ivar_foreach(VALUE q, int_type *w, VALUE e)
Iteration over each instance variable of the object.
VALUE rb_ensure(type *q, VALUE w, type *e, VALUE r)
An equivalent of ensure clause.
void rb_copy_generic_ivar(VALUE clone, VALUE obj)
Copies the list of instance variables.
#define RARRAY_LEN
Just another name of rb_array_len.
static VALUE RBASIC_CLASS(VALUE obj)
Queries the class of an object.
#define RBASIC(obj)
Convenient casting macro.
#define RCLASS_SUPER
Just another name of rb_class_get_superclass.
#define StringValue(v)
Ensures that the parameter object is a String.
static char * RSTRING_END(VALUE str)
Queries the end of the contents pointer of the string.
#define RTYPEDDATA_DATA(v)
Convenient getter macro.
#define RUBY_TYPED_FREE_IMMEDIATELY
Macros to see if each corresponding flag is defined.
#define TypedData_Wrap_Struct(klass, data_type, sval)
Converts sval, a pointer to your struct, into a Ruby object.
#define RTYPEDDATA(obj)
Convenient casting macro.
#define TypedData_Make_Struct(klass, type, data_type, sval)
Identical to TypedData_Wrap_Struct, except it allocates a new data region internally instead of takin...
const char * rb_class2name(VALUE klass)
Queries the name of the passed class.
const char * rb_obj_classname(VALUE obj)
Queries the name of the class of the passed object.
#define RB_NO_KEYWORDS
Do not pass keywords.
static bool RB_SPECIAL_CONST_P(VALUE obj)
Checks if the given object is of enum ruby_special_consts.
#define RTEST
This is an old name of RB_TEST.
#define _(args)
This was a transition path from K&R to ANSI.
Internal header for Ruby Box.
Internal header for Class.
This is the struct that holds necessary info for a struct.
void rb_native_mutex_lock(rb_nativethread_lock_t *lock)
Just another name of rb_nativethread_lock_lock.
void rb_native_mutex_initialize(rb_nativethread_lock_t *lock)
Just another name of rb_nativethread_lock_initialize.
void rb_native_mutex_unlock(rb_nativethread_lock_t *lock)
Just another name of rb_nativethread_lock_unlock.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
uintptr_t VALUE
Type that represents a Ruby object.
static enum ruby_value_type rb_type(VALUE obj)
Identical to RB_BUILTIN_TYPE(), except it can also accept special constants.
static enum ruby_value_type RB_BUILTIN_TYPE(VALUE obj)
Queries the type of the object.
static void Check_Type(VALUE v, enum ruby_value_type t)
Identical to RB_TYPE_P(), except it raises exceptions on predication failure.
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.