10static int vm_redefinition_check_flag(
VALUE klass);
14#define object_id idObject_id
15#define added idMethod_added
16#define singleton_added idSingleton_method_added
17#define removed idMethod_removed
18#define singleton_removed idSingleton_method_removed
19#define undefined idMethod_undefined
20#define singleton_undefined idSingleton_method_undefined
22#define ruby_running (GET_VM()->running)
25static enum rb_id_table_iterator_result
26mark_cc_entry_i(
VALUE ccs_ptr,
void *data)
30 VM_ASSERT(vm_ccs_p(ccs));
32 if (METHOD_ENTRY_INVALIDATED(ccs->cme)) {
36 rb_gc_mark_movable((
VALUE)ccs->cme);
37 for (
int i = 0; i < ccs->len; i++) {
38 rb_gc_mark_movable((
VALUE)ccs->entries[i].cc);
40 return ID_TABLE_CONTINUE;
43 rb_gc_mark_movable((
VALUE)ccs->cme);
45 for (
int i = 0; i < ccs->len; i++) {
47 VM_ASSERT(cc->klass ==
Qundef || vm_cc_check_cme(cc, ccs->cme));
49 rb_gc_mark_movable((
VALUE)cc);
51 return ID_TABLE_CONTINUE;
56vm_cc_table_mark(
void *data)
60 rb_id_table_foreach_values(tbl, mark_cc_entry_i, NULL);
64static enum rb_id_table_iterator_result
65cc_table_free_i(
VALUE ccs_ptr,
void *data)
68 VM_ASSERT(vm_ccs_p(ccs));
70 ruby_xfree_sized(ccs, vm_ccs_alloc_size(ccs->capa));
72 return ID_TABLE_CONTINUE;
76vm_cc_table_free(
void *data)
80 rb_id_table_foreach_values(tbl, cc_table_free_i, NULL);
84static enum rb_id_table_iterator_result
85cc_table_memsize_i(
VALUE ccs_ptr,
void *data_ptr)
87 size_t *total_size = data_ptr;
89 *total_size +=
sizeof(*ccs);
90 *total_size +=
sizeof(ccs->entries[0]) * ccs->capa;
91 return ID_TABLE_CONTINUE;
95vm_cc_table_memsize(
const void *data)
97 size_t memsize = rb_managed_id_table_type.
function.
dsize(data);
99 rb_id_table_foreach_values(tbl, cc_table_memsize_i, &memsize);
103static enum rb_id_table_iterator_result
104compact_cc_entry_i(
VALUE ccs_ptr,
void *data)
108 rb_gc_update_moved_ptr(&ccs->cme);
109 VM_ASSERT(vm_ccs_p(ccs));
111 for (
int i=0; i<ccs->len; i++) {
112 rb_gc_update_moved_ptr(&ccs->entries[i].cc);
115 return ID_TABLE_CONTINUE;
119vm_cc_table_compact(
void *data)
122 rb_id_table_foreach_values(tbl, compact_cc_entry_i, NULL);
128 .dmark = vm_cc_table_mark,
129 .dfree = vm_cc_table_free,
130 .dsize = vm_cc_table_memsize,
131 .dcompact = vm_cc_table_compact,
133 .parent = &rb_managed_id_table_type,
134 .
flags = RUBY_TYPED_THREAD_SAFE_FREE | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_EMBEDDABLE,
138rb_vm_cc_table_create(
size_t capa)
140 return rb_managed_id_table_create(&cc_table_type,
capa);
145static enum rb_id_table_iterator_result
146vm_cc_table_dup_i(
ID key,
VALUE old_ccs_ptr,
void *data)
151 if (METHOD_ENTRY_INVALIDATED(old_ccs->cme)) {
158 vm_ccs_invalidate(old_ccs);
159 return ID_TABLE_CONTINUE;
162 size_t memsize = vm_ccs_alloc_size(old_ccs->capa);
164 rb_managed_id_table_insert(new_table, key, (
VALUE)new_ccs);
168 VM_ASSERT(!METHOD_ENTRY_INVALIDATED(old_ccs->cme));
170 memcpy(new_ccs, old_ccs, memsize);
173 new_ccs->debug_sig = ~(
VALUE)new_ccs;
177 for (
int index = 0; index < new_ccs->len; index++) {
180 return ID_TABLE_CONTINUE;
184rb_vm_cc_table_dup(
VALUE old_table)
187 VALUE new_table = rb_vm_cc_table_create(rb_managed_id_table_size(old_table));
188 rb_managed_id_table_foreach(old_table, vm_cc_table_dup_i, (
void *)new_table);
195 for (
int i=0; i<ccs->len; i++) {
197 if (cc->klass ==
Qundef)
continue;
198 VM_ASSERT(!vm_cc_super_p(cc) && !vm_cc_refinement_p(cc));
199 vm_cc_invalidate(cc);
206 RB_DEBUG_COUNTER_INC(ccs_free);
207 vm_ccs_invalidate(ccs);
208 ruby_xfree_sized(ccs, vm_ccs_alloc_size(ccs->capa));
212rb_vm_cc_table_delete(
VALUE table,
ID mid)
215 if (rb_managed_id_table_lookup(table, mid, &ccs_obj)) {
217 rb_managed_id_table_delete(table, mid);
218 rb_vm_ccs_invalidate_and_free(ccs);
222static enum rb_id_table_iterator_result
223vm_ccs_dump_i(
ID mid,
VALUE val,
void *data)
226 fprintf(stderr,
" | %s (len:%d) ", rb_id2name(mid), ccs->len);
229 for (
int i=0; i<ccs->len; i++) {
230 rp_m(
" | \t", ccs->entries[i].cc);
233 return ID_TABLE_CONTINUE;
237vm_ccs_dump(
VALUE klass,
ID target_mid)
239 VALUE cc_tbl = RCLASS_WRITABLE_CC_TBL(klass);
243 if (rb_managed_id_table_lookup(cc_tbl, target_mid, &ccs)) {
244 fprintf(stderr,
" [CCTB] %p\n", (
void *)cc_tbl);
245 vm_ccs_dump_i(target_mid, ccs, NULL);
249 fprintf(stderr,
" [CCTB] %p\n", (
void *)cc_tbl);
250 rb_managed_id_table_foreach(cc_tbl, vm_ccs_dump_i, (
void *)target_mid);
255static enum rb_id_table_iterator_result
256vm_cme_dump_i(
ID mid,
VALUE val,
void *data)
258 ID target_mid = (
ID)data;
259 if (target_mid == 0 || mid == target_mid) {
262 return ID_TABLE_CONTINUE;
266vm_mtbl_dump(
VALUE klass,
ID target_mid)
268 fprintf(stderr,
"# vm_mtbl\n");
273 if (RCLASS_M_TBL(klass)) {
274 if (target_mid != 0) {
275 if (rb_id_table_lookup(RCLASS_M_TBL(klass), target_mid, &me)) {
276 rp_m(
" [MTBL] ", me);
280 fprintf(stderr,
" ## RCLASS_M_TBL (%p)\n", (
void *)RCLASS_M_TBL(klass));
281 rb_id_table_foreach(RCLASS_M_TBL(klass), vm_cme_dump_i, NULL);
285 fprintf(stderr,
" MTBL: NULL\n");
287 if (RCLASS_WRITABLE_CALLABLE_M_TBL(klass)) {
288 if (target_mid != 0) {
289 if (rb_id_table_lookup(RCLASS_WRITABLE_CALLABLE_M_TBL(klass), target_mid, &me)) {
290 rp_m(
" [CM**] ", me);
294 fprintf(stderr,
" ## RCLASS_CALLABLE_M_TBL\n");
295 rb_id_table_foreach(RCLASS_WRITABLE_CALLABLE_M_TBL(klass), vm_cme_dump_i, NULL);
298 if (RCLASS_WRITABLE_CC_TBL(klass)) {
299 vm_ccs_dump(klass, target_mid);
307rb_vm_mtbl_dump(
const char *msg,
VALUE klass,
ID target_mid)
309 fprintf(stderr,
"[%s] ", msg);
310 vm_mtbl_dump(klass, target_mid);
316 VM_ASSERT(IMEMO_TYPE_P(cme, imemo_ment),
"cme: %d", imemo_type((
VALUE)cme));
317 VM_ASSERT(callable_method_entry_p(cme));
318 METHOD_ENTRY_INVALIDATED_SET(cme);
319 RB_DEBUG_COUNTER_INC(cc_cme_invalidate);
321 rb_yjit_cme_invalidate(cme);
322 rb_zjit_cme_invalidate(cme);
326rb_clear_constant_cache_for_id_i(st_data_t ic, st_data_t arg)
328 ((
IC) ic)->entry = NULL;
338 if (rb_id_table_lookup(&vm->constant_cache,
id, &lookup_result)) {
340 set_table_foreach(ics, rb_clear_constant_cache_for_id_i, (st_data_t) NULL);
341 ruby_vm_constant_cache_invalidations += ics->num_entries;
344 rb_yjit_constant_state_changed(
id);
345 rb_zjit_constant_state_changed(
id);
349invalidate_negative_cache(
ID mid)
354 if (rb_id_table_lookup(&vm->negative_cme_table, mid, &cme)) {
355 rb_id_table_delete(&vm->negative_cme_table, mid);
357 RB_DEBUG_COUNTER_INC(cc_invalidate_negative);
366invalidate_method_cache_in_cc_table(
VALUE tbl,
ID mid)
369 if (tbl && rb_managed_id_table_lookup(tbl, mid, &ccs_data)) {
373 if (
NIL_P(ccs->cme->owner)) invalidate_negative_cache(mid);
374 rb_vm_ccs_invalidate_and_free(ccs);
375 rb_managed_id_table_delete(tbl, mid);
376 RB_DEBUG_COUNTER_INC(cc_invalidate_leaf_ccs);
381invalidate_callable_method_entry_in_callable_m_table(
struct rb_id_table *tbl,
ID mid)
384 if (tbl && rb_id_table_lookup(tbl, mid, &cme)) {
387 rb_id_table_delete(tbl, mid);
388 RB_DEBUG_COUNTER_INC(cc_invalidate_leaf_callable);
400invalidate_callable_method_entry_in_every_m_table_i(
rb_classext_t *ext,
bool is_prime,
VALUE box_value,
void *data)
406 if (rb_id_table_lookup(tbl, arg->mid, &me) && arg->cme == (
const rb_method_entry_t *)me) {
407 rb_method_table_insert(arg->klass, tbl, arg->mid, arg->newer);
413 VALUE klass_housing_cme;
418collect_per_box_origins_i(
rb_classext_t *ext,
bool is_prime,
VALUE box_value,
void *data)
421 VALUE origin = RCLASSEXT_ORIGIN(ext);
423 if (origin == arg->owner || origin == arg->klass_housing_cme) {
427 for (
long i = 0; i <
len; i++) {
446 rb_class_classext_foreach(klass, invalidate_callable_method_entry_in_every_m_table_i, (
void *)&arg);
450invalidate_complemented_method_entry_in_callable_m_table(
struct rb_id_table *tbl,
ID mid)
453 if (tbl && rb_id_table_lookup(tbl, mid, &cme)) {
456 rb_id_table_delete(tbl, mid);
457 RB_DEBUG_COUNTER_INC(cc_invalidate_tree_callable);
462clear_method_cache_by_id_in_class(
VALUE klass,
ID mid)
465 if (rb_objspace_garbage_object_p(klass))
return;
470 if (LIKELY(!RCLASS_SUBCLASSES(klass)) &&
480 VALUE cc_tbl = RCLASS_WRITABLE_CC_TBL(klass);
481 invalidate_method_cache_in_cc_table(cc_tbl, mid);
482 if (RCLASS_CC_TBL_NOT_PRIME_P(klass, cc_tbl)) {
483 invalidate_method_cache_in_cc_table(RCLASS_PRIME_CC_TBL(klass), mid);
487 struct rb_id_table *cm_tbl = RCLASS_WRITABLE_CALLABLE_M_TBL(klass);
488 invalidate_callable_method_entry_in_callable_m_table(cm_tbl, mid);
489 if (RCLASS_CALLABLE_M_TBL_NOT_PRIME_P(klass, cm_tbl)) {
490 invalidate_callable_method_entry_in_callable_m_table(RCLASS_PRIME_CALLABLE_M_TBL(klass), mid);
493 RB_DEBUG_COUNTER_INC(cc_invalidate_leaf);
500 if (METHOD_ENTRY_CACHED(cme)) {
501 if (METHOD_ENTRY_COMPLEMENTED(cme)) {
506 VALUE owner = cme->owner;
507 VM_ASSERT_TYPE(owner,
T_CLASS);
508 VALUE klass_housing_cme;
509 if (cme->def->type == VM_METHOD_TYPE_REFINED && !cme->def->body.refined.orig_me) {
510 klass_housing_cme = owner;
513 klass_housing_cme = RCLASS_ORIGIN(owner);
517 invalidate_callable_method_entry_in_every_m_table(klass_housing_cme, mid, cme);
520 if (klass_housing_cme != owner) {
521 invalidate_callable_method_entry_in_every_m_table(owner, mid, cme);
532 .klass_housing_cme = klass_housing_cme,
535 rb_class_classext_foreach(owner, collect_per_box_origins_i, &origins_arg);
536 for (
long i = 0; i <
RARRAY_LEN(origins); i++) {
537 invalidate_callable_method_entry_in_every_m_table(
RARRAY_AREF(origins, i), mid, cme);
544 RB_DEBUG_COUNTER_INC(cc_invalidate_tree_cme);
549 if (cme->def->type == VM_METHOD_TYPE_REFINED && cme->def->body.refined.orig_me) {
553 if (cme->def->iseq_overload) {
556 vm_cme_invalidate(monly_cme);
562 if (METHOD_ENTRY_COMPLEMENTED(cme)) {
563 VALUE defined_class = cme->defined_class;
564 struct rb_id_table *cm_tbl = RCLASS_WRITABLE_CALLABLE_M_TBL(defined_class);
565 invalidate_complemented_method_entry_in_callable_m_table(cm_tbl, mid);
566 if (RCLASS_CALLABLE_M_TBL_NOT_PRIME_P(defined_class, cm_tbl)) {
567 struct rb_id_table *prime_cm_table = RCLASS_PRIME_CALLABLE_M_TBL(defined_class);
568 invalidate_complemented_method_entry_in_callable_m_table(prime_cm_table, mid);
572 RB_DEBUG_COUNTER_INC(cc_invalidate_tree);
575 invalidate_negative_cache(mid);
579 rb_gccct_clear_table();
584clear_iclass_method_cache_by_id(
VALUE iclass,
VALUE d)
588 clear_method_cache_by_id_in_class(iclass, mid);
592clear_iclass_method_cache_by_id_for_refinements(
VALUE klass,
VALUE d)
596 clear_method_cache_by_id_in_class(klass, mid);
601rb_clear_method_cache(
VALUE klass_or_module,
ID mid)
604 VALUE module = klass_or_module;
606 if (
FL_TEST(module, RMODULE_IS_REFINEMENT)) {
607 VALUE refined_class = rb_refinement_module_get_refined_class(module);
608 rb_clear_method_cache(refined_class, mid);
609 rb_class_foreach_subclass(refined_class, clear_iclass_method_cache_by_id_for_refinements, mid);
610 rb_clear_all_refinement_method_cache();
612 rb_class_foreach_subclass(module, clear_iclass_method_cache_by_id, mid);
615 clear_method_cache_by_id_in_class(klass_or_module, mid);
619static enum rb_id_table_iterator_result
620invalidate_method_entry_in_iclass_callable_m_tbl(
VALUE cme,
void *data)
623 return ID_TABLE_DELETE;
626static enum rb_id_table_iterator_result
627invalidate_ccs_in_iclass_cc_tbl(
VALUE value,
void *data)
631 ruby_xfree_sized(ccs, vm_ccs_alloc_size(ccs->capa));
632 return ID_TABLE_DELETE;
639 rb_id_table_foreach_values(cm_tbl, invalidate_method_entry_in_iclass_callable_m_tbl, NULL);
642 rb_managed_id_table_foreach_values(cc_tbl, invalidate_ccs_in_iclass_cc_tbl, NULL);
655 for (
int i = 0; i < ci->kwarg->keyword_len; i++) {
667 if (ci1->mid != ci2->mid)
return 1;
668 if (ci1->flag != ci2->flag)
return 1;
669 if (ci1->argc != ci2->argc)
return 1;
670 if (ci1->kwarg != NULL) {
671 VM_ASSERT(ci2->kwarg != NULL);
673 if (ci1->kwarg->keyword_len != ci2->kwarg->keyword_len)
676 for (
int i = 0; i < ci1->kwarg->keyword_len; i++) {
677 if (ci1->kwarg->keywords[i] != ci2->kwarg->keywords[i]) {
683 VM_ASSERT(ci2->kwarg == NULL);
694ci_lookup_i(st_data_t *key, st_data_t *value, st_data_t data,
int existing)
697 st_data_t *ret = (st_data_t *)data;
700 if (rb_objspace_garbage_object_p((
VALUE)ci)) {
701 *ret = (st_data_t)NULL;
710 *key = *value = *ret = (st_data_t)ci;
716rb_vm_ci_lookup(
ID mid,
unsigned int flag,
unsigned int argc,
const struct rb_callinfo_kwarg *kwarg)
734 st_update(ci_table, (st_data_t)new_ci, ci_lookup_i, (st_data_t)&ci);
735 }
while (ci == NULL);
750 st_data_t key = (st_data_t)ci;
751 st_delete(&vm->ci_table, &key, NULL);
761cc_refinement_set_free(
void *ptr)
768cc_refinement_set_memsize(
const void *ptr)
771 return e->capa *
sizeof(
VALUE);
775cc_refinement_set_compact(
void *ptr)
778 for (
size_t i = 0; i < e->len; i++) {
779 rb_gc_update_moved(&e->entries[i]);
784cc_refinement_set_handle_weak_references(
void *ptr)
788 for (
size_t read = 0; read < e->len; read++) {
789 if (rb_gc_handle_weak_references_alive_p(e->entries[read])) {
790 e->entries[write++] = e->entries[read];
797 "VM/cc_refinement_set",
800 cc_refinement_set_free,
801 cc_refinement_set_memsize,
802 cc_refinement_set_compact,
803 cc_refinement_set_handle_weak_references,
805 0, 0, RUBY_TYPED_THREAD_SAFE_FREE | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_EMBEDDABLE
809rb_cc_refinement_set_create(
void)
818 rb_gc_declare_weak_references(obj);
824rb_vm_insert_cc_refinement(
const struct rb_callcache *cc)
830 if (e->len == e->capa) {
831 size_t new_capa = e->capa == 0 ? 16 : e->capa * 2;
832 SIZED_REALLOC_N(e->entries,
VALUE, new_capa, e->capa);
835 e->entries[e->len++] = (
VALUE)cc;
845rb_clear_all_refinement_method_cache(
void)
852 for (
size_t i = 0; i < e->len; i++) {
853 VALUE v = e->entries[i];
857 VM_ASSERT(!rb_objspace_garbage_object_p(v));
860 VM_ASSERT(vm_cc_refinement_p(cc));
862 if (vm_cc_valid(cc)) {
863 vm_cc_invalidate(cc);
870 rb_yjit_invalidate_all_method_lookup_assumptions();
877 rb_method_table_insert0(klass, table, method_id, me,
RB_TYPE_P(klass,
T_ICLASS) && !RICLASS_OWNS_M_TBL_P(klass));
884 VALUE table_owner = klass;
885 if (iclass_shared_mtbl) {
886 table_owner =
RBASIC(table_owner)->klass;
889 rb_id_table_insert(table, method_id, (
VALUE)me);
898NORETURN(
static VALUE rb_f_notimplement_internal(
int argc,
const VALUE *argv,
VALUE obj));
901rb_f_notimplement_internal(
int argc,
const VALUE *argv,
VALUE obj)
911 rb_f_notimplement_internal(argc, argv, obj);
915rb_define_notimplement_method_id(
VALUE mod,
ID id, rb_method_visibility_t visi)
917 rb_add_method(mod,
id, VM_METHOD_TYPE_NOTIMPLEMENTED, (
void *)1, visi);
921rb_add_method_cfunc(
VALUE klass,
ID mid,
VALUE (*func)(
ANYARGS),
int argc, rb_method_visibility_t visi)
923 if (argc < -2 || 15 < argc) rb_raise(rb_eArgError,
"arity out of range: %d for -2..15", argc);
928 rb_add_method(klass, mid, VM_METHOD_TYPE_CFUNC, &opt, visi);
931 rb_define_notimplement_method_id(klass, mid, visi);
936rb_add_method_optimized(
VALUE klass,
ID mid,
enum method_optimized_type opt_type,
unsigned int index, rb_method_visibility_t visi)
942 rb_add_method(klass, mid, VM_METHOD_TYPE_OPTIMIZED, &opt, visi);
953 if (reference_count_was == 1) {
954 if (METHOD_DEBUG) fprintf(stderr,
"-%p-%s:1->0 (remove)\n", (
void *)def,
955 rb_id2name(def->original_id));
959 if (METHOD_DEBUG) fprintf(stderr,
"-%p-%s:%d->%d (dec)\n", (
void *)def, rb_id2name(def->original_id),
960 reference_count_was, reference_count_was - 1);
968 method_definition_release(def);
976 if (me->def && me->def->iseq_overload) {
985 if (METHOD_ENTRY_CACHED(me)) {
995 method_definition_release(me->def);
1004 if (!GET_THREAD()->ext_config.ractor_safe) {
1006 case -2:
return &call_cfunc_m2;
1007 case -1:
return &call_cfunc_m1;
1008 case 0:
return &call_cfunc_0;
1009 case 1:
return &call_cfunc_1;
1010 case 2:
return &call_cfunc_2;
1011 case 3:
return &call_cfunc_3;
1012 case 4:
return &call_cfunc_4;
1013 case 5:
return &call_cfunc_5;
1014 case 6:
return &call_cfunc_6;
1015 case 7:
return &call_cfunc_7;
1016 case 8:
return &call_cfunc_8;
1017 case 9:
return &call_cfunc_9;
1018 case 10:
return &call_cfunc_10;
1019 case 11:
return &call_cfunc_11;
1020 case 12:
return &call_cfunc_12;
1021 case 13:
return &call_cfunc_13;
1022 case 14:
return &call_cfunc_14;
1023 case 15:
return &call_cfunc_15;
1025 rb_bug(
"unsupported length: %d", argc);
1030 case -2:
return &ractor_safe_call_cfunc_m2;
1031 case -1:
return &ractor_safe_call_cfunc_m1;
1032 case 0:
return &ractor_safe_call_cfunc_0;
1033 case 1:
return &ractor_safe_call_cfunc_1;
1034 case 2:
return &ractor_safe_call_cfunc_2;
1035 case 3:
return &ractor_safe_call_cfunc_3;
1036 case 4:
return &ractor_safe_call_cfunc_4;
1037 case 5:
return &ractor_safe_call_cfunc_5;
1038 case 6:
return &ractor_safe_call_cfunc_6;
1039 case 7:
return &ractor_safe_call_cfunc_7;
1040 case 8:
return &ractor_safe_call_cfunc_8;
1041 case 9:
return &ractor_safe_call_cfunc_9;
1042 case 10:
return &ractor_safe_call_cfunc_10;
1043 case 11:
return &ractor_safe_call_cfunc_11;
1044 case 12:
return &ractor_safe_call_cfunc_12;
1045 case 13:
return &ractor_safe_call_cfunc_13;
1046 case 14:
return &ractor_safe_call_cfunc_14;
1047 case 15:
return &ractor_safe_call_cfunc_15;
1049 rb_bug(
"unsupported length: %d", argc);
1059 cfunc->invoker = call_cfunc_invoker_func(argc);
1067 if (!complemented && reference_count_was > 0) {
1069 def->aliased =
true;
1071 if (METHOD_DEBUG) fprintf(stderr,
"+%p-%s:%d->%d\n", (
void *)def, rb_id2name(def->original_id), reference_count_was, reference_count_was+1);
1079 method_definition_addref(def,
false);
1085 method_definition_release(me->def);
1088 if (!ruby_running) add_opt_method_entry(me);
1091 switch (def->type) {
1092 case VM_METHOD_TYPE_ISEQ:
1102 if (rb_iseq_attr_p(iseq, BUILTIN_ATTR_C_TRACE)) {
1106 if (ISEQ_BODY(iseq)->mandatory_only_iseq) def->iseq_overload = 1;
1108 if (0) vm_cref_dump(
"rb_method_definition_create", cref);
1114 method_cref = vm_cref_new_toplevel(GET_EC());
1120 case VM_METHOD_TYPE_CFUNC:
1123 setup_method_cfunc_struct(UNALIGNED_MEMBER_PTR(def, body.cfunc), cfunc->func, cfunc->argc);
1126 case VM_METHOD_TYPE_ATTRSET:
1127 case VM_METHOD_TYPE_IVAR:
1133 def->body.attr.id = (
ID)(
VALUE)opts;
1135 cfp = rb_vm_get_ruby_level_next_cfp(ec, ec->cfp);
1137 if (cfp && (line = rb_vm_get_sourceline(cfp))) {
1144 VM_ASSERT(def->body.attr.location == 0);
1148 case VM_METHOD_TYPE_BMETHOD:
1150 def->body.bmethod.defined_ractor_id = rb_ec_ractor_id(GET_EC());
1152 case VM_METHOD_TYPE_NOTIMPLEMENTED:
1153 setup_method_cfunc_struct(UNALIGNED_MEMBER_PTR(def, body.cfunc), (
VALUE(*)(
ANYARGS))rb_f_notimplement_internal, -1);
1155 case VM_METHOD_TYPE_OPTIMIZED:
1158 case VM_METHOD_TYPE_REFINED:
1162 RB_OBJ_WRITE(me, &def->original_module, orig_me->def->original_module);
1165 case VM_METHOD_TYPE_ALIAS:
1168 RB_OBJ_WRITE(me, &def->body.alias.original_me, orig_me);
1169 RB_OBJ_WRITE(me, &def->original_module, orig_me->def->original_module);
1172 case VM_METHOD_TYPE_ZSUPER:
1173 case VM_METHOD_TYPE_UNDEF:
1174 case VM_METHOD_TYPE_MISSING:
1187 switch (def->type) {
1188 case VM_METHOD_TYPE_ISEQ:
1192 case VM_METHOD_TYPE_ATTRSET:
1193 case VM_METHOD_TYPE_IVAR:
1196 case VM_METHOD_TYPE_BMETHOD:
1199 case VM_METHOD_TYPE_REFINED:
1202 case VM_METHOD_TYPE_ALIAS:
1205 case VM_METHOD_TYPE_CFUNC:
1206 case VM_METHOD_TYPE_ZSUPER:
1207 case VM_METHOD_TYPE_MISSING:
1208 case VM_METHOD_TYPE_OPTIMIZED:
1209 case VM_METHOD_TYPE_UNDEF:
1210 case VM_METHOD_TYPE_NOTIMPLEMENTED:
1218rb_method_definition_create(rb_method_type_t
type,
ID mid)
1223 def->original_id = mid;
1225 def->box = rb_current_box();
1232 if (def) method_definition_addref(def, complement);
1233 if (
RTEST(defined_class)) {
1240 rb_gc_register_pinning_obj((
VALUE)me);
1243 me->called_id = called_id;
1250filter_defined_class(
VALUE klass)
1262 rb_bug(
"filter_defined_class: %s", rb_obj_info(klass));
1268 rb_method_entry_t *me = rb_method_entry_alloc(called_id, klass, filter_defined_class(klass), def,
false);
1269 METHOD_ENTRY_FLAGS_SET(me, visi, ruby_running ? FALSE : TRUE);
1270 if (def != NULL) method_definition_reset(me);
1278 rb_method_entry_t *me = rb_method_entry_alloc(src_me->called_id, src_me->owner, src_me->defined_class, src_me->def, METHOD_ENTRY_COMPLEMENTED(src_me));
1280 METHOD_ENTRY_FLAGS_COPY(me, src_me);
1284 src_me->def->type == VM_METHOD_TYPE_REFINED &&
1285 src_me->def->body.refined.orig_me) {
1287 VM_ASSERT(orig_me->def->type != VM_METHOD_TYPE_REFINED);
1290 orig_me->owner, orig_me->defined_class, orig_me->def, METHOD_ENTRY_COMPLEMENTED(orig_me));
1291 METHOD_ENTRY_FLAGS_COPY(orig_clone, orig_me);
1296 rb_method_definition_create(VM_METHOD_TYPE_REFINED, src_me->called_id);
1297 rb_method_definition_set(me, clone_def, orig_clone);
1309 if (!src_me->defined_class &&
1310 def->type == VM_METHOD_TYPE_REFINED &&
1311 def->body.refined.orig_me) {
1313 rb_method_entry_clone(def->body.refined.orig_me);
1315 refined_orig_me = orig_me;
1319 me = rb_method_entry_alloc(called_id, src_me->owner, defined_class, def,
true);
1320 METHOD_ENTRY_FLAGS_COPY(me, src_me);
1321 METHOD_ENTRY_COMPLEMENTED_SET(me);
1323 def = rb_method_definition_create(VM_METHOD_TYPE_REFINED, called_id);
1324 rb_method_definition_set(me, def, (
void *)refined_orig_me);
1327 VM_ASSERT_TYPE(me->owner,
T_MODULE);
1335 method_definition_release(dst->def);
1336 *(
rb_method_definition_t **)&dst->def = method_definition_addref(src->def, METHOD_ENTRY_COMPLEMENTED(src));
1337 method_definition_reset(dst);
1338 dst->called_id = src->called_id;
1341 METHOD_ENTRY_FLAGS_COPY(dst, src);
1347 if (me->def->type == VM_METHOD_TYPE_REFINED) {
1353 rb_vm_check_redefinition_opt_method(me, me->owner);
1356 rb_method_entry_alloc(me->called_id,
1361 METHOD_ENTRY_FLAGS_COPY(orig_me, me);
1363 def = rb_method_definition_create(VM_METHOD_TYPE_REFINED, me->called_id);
1364 rb_method_definition_set(me, def, orig_me);
1365 METHOD_ENTRY_VISI_SET(me, METHOD_VISI_PUBLIC);
1370lookup_method_table(
VALUE klass,
ID id)
1375 if (rb_id_table_lookup(m_tbl,
id, &body)) {
1384rb_add_refined_method_entry(
VALUE refined_class,
ID mid)
1389 make_method_entry_refined(refined_class, me);
1390 rb_clear_method_cache(refined_class, mid);
1393 rb_add_method(refined_class, mid, VM_METHOD_TYPE_REFINED, 0, METHOD_VISI_PUBLIC);
1398check_override_opt_method_i(
VALUE klass,
VALUE arg)
1403 VALUE includer = RCLASS_INCLUDER(klass);
1404 if (!UNDEF_P(includer) && includer) {
1405 check_override_opt_method_i(includer, arg);
1413 if (vm_redefinition_check_flag(klass)) {
1414 me = lookup_method_table(RCLASS_ORIGIN(klass), mid);
1416 newme = rb_method_entry(klass, mid);
1417 if (newme != me) rb_vm_check_redefinition_opt_method(me, me->owner);
1420 rb_class_foreach_subclass(klass, check_override_opt_method_i, (
VALUE)mid);
1424check_override_opt_method(
VALUE klass,
VALUE mid)
1426 if (rb_vm_check_optimizable_mid(mid)) {
1427 check_override_opt_method_i(klass, mid);
1432rb_zsuper_to_super(
int argc,
VALUE *argv,
VALUE self)
1439method_entry_modify_check(
VALUE klass, rb_method_type_t
type)
1441 ASSERT_vm_unlocking();
1442 if (
type != VM_METHOD_TYPE_REFINED) {
1459 if (warnings->redefined)
rb_warning(
"%"PRIsVALUE, warnings->redefined);
1460 if (warnings->problem)
rb_warn(
"%"PRIsVALUE, warnings->problem);
1470rb_method_entry_make(
VALUE klass,
ID mid,
VALUE defined_class, rb_method_visibility_t visi,
1477 int make_refined = 0;
1479 bool turn_zsuper_to_super =
false;
1486 if (!RCLASS_SINGLETON_P(klass) &&
1487 type != VM_METHOD_TYPE_NOTIMPLEMENTED &&
1488 type != VM_METHOD_TYPE_ZSUPER) {
1491 case idInitialize_copy:
1492 case idInitialize_clone:
1493 case idInitialize_dup:
1494 case idRespond_to_missing:
1495 visi = METHOD_VISI_PRIVATE;
1500 VALUE refined_class = rb_refinement_module_get_refined_class(klass);
1501 if (
type == VM_METHOD_TYPE_ZSUPER) {
1502 turn_zsuper_to_super =
true;
1504 rb_add_refined_method_entry(refined_class, mid);
1506 if (
type == VM_METHOD_TYPE_REFINED) {
1508 if (old_me) rb_vm_check_redefinition_opt_method(old_me, klass);
1511 klass = RCLASS_ORIGIN(klass);
1512 if (klass != orig_klass) {
1513 rb_clear_method_cache(orig_klass, mid);
1516 mtbl = RCLASS_WRITABLE_M_TBL(klass);
1519 if (rb_id_table_lookup(mtbl, mid, &data)) {
1523 if (rb_method_definition_eq(old_def, def))
return old_me;
1524 rb_vm_check_redefinition_opt_method(old_me, klass);
1526 if (old_def->type == VM_METHOD_TYPE_REFINED) make_refined = 1;
1529 type != VM_METHOD_TYPE_UNDEF &&
1530 (old_def->aliased ==
false) &&
1531 (!old_def->no_redef_warning) &&
1533 old_def->type != VM_METHOD_TYPE_UNDEF &&
1534 old_def->type != VM_METHOD_TYPE_ZSUPER &&
1535 old_def->type != VM_METHOD_TYPE_ALIAS) {
1538 switch (old_def->type) {
1539 case VM_METHOD_TYPE_ISEQ:
1540 iseq = def_iseq_ptr(old_def);
1542 case VM_METHOD_TYPE_BMETHOD:
1543 iseq = rb_proc_get_iseq(old_def->body.bmethod.proc, 0);
1549 warnings->redefined = rb_sprintf(
1550 "method redefined; discarding old %"PRIsVALUE
"\n%"PRIsVALUE
":%d: warning: previous definition of %"PRIsVALUE
" was here",
1553 ISEQ_BODY(iseq)->location.first_lineno,
1554 rb_id2str(old_def->original_id)
1558 warnings->redefined = rb_sprintf(
"method redefined; discarding old %"PRIsVALUE, rb_id2str(mid));
1564 me = rb_method_entry_create(mid, defined_class, visi, NULL);
1566 def = rb_method_definition_create(
type, original_id);
1567 if (turn_zsuper_to_super) {
1568 def->type = VM_METHOD_TYPE_CFUNC;
1569 def->body.cfunc.func = (rb_cfunc_t)rb_zsuper_to_super;
1570 def->body.cfunc.invoker = ractor_safe_call_cfunc_m1;
1571 def->body.cfunc.argc = -1;
1575 rb_method_definition_set(me, def, opts);
1577 rb_clear_method_cache(klass, mid);
1583 case idRespond_to_missing:
1584 case idMethodMissing:
1586 warnings->problem = rb_sprintf(
"redefining Object#%s may cause infinite loop", rb_id2name(mid));
1590 if (mid == object_id || mid == id__id__ || mid == id__send__) {
1591 if (
type != VM_METHOD_TYPE_CFUNC && search_method(klass, mid, 0)) {
1592 warnings->problem = rb_sprintf(
"redefining '%s' may cause serious problems", rb_id2name(mid));
1597 make_method_entry_refined(klass, me);
1600 rb_method_table_insert(klass, mtbl, mid, me);
1602 VM_ASSERT(me->def != NULL);
1606 check_override_opt_method(klass, (
VALUE)mid);
1613overloaded_cme_table(
void)
1615 return &GET_VM()->overloaded_cme_table;
1618#if VM_CHECK_MODE > 0
1620vm_dump_overloaded_cme_table(st_data_t key, st_data_t val, st_data_t dmy)
1622 fprintf(stderr,
"key: "); rp(key);
1623 fprintf(stderr,
"val: "); rp(val);
1628rb_vm_dump_overloaded_cme_table(
void)
1630 fprintf(stderr,
"== rb_vm_dump_overloaded_cme_table\n");
1631 st_foreach(overloaded_cme_table(), vm_dump_overloaded_cme_table, 0);
1636lookup_overloaded_cme_i(st_data_t *key, st_data_t *value, st_data_t data,
int existing)
1643 if (rb_objspace_garbage_object_p((
VALUE)cme) ||
1644 rb_objspace_garbage_object_p((
VALUE)monly_cme)) {
1659 ASSERT_vm_locking();
1662 st_update(overloaded_cme_table(), (st_data_t)cme, lookup_overloaded_cme_i, (st_data_t)&monly_cme);
1666#if VM_CHECK_MODE > 0
1670 return lookup_overloaded_cme(cme);
1677 st_data_t cme_data = (st_data_t)cme;
1678 ASSERT_vm_locking();
1679 st_delete(overloaded_cme_table(), &cme_data, NULL);
1687 if (monly_cme && !METHOD_ENTRY_INVALIDATED(monly_cme)) {
1701 RB_OBJ_WRITE(me, &def->original_module, cme->def->original_module);
1703 ASSERT_vm_locking();
1704 st_insert(overloaded_cme_table(), (st_data_t)cme, (st_data_t)me);
1706 METHOD_ENTRY_VISI_SET(me, METHOD_ENTRY_VISI(cme));
1714 if (UNLIKELY(cme->def->iseq_overload) &&
1715 (vm_ci_flag(ci) & (VM_CALL_ARGS_SIMPLE)) &&
1716 (!(vm_ci_flag(ci) & VM_CALL_FORWARDING)) &&
1717 (
int)vm_ci_argc(ci) == ISEQ_BODY(method_entry_iseqptr(cme))->param.lead_num) {
1718 VM_ASSERT(cme->def->type == VM_METHOD_TYPE_ISEQ,
"type: %d", cme->def->type);
1720 cme = get_overloaded_cme(cme);
1722 VM_ASSERT(cme != NULL);
1731#define CALL_METHOD_HOOK(klass, hook, mid) do { \
1732 const VALUE arg = ID2SYM(mid); \
1733 VALUE recv_class = (klass); \
1734 ID hook_id = (hook); \
1735 if (RCLASS_SINGLETON_P((klass))) { \
1736 recv_class = RCLASS_ATTACHED_OBJECT((klass)); \
1737 hook_id = singleton_##hook; \
1739 rb_funcallv_uncached(recv_class, hook_id, 1, &arg); \
1749 if (me) rb_vm_coverage_record_me(me);
1750 CALL_METHOD_HOOK(klass, added, mid);
1755rb_add_method(
VALUE klass,
ID mid, rb_method_type_t
type,
void *opts, rb_method_visibility_t visi)
1760 method_entry_modify_check(klass,
type);
1763 me = rb_method_entry_make(klass, mid, klass, visi,
type, NULL, mid, opts, &warnings);
1766 method_entry_warnings_emit(&warnings);
1768 if (
type != VM_METHOD_TYPE_UNDEF &&
type != VM_METHOD_TYPE_REFINED) {
1769 method_added(klass, mid, me);
1782 iseq_body.
cref = cref;
1784 rb_add_method(klass, mid, VM_METHOD_TYPE_ISEQ, &iseq_body, visi);
1789 rb_method_visibility_t visi,
VALUE defined_class)
1794 method_entry_modify_check(klass, me->def->type);
1797 newme = rb_method_entry_make(klass, mid, defined_class, visi,
1798 me->def->type, me->def, 0, NULL, &warnings);
1800 me->def->no_redef_warning = TRUE;
1801 METHOD_ENTRY_FLAGS_SET(newme, visi, FALSE);
1805 method_entry_warnings_emit(&warnings);
1807 method_added(klass, mid, newme);
1814 return method_entry_set(klass, mid, me, visi, klass);
1817#define UNDEF_ALLOC_FUNC ((rb_alloc_func_t)-1)
1820propagate_alloc_func(
VALUE subclass,
VALUE arg)
1823 !RCLASS_SINGLETON_P(subclass) &&
1824 !
FL_TEST_RAW(subclass, RCLASS_ALLOCATOR_DEFINED)) {
1826 rb_class_foreach_subclass(subclass, propagate_alloc_func, arg);
1834 if (RCLASS_SINGLETON_P(klass)) {
1835 rb_raise(
rb_eTypeError,
"can't define an allocator for a singleton class");
1837 RCLASS_SET_ALLOCATOR(klass, func);
1839 rb_class_foreach_subclass(klass, propagate_alloc_func, (
VALUE)func);
1846 RCLASS_SET_ALLOCATOR(klass, UNDEF_ALLOC_FUNC);
1848 rb_class_foreach_subclass(klass, propagate_alloc_func, (
VALUE)UNDEF_ALLOC_FUNC);
1854 RBIMPL_ASSERT_TYPE(klass,
T_CLASS);
1857 if (allocator == UNDEF_ALLOC_FUNC)
return 0;
1863rb_method_entry_at(
VALUE klass,
ID id)
1865 return lookup_method_table(klass,
id);
1869search_method0(
VALUE klass,
ID id,
VALUE *defined_class_ptr,
bool skip_refined)
1873 RB_DEBUG_COUNTER_INC(mc_search);
1876 RB_DEBUG_COUNTER_INC(mc_search_super);
1877 if ((me = lookup_method_table(klass,
id)) != 0) {
1878 if (!skip_refined || me->def->type != VM_METHOD_TYPE_REFINED ||
1879 me->def->body.refined.orig_me) {
1885 if (defined_class_ptr) *defined_class_ptr = klass;
1887 if (me == NULL) RB_DEBUG_COUNTER_INC(mc_search_notfound);
1889 VM_ASSERT(me == NULL || !METHOD_ENTRY_INVALIDATED(me),
1890 "invalid me, mid:%s, klass:%"PRIsVALUE
"(%s)",
1893 rb_obj_info(klass));
1898search_method(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
1900 return search_method0(klass,
id, defined_class_ptr,
false);
1904search_method_protect(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
1908 if (!UNDEFINED_METHOD_ENTRY_P(me)) {
1917rb_method_entry(
VALUE klass,
ID id)
1919 return search_method_protect(klass,
id, NULL);
1931 if (me->defined_class == 0) {
1932 RB_DEBUG_COUNTER_INC(mc_cme_complement);
1935 mtbl = RCLASS_WRITABLE_CALLABLE_M_TBL(defined_class);
1936 if (mtbl && rb_id_table_lookup(mtbl,
id, &cme_data)) {
1941 RB_DEBUG_COUNTER_INC(mc_cme_complement_hit);
1942 VM_ASSERT(callable_method_entry_p(cme));
1943 VM_ASSERT(!METHOD_ENTRY_INVALIDATED(cme));
1947 mtbl = rb_id_table_create(0);
1948 RCLASS_WRITE_CALLABLE_M_TBL(defined_class, mtbl);
1950 cme = rb_method_entry_complement_defined_class(me, me->called_id, defined_class);
1951 rb_id_table_insert(mtbl,
id, (
VALUE)cme);
1953 VM_ASSERT(callable_method_entry_p(cme));
1961 VM_ASSERT(callable_method_entry_p(cme));
1962 VM_ASSERT(!METHOD_ENTRY_INVALIDATED(cme));
1975rb_funcallv_uncached(
VALUE recv,
ID mid,
int argc,
const VALUE *argv)
1977 VALUE defined_class;
1980 if (UNLIKELY(UNDEFINED_METHOD_ENTRY_P(me))) {
1986 if (UNLIKELY(me->defined_class == 0)) {
1988 cme = rb_method_entry_complement_defined_class(me, me->called_id, defined_class);
1996 return rb_vm_call_kw(ec, recv, mid, argc, argv, cme,
RB_NO_KEYWORDS);
2000complemented_callable_method_entry(
VALUE klass,
ID id)
2002 VALUE defined_class;
2004 return prepare_callable_method_entry(defined_class,
id, me, FALSE);
2008cached_callable_method_entry(
VALUE klass,
ID mid)
2010 ASSERT_vm_locking();
2012 VALUE cc_tbl = RCLASS_WRITABLE_CC_TBL(klass);
2015 if (cc_tbl && rb_managed_id_table_lookup(cc_tbl, mid, &ccs_data)) {
2017 VM_ASSERT(vm_ccs_p(ccs));
2019 if (LIKELY(!METHOD_ENTRY_INVALIDATED(ccs->cme))) {
2020 VM_ASSERT(ccs->cme->called_id == mid);
2021 RB_DEBUG_COUNTER_INC(ccs_found);
2027 rb_managed_id_table_delete(cc_tbl, mid);
2028 rb_vm_ccs_invalidate_and_free(ccs);
2032 RB_DEBUG_COUNTER_INC(ccs_not_found);
2039 ASSERT_vm_locking();
2040 VM_ASSERT(cme != NULL);
2042 VALUE cc_tbl = RCLASS_WRITABLE_CC_TBL(klass);
2046 cc_tbl = rb_vm_cc_table_create(2);
2047 RCLASS_WRITE_CC_TBL(klass, cc_tbl);
2050 if (rb_managed_id_table_lookup(cc_tbl, mid, &ccs_data)) {
2051#if VM_CHECK_MODE > 0
2053 VM_ASSERT(ccs->cme == cme);
2057 if (rb_multi_ractor_p()) {
2058 VALUE new_cc_tbl = rb_vm_cc_table_dup(cc_tbl);
2059 vm_ccs_create(klass, new_cc_tbl, mid, cme);
2060 RB_OBJ_ATOMIC_WRITE(klass, &RCLASSEXT_CC_TBL(RCLASS_EXT_WRITABLE(klass)), new_cc_tbl);
2063 vm_ccs_create(klass, cc_tbl, mid, cme);
2075 if (rb_id_table_lookup(&vm->negative_cme_table, mid, &cme_data)) {
2080 rb_id_table_insert(&vm->negative_cme_table, mid, (
VALUE)cme);
2083 VM_ASSERT(cme != NULL);
2088callable_method_entry_or_negative(
VALUE klass,
ID mid,
VALUE *defined_class_ptr)
2100 rb_bug(
"attempted to search method '%s' on a garbage collected object",
2107 VALUE cc_tbl = RUBY_ATOMIC_VALUE_LOAD(RCLASS_WRITABLE_CC_TBL(klass));
2110 if (rb_managed_id_table_lookup(cc_tbl, mid, &ccs_data)) {
2112 VM_ASSERT(vm_ccs_p(ccs));
2114 if (LIKELY(!METHOD_ENTRY_INVALIDATED(ccs->cme))) {
2115 VM_ASSERT(ccs->cme->called_id == mid);
2116 if (defined_class_ptr != NULL) *defined_class_ptr = ccs->cme->defined_class;
2117 RB_DEBUG_COUNTER_INC(ccs_found);
2125 cme = cached_callable_method_entry(klass, mid);
2128 if (defined_class_ptr != NULL) *defined_class_ptr = cme->defined_class;
2131 VALUE defined_class;
2133 if (defined_class_ptr) *defined_class_ptr = defined_class;
2136 cme = prepare_callable_method_entry(defined_class, mid, me, TRUE);
2139 cme = negative_cme(mid);
2142 cache_callable_method_entry(klass, mid, cme);
2152rb_callable_method_entry_or_negative(
VALUE klass,
ID mid)
2154 return callable_method_entry_or_negative(klass, mid, NULL);
2158callable_method_entry(
VALUE klass,
ID mid,
VALUE *defined_class_ptr)
2161 cme = callable_method_entry_or_negative(klass, mid, defined_class_ptr);
2162 return !UNDEFINED_METHOD_ENTRY_P(cme) ? cme : NULL;
2166rb_callable_method_entry(
VALUE klass,
ID mid)
2168 return callable_method_entry(klass, mid, NULL);
2174method_entry_resolve_refinement(
VALUE klass,
ID id,
int with_refinement,
VALUE *defined_class_ptr)
2176 const rb_method_entry_t *me = search_method_protect(klass,
id, defined_class_ptr);
2179 if (me->def->type == VM_METHOD_TYPE_REFINED) {
2180 if (with_refinement) {
2182 VALUE refinements = cref ? CREF_REFINEMENTS(cref) :
Qnil;
2183 me = resolve_refined_method(refinements, me, defined_class_ptr);
2186 me = resolve_refined_method(
Qnil, me, defined_class_ptr);
2189 if (UNDEFINED_METHOD_ENTRY_P(me)) me = NULL;
2197rb_method_entry_with_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
2199 return method_entry_resolve_refinement(klass,
id, TRUE, defined_class_ptr);
2203callable_method_entry_refinements0(
VALUE klass,
ID id,
VALUE *defined_class_ptr,
bool with_refinements,
2206 if (cme == NULL || LIKELY(cme->def->type != VM_METHOD_TYPE_REFINED)) {
2210 VALUE defined_class, *dcp = defined_class_ptr ? defined_class_ptr : &defined_class;
2211 const rb_method_entry_t *me = method_entry_resolve_refinement(klass,
id, with_refinements, dcp);
2212 return prepare_callable_method_entry(*dcp,
id, me, TRUE);
2217callable_method_entry_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr,
bool with_refinements)
2220 return callable_method_entry_refinements0(klass,
id, defined_class_ptr, with_refinements, cme);
2224rb_callable_method_entry_with_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
2226 return callable_method_entry_refinements(klass,
id, defined_class_ptr,
true);
2230callable_method_entry_without_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
2232 return callable_method_entry_refinements(klass,
id, defined_class_ptr,
false);
2236rb_method_entry_without_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
2238 return method_entry_resolve_refinement(klass,
id, FALSE, defined_class_ptr);
2242rb_callable_method_entry_without_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
2244 VALUE defined_class, *dcp = defined_class_ptr ? defined_class_ptr : &defined_class;
2245 const rb_method_entry_t *me = method_entry_resolve_refinement(klass,
id, FALSE, dcp);
2246 return prepare_callable_method_entry(*dcp,
id, me, TRUE);
2252 while (me && me->def->type == VM_METHOD_TYPE_REFINED) {
2257 refinement = find_refinement(refinements, me->owner);
2258 if (!
NIL_P(refinement)) {
2259 tmp_me = search_method_protect(refinement, me->called_id, defined_class_ptr);
2261 if (tmp_me && tmp_me->def->type != VM_METHOD_TYPE_REFINED) {
2266 tmp_me = me->def->body.refined.orig_me;
2268 if (!tmp_me->defined_class) {
2269 VM_ASSERT_TYPE(tmp_me->owner,
T_MODULE);
2271 else if (defined_class_ptr) {
2272 *defined_class_ptr = tmp_me->defined_class;
2282 me = search_method_protect(super, me->called_id, defined_class_ptr);
2290 return resolve_refined_method(refinements, me, NULL);
2296 VALUE defined_class = me->defined_class;
2299 if (resolved_me && resolved_me->defined_class == 0) {
2300 return rb_method_entry_complement_defined_class(resolved_me, me->called_id, defined_class);
2308remove_method(
VALUE klass,
ID mid)
2315 klass = RCLASS_ORIGIN(klass);
2316 if (mid == object_id || mid == id__id__ || mid == id__send__ || mid == idInitialize) {
2317 rb_warn(
"removing '%s' may cause serious problems", rb_id2name(mid));
2320 if (!rb_id_table_lookup(RCLASS_M_TBL(klass), mid, &data) ||
2322 (!me->def || me->def->type == VM_METHOD_TYPE_UNDEF) ||
2323 UNDEFINED_REFINED_METHOD_P(me->def)) {
2324 rb_name_err_raise(
"method '%1$s' not defined in %2$s",
2328 if (klass != self) {
2329 rb_clear_method_cache(self, mid);
2331 rb_clear_method_cache(klass, mid);
2332 rb_id_table_delete(RCLASS_WRITABLE_M_TBL(klass), mid);
2334 rb_vm_check_redefinition_opt_method(me, klass);
2336 if (me->def->type == VM_METHOD_TYPE_REFINED) {
2337 rb_add_refined_method_entry(klass, mid);
2340 CALL_METHOD_HOOK(self, removed, mid);
2346 remove_method(klass, mid);
2352 remove_method(klass, rb_intern(name));
2366rb_mod_remove_method(
int argc,
VALUE *argv,
VALUE mod)
2370 for (i = 0; i < argc; i++) {
2374 rb_name_err_raise(
"method '%1$s' not defined in %2$s",
2377 remove_method(mod,
id);
2383rb_export_method(
VALUE klass,
ID name, rb_method_visibility_t visi)
2386 VALUE defined_class;
2387 VALUE origin_class = RCLASS_ORIGIN(klass);
2389 me = search_method0(origin_class, name, &defined_class,
true);
2392 me = search_method(
rb_cObject, name, &defined_class);
2395 if (UNDEFINED_METHOD_ENTRY_P(me) ||
2396 UNDEFINED_REFINED_METHOD_P(me->def)) {
2397 rb_print_undef(klass, name, METHOD_VISI_UNDEF);
2400 if (METHOD_ENTRY_VISI(me) != visi) {
2401 rb_vm_check_redefinition_opt_method(me, klass);
2403 if (klass == defined_class || origin_class == defined_class) {
2404 if (me->def->type == VM_METHOD_TYPE_REFINED) {
2407 if (me->def->body.refined.orig_me) {
2408 METHOD_ENTRY_VISI_SET((
rb_method_entry_t *)me->def->body.refined.orig_me, visi);
2412 METHOD_ENTRY_VISI_SET(me, visi);
2414 rb_clear_method_cache(klass, name);
2417 rb_add_method(klass, name, VM_METHOD_TYPE_ZSUPER, 0, visi);
2422#define BOUND_PRIVATE 0x01
2423#define BOUND_RESPONDS 0x02
2426method_boundp(
VALUE klass,
ID id,
int ex)
2432 if (ex & BOUND_RESPONDS) {
2433 cme = rb_callable_method_entry_with_refinements(klass,
id, NULL);
2436 cme = callable_method_entry_without_refinements(klass,
id, NULL);
2440 if (ex & ~BOUND_RESPONDS) {
2441 switch (METHOD_ENTRY_VISI(cme)) {
2442 case METHOD_VISI_PRIVATE:
2444 case METHOD_VISI_PROTECTED:
2445 if (ex & BOUND_RESPONDS)
return 0;
2451 if (cme->def->type == VM_METHOD_TYPE_NOTIMPLEMENTED) {
2452 if (ex & BOUND_RESPONDS)
return 2;
2464 return method_boundp(klass,
id, ex);
2468vm_cref_set_visibility(rb_method_visibility_t method_visi,
int module_func)
2471 scope_visi->method_visi = method_visi;
2472 scope_visi->module_func = module_func;
2476rb_scope_visibility_set(rb_method_visibility_t visi)
2478 vm_cref_set_visibility(visi, FALSE);
2482scope_visibility_check(
void)
2486 if (cfp && CFP_ISEQ(cfp) && ISEQ_BODY(CFP_ISEQ(cfp))->
type == ISEQ_TYPE_METHOD) {
2487 rb_warn(
"calling %s without arguments inside a method may not have the intended effect",
2488 rb_id2name(rb_frame_this_func()));
2493rb_scope_module_func_set(
void)
2495 scope_visibility_check();
2496 vm_cref_set_visibility(METHOD_VISI_PRIVATE, TRUE);
2504 rb_method_visibility_t visi;
2506 const rb_cref_t *cref = rb_vm_cref_in_context(klass, klass);
2509 visi = METHOD_VISI_PUBLIC;
2512 switch (vm_scope_visibility_get(ec)) {
2513 case METHOD_VISI_PRIVATE:
2514 if (vm_scope_module_func_check(ec)) {
2515 rb_warning(
"attribute accessor as module_function");
2517 visi = METHOD_VISI_PRIVATE;
2519 case METHOD_VISI_PROTECTED:
2520 visi = METHOD_VISI_PROTECTED;
2523 visi = METHOD_VISI_PUBLIC;
2528 attriv = rb_intern_str(rb_sprintf(
"@%"PRIsVALUE, rb_id2str(
id)));
2530 rb_add_method(klass,
id, VM_METHOD_TYPE_IVAR, (
void *)attriv, visi);
2533 rb_add_method(klass, rb_id_attrset(
id), VM_METHOD_TYPE_ATTRSET, (
void *)attriv, visi);
2546 if (
id == object_id ||
id == id__id__ ||
id == id__send__ ||
id == idInitialize) {
2547 rb_warn(
"undefining '%s' may cause serious problems", rb_id2name(
id));
2550 me = search_method(klass,
id, 0);
2551 if (me && me->def->type == VM_METHOD_TYPE_REFINED) {
2552 me = rb_resolve_refined_method(
Qnil, me);
2555 if (UNDEFINED_METHOD_ENTRY_P(me) ||
2556 UNDEFINED_REFINED_METHOD_P(me->def)) {
2557 rb_method_name_error(klass, rb_id2str(
id));
2560 rb_add_method(klass,
id, VM_METHOD_TYPE_UNDEF, 0, METHOD_VISI_PUBLIC);
2562 CALL_METHOD_HOOK(klass, undefined,
id);
2611rb_mod_undef_method(
int argc,
VALUE *argv,
VALUE mod)
2614 for (i = 0; i < argc; i++) {
2618 rb_method_name_error(mod, v);
2625static rb_method_visibility_t
2626check_definition_visibility(
VALUE mod,
VALUE mid,
bool inc_super)
2629 if (!
id)
return METHOD_VISI_UNDEF;
2631 VALUE lookup_mod = inc_super ? mod : RCLASS_ORIGIN(mod);
2633 const rb_method_entry_t *me = rb_method_entry_without_refinements(lookup_mod,
id, NULL);
2635 if (me->def->type == VM_METHOD_TYPE_NOTIMPLEMENTED)
return METHOD_VISI_UNDEF;
2636 if (!inc_super && me->owner != mod)
return METHOD_VISI_UNDEF;
2637 return METHOD_ENTRY_VISI(me);
2639 return METHOD_VISI_UNDEF;
2683rb_mod_method_defined(
int argc,
VALUE *argv,
VALUE mod)
2685 VALUE mid, include_super, include_private;
2687 rb_scan_args(argc, argv,
"12", &mid, &include_super, &include_private);
2689 include_private =
Qfalse;
2691 include_super =
Qtrue;
2695 rb_method_visibility_t visi = check_definition_visibility(mod, mid,
RTEST(include_super));
2697 case METHOD_VISI_UNDEF:
2699 case METHOD_VISI_PUBLIC:
2700 case METHOD_VISI_PROTECTED:
2702 case METHOD_VISI_PRIVATE:
2703 return RBOOL(
RTEST(include_private));
2710check_definition(
VALUE mod,
int argc,
VALUE *argv, rb_method_visibility_t visi)
2712 VALUE mid, include_super;
2715 include_super =
Qtrue;
2717 return RBOOL(check_definition_visibility(mod, mid,
RTEST(include_super)) == visi);
2751rb_mod_public_method_defined(
int argc,
VALUE *argv,
VALUE mod)
2753 return check_definition(mod, argc, argv, METHOD_VISI_PUBLIC);
2787rb_mod_private_method_defined(
int argc,
VALUE *argv,
VALUE mod)
2789 return check_definition(mod, argc, argv, METHOD_VISI_PRIVATE);
2823rb_mod_protected_method_defined(
int argc,
VALUE *argv,
VALUE mod)
2825 return check_definition(mod, argc, argv, METHOD_VISI_PROTECTED);
2831 return rb_method_definition_eq(m1->def, m2->def);
2839 switch (def->type) {
2840 case VM_METHOD_TYPE_REFINED:
2841 if (def->body.refined.orig_me) {
2842 def = def->body.refined.orig_me->def;
2846 case VM_METHOD_TYPE_ALIAS:
2847 def = def->body.alias.original_me->def;
2859 d1 = original_method_definition(d1);
2860 d2 = original_method_definition(d2);
2862 if (d1 == d2)
return 1;
2863 if (!d1 || !d2)
return 0;
2864 if (d1->type != d2->type)
return 0;
2867 case VM_METHOD_TYPE_ISEQ:
2868 return d1->body.iseq.iseqptr == d2->body.iseq.
iseqptr;
2869 case VM_METHOD_TYPE_CFUNC:
2871 d1->body.cfunc.func == d2->body.cfunc.func &&
2872 d1->body.cfunc.argc == d2->body.cfunc.argc;
2873 case VM_METHOD_TYPE_ATTRSET:
2874 case VM_METHOD_TYPE_IVAR:
2875 return d1->body.attr.id == d2->body.attr.id;
2876 case VM_METHOD_TYPE_BMETHOD:
2877 return RTEST(
rb_equal(d1->body.bmethod.proc, d2->body.bmethod.proc));
2878 case VM_METHOD_TYPE_MISSING:
2879 return d1->original_id == d2->original_id;
2880 case VM_METHOD_TYPE_ZSUPER:
2881 case VM_METHOD_TYPE_NOTIMPLEMENTED:
2882 case VM_METHOD_TYPE_UNDEF:
2884 case VM_METHOD_TYPE_OPTIMIZED:
2885 return (d1->body.optimized.type == d2->body.optimized.type) &&
2886 (d1->body.optimized.index == d2->body.optimized.index);
2887 case VM_METHOD_TYPE_REFINED:
2888 case VM_METHOD_TYPE_ALIAS:
2891 rb_bug(
"rb_method_definition_eq: unsupported type: %d", d1->type);
2898 def = original_method_definition(def);
2900 if (!def)
return hash;
2902 switch (def->type) {
2903 case VM_METHOD_TYPE_ISEQ:
2905 case VM_METHOD_TYPE_CFUNC:
2906 hash =
rb_hash_uint(hash, (st_index_t)def->body.cfunc.func);
2908 case VM_METHOD_TYPE_ATTRSET:
2909 case VM_METHOD_TYPE_IVAR:
2911 case VM_METHOD_TYPE_BMETHOD:
2912 return rb_hash_proc(hash, def->body.bmethod.proc);
2913 case VM_METHOD_TYPE_MISSING:
2915 case VM_METHOD_TYPE_ZSUPER:
2916 case VM_METHOD_TYPE_NOTIMPLEMENTED:
2917 case VM_METHOD_TYPE_UNDEF:
2919 case VM_METHOD_TYPE_OPTIMIZED:
2922 case VM_METHOD_TYPE_REFINED:
2923 case VM_METHOD_TYPE_ALIAS:
2926 rb_bug(
"rb_hash_method_definition: unsupported method type (%d)", def->type);
2932 return rb_hash_method_definition(hash, me->def);
2938 const VALUE target_klass = klass;
2939 VALUE defined_class;
2941 rb_method_visibility_t visi = METHOD_VISI_UNDEF;
2950 orig_me = search_method(klass, original_name, &defined_class);
2952 if (orig_me && orig_me->def->type == VM_METHOD_TYPE_REFINED) {
2953 orig_me = rb_resolve_refined_method(
Qnil, orig_me);
2956 if (UNDEFINED_METHOD_ENTRY_P(orig_me) ||
2957 UNDEFINED_REFINED_METHOD_P(orig_me->def)) {
2959 (orig_me = search_method(
rb_cObject, original_name, &defined_class),
2960 UNDEFINED_METHOD_ENTRY_P(orig_me))) {
2961 rb_print_undef(target_klass, original_name, METHOD_VISI_UNDEF);
2963 rb_warn_scheduled_deprecation(4.2, 4.3,
2964 "the fallback to Object for alias of '%"PRIsVALUE
"' in module '%"PRIsVALUE
"'",
2965 NULL, QUOTE_ID(original_name),
rb_class_path(target_klass));
2968 switch (orig_me->def->type) {
2969 case VM_METHOD_TYPE_ZSUPER:
2971 original_name = orig_me->def->original_id;
2972 visi = METHOD_ENTRY_VISI(orig_me);
2974 case VM_METHOD_TYPE_ALIAS:
2975 visi = METHOD_ENTRY_VISI(orig_me);
2976 orig_me = orig_me->def->body.alias.original_me;
2977 VM_ASSERT(orig_me->def->type != VM_METHOD_TYPE_ALIAS);
2982 if (visi == METHOD_VISI_UNDEF) visi = METHOD_ENTRY_VISI(orig_me);
2985 VALUE owner_class = orig_me->defined_class ? orig_me->defined_class : defined_class;
2986 VALUE origin = RCLASS_ORIGIN(target_klass);
2987 bool in_prepended_module =
false;
2989 if (origin != target_klass) {
2991 if (p == owner_class) {
2992 in_prepended_module =
true;
2997 if (in_prepended_module) {
2998 rb_warn_scheduled_deprecation(4.2, 4.3,
2999 "aliasing %"PRIsVALUE
"#%"PRIsVALUE
" defined in a prepended module %"PRIsVALUE,
3006 if (orig_me->defined_class == 0) {
3010 rb_method_entry_make(target_klass, alias_name, target_klass, visi,
3011 VM_METHOD_TYPE_ALIAS, NULL, orig_me->called_id,
3012 (
void *)rb_method_entry_clone(orig_me), &warnings);
3014 method_entry_warnings_emit(&warnings);
3015 method_added(target_klass, alias_name, alias_me);
3020 alias_me = method_entry_set(target_klass, alias_name, orig_me, visi, orig_me->owner);
3021 RB_OBJ_WRITE(alias_me, &alias_me->owner, target_klass);
3027 RB_OBJ_WRITE(alias_me, &alias_me->defined_class, orig_me->defined_class);
3060 rb_print_undef_str(mod, oldname);
3068check_and_export_method(
VALUE self,
VALUE name, rb_method_visibility_t visi)
3072 rb_print_undef_str(self, name);
3074 rb_export_method(self,
id, visi);
3078set_method_visibility(
VALUE self,
int argc,
const VALUE *argv, rb_method_visibility_t visi)
3084 rb_check_frozen(self);
3085 rb_class_owner_check(self);
3087 rb_warning(
"%"PRIsVALUE
" with no argument is just ignored",
3088 QUOTE_ID(rb_frame_callee()));
3099 check_and_export_method(self,
RARRAY_AREF(v, j), visi);
3103 for (i = 0; i < argc; i++) {
3104 check_and_export_method(self, argv[i], visi);
3110set_visibility(
int argc,
const VALUE *argv,
VALUE module, rb_method_visibility_t visi)
3113 scope_visibility_check();
3114 rb_scope_visibility_set(visi);
3118 set_method_visibility(module, argc, argv, visi);
3143rb_mod_public(
int argc,
VALUE *argv,
VALUE module)
3145 return set_visibility(argc, argv, module, METHOD_VISI_PUBLIC);
3207rb_mod_protected(
int argc,
VALUE *argv,
VALUE module)
3209 return set_visibility(argc, argv, module, METHOD_VISI_PROTECTED);
3241rb_mod_private(
int argc,
VALUE *argv,
VALUE module)
3243 return set_visibility(argc, argv, module, METHOD_VISI_PRIVATE);
3274rb_mod_ruby2_keywords(
int argc,
VALUE *argv,
VALUE module)
3277 VALUE origin_class = RCLASS_ORIGIN(module);
3280 rb_check_frozen(module);
3281 rb_class_owner_check(module);
3283 for (i = 0; i < argc; i++) {
3287 VALUE defined_class;
3290 rb_print_undef_str(module, v);
3293 me = search_method(origin_class, name, &defined_class);
3295 me = search_method(
rb_cObject, name, &defined_class);
3298 if (UNDEFINED_METHOD_ENTRY_P(me) ||
3299 UNDEFINED_REFINED_METHOD_P(me->def)) {
3300 rb_print_undef(module, name, METHOD_VISI_UNDEF);
3303 if (module == defined_class || origin_class == defined_class) {
3304 switch (me->def->type) {
3305 case VM_METHOD_TYPE_ISEQ:
3306 if (ISEQ_BODY(me->def->body.iseq.
iseqptr)->param.flags.has_rest &&
3307 !ISEQ_BODY(me->def->body.iseq.
iseqptr)->param.flags.has_post &&
3308 !ISEQ_BODY(me->def->body.iseq.
iseqptr)->param.flags.has_kw &&
3309 !ISEQ_BODY(me->def->body.iseq.
iseqptr)->param.flags.has_kwrest) {
3310 ISEQ_BODY(me->def->body.iseq.
iseqptr)->param.flags.ruby2_keywords = 1;
3311 rb_clear_method_cache(module, name);
3314 rb_warn(
"Skipping set of ruby2_keywords flag for %"PRIsVALUE
" (method accepts keywords or post arguments or method does not accept argument splat)", QUOTE_ID(name));
3317 case VM_METHOD_TYPE_BMETHOD: {
3318 VALUE procval = me->def->body.bmethod.proc;
3319 if (vm_block_handler_type(procval) == block_handler_type_proc) {
3320 procval = vm_proc_to_block_handler(VM_BH_TO_PROC(procval));
3323 if (vm_block_handler_type(procval) == block_handler_type_iseq) {
3325 const rb_iseq_t *iseq = rb_iseq_check(captured->code.iseq);
3326 if (ISEQ_BODY(iseq)->param.flags.has_rest &&
3327 !ISEQ_BODY(iseq)->param.flags.has_post &&
3328 !ISEQ_BODY(iseq)->param.flags.has_kw &&
3329 !ISEQ_BODY(iseq)->param.flags.has_kwrest) {
3330 ISEQ_BODY(iseq)->param.flags.ruby2_keywords = 1;
3331 rb_clear_method_cache(module, name);
3334 rb_warn(
"Skipping set of ruby2_keywords flag for %"PRIsVALUE
" (method accepts keywords or post arguments or method does not accept argument splat)", QUOTE_ID(name));
3341 rb_warn(
"Skipping set of ruby2_keywords flag for %"PRIsVALUE
" (method not defined in Ruby)", QUOTE_ID(name));
3346 rb_warn(
"Skipping set of ruby2_keywords flag for %"PRIsVALUE
" (can only set in method defining module)", QUOTE_ID(name));
3365rb_mod_public_method(
int argc,
VALUE *argv,
VALUE obj)
3393rb_mod_private_method(
int argc,
VALUE *argv,
VALUE obj)
3417 return rb_mod_public(argc, argv, rb_top_main_class(
"public"));
3437 return rb_mod_private(argc, argv, rb_top_main_class(
"private"));
3454top_ruby2_keywords(
int argc,
VALUE *argv,
VALUE module)
3456 return rb_mod_ruby2_keywords(argc, argv, rb_top_main_class(
"ruby2_keywords"));
3512rb_mod_modfunc(
int argc,
VALUE *argv,
VALUE module)
3519 rb_raise(
rb_eTypeError,
"module_function must be called for modules");
3523 rb_scope_module_func_set();
3527 set_method_visibility(module, argc, argv, METHOD_VISI_PRIVATE);
3529 for (i = 0; i < argc; i++) {
3534 me = search_method(m,
id, 0);
3538 if (UNDEFINED_METHOD_ENTRY_P(me)) {
3539 rb_print_undef(module,
id, METHOD_VISI_UNDEF);
3541 if (me->def->type != VM_METHOD_TYPE_ZSUPER) {
3557#pragma push_macro("rb_method_basic_definition_p")
3558#undef rb_method_basic_definition_p
3564 if (!klass)
return TRUE;
3565 cme = rb_callable_method_entry(klass,
id);
3566 return (cme && METHOD_ENTRY_BASIC(cme)) ? TRUE : FALSE;
3569#pragma pop_macro("rb_method_basic_definition_p")
3576 VALUE passed_block_handler = vm_passed_block_handler(ec);
3577 VALUE result = rb_vm_call_kw(ec, obj,
id, argc, argv, cme, kw_splat);
3578 vm_passed_block_handler_set(ec, passed_block_handler);
3586 VALUE defined_class, args[2];
3587 const ID rtmid = idRespond_to_missing;
3590 if (!cme || METHOD_ENTRY_BASIC(cme))
return Qundef;
3593 return call_method_entry(ec, defined_class, obj, rtmid, cme, 2, args,
RB_NO_KEYWORDS);
3602 switch (method_boundp(klass,
id, pub|BOUND_RESPONDS)) {
3606 ret = basic_obj_respond_to_missing(ec, klass, obj,
ID2SYM(
id),
3608 return RTEST(ret) && !UNDEF_P(ret);
3617 VALUE defined_class;
3618 const ID resid = idRespond_to;
3621 if (!cme)
return -1;
3622 if (METHOD_ENTRY_BASIC(cme)) {
3635 rb_raise(rb_eArgError,
3636 "respond_to? must accept 1 or 2 arguments (requires %d)",
3645 "%"PRIsVALUE
"%c""respond_to?(:%"PRIsVALUE
") uses"
3646 " the deprecated method signature, which takes one parameter",
3647 (RCLASS_SINGLETON_P(klass) ? obj : klass),
3648 (RCLASS_SINGLETON_P(klass) ?
'.' :
'#'),
3650 if (!
NIL_P(location)) {
3655 RSTRING_PTR(path),
NUM2INT(line),
3656 "respond_to? is defined here");
3661 result = call_method_entry(ec, defined_class, obj, resid, cme, argc, args,
RB_NO_KEYWORDS);
3662 return RTEST(result);
3670 return rb_ec_obj_respond_to(ec, obj,
id, priv);
3677 int ret = vm_respond_to(ec, klass, obj,
id, priv);
3678 if (ret == -1) ret = basic_obj_respond_to(ec, obj,
id, !priv);
3710obj_respond_to(
int argc,
VALUE *argv,
VALUE obj)
3718 VALUE ret = basic_obj_respond_to_missing(ec,
CLASS_OF(obj), obj,
3720 if (UNDEF_P(ret)) ret =
Qfalse;
3723 return RBOOL(basic_obj_respond_to(ec, obj,
id, !
RTEST(priv)));
3748Init_eval_method(
void)
3770 "public", top_public, -1);
3772 "private", top_private, -1);
3774 "ruby2_keywords", top_ruby2_keywords, -1);
3777#define REPLICATE_METHOD(klass, id) do { \
3778 const rb_method_entry_t *me = rb_method_entry((klass), (id)); \
3779 rb_method_entry_set((klass), (id), me, METHOD_ENTRY_VISI(me)); \
#define RUBY_ASSERT_ALWAYS(expr,...)
A variant of RUBY_ASSERT that does not interface with RUBY_DEBUG.
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
std::atomic< unsigned > rb_atomic_t
Type that is eligible for atomic operations.
#define RUBY_ATOMIC_FETCH_ADD(var, val)
Atomically replaces the value pointed by var with the result of addition of val to the old value of v...
#define RUBY_ATOMIC_FETCH_SUB(var, val)
Atomically replaces the value pointed by var with the result of subtraction of val to the old value o...
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_private_method(klass, mid, func, arity)
Defines klass#mid and makes it private.
VALUE rb_singleton_class(VALUE obj)
Finds or creates the singleton class of the passed object.
void rb_class_modify_check(VALUE klass)
Asserts that klass is not a frozen class.
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 xfree
Old name of ruby_xfree.
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
#define ID2SYM
Old name of RB_ID2SYM.
#define SPECIAL_CONST_P
Old name of RB_SPECIAL_CONST_P.
#define UNREACHABLE_RETURN
Old name of RBIMPL_UNREACHABLE_RETURN.
#define ZALLOC
Old name of RB_ZALLOC.
#define CLASS_OF
Old name of rb_class_of.
#define T_NONE
Old name of RUBY_T_NONE.
#define T_MODULE
Old name of RUBY_T_MODULE.
#define T_ICLASS
Old name of RUBY_T_ICLASS.
#define FL_TEST_RAW
Old name of RB_FL_TEST_RAW.
#define rb_ary_new3
Old name of rb_ary_new_from_args.
#define Qtrue
Old name of RUBY_Qtrue.
#define NUM2INT
Old name of RB_NUM2INT.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define NIL_P
Old name of RB_NIL_P.
#define T_CLASS
Old name of RUBY_T_CLASS.
#define BUILTIN_TYPE
Old name of RB_BUILTIN_TYPE.
#define FL_TEST
Old name of RB_FL_TEST.
#define FL_SET_RAW
Old name of RB_FL_SET_RAW.
void rb_category_warn(rb_warning_category_t category, const char *fmt,...)
Identical to rb_category_warning(), except it reports unless $VERBOSE is nil.
#define ruby_verbose
This variable controls whether the interpreter is in debug mode.
VALUE rb_eTypeError
TypeError exception.
void rb_category_compile_warn(rb_warning_category_t category, const char *file, int line, const char *fmt,...)
Identical to rb_compile_warn(), except it also accepts category.
void rb_warn(const char *fmt,...)
Identical to rb_warning(), except it reports unless $VERBOSE is nil.
VALUE rb_eException
Mother of all exceptions.
void rb_warning(const char *fmt,...)
Issues a warning.
@ RB_WARN_CATEGORY_DEPRECATED
Warning is for deprecated features.
VALUE rb_mKernel
Kernel module.
VALUE rb_cObject
Object class.
VALUE rb_cModule
Module class.
VALUE rb_equal(VALUE lhs, VALUE rhs)
This function is an optimised version of calling #==.
#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.
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_call_super_kw(int argc, const VALUE *argv, int kw_splat)
Identical to rb_call_super(), except you can specify how to handle the last element of the given arra...
VALUE rb_ary_new_from_values(long n, const VALUE *elts)
Identical to rb_ary_new_from_args(), except how objects are passed.
VALUE rb_check_array_type(VALUE obj)
Try converting an object to its array representation using its to_ary method, if any.
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_ary_freeze(VALUE obj)
Freeze an array, preventing further modifications.
void rb_undef(VALUE mod, ID mid)
Inserts a method entry that hides previous method definition of the given name.
#define UNLIMITED_ARGUMENTS
This macro is used in conjunction with rb_check_arity().
static int rb_check_arity(int argc, int min, int max)
Ensures that the passed integer is in the passed range.
#define rb_hash_uint(h, i)
Just another name of st_hash_uint.
#define rb_str_new_lit(str)
Identical to rb_str_new_static(), except it cannot take string variables.
st_index_t rb_hash_start(st_index_t i)
Starts a series of hashing.
VALUE rb_mod_name(VALUE mod)
Queries the name of a module.
VALUE rb_class_path(VALUE mod)
Identical to rb_mod_name(), except it returns #<Class: ...> style inspection for anonymous modules.
int rb_respond_to(VALUE obj, ID mid)
Queries if the object responds to the method.
VALUE(* rb_alloc_func_t)(VALUE klass)
This is the type of functions that ruby calls when trying to allocate an object.
void rb_undef_alloc_func(VALUE klass)
Deletes the allocator function of a class.
void rb_alias(VALUE klass, ID dst, ID src)
Resembles alias.
int rb_method_basic_definition_p(VALUE klass, ID mid)
Well... Let us hesitate from describing what a "basic definition" is.
void rb_attr(VALUE klass, ID name, int need_reader, int need_writer, int honour_visibility)
This function resembles now-deprecated Module#attr.
void rb_remove_method(VALUE klass, const char *name)
Removes a method.
rb_alloc_func_t rb_get_alloc_func(VALUE klass)
Queries the allocator function of a class.
void rb_clear_constant_cache_for_id(ID id)
Clears the inline constant caches associated with a particular ID.
void rb_remove_method_id(VALUE klass, ID mid)
Identical to rb_remove_method(), except it accepts the method name as ID.
void rb_define_alloc_func(VALUE klass, rb_alloc_func_t func)
Sets the allocator function of a class.
VALUE rb_f_notimplement(int argc, const VALUE *argv, VALUE obj, VALUE marker)
Raises rb_eNotImpError.
int rb_method_boundp(VALUE klass, ID id, int ex)
Queries if the klass has this method.
int rb_obj_respond_to(VALUE obj, ID mid, int private_p)
Identical to rb_respond_to(), except it additionally takes the visibility parameter.
ID rb_check_id(volatile VALUE *namep)
Detects if the given name is already interned or not.
VALUE rb_to_symbol(VALUE name)
Identical to rb_intern_str(), except it generates a dynamic symbol if necessary.
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...
int capa
Designed capacity of the buffer.
int len
Length of the buffer.
#define RB_OBJ_SET_SHAREABLE(obj)
Wrapper of rb_obj_set_shareable().
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
VALUE type(ANYARGS)
ANYARGS-ed function type.
#define RARRAY_LEN
Just another name of rb_array_len.
#define RARRAY_AREF(a, i)
#define RBASIC(obj)
Convenient casting macro.
#define RCLASS_SUPER
Just another name of rb_class_get_superclass.
#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...
#define RB_PASS_CALLED_KEYWORDS
Pass keywords if current method is called with keywords, useful for argument delegation.
#define RB_NO_KEYWORDS
Do not pass keywords.
#define RTEST
This is an old name of RB_TEST.
#define _(args)
This was a transition path from K&R to ANSI.
#define ANYARGS
Functions declared using this macro take arbitrary arguments, including void.
This is the struct that holds necessary info for a struct.
size_t(* dsize)(const void *)
This function is to query the size of the underlying memory regions.
struct rb_data_type_struct::@64 function
Function pointers.
RUBY_DATA_FUNC dfree
This function is called when the object is no longer used.
const char * wrap_struct_name
Name of structs of this kind.
VALUE flags
Type-specific behavioural characteristics.
rb_cref_t * cref
class reference, should be marked
const rb_iseq_t * iseqptr
iseq pointer, should be separated from iseqval
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_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.