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
26vm_ccs_dump_i(
ID mid,
VALUE val,
void *data)
29 fprintf(stderr,
" | %s (len:%d) ", rb_id2name(mid), ccs->len);
32 for (
int i=0; i<ccs->len; i++) {
33 rp_m(
" | \t", ccs->entries[i].cc);
36 return ID_TABLE_CONTINUE;
40vm_ccs_dump(
VALUE klass,
ID target_mid)
46 if (rb_id_table_lookup(cc_tbl, target_mid, &ccs)) {
47 fprintf(stderr,
" [CCTB] %p\n", (
void *)cc_tbl);
48 vm_ccs_dump_i(target_mid, ccs, NULL);
52 fprintf(stderr,
" [CCTB] %p\n", (
void *)cc_tbl);
53 rb_id_table_foreach(cc_tbl, vm_ccs_dump_i, (
void *)target_mid);
58static enum rb_id_table_iterator_result
59vm_cme_dump_i(
ID mid,
VALUE val,
void *data)
61 ID target_mid = (
ID)data;
62 if (target_mid == 0 || mid == target_mid) {
65 return ID_TABLE_CONTINUE;
69vm_mtbl_dump(
VALUE klass,
ID target_mid)
71 fprintf(stderr,
"# vm_mtbl\n");
76 if (RCLASS_M_TBL(klass)) {
77 if (target_mid != 0) {
78 if (rb_id_table_lookup(RCLASS_M_TBL(klass), target_mid, &me)) {
83 fprintf(stderr,
" ## RCLASS_M_TBL (%p)\n", (
void *)RCLASS_M_TBL(klass));
84 rb_id_table_foreach(RCLASS_M_TBL(klass), vm_cme_dump_i, NULL);
88 fprintf(stderr,
" MTBL: NULL\n");
90 if (RCLASS_CALLABLE_M_TBL(klass)) {
91 if (target_mid != 0) {
92 if (rb_id_table_lookup(RCLASS_CALLABLE_M_TBL(klass), target_mid, &me)) {
97 fprintf(stderr,
" ## RCLASS_CALLABLE_M_TBL\n");
98 rb_id_table_foreach(RCLASS_CALLABLE_M_TBL(klass), vm_cme_dump_i, NULL);
101 if (RCLASS_CC_TBL(klass)) {
102 vm_ccs_dump(klass, target_mid);
110rb_vm_mtbl_dump(
const char *msg,
VALUE klass,
ID target_mid)
112 fprintf(stderr,
"[%s] ", msg);
113 vm_mtbl_dump(klass, target_mid);
119 VM_ASSERT(IMEMO_TYPE_P(cme, imemo_ment),
"cme: %d", imemo_type((
VALUE)cme));
120 VM_ASSERT(callable_method_entry_p(cme));
121 METHOD_ENTRY_INVALIDATED_SET(cme);
122 RB_DEBUG_COUNTER_INC(cc_cme_invalidate);
124 rb_yjit_cme_invalidate(cme);
128rb_clear_constant_cache_for_id_i(st_data_t ic, st_data_t idx, st_data_t arg)
130 ((
IC) ic)->entry = NULL;
135void rb_clear_constant_cache(
void) {}
143 if (rb_id_table_lookup(vm->constant_cache,
id, &lookup_result)) {
145 st_foreach(ics, rb_clear_constant_cache_for_id_i, (st_data_t) NULL);
146 ruby_vm_constant_cache_invalidations += ics->num_entries;
149 rb_yjit_constant_state_changed(
id);
153invalidate_negative_cache(
ID mid)
158 if (rb_id_table_lookup(vm->negative_cme_table, mid, &cme)) {
159 rb_id_table_delete(vm->negative_cme_table, mid);
161 RB_DEBUG_COUNTER_INC(cc_invalidate_negative);
171clear_method_cache_by_id_in_class(
VALUE klass,
ID mid)
174 if (rb_objspace_garbage_object_p(klass))
return;
177 if (LIKELY(RCLASS_SUBCLASSES(klass) == NULL)) {
185 if (cc_tbl && rb_id_table_lookup(cc_tbl, mid, &ccs_data)) {
188 if (
NIL_P(ccs->cme->owner)) invalidate_negative_cache(mid);
190 rb_id_table_delete(cc_tbl, mid);
191 RB_DEBUG_COUNTER_INC(cc_invalidate_leaf_ccs);
196 if ((cm_tbl = RCLASS_CALLABLE_M_TBL(klass)) != NULL) {
198 if (rb_yjit_enabled_p && rb_id_table_lookup(cm_tbl, mid, &cme)) {
201 rb_id_table_delete(cm_tbl, mid);
202 RB_DEBUG_COUNTER_INC(cc_invalidate_leaf_callable);
204 RB_DEBUG_COUNTER_INC(cc_invalidate_leaf);
211 if (METHOD_ENTRY_CACHED(cme)) {
212 if (METHOD_ENTRY_COMPLEMENTED(cme)) {
217 VALUE owner = cme->owner;
218 VM_ASSERT_TYPE(owner,
T_CLASS);
219 VALUE klass_housing_cme;
220 if (cme->def->type == VM_METHOD_TYPE_REFINED && !cme->def->body.refined.orig_me) {
221 klass_housing_cme = owner;
224 klass_housing_cme = RCLASS_ORIGIN(owner);
227 VM_ASSERT(lookup_method_table(klass_housing_cme, mid) == (
const rb_method_entry_t *)cme);
229 rb_method_table_insert(klass_housing_cme, RCLASS_M_TBL(klass_housing_cme), mid, new_cme);
233 RB_DEBUG_COUNTER_INC(cc_invalidate_tree_cme);
238 if (cme->def->type == VM_METHOD_TYPE_REFINED && cme->def->body.refined.orig_me) {
242 if (cme->def->iseq_overload) {
245 vm_cme_invalidate(monly_cme);
251 if (METHOD_ENTRY_COMPLEMENTED(cme)) {
252 VALUE defined_class = cme->defined_class;
253 struct rb_id_table *cm_tbl = RCLASS_CALLABLE_M_TBL(defined_class);
254 VM_ASSERT(cm_tbl != NULL);
255 int r = rb_id_table_delete(cm_tbl, mid);
256 VM_ASSERT(r == TRUE); (void)r;
257 RB_DEBUG_COUNTER_INC(cc_invalidate_tree_callable);
260 RB_DEBUG_COUNTER_INC(cc_invalidate_tree);
263 invalidate_negative_cache(mid);
270clear_iclass_method_cache_by_id(
VALUE iclass,
VALUE d)
274 clear_method_cache_by_id_in_class(iclass, mid);
278clear_iclass_method_cache_by_id_for_refinements(
VALUE klass,
VALUE d)
282 clear_method_cache_by_id_in_class(klass, mid);
287rb_clear_method_cache(
VALUE klass_or_module,
ID mid)
290 VALUE module = klass_or_module;
292 if (
FL_TEST(module, RMODULE_IS_REFINEMENT)) {
293 VALUE refined_class = rb_refinement_module_get_refined_class(module);
294 rb_clear_method_cache(refined_class, mid);
295 rb_class_foreach_subclass(refined_class, clear_iclass_method_cache_by_id_for_refinements, mid);
296 rb_clear_all_refinement_method_cache();
298 rb_class_foreach_subclass(module, clear_iclass_method_cache_by_id, mid);
301 clear_method_cache_by_id_in_class(klass_or_module, mid);
306invalidate_all_refinement_cc(
void *vstart,
void *vend,
size_t stride,
void *data)
309 for (; v != (
VALUE)vend; v += stride) {
310 void *ptr = rb_asan_poisoned_object_p(v);
311 rb_asan_unpoison_object(v,
false);
314 if (imemo_type_p(v, imemo_callcache)) {
316 if (vm_cc_refinement_p(cc) && cc->klass) {
317 vm_cc_invalidate(cc);
323 rb_asan_poison_object(v);
338 for (
int i = 0; i < ci->kwarg->keyword_len; i++) {
350 if (ci1->mid != ci2->mid)
return 1;
351 if (ci1->flag != ci2->flag)
return 1;
352 if (ci1->argc != ci2->argc)
return 1;
353 if (ci1->kwarg != NULL) {
354 VM_ASSERT(ci2->kwarg != NULL);
356 if (ci1->kwarg->keyword_len != ci2->kwarg->keyword_len)
359 for (
int i = 0; i < ci1->kwarg->keyword_len; i++) {
360 if (ci1->kwarg->keywords[i] != ci2->kwarg->keywords[i]) {
365 VM_ASSERT(ci2->kwarg == NULL);
376ci_lookup_i(st_data_t *key, st_data_t *value, st_data_t data,
int existing)
379 st_data_t *ret = (st_data_t *)data;
382 if (rb_objspace_garbage_object_p((
VALUE)ci)) {
383 *ret = (st_data_t)NULL;
391 *key = *value = *ret = (st_data_t)ci;
397rb_vm_ci_lookup(
ID mid,
unsigned int flag,
unsigned int argc,
const struct rb_callinfo_kwarg *kwarg)
417 st_update(ci_table, (st_data_t)new_ci, ci_lookup_i, (st_data_t)&ci);
418 }
while (ci == NULL);
434 st_data_t key = (st_data_t)ci;
435 st_delete(vm->ci_table, &key, NULL);
439rb_clear_all_refinement_method_cache(
void)
441 rb_objspace_each_objects(invalidate_all_refinement_cc, NULL);
442 rb_yjit_invalidate_all_method_lookup_assumptions();
448 VALUE table_owner = klass;
450 table_owner =
RBASIC(table_owner)->klass;
453 VM_ASSERT(table == RCLASS_M_TBL(table_owner));
454 rb_id_table_insert(table, method_id, (
VALUE)me);
463NORETURN(
static VALUE rb_f_notimplement_internal(
int argc,
const VALUE *argv,
VALUE obj));
466rb_f_notimplement_internal(
int argc,
const VALUE *argv,
VALUE obj)
476 rb_f_notimplement_internal(argc, argv, obj);
480rb_define_notimplement_method_id(
VALUE mod,
ID id, rb_method_visibility_t visi)
482 rb_add_method(mod,
id, VM_METHOD_TYPE_NOTIMPLEMENTED, (
void *)1, visi);
486rb_add_method_cfunc(
VALUE klass,
ID mid,
VALUE (*func)(
ANYARGS),
int argc, rb_method_visibility_t visi)
488 if (argc < -2 || 15 < argc) rb_raise(rb_eArgError,
"arity out of range: %d for -2..15", argc);
493 rb_add_method(klass, mid, VM_METHOD_TYPE_CFUNC, &opt, visi);
496 rb_define_notimplement_method_id(klass, mid, visi);
501rb_add_method_optimized(
VALUE klass,
ID mid,
enum method_optimized_type opt_type,
unsigned int index, rb_method_visibility_t visi)
507 rb_add_method(klass, mid, VM_METHOD_TYPE_OPTIMIZED, &opt, visi);
518 if (reference_count_was == 1) {
519 if (METHOD_DEBUG) fprintf(stderr,
"-%p-%s:1->0 (remove)\n", (
void *)def,
520 rb_id2name(def->original_id));
521 if (def->type == VM_METHOD_TYPE_BMETHOD && def->body.bmethod.hooks) {
522 xfree(def->body.bmethod.hooks);
527 if (METHOD_DEBUG) fprintf(stderr,
"-%p-%s:%d->%d (dec)\n", (
void *)def, rb_id2name(def->original_id),
528 reference_count_was, reference_count_was - 1);
538 if (me->def && me->def->iseq_overload) {
546 rb_method_definition_release(me->def);
555 if (!GET_THREAD()->ext_config.ractor_safe) {
557 case -2:
return &call_cfunc_m2;
558 case -1:
return &call_cfunc_m1;
559 case 0:
return &call_cfunc_0;
560 case 1:
return &call_cfunc_1;
561 case 2:
return &call_cfunc_2;
562 case 3:
return &call_cfunc_3;
563 case 4:
return &call_cfunc_4;
564 case 5:
return &call_cfunc_5;
565 case 6:
return &call_cfunc_6;
566 case 7:
return &call_cfunc_7;
567 case 8:
return &call_cfunc_8;
568 case 9:
return &call_cfunc_9;
569 case 10:
return &call_cfunc_10;
570 case 11:
return &call_cfunc_11;
571 case 12:
return &call_cfunc_12;
572 case 13:
return &call_cfunc_13;
573 case 14:
return &call_cfunc_14;
574 case 15:
return &call_cfunc_15;
576 rb_bug(
"unsupported length: %d", argc);
581 case -2:
return &ractor_safe_call_cfunc_m2;
582 case -1:
return &ractor_safe_call_cfunc_m1;
583 case 0:
return &ractor_safe_call_cfunc_0;
584 case 1:
return &ractor_safe_call_cfunc_1;
585 case 2:
return &ractor_safe_call_cfunc_2;
586 case 3:
return &ractor_safe_call_cfunc_3;
587 case 4:
return &ractor_safe_call_cfunc_4;
588 case 5:
return &ractor_safe_call_cfunc_5;
589 case 6:
return &ractor_safe_call_cfunc_6;
590 case 7:
return &ractor_safe_call_cfunc_7;
591 case 8:
return &ractor_safe_call_cfunc_8;
592 case 9:
return &ractor_safe_call_cfunc_9;
593 case 10:
return &ractor_safe_call_cfunc_10;
594 case 11:
return &ractor_safe_call_cfunc_11;
595 case 12:
return &ractor_safe_call_cfunc_12;
596 case 13:
return &ractor_safe_call_cfunc_13;
597 case 14:
return &ractor_safe_call_cfunc_14;
598 case 15:
return &ractor_safe_call_cfunc_15;
600 rb_bug(
"unsupported length: %d", argc);
610 cfunc->invoker = call_cfunc_invoker_func(argc);
617 if (!complemented && reference_count_was > 0) {
621 if (METHOD_DEBUG) fprintf(stderr,
"+%p-%s:%d->%d\n", (
void *)def, rb_id2name(def->original_id), reference_count_was, reference_count_was+1);
629 rb_method_definition_release(me->def);
632 if (!ruby_running) add_opt_method_entry(me);
636 case VM_METHOD_TYPE_ISEQ:
646 if (rb_iseq_attr_p(iseq, BUILTIN_ATTR_C_TRACE)) {
650 if (ISEQ_BODY(iseq)->mandatory_only_iseq) def->iseq_overload = 1;
652 if (0) vm_cref_dump(
"rb_method_definition_create", cref);
658 method_cref = vm_cref_new_toplevel(GET_EC());
664 case VM_METHOD_TYPE_CFUNC:
667 setup_method_cfunc_struct(UNALIGNED_MEMBER_PTR(def, body.cfunc), cfunc->func, cfunc->argc);
670 case VM_METHOD_TYPE_ATTRSET:
671 case VM_METHOD_TYPE_IVAR:
677 def->body.attr.id = (
ID)(
VALUE)opts;
679 cfp = rb_vm_get_ruby_level_next_cfp(ec, ec->cfp);
681 if (cfp && (line = rb_vm_get_sourceline(cfp))) {
683 RB_OBJ_WRITE(me, &def->body.attr.location, rb_ary_freeze(location));
686 VM_ASSERT(def->body.attr.location == 0);
690 case VM_METHOD_TYPE_BMETHOD:
692 RB_OBJ_WRITE(me, &def->body.bmethod.defined_ractor, rb_ractor_self(GET_RACTOR()));
694 case VM_METHOD_TYPE_NOTIMPLEMENTED:
695 setup_method_cfunc_struct(UNALIGNED_MEMBER_PTR(def, body.cfunc), (
VALUE(*)(
ANYARGS))rb_f_notimplement_internal, -1);
697 case VM_METHOD_TYPE_OPTIMIZED:
700 case VM_METHOD_TYPE_REFINED:
705 case VM_METHOD_TYPE_ALIAS:
708 case VM_METHOD_TYPE_ZSUPER:
709 case VM_METHOD_TYPE_UNDEF:
710 case VM_METHOD_TYPE_MISSING:
722 case VM_METHOD_TYPE_ISEQ:
726 case VM_METHOD_TYPE_ATTRSET:
727 case VM_METHOD_TYPE_IVAR:
730 case VM_METHOD_TYPE_BMETHOD:
734 if (def->body.bmethod.hooks) rb_gc_writebarrier_remember((
VALUE)me);
736 case VM_METHOD_TYPE_REFINED:
739 case VM_METHOD_TYPE_ALIAS:
742 case VM_METHOD_TYPE_CFUNC:
743 case VM_METHOD_TYPE_ZSUPER:
744 case VM_METHOD_TYPE_MISSING:
745 case VM_METHOD_TYPE_OPTIMIZED:
746 case VM_METHOD_TYPE_UNDEF:
747 case VM_METHOD_TYPE_NOTIMPLEMENTED:
753rb_method_definition_create(rb_method_type_t
type,
ID mid)
758 def->original_id = mid;
759 static uintptr_t method_serial = 1;
760 def->method_serial = method_serial++;
767 if (def) method_definition_addref(def, complement);
768 if (
RTEST(defined_class)) {
774 me->called_id = called_id;
781filter_defined_class(
VALUE klass)
793 rb_bug(
"filter_defined_class: %s", rb_obj_info(klass));
799 rb_method_entry_t *me = rb_method_entry_alloc(called_id, klass, filter_defined_class(klass), def,
false);
800 METHOD_ENTRY_FLAGS_SET(me, visi, ruby_running ? FALSE : TRUE);
801 if (def != NULL) method_definition_reset(me);
809 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));
811 METHOD_ENTRY_FLAGS_COPY(me, src_me);
815 src_me->def->type == VM_METHOD_TYPE_REFINED &&
816 src_me->def->body.refined.orig_me) {
818 VM_ASSERT(orig_me->def->type != VM_METHOD_TYPE_REFINED);
821 orig_me->owner, orig_me->defined_class, orig_me->def, METHOD_ENTRY_COMPLEMENTED(orig_me));
822 METHOD_ENTRY_FLAGS_COPY(orig_clone, orig_me);
827 rb_method_definition_create(VM_METHOD_TYPE_REFINED, src_me->called_id);
828 rb_method_definition_set(me, clone_def, orig_clone);
840 if (!src_me->defined_class &&
841 def->type == VM_METHOD_TYPE_REFINED &&
842 def->body.refined.orig_me) {
844 rb_method_entry_clone(def->body.refined.orig_me);
846 refined_orig_me = orig_me;
850 me = rb_method_entry_alloc(called_id, src_me->owner, defined_class, def,
true);
851 METHOD_ENTRY_FLAGS_COPY(me, src_me);
852 METHOD_ENTRY_COMPLEMENTED_SET(me);
854 def = rb_method_definition_create(VM_METHOD_TYPE_REFINED, called_id);
855 rb_method_definition_set(me, def, (
void *)refined_orig_me);
858 VM_ASSERT_TYPE(me->owner,
T_MODULE);
866 rb_method_definition_release(dst->def);
867 *(
rb_method_definition_t **)&dst->def = method_definition_addref(src->def, METHOD_ENTRY_COMPLEMENTED(src));
868 method_definition_reset(dst);
869 dst->called_id = src->called_id;
872 METHOD_ENTRY_FLAGS_COPY(dst, src);
878 if (me->def->type == VM_METHOD_TYPE_REFINED) {
884 rb_vm_check_redefinition_opt_method(me, me->owner);
887 rb_method_entry_alloc(me->called_id,
892 METHOD_ENTRY_FLAGS_COPY(orig_me, me);
894 def = rb_method_definition_create(VM_METHOD_TYPE_REFINED, me->called_id);
895 rb_method_definition_set(me, def, orig_me);
896 METHOD_ENTRY_VISI_SET(me, METHOD_VISI_PUBLIC);
901lookup_method_table(
VALUE klass,
ID id)
906 if (rb_id_table_lookup(m_tbl,
id, &body)) {
915rb_add_refined_method_entry(
VALUE refined_class,
ID mid)
920 make_method_entry_refined(refined_class, me);
921 rb_clear_method_cache(refined_class, mid);
924 rb_add_method(refined_class, mid, VM_METHOD_TYPE_REFINED, 0, METHOD_VISI_PUBLIC);
929check_override_opt_method_i(
VALUE klass,
VALUE arg)
934 if (vm_redefinition_check_flag(klass)) {
935 me = lookup_method_table(RCLASS_ORIGIN(klass), mid);
937 newme = rb_method_entry(klass, mid);
938 if (newme != me) rb_vm_check_redefinition_opt_method(me, me->owner);
941 rb_class_foreach_subclass(klass, check_override_opt_method_i, (
VALUE)mid);
945check_override_opt_method(
VALUE klass,
VALUE mid)
947 if (rb_vm_check_optimizable_mid(mid)) {
948 check_override_opt_method_i(klass, mid);
959rb_method_entry_make(
VALUE klass,
ID mid,
VALUE defined_class, rb_method_visibility_t visi,
965 int make_refined = 0;
973 if (!RCLASS_SINGLETON_P(klass) &&
974 type != VM_METHOD_TYPE_NOTIMPLEMENTED &&
975 type != VM_METHOD_TYPE_ZSUPER) {
978 case idInitialize_copy:
979 case idInitialize_clone:
980 case idInitialize_dup:
981 case idRespond_to_missing:
982 visi = METHOD_VISI_PRIVATE;
986 if (
type != VM_METHOD_TYPE_REFINED) {
991 VALUE refined_class = rb_refinement_module_get_refined_class(klass);
992 rb_add_refined_method_entry(refined_class, mid);
994 if (
type == VM_METHOD_TYPE_REFINED) {
996 if (old_me) rb_vm_check_redefinition_opt_method(old_me, klass);
999 klass = RCLASS_ORIGIN(klass);
1000 if (klass != orig_klass) {
1001 rb_clear_method_cache(orig_klass, mid);
1004 mtbl = RCLASS_M_TBL(klass);
1007 if (rb_id_table_lookup(mtbl, mid, &data)) {
1011 if (rb_method_definition_eq(old_def, def))
return old_me;
1012 rb_vm_check_redefinition_opt_method(old_me, klass);
1014 if (old_def->type == VM_METHOD_TYPE_REFINED) make_refined = 1;
1017 type != VM_METHOD_TYPE_UNDEF &&
1018 (old_def->aliased ==
false) &&
1019 (!old_def->no_redef_warning) &&
1021 old_def->type != VM_METHOD_TYPE_UNDEF &&
1022 old_def->type != VM_METHOD_TYPE_ZSUPER &&
1023 old_def->type != VM_METHOD_TYPE_ALIAS) {
1026 switch (old_def->type) {
1027 case VM_METHOD_TYPE_ISEQ:
1028 iseq = def_iseq_ptr(old_def);
1030 case VM_METHOD_TYPE_BMETHOD:
1031 iseq = rb_proc_get_iseq(old_def->body.bmethod.proc, 0);
1038 "method redefined; discarding old %"PRIsVALUE
"\n%s:%d: warning: previous definition of %"PRIsVALUE
" was here",
1040 RSTRING_PTR(rb_iseq_path(iseq)),
1041 ISEQ_BODY(iseq)->location.first_lineno,
1042 rb_id2str(old_def->original_id)
1046 rb_warning(
"method redefined; discarding old %"PRIsVALUE, rb_id2str(mid));
1052 me = rb_method_entry_create(mid, defined_class, visi, NULL);
1054 def = rb_method_definition_create(
type, original_id);
1056 rb_method_definition_set(me, def, opts);
1058 rb_clear_method_cache(klass, mid);
1061 if (klass == rb_cObject) {
1064 case idRespond_to_missing:
1065 case idMethodMissing:
1067 rb_warn(
"redefining Object#%s may cause infinite loop", rb_id2name(mid));
1071 if (mid == object_id || mid == id__id__ || mid == id__send__) {
1072 if (
type != VM_METHOD_TYPE_CFUNC && search_method(klass, mid, 0)) {
1073 rb_warn(
"redefining '%s' may cause serious problems", rb_id2name(mid));
1078 make_method_entry_refined(klass, me);
1081 rb_method_table_insert(klass, mtbl, mid, me);
1083 VM_ASSERT(me->def != NULL);
1087 check_override_opt_method(klass, (
VALUE)mid);
1094overloaded_cme_table(
void)
1096 VM_ASSERT(GET_VM()->overloaded_cme_table != NULL);
1097 return GET_VM()->overloaded_cme_table;
1100#if VM_CHECK_MODE > 0
1102vm_dump_overloaded_cme_table(st_data_t key, st_data_t val, st_data_t dmy)
1104 fprintf(stderr,
"key: "); rp(key);
1105 fprintf(stderr,
"val: "); rp(val);
1110rb_vm_dump_overloaded_cme_table(
void)
1112 fprintf(stderr,
"== rb_vm_dump_overloaded_cme_table\n");
1113 st_foreach(overloaded_cme_table(), vm_dump_overloaded_cme_table, 0);
1118lookup_overloaded_cme_i(st_data_t *key, st_data_t *value, st_data_t data,
int existing)
1125 if (rb_objspace_garbage_object_p((
VALUE)cme) ||
1126 rb_objspace_garbage_object_p((
VALUE)monly_cme)) {
1141 ASSERT_vm_locking();
1144 st_update(overloaded_cme_table(), (st_data_t)cme, lookup_overloaded_cme_i, (st_data_t)&monly_cme);
1148#if VM_CHECK_MODE > 0
1152 return lookup_overloaded_cme(cme);
1159 st_data_t cme_data = (st_data_t)cme;
1160 ASSERT_vm_locking();
1161 st_delete(overloaded_cme_table(), &cme_data, NULL);
1169 if (monly_cme && !METHOD_ENTRY_INVALIDATED(monly_cme)) {
1184 ASSERT_vm_locking();
1185 st_insert(overloaded_cme_table(), (st_data_t)cme, (st_data_t)me);
1187 METHOD_ENTRY_VISI_SET(me, METHOD_ENTRY_VISI(cme));
1195 if (UNLIKELY(cme->def->iseq_overload) &&
1196 (vm_ci_flag(ci) & (VM_CALL_ARGS_SIMPLE)) &&
1197 (!(vm_ci_flag(ci) & VM_CALL_FORWARDING)) &&
1198 (
int)vm_ci_argc(ci) == ISEQ_BODY(method_entry_iseqptr(cme))->param.lead_num) {
1199 VM_ASSERT(cme->def->type == VM_METHOD_TYPE_ISEQ,
"type: %d", cme->def->type);
1201 cme = get_overloaded_cme(cme);
1203 VM_ASSERT(cme != NULL);
1210#define CALL_METHOD_HOOK(klass, hook, mid) do { \
1211 const VALUE arg = ID2SYM(mid); \
1212 VALUE recv_class = (klass); \
1213 ID hook_id = (hook); \
1214 if (RCLASS_SINGLETON_P((klass))) { \
1215 recv_class = RCLASS_ATTACHED_OBJECT((klass)); \
1216 hook_id = singleton_##hook; \
1218 rb_funcallv(recv_class, hook_id, 1, &arg); \
1222method_added(
VALUE klass,
ID mid)
1225 CALL_METHOD_HOOK(klass, added, mid);
1230rb_add_method(
VALUE klass,
ID mid, rb_method_type_t
type,
void *opts, rb_method_visibility_t visi)
1232 rb_method_entry_make(klass, mid, klass, visi,
type, NULL, mid, opts);
1234 if (
type != VM_METHOD_TYPE_UNDEF &&
type != VM_METHOD_TYPE_REFINED) {
1235 method_added(klass, mid);
1248 iseq_body.
cref = cref;
1250 rb_add_method(klass, mid, VM_METHOD_TYPE_ISEQ, &iseq_body, visi);
1255 rb_method_visibility_t visi,
VALUE defined_class)
1257 rb_method_entry_t *newme = rb_method_entry_make(klass, mid, defined_class, visi,
1258 me->def->type, me->def, 0, NULL);
1260 me->def->no_redef_warning = TRUE;
1261 METHOD_ENTRY_FLAGS_SET(newme, visi, FALSE);
1264 method_added(klass, mid);
1271 return method_entry_set(klass, mid, me, visi, klass);
1274#define UNDEF_ALLOC_FUNC ((rb_alloc_func_t)-1)
1280 if (RCLASS_SINGLETON_P(klass)) {
1281 rb_raise(
rb_eTypeError,
"can't define an allocator for a singleton class");
1283 RCLASS_SET_ALLOCATOR(klass, func);
1299 if (allocator == UNDEF_ALLOC_FUNC)
break;
1300 if (allocator)
return allocator;
1306rb_method_entry_at(
VALUE klass,
ID id)
1308 return lookup_method_table(klass,
id);
1312search_method0(
VALUE klass,
ID id,
VALUE *defined_class_ptr,
bool skip_refined)
1316 RB_DEBUG_COUNTER_INC(mc_search);
1319 RB_DEBUG_COUNTER_INC(mc_search_super);
1320 if ((me = lookup_method_table(klass,
id)) != 0) {
1321 if (!skip_refined || me->def->type != VM_METHOD_TYPE_REFINED ||
1322 me->def->body.refined.orig_me) {
1328 if (defined_class_ptr) *defined_class_ptr = klass;
1330 if (me == NULL) RB_DEBUG_COUNTER_INC(mc_search_notfound);
1332 VM_ASSERT(me == NULL || !METHOD_ENTRY_INVALIDATED(me));
1337search_method(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
1339 return search_method0(klass,
id, defined_class_ptr,
false);
1343search_method_protect(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
1347 if (!UNDEFINED_METHOD_ENTRY_P(me)) {
1356rb_method_entry(
VALUE klass,
ID id)
1358 return search_method_protect(klass,
id, NULL);
1369 if (me->defined_class == 0) {
1370 RB_DEBUG_COUNTER_INC(mc_cme_complement);
1372 VM_ASSERT(me->defined_class == 0,
"me->defined_class: %s", rb_obj_info(me->defined_class));
1374 mtbl = RCLASS_CALLABLE_M_TBL(defined_class);
1376 if (mtbl && rb_id_table_lookup(mtbl,
id, &cme_data)) {
1378 RB_DEBUG_COUNTER_INC(mc_cme_complement_hit);
1379 VM_ASSERT(callable_method_entry_p(cme));
1380 VM_ASSERT(!METHOD_ENTRY_INVALIDATED(cme));
1384 mtbl = RCLASS_EXT(defined_class)->callable_m_tbl = rb_id_table_create(0);
1386 cme = rb_method_entry_complement_defined_class(me, me->called_id, defined_class);
1387 rb_id_table_insert(mtbl,
id, (
VALUE)cme);
1389 VM_ASSERT(callable_method_entry_p(cme));
1397 VM_ASSERT(callable_method_entry_p(cme));
1398 VM_ASSERT(!METHOD_ENTRY_INVALIDATED(cme));
1408complemented_callable_method_entry(
VALUE klass,
ID id)
1410 VALUE defined_class;
1412 return prepare_callable_method_entry(defined_class,
id, me, FALSE);
1416cached_callable_method_entry(
VALUE klass,
ID mid)
1418 ASSERT_vm_locking();
1420 struct rb_id_table *cc_tbl = RCLASS_CC_TBL(klass);
1423 if (cc_tbl && rb_id_table_lookup(cc_tbl, mid, &ccs_data)) {
1425 VM_ASSERT(vm_ccs_p(ccs));
1427 if (LIKELY(!METHOD_ENTRY_INVALIDATED(ccs->cme))) {
1428 VM_ASSERT(ccs->cme->called_id == mid);
1429 RB_DEBUG_COUNTER_INC(ccs_found);
1433 rb_vm_ccs_free(ccs);
1434 rb_id_table_delete(cc_tbl, mid);
1438 RB_DEBUG_COUNTER_INC(ccs_not_found);
1445 ASSERT_vm_locking();
1446 VM_ASSERT(cme != NULL);
1448 struct rb_id_table *cc_tbl = RCLASS_CC_TBL(klass);
1452 cc_tbl = RCLASS_CC_TBL(klass) = rb_id_table_create(2);
1455 if (rb_id_table_lookup(cc_tbl, mid, &ccs_data)) {
1456#if VM_CHECK_MODE > 0
1458 VM_ASSERT(ccs->cme == cme);
1462 vm_ccs_create(klass, cc_tbl, mid, cme);
1473 if (rb_id_table_lookup(vm->negative_cme_table, mid, &cme_data)) {
1478 rb_id_table_insert(vm->negative_cme_table, mid, (
VALUE)cme);
1481 VM_ASSERT(cme != NULL);
1486callable_method_entry_or_negative(
VALUE klass,
ID mid,
VALUE *defined_class_ptr)
1493 cme = cached_callable_method_entry(klass, mid);
1496 if (defined_class_ptr != NULL) *defined_class_ptr = cme->defined_class;
1499 VALUE defined_class;
1501 if (defined_class_ptr) *defined_class_ptr = defined_class;
1504 cme = prepare_callable_method_entry(defined_class, mid, me, TRUE);
1507 cme = negative_cme(mid);
1510 cache_callable_method_entry(klass, mid, cme);
1521rb_callable_method_entry_or_negative(
VALUE klass,
ID mid)
1523 return callable_method_entry_or_negative(klass, mid, NULL);
1527callable_method_entry(
VALUE klass,
ID mid,
VALUE *defined_class_ptr)
1530 cme = callable_method_entry_or_negative(klass, mid, defined_class_ptr);
1531 return !UNDEFINED_METHOD_ENTRY_P(cme) ? cme : NULL;
1535rb_callable_method_entry(
VALUE klass,
ID mid)
1537 return callable_method_entry(klass, mid, NULL);
1543method_entry_resolve_refinement(
VALUE klass,
ID id,
int with_refinement,
VALUE *defined_class_ptr)
1545 const rb_method_entry_t *me = search_method_protect(klass,
id, defined_class_ptr);
1548 if (me->def->type == VM_METHOD_TYPE_REFINED) {
1549 if (with_refinement) {
1551 VALUE refinements = cref ? CREF_REFINEMENTS(cref) :
Qnil;
1552 me = resolve_refined_method(refinements, me, defined_class_ptr);
1555 me = resolve_refined_method(
Qnil, me, defined_class_ptr);
1558 if (UNDEFINED_METHOD_ENTRY_P(me)) me = NULL;
1566rb_method_entry_with_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
1568 return method_entry_resolve_refinement(klass,
id, TRUE, defined_class_ptr);
1572callable_method_entry_refinements0(
VALUE klass,
ID id,
VALUE *defined_class_ptr,
bool with_refinements,
1575 if (cme == NULL || LIKELY(cme->def->type != VM_METHOD_TYPE_REFINED)) {
1579 VALUE defined_class, *dcp = defined_class_ptr ? defined_class_ptr : &defined_class;
1580 const rb_method_entry_t *me = method_entry_resolve_refinement(klass,
id, with_refinements, dcp);
1581 return prepare_callable_method_entry(*dcp,
id, me, TRUE);
1586callable_method_entry_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr,
bool with_refinements)
1589 return callable_method_entry_refinements0(klass,
id, defined_class_ptr, with_refinements, cme);
1593rb_callable_method_entry_with_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
1595 return callable_method_entry_refinements(klass,
id, defined_class_ptr,
true);
1599callable_method_entry_without_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
1601 return callable_method_entry_refinements(klass,
id, defined_class_ptr,
false);
1605rb_method_entry_without_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
1607 return method_entry_resolve_refinement(klass,
id, FALSE, defined_class_ptr);
1611rb_callable_method_entry_without_refinements(
VALUE klass,
ID id,
VALUE *defined_class_ptr)
1613 VALUE defined_class, *dcp = defined_class_ptr ? defined_class_ptr : &defined_class;
1614 const rb_method_entry_t *me = method_entry_resolve_refinement(klass,
id, FALSE, dcp);
1615 return prepare_callable_method_entry(*dcp,
id, me, TRUE);
1621 while (me && me->def->type == VM_METHOD_TYPE_REFINED) {
1626 refinement = find_refinement(refinements, me->owner);
1627 if (!
NIL_P(refinement)) {
1628 tmp_me = search_method_protect(refinement, me->called_id, defined_class_ptr);
1630 if (tmp_me && tmp_me->def->type != VM_METHOD_TYPE_REFINED) {
1635 tmp_me = me->def->body.refined.orig_me;
1637 if (defined_class_ptr) *defined_class_ptr = tmp_me->defined_class;
1646 me = search_method_protect(super, me->called_id, defined_class_ptr);
1654 return resolve_refined_method(refinements, me, NULL);
1660 VALUE defined_class = me->defined_class;
1663 if (resolved_me && resolved_me->defined_class == 0) {
1664 return rb_method_entry_complement_defined_class(resolved_me, me->called_id, defined_class);
1672remove_method(
VALUE klass,
ID mid)
1679 klass = RCLASS_ORIGIN(klass);
1680 if (mid == object_id || mid == id__id__ || mid == id__send__ || mid == idInitialize) {
1681 rb_warn(
"removing '%s' may cause serious problems", rb_id2name(mid));
1684 if (!rb_id_table_lookup(RCLASS_M_TBL(klass), mid, &data) ||
1686 (!me->def || me->def->type == VM_METHOD_TYPE_UNDEF) ||
1687 UNDEFINED_REFINED_METHOD_P(me->def)) {
1688 rb_name_err_raise(
"method '%1$s' not defined in %2$s",
1692 if (klass != self) {
1693 rb_clear_method_cache(self, mid);
1695 rb_clear_method_cache(klass, mid);
1696 rb_id_table_delete(RCLASS_M_TBL(klass), mid);
1698 rb_vm_check_redefinition_opt_method(me, klass);
1700 if (me->def->type == VM_METHOD_TYPE_REFINED) {
1701 rb_add_refined_method_entry(klass, mid);
1704 CALL_METHOD_HOOK(self, removed, mid);
1710 remove_method(klass, mid);
1716 remove_method(klass, rb_intern(name));
1730rb_mod_remove_method(
int argc,
VALUE *argv,
VALUE mod)
1734 for (i = 0; i < argc; i++) {
1738 rb_name_err_raise(
"method '%1$s' not defined in %2$s",
1741 remove_method(mod,
id);
1747rb_export_method(
VALUE klass,
ID name, rb_method_visibility_t visi)
1750 VALUE defined_class;
1751 VALUE origin_class = RCLASS_ORIGIN(klass);
1753 me = search_method0(origin_class, name, &defined_class,
true);
1756 me = search_method(rb_cObject, name, &defined_class);
1759 if (UNDEFINED_METHOD_ENTRY_P(me) ||
1760 UNDEFINED_REFINED_METHOD_P(me->def)) {
1761 rb_print_undef(klass, name, METHOD_VISI_UNDEF);
1764 if (METHOD_ENTRY_VISI(me) != visi) {
1765 rb_vm_check_redefinition_opt_method(me, klass);
1767 if (klass == defined_class || origin_class == defined_class) {
1768 if (me->def->type == VM_METHOD_TYPE_REFINED) {
1771 if (me->def->body.refined.orig_me) {
1772 METHOD_ENTRY_VISI_SET((
rb_method_entry_t *)me->def->body.refined.orig_me, visi);
1776 METHOD_ENTRY_VISI_SET(me, visi);
1778 rb_clear_method_cache(klass, name);
1781 rb_add_method(klass, name, VM_METHOD_TYPE_ZSUPER, 0, visi);
1786#define BOUND_PRIVATE 0x01
1787#define BOUND_RESPONDS 0x02
1790method_boundp(
VALUE klass,
ID id,
int ex)
1796 if (ex & BOUND_RESPONDS) {
1797 cme = rb_callable_method_entry_with_refinements(klass,
id, NULL);
1800 cme = callable_method_entry_without_refinements(klass,
id, NULL);
1804 if (ex & ~BOUND_RESPONDS) {
1805 switch (METHOD_ENTRY_VISI(cme)) {
1806 case METHOD_VISI_PRIVATE:
1808 case METHOD_VISI_PROTECTED:
1809 if (ex & BOUND_RESPONDS)
return 0;
1815 if (cme->def->type == VM_METHOD_TYPE_NOTIMPLEMENTED) {
1816 if (ex & BOUND_RESPONDS)
return 2;
1828 return method_boundp(klass,
id, ex);
1832vm_cref_set_visibility(rb_method_visibility_t method_visi,
int module_func)
1835 scope_visi->method_visi = method_visi;
1836 scope_visi->module_func = module_func;
1840rb_scope_visibility_set(rb_method_visibility_t visi)
1842 vm_cref_set_visibility(visi, FALSE);
1846scope_visibility_check(
void)
1850 if (cfp && cfp->iseq && ISEQ_BODY(cfp->iseq)->type == ISEQ_TYPE_METHOD) {
1851 rb_warn(
"calling %s without arguments inside a method may not have the intended effect",
1852 rb_id2name(rb_frame_this_func()));
1857rb_scope_module_func_set(
void)
1859 scope_visibility_check();
1860 vm_cref_set_visibility(METHOD_VISI_PRIVATE, TRUE);
1868 rb_method_visibility_t visi;
1870 const rb_cref_t *cref = rb_vm_cref_in_context(klass, klass);
1873 visi = METHOD_VISI_PUBLIC;
1876 switch (vm_scope_visibility_get(ec)) {
1877 case METHOD_VISI_PRIVATE:
1878 if (vm_scope_module_func_check(ec)) {
1879 rb_warning(
"attribute accessor as module_function");
1881 visi = METHOD_VISI_PRIVATE;
1883 case METHOD_VISI_PROTECTED:
1884 visi = METHOD_VISI_PROTECTED;
1887 visi = METHOD_VISI_PUBLIC;
1892 attriv = rb_intern_str(rb_sprintf(
"@%"PRIsVALUE, rb_id2str(
id)));
1894 rb_add_method(klass,
id, VM_METHOD_TYPE_IVAR, (
void *)attriv, visi);
1897 rb_add_method(klass, rb_id_attrset(
id), VM_METHOD_TYPE_ATTRSET, (
void *)attriv, visi);
1910 if (
id == object_id ||
id == id__id__ ||
id == id__send__ ||
id == idInitialize) {
1911 rb_warn(
"undefining '%s' may cause serious problems", rb_id2name(
id));
1914 me = search_method(klass,
id, 0);
1915 if (me && me->def->type == VM_METHOD_TYPE_REFINED) {
1916 me = rb_resolve_refined_method(
Qnil, me);
1919 if (UNDEFINED_METHOD_ENTRY_P(me) ||
1920 UNDEFINED_REFINED_METHOD_P(me->def)) {
1921 rb_method_name_error(klass, rb_id2str(
id));
1924 rb_add_method(klass,
id, VM_METHOD_TYPE_UNDEF, 0, METHOD_VISI_PUBLIC);
1926 CALL_METHOD_HOOK(klass, undefined,
id);
1975rb_mod_undef_method(
int argc,
VALUE *argv,
VALUE mod)
1978 for (i = 0; i < argc; i++) {
1982 rb_method_name_error(mod, v);
1989static rb_method_visibility_t
1990check_definition_visibility(
VALUE mod,
int argc,
VALUE *argv)
1993 VALUE mid, include_super, lookup_mod = mod;
1999 if (!
id)
return METHOD_VISI_UNDEF;
2005 inc_super =
RTEST(include_super);
2007 lookup_mod = RCLASS_ORIGIN(mod);
2011 me = rb_method_entry_without_refinements(lookup_mod,
id, NULL);
2013 if (me->def->type == VM_METHOD_TYPE_NOTIMPLEMENTED)
return METHOD_VISI_UNDEF;
2014 if (!inc_super && me->owner != mod)
return METHOD_VISI_UNDEF;
2015 return METHOD_ENTRY_VISI(me);
2017 return METHOD_VISI_UNDEF;
2057rb_mod_method_defined(
int argc,
VALUE *argv,
VALUE mod)
2059 rb_method_visibility_t visi = check_definition_visibility(mod, argc, argv);
2060 return RBOOL(visi == METHOD_VISI_PUBLIC || visi == METHOD_VISI_PROTECTED);
2064check_definition(
VALUE mod,
int argc,
VALUE *argv, rb_method_visibility_t visi)
2066 return RBOOL(check_definition_visibility(mod, argc, argv) == visi);
2100rb_mod_public_method_defined(
int argc,
VALUE *argv,
VALUE mod)
2102 return check_definition(mod, argc, argv, METHOD_VISI_PUBLIC);
2136rb_mod_private_method_defined(
int argc,
VALUE *argv,
VALUE mod)
2138 return check_definition(mod, argc, argv, METHOD_VISI_PRIVATE);
2172rb_mod_protected_method_defined(
int argc,
VALUE *argv,
VALUE mod)
2174 return check_definition(mod, argc, argv, METHOD_VISI_PROTECTED);
2180 return rb_method_definition_eq(m1->def, m2->def);
2188 switch (def->type) {
2189 case VM_METHOD_TYPE_REFINED:
2190 if (def->body.refined.orig_me) {
2191 def = def->body.refined.orig_me->def;
2195 case VM_METHOD_TYPE_ALIAS:
2196 def = def->body.alias.original_me->def;
2208 d1 = original_method_definition(d1);
2209 d2 = original_method_definition(d2);
2211 if (d1 == d2)
return 1;
2212 if (!d1 || !d2)
return 0;
2213 if (d1->type != d2->type)
return 0;
2216 case VM_METHOD_TYPE_ISEQ:
2217 return d1->body.iseq.iseqptr == d2->body.iseq.
iseqptr;
2218 case VM_METHOD_TYPE_CFUNC:
2220 d1->body.cfunc.func == d2->body.cfunc.func &&
2221 d1->body.cfunc.argc == d2->body.cfunc.argc;
2222 case VM_METHOD_TYPE_ATTRSET:
2223 case VM_METHOD_TYPE_IVAR:
2224 return d1->body.attr.id == d2->body.attr.id;
2225 case VM_METHOD_TYPE_BMETHOD:
2226 return RTEST(
rb_equal(d1->body.bmethod.proc, d2->body.bmethod.proc));
2227 case VM_METHOD_TYPE_MISSING:
2228 return d1->original_id == d2->original_id;
2229 case VM_METHOD_TYPE_ZSUPER:
2230 case VM_METHOD_TYPE_NOTIMPLEMENTED:
2231 case VM_METHOD_TYPE_UNDEF:
2233 case VM_METHOD_TYPE_OPTIMIZED:
2234 return (d1->body.optimized.type == d2->body.optimized.type) &&
2235 (d1->body.optimized.index == d2->body.optimized.index);
2236 case VM_METHOD_TYPE_REFINED:
2237 case VM_METHOD_TYPE_ALIAS:
2240 rb_bug(
"rb_method_definition_eq: unsupported type: %d", d1->type);
2247 def = original_method_definition(def);
2249 if (!def)
return hash;
2251 switch (def->type) {
2252 case VM_METHOD_TYPE_ISEQ:
2254 case VM_METHOD_TYPE_CFUNC:
2255 hash =
rb_hash_uint(hash, (st_index_t)def->body.cfunc.func);
2257 case VM_METHOD_TYPE_ATTRSET:
2258 case VM_METHOD_TYPE_IVAR:
2260 case VM_METHOD_TYPE_BMETHOD:
2261 return rb_hash_proc(hash, def->body.bmethod.proc);
2262 case VM_METHOD_TYPE_MISSING:
2264 case VM_METHOD_TYPE_ZSUPER:
2265 case VM_METHOD_TYPE_NOTIMPLEMENTED:
2266 case VM_METHOD_TYPE_UNDEF:
2268 case VM_METHOD_TYPE_OPTIMIZED:
2271 case VM_METHOD_TYPE_REFINED:
2272 case VM_METHOD_TYPE_ALIAS:
2275 rb_bug(
"rb_hash_method_definition: unsupported method type (%d)", def->type);
2281 return rb_hash_method_definition(hash, me->def);
2287 const VALUE target_klass = klass;
2288 VALUE defined_class;
2290 rb_method_visibility_t visi = METHOD_VISI_UNDEF;
2299 orig_me = search_method(klass, original_name, &defined_class);
2301 if (orig_me && orig_me->def->type == VM_METHOD_TYPE_REFINED) {
2302 orig_me = rb_resolve_refined_method(
Qnil, orig_me);
2305 if (UNDEFINED_METHOD_ENTRY_P(orig_me) ||
2306 UNDEFINED_REFINED_METHOD_P(orig_me->def)) {
2308 (orig_me = search_method(rb_cObject, original_name, &defined_class),
2309 UNDEFINED_METHOD_ENTRY_P(orig_me))) {
2310 rb_print_undef(target_klass, original_name, METHOD_VISI_UNDEF);
2314 switch (orig_me->def->type) {
2315 case VM_METHOD_TYPE_ZSUPER:
2317 original_name = orig_me->def->original_id;
2318 visi = METHOD_ENTRY_VISI(orig_me);
2320 case VM_METHOD_TYPE_ALIAS:
2321 visi = METHOD_ENTRY_VISI(orig_me);
2322 orig_me = orig_me->def->body.alias.original_me;
2323 VM_ASSERT(orig_me->def->type != VM_METHOD_TYPE_ALIAS);
2328 if (visi == METHOD_VISI_UNDEF) visi = METHOD_ENTRY_VISI(orig_me);
2330 if (orig_me->defined_class == 0) {
2331 rb_method_entry_make(target_klass, alias_name, target_klass, visi,
2332 VM_METHOD_TYPE_ALIAS, NULL, orig_me->called_id,
2333 (
void *)rb_method_entry_clone(orig_me));
2334 method_added(target_klass, alias_name);
2339 alias_me = method_entry_set(target_klass, alias_name, orig_me, visi, orig_me->owner);
2340 RB_OBJ_WRITE(alias_me, &alias_me->owner, target_klass);
2346 RB_OBJ_WRITE(alias_me, &alias_me->defined_class, orig_me->defined_class);
2378 rb_print_undef_str(mod, oldname);
2386check_and_export_method(
VALUE self,
VALUE name, rb_method_visibility_t visi)
2390 rb_print_undef_str(self, name);
2392 rb_export_method(self,
id, visi);
2396set_method_visibility(
VALUE self,
int argc,
const VALUE *argv, rb_method_visibility_t visi)
2400 rb_check_frozen(self);
2402 rb_warning(
"%"PRIsVALUE
" with no argument is just ignored",
2403 QUOTE_ID(rb_frame_callee()));
2410 if (argc == 1 && (v = rb_check_array_type(argv[0])) !=
Qnil) {
2414 check_and_export_method(self,
RARRAY_AREF(v, j), visi);
2418 for (i = 0; i < argc; i++) {
2419 check_and_export_method(self, argv[i], visi);
2425set_visibility(
int argc,
const VALUE *argv,
VALUE module, rb_method_visibility_t visi)
2428 scope_visibility_check();
2429 rb_scope_visibility_set(visi);
2433 set_method_visibility(module, argc, argv, visi);
2437 return rb_ary_new_from_values(argc, argv);
2458rb_mod_public(
int argc,
VALUE *argv,
VALUE module)
2460 return set_visibility(argc, argv, module, METHOD_VISI_PUBLIC);
2490rb_mod_protected(
int argc,
VALUE *argv,
VALUE module)
2492 return set_visibility(argc, argv, module, METHOD_VISI_PROTECTED);
2524rb_mod_private(
int argc,
VALUE *argv,
VALUE module)
2526 return set_visibility(argc, argv, module, METHOD_VISI_PRIVATE);
2566rb_mod_ruby2_keywords(
int argc,
VALUE *argv,
VALUE module)
2569 VALUE origin_class = RCLASS_ORIGIN(module);
2572 rb_check_frozen(module);
2574 for (i = 0; i < argc; i++) {
2578 VALUE defined_class;
2581 rb_print_undef_str(module, v);
2584 me = search_method(origin_class, name, &defined_class);
2586 me = search_method(rb_cObject, name, &defined_class);
2589 if (UNDEFINED_METHOD_ENTRY_P(me) ||
2590 UNDEFINED_REFINED_METHOD_P(me->def)) {
2591 rb_print_undef(module, name, METHOD_VISI_UNDEF);
2594 if (module == defined_class || origin_class == defined_class) {
2595 switch (me->def->type) {
2596 case VM_METHOD_TYPE_ISEQ:
2597 if (ISEQ_BODY(me->def->body.iseq.
iseqptr)->param.flags.has_rest &&
2598 !ISEQ_BODY(me->def->body.iseq.
iseqptr)->param.flags.has_kw &&
2599 !ISEQ_BODY(me->def->body.iseq.
iseqptr)->param.flags.has_kwrest) {
2600 ISEQ_BODY(me->def->body.iseq.
iseqptr)->param.flags.ruby2_keywords = 1;
2601 rb_clear_method_cache(module, name);
2604 rb_warn(
"Skipping set of ruby2_keywords flag for %"PRIsVALUE
" (method accepts keywords or method does not accept argument splat)", QUOTE_ID(name));
2607 case VM_METHOD_TYPE_BMETHOD: {
2608 VALUE procval = me->def->body.bmethod.proc;
2609 if (vm_block_handler_type(procval) == block_handler_type_proc) {
2610 procval = vm_proc_to_block_handler(VM_BH_TO_PROC(procval));
2613 if (vm_block_handler_type(procval) == block_handler_type_iseq) {
2615 const rb_iseq_t *iseq = rb_iseq_check(captured->code.iseq);
2616 if (ISEQ_BODY(iseq)->param.flags.has_rest &&
2617 !ISEQ_BODY(iseq)->param.flags.has_kw &&
2618 !ISEQ_BODY(iseq)->param.flags.has_kwrest) {
2619 ISEQ_BODY(iseq)->param.flags.ruby2_keywords = 1;
2620 rb_clear_method_cache(module, name);
2623 rb_warn(
"Skipping set of ruby2_keywords flag for %"PRIsVALUE
" (method accepts keywords or method does not accept argument splat)", QUOTE_ID(name));
2630 rb_warn(
"Skipping set of ruby2_keywords flag for %"PRIsVALUE
" (method not defined in Ruby)", QUOTE_ID(name));
2635 rb_warn(
"Skipping set of ruby2_keywords flag for %"PRIsVALUE
" (can only set in method defining module)", QUOTE_ID(name));
2654rb_mod_public_method(
int argc,
VALUE *argv,
VALUE obj)
2682rb_mod_private_method(
int argc,
VALUE *argv,
VALUE obj)
2706 return rb_mod_public(argc, argv, rb_top_main_class(
"public"));
2726 return rb_mod_private(argc, argv, rb_top_main_class(
"private"));
2737top_ruby2_keywords(
int argc,
VALUE *argv,
VALUE module)
2739 return rb_mod_ruby2_keywords(argc, argv, rb_top_main_class(
"ruby2_keywords"));
2785rb_mod_modfunc(
int argc,
VALUE *argv,
VALUE module)
2792 rb_raise(
rb_eTypeError,
"module_function must be called for modules");
2796 rb_scope_module_func_set();
2800 set_method_visibility(module, argc, argv, METHOD_VISI_PRIVATE);
2802 for (i = 0; i < argc; i++) {
2807 me = search_method(m,
id, 0);
2809 me = search_method(rb_cObject,
id, 0);
2811 if (UNDEFINED_METHOD_ENTRY_P(me)) {
2812 rb_print_undef(module,
id, METHOD_VISI_UNDEF);
2814 if (me->def->type != VM_METHOD_TYPE_ZSUPER) {
2826 return rb_ary_new_from_values(argc, argv);
2830#pragma push_macro("rb_method_basic_definition_p")
2831#undef rb_method_basic_definition_p
2837 if (!klass)
return TRUE;
2838 cme = rb_callable_method_entry(klass,
id);
2839 return (cme && METHOD_ENTRY_BASIC(cme)) ? TRUE : FALSE;
2842#pragma pop_macro("rb_method_basic_definition_p")
2849 VALUE passed_block_handler = vm_passed_block_handler(ec);
2850 VALUE result = rb_vm_call_kw(ec, obj,
id, argc, argv, cme, kw_splat);
2851 vm_passed_block_handler_set(ec, passed_block_handler);
2859 VALUE defined_class, args[2];
2860 const ID rtmid = idRespond_to_missing;
2863 if (!cme || METHOD_ENTRY_BASIC(cme))
return Qundef;
2866 return call_method_entry(ec, defined_class, obj, rtmid, cme, 2, args,
RB_NO_KEYWORDS);
2875 switch (method_boundp(klass,
id, pub|BOUND_RESPONDS)) {
2879 ret = basic_obj_respond_to_missing(ec, klass, obj,
ID2SYM(
id),
2881 return RTEST(ret) && !UNDEF_P(ret);
2890 VALUE defined_class;
2891 const ID resid = idRespond_to;
2894 if (!cme)
return -1;
2895 if (METHOD_ENTRY_BASIC(cme)) {
2908 rb_raise(rb_eArgError,
2909 "respond_to? must accept 1 or 2 arguments (requires %d)",
2918 "%"PRIsVALUE
"%c""respond_to?(:%"PRIsVALUE
") uses"
2919 " the deprecated method signature, which takes one parameter",
2920 (RCLASS_SINGLETON_P(klass) ? obj : klass),
2921 (RCLASS_SINGLETON_P(klass) ?
'.' :
'#'),
2923 if (!
NIL_P(location)) {
2928 RSTRING_PTR(path),
NUM2INT(line),
2929 "respond_to? is defined here");
2934 result = call_method_entry(ec, defined_class, obj, resid, cme, argc, args,
RB_NO_KEYWORDS);
2935 return RTEST(result);
2943 return rb_ec_obj_respond_to(ec, obj,
id, priv);
2950 int ret = vm_respond_to(ec, klass, obj,
id, priv);
2951 if (ret == -1) ret = basic_obj_respond_to(ec, obj,
id, !priv);
2983obj_respond_to(
int argc,
VALUE *argv,
VALUE obj)
2991 VALUE ret = basic_obj_respond_to_missing(ec,
CLASS_OF(obj), obj,
2993 if (UNDEF_P(ret)) ret =
Qfalse;
2996 return RBOOL(basic_obj_respond_to(ec, obj,
id, !
RTEST(priv)));
3021Init_eval_method(
void)
3043 "public", top_public, -1);
3045 "private", top_private, -1);
3047 "ruby2_keywords", top_ruby2_keywords, -1);
3050#define REPLICATE_METHOD(klass, id) do { \
3051 const rb_method_entry_t *me = rb_method_entry((klass), (id)); \
3052 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_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 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_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 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.
void rb_notimplement(void)
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_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.
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.
st_index_t rb_hash_start(st_index_t i)
Starts a series of hashing.
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.
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.
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 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.
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 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.