12#include "eval_intern.h"
14#include "internal/class.h"
15#include "internal/error.h"
16#include "internal/eval.h"
17#include "internal/gc.h"
18#include "internal/hash.h"
19#include "internal/object.h"
20#include "internal/proc.h"
21#include "internal/symbol.h"
22#include "internal/vm.h"
26#include "ractor_core.h"
47static VALUE rb_cSourceRange;
50static int method_arity(
VALUE);
51static int method_min_max_arity(
VALUE,
int *max);
64source_range_memsize(
const void *ptr)
69RUBY_REFERENCES(source_range_refs) = {
78 RUBY_REFS_LIST_PTR(source_range_refs),
93 data->start_line = location->beg_pos.lineno;
94 data->start_column = location->beg_pos.column;
95 data->end_line = location->end_pos.lineno;
96 data->end_column = location->end_pos.column;
109 VALUE path = rb_iseq_path(iseq);
110 VALUE absolute_path = rb_iseq_realpath(iseq);
115 return rb_source_range_new(path, absolute_path, &ISEQ_BODY(iseq)->location.code_location);
119source_range_data_get(
VALUE self)
134source_range_path(
VALUE self)
136 return source_range_data_get(self)->path;
147source_range_absolute_path(
VALUE self)
149 return source_range_data_get(self)->absolute_path;
159source_range_start_line(
VALUE self)
161 return INT2NUM(source_range_data_get(self)->start_line);
176source_range_start_column(
VALUE self)
178 return INT2NUM(source_range_data_get(self)->start_column);
197source_range_end_line(
VALUE self)
199 return INT2NUM(source_range_data_get(self)->end_line);
218source_range_end_column(
VALUE self)
220 return INT2NUM(source_range_data_get(self)->end_column);
231source_range_inspect(
VALUE self)
235 VALUE path =
NIL_P(data->absolute_path) ? data->path : data->absolute_path;
237 VM_ASSERT(!
NIL_P(path));
240 rb_str_catf(str,
":(%d,%d)-(%d,%d)>",
241 data->start_line, data->start_column,
242 data->end_line, data->end_column);
249#define IS_METHOD_PROC_IFUNC(ifunc) ((ifunc)->func == bmcall)
252block_mark_and_move(
struct rb_block *block)
254 switch (block->type) {
255 case block_type_iseq:
256 case block_type_ifunc:
259 rb_gc_mark_and_move(&captured->self);
260 rb_gc_mark_and_move(&captured->code.val);
262 rb_gc_mark_and_move((
VALUE *)&captured->ep[VM_ENV_DATA_INDEX_ENV]);
266 case block_type_symbol:
267 rb_gc_mark_and_move(&block->as.symbol);
269 case block_type_proc:
270 rb_gc_mark_and_move(&block->as.proc);
275static ID id_refinements_recipe;
278proc_mark_and_move(
void *ptr)
281 block_mark_and_move((
struct rb_block *)&proc->block);
284enum refinement_recipe_index {
285 REFINEMENT_RECIPE_BASE_CREF,
286 REFINEMENT_RECIPE_CREF,
287 REFINEMENT_RECIPE_SRC_ISEQ,
288 REFINEMENT_RECIPE_MODS
294 if (r1 == r2)
return true;
297 if (
RARRAY_AREF(r1, REFINEMENT_RECIPE_BASE_CREF) !=
298 RARRAY_AREF(r2, REFINEMENT_RECIPE_BASE_CREF))
return false;
300 RARRAY_AREF(r2, REFINEMENT_RECIPE_SRC_ISEQ))
return false;
301 for (
long i = REFINEMENT_RECIPE_MODS; i <
len; i++) {
308rb_proc_refinements_recipe(
VALUE procval)
311 GetProcPtr(procval, proc);
312 if (!proc->header.is_refined)
return Qnil;
313 return rb_ivar_get(procval, id_refinements_recipe);
317rb_proc_set_refinements_recipe(
VALUE procval,
VALUE recipe)
320 GetProcPtr(procval, proc);
321 rb_ivar_set(procval, id_refinements_recipe, recipe);
322 proc->header.is_refined = 1;
327 VALUE env[VM_ENV_DATA_SIZE + 1];
331proc_memsize(
const void *ptr)
334 switch (proc->block.type) {
335 case block_type_iseq:
336 case block_type_ifunc:
337 if (proc->block.as.captured.ep == ((
const cfunc_proc_t *)ptr)->env+1)
340 case block_type_symbol:
342 case block_type_proc:
345 VM_UNREACHABLE(proc_memsize);
357 0, 0, RUBY_TYPED_THREAD_SAFE_FREE | RUBY_TYPED_WB_PROTECTED
360#define proc_data_type ruby_proc_data_type
363rb_proc_alloc(
VALUE klass,
enum rb_block_type block_type)
366 switch (block_type) {
367 case block_type_symbol:
370 case block_type_proc:
373 case block_type_iseq:
374 case block_type_ifunc:
378 VM_UNREACHABLE(rb_proc_alloc);
382 return rb_data_typed_object_zalloc(klass, size, &proc_data_type);
388 return RBOOL(rb_typeddata_is_kind_of(proc, &proc_data_type));
393proc_clone(
VALUE self)
395 VALUE procval = rb_proc_dup_0(self);
396 return rb_obj_clone_setup(self, procval,
Qnil);
403 VALUE procval = rb_proc_dup_0(self);
404 return rb_obj_dup_setup(self, procval);
425enum refinement_memo_index {
426 REFINEMENT_MEMO_RECIPE,
427 REFINEMENT_MEMO_COPIED_ISEQ
430static VALUE refinement_memo_map;
433refinement_memo_get(
const rb_iseq_t *src_iseq)
437 if (refinement_memo_map) {
438 memo = rb_hash_lookup(refinement_memo_map, (
VALUE)src_iseq);
447 VM_ASSERT(ISEQ_BODY(src_iseq)->
type == ISEQ_TYPE_BLOCK);
455 RB_OBJ_SET_SHAREABLE(memo);
459 if (!refinement_memo_map) {
464 if (!refinement_memo_map) {
465 rb_vm_register_global_object(new_map);
466 refinement_memo_map = new_map;
468 rb_hash_aset(refinement_memo_map, (
VALUE)src_iseq, memo);
473refinement_recipe_modc(
VALUE recipe)
475 return NIL_P(recipe) ? 0 :
RARRAY_LEN(recipe) - REFINEMENT_RECIPE_MODS;
480 long argc,
const VALUE *mods)
482 long inherited = refinement_recipe_modc(src_recipe);
483 if (
RARRAY_AREF(recipe, REFINEMENT_RECIPE_BASE_CREF) != (
VALUE)base_cref)
return false;
484 if (refinement_recipe_modc(recipe) != inherited + argc)
return false;
485 for (
long i = 0; i < inherited; i++) {
486 if (
RARRAY_AREF(recipe, REFINEMENT_RECIPE_MODS + i) !=
487 RARRAY_AREF(src_recipe, REFINEMENT_RECIPE_MODS + i))
return false;
489 for (
long i = 0; i < argc; i++) {
490 if (
RARRAY_AREF(recipe, REFINEMENT_RECIPE_MODS + inherited + i) != mods[i])
return false;
498 long argc,
const VALUE *mods)
500 long inherited = refinement_recipe_modc(src_recipe);
505 for (
long i = 0; i < inherited; i++) {
508 for (
long i = 0; i < argc; i++) {
512 RB_OBJ_SET_SHAREABLE(recipe);
518 long argc,
const VALUE *mods)
520 VM_ASSERT(ISEQ_BODY(src_iseq)->
type == ISEQ_TYPE_BLOCK);
521 VALUE memo = refinement_memo_get(src_iseq);
524 if (!refinement_recipe_match(recipe, base_cref, src_recipe, argc, mods))
return Qnil;
529refinement_iseq_copy(
VALUE recipe)
533 VALUE memo = refinement_memo_get(src_iseq);
535 if (refinement_recipe_eq(
RARRAY_AREF(memo, REFINEMENT_MEMO_RECIPE), recipe)) {
538 if (ISEQ_BODY(copied_iseq)->param.flags.ruby2_keywords ==
539 ISEQ_BODY(src_iseq)->param.flags.ruby2_keywords) {
544 "Proc#refined re-copies the block because the ruby2_keywords flag changed after the copy was memoized"
550 "Proc#refined called with different modules for the same block disables memoization"
556 const rb_iseq_t *copied_iseq = rb_iseq_dup_with_independent_caches(src_iseq);
557 refinement_memo_set(src_iseq, recipe, copied_iseq);
561NOINLINE(
static void refinement_iseq_install(
VALUE procval,
rb_proc_t *proc));
566 const rb_iseq_t *copied_iseq = refinement_iseq_copy(recipe);
569 if (!
FL_TEST_RAW((
VALUE)proc->block.as.captured.code.iseq, ISEQ_REFINED_COPY)) {
578 if (UNLIKELY(!
FL_TEST_RAW((
VALUE)proc->block.as.captured.code.iseq, ISEQ_REFINED_COPY))) {
579 refinement_iseq_install(procval, proc);
584rb_proc_refinements_cref_for_call(
VALUE procval)
587 GetProcPtr(procval, proc);
588 if (!proc->header.is_refined)
return NULL;
590 refinement_iseq_ensure(procval, proc);
649proc_refined(
int argc,
VALUE *argv,
VALUE self)
652 GetProcPtr(self, src);
658 if (vm_block_type(&src->block) != block_type_iseq || src->header.is_from_method) {
659 rb_raise(rb_eArgError,
"can't apply refinements to a Proc without a Ruby block");
662 for (
int i = 0; i < argc; i++) {
666 const rb_iseq_t *src_iseq = src->block.as.captured.code.iseq;
667 VALUE src_recipe = rb_proc_refinements_recipe(self);
669 if (
NIL_P(src_recipe)) {
670 src_cref = base_cref = rb_vm_get_cref(src->block.as.captured.ep);
686 "Proc#refined on a Proc whose block was already copied by Proc#refined is not memoized"
691 refinement_memo_lookup(src_iseq, base_cref, src_recipe, argc, argv);
693 rb_cref_t *cref = rb_vm_cref_dup(src_cref);
696 for (
int i = 0; i < argc; i++) {
697 rb_using_module_recursive(cref, argv[i]);
702 VALUE refs = CREF_REFINEMENTS(cref);
705 RB_OBJ_SET_SHAREABLE(refs);
707 CREF_OMOD_SHARED_SET(cref);
708 CREF_REFINED_PROC_SET(cref);
709 recipe = refinement_recipe_new(base_cref, cref, src_iseq, src_recipe, argc, argv);
713 rb_iseq_dup_with_independent_caches(src_iseq) : src_iseq;
715 return rb_proc_dup_with_iseq_and_recipe(self, new_iseq, recipe);
825 GetProcPtr(procval, proc);
827 return RBOOL(proc->header.is_lambda);
833binding_free(
void *ptr)
835 RUBY_FREE_ENTER(
"binding");
837 RUBY_FREE_LEAVE(
"binding");
841binding_mark_and_move(
void *ptr)
845 block_mark_and_move((
struct rb_block *)&bind->block);
846 rb_gc_mark_and_move((
VALUE *)&bind->pathobj);
850binding_memsize(
const void *ptr)
858 binding_mark_and_move,
861 binding_mark_and_move,
863 0, 0, RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_THREAD_SAFE_FREE
867rb_binding_alloc(
VALUE klass)
873 rb_yjit_collect_binding_alloc();
879binding_copy(
VALUE self)
883 GetBindingPtr(self, src);
884 GetBindingPtr(bindval, dst);
885 rb_vm_block_copy(bindval, &dst->block, &src->block);
887 dst->first_lineno = src->first_lineno;
893binding_dup(
VALUE self)
895 return rb_obj_dup_setup(self, binding_copy(self));
900binding_clone(
VALUE self)
902 return rb_obj_clone_setup(self, binding_copy(self),
Qnil);
909 return rb_vm_make_binding(ec, ec->cfp);
957rb_f_binding(
VALUE self)
991bind_eval(
int argc,
VALUE *argv,
VALUE bindval)
995 rb_scan_args(argc, argv,
"12", &args[0], &args[2], &args[3]);
997 return rb_f_eval(argc+1, args,
Qnil );
1001get_local_variable_ptr(
const rb_env_t **envp,
ID lid,
bool search_outer)
1005 if (!VM_ENV_FLAGS(env->ep, VM_FRAME_FLAG_CFRAME)) {
1006 if (VM_ENV_FLAGS(env->ep, VM_ENV_FLAG_ISOLATED)) {
1012 VM_ASSERT(rb_obj_is_iseq((
VALUE)iseq));
1014 const unsigned int local_table_size = ISEQ_BODY(iseq)->local_table_size;
1015 for (
unsigned int i=0; i<local_table_size; i++) {
1016 if (ISEQ_BODY(iseq)->local_table[i] == lid) {
1017 if (ISEQ_BODY(iseq)->local_iseq == iseq &&
1018 ISEQ_BODY(iseq)->param.flags.has_block &&
1019 (
unsigned int)ISEQ_BODY(iseq)->param.block_start == i) {
1020 const VALUE *ep = env->ep;
1021 if (!VM_ENV_FLAGS(ep, VM_FRAME_FLAG_MODIFIED_BLOCK_PARAM)) {
1022 RB_OBJ_WRITE(env, &env->env[i], rb_vm_bh_to_procval(GET_EC(), VM_ENV_BLOCK_HANDLER(ep)));
1023 VM_ENV_FLAGS_SET(ep, VM_FRAME_FLAG_MODIFIED_BLOCK_PARAM);
1028 unsigned int last_lvar = env->env_size+VM_ENV_INDEX_LAST_LVAR
1030 return &env->env[last_lvar - (local_table_size - i)];
1038 }
while (search_outer && (env = rb_vm_env_prev_env(env)) != NULL);
1050check_local_id(
VALUE bindval,
volatile VALUE *pname)
1053 VALUE name = *pname;
1057 rb_name_err_raise(
"wrong local variable name '%1$s' for %2$s",
1062 if (!rb_is_local_name(name)) {
1063 rb_name_err_raise(
"wrong local variable name '%1$s' for %2$s",
1090bind_local_variables(
VALUE bindval)
1095 GetBindingPtr(bindval, bind);
1096 env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
1097 return rb_vm_env_local_variables(env);
1101rb_numparam_id_p(
ID id)
1103 return (tNUMPARAM_1 << ID_SCOPE_SHIFT) <=
id &&
id < ((tNUMPARAM_1 + 9) << ID_SCOPE_SHIFT);
1107rb_implicit_param_p(
ID id)
1109 return id == idItImplicit || rb_numparam_id_p(
id);
1130bind_local_variable_get(
VALUE bindval,
VALUE sym)
1132 ID lid = check_local_id(bindval, &sym);
1137 if (!lid)
goto undefined;
1138 if (rb_numparam_id_p(lid)) {
1139 rb_name_err_raise(
"numbered parameter '%1$s' is not a local variable",
1143 GetBindingPtr(bindval, bind);
1145 env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
1146 if ((ptr = get_local_variable_ptr(&env, lid, TRUE)) != NULL) {
1152 rb_name_err_raise(
"local variable '%1$s' is not defined for %2$s",
1185 ID lid = check_local_id(bindval, &sym);
1190 if (!lid) lid = rb_intern_str(sym);
1191 if (rb_numparam_id_p(lid)) {
1192 rb_name_err_raise(
"numbered parameter '%1$s' is not a local variable",
1196 GetBindingPtr(bindval, bind);
1197 env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
1198 if ((ptr = get_local_variable_ptr(&env, lid, TRUE)) == NULL) {
1200 ptr = rb_binding_add_dynavars(bindval, bind, 1, &lid);
1201 env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
1205 rb_yjit_collect_binding_set();
1231bind_local_variable_defined_p(
VALUE bindval,
VALUE sym)
1233 ID lid = check_local_id(bindval, &sym);
1238 if (rb_numparam_id_p(lid)) {
1239 rb_name_err_raise(
"numbered parameter '%1$s' is not a local variable",
1243 GetBindingPtr(bindval, bind);
1244 env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
1245 return RBOOL(get_local_variable_ptr(&env, lid, TRUE));
1269bind_implicit_parameters(
VALUE bindval)
1274 GetBindingPtr(bindval, bind);
1275 env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
1277 if (get_local_variable_ptr(&env, idItImplicit, FALSE)) {
1278 return rb_ary_new_from_args(1,
ID2SYM(idIt));
1281 env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
1282 return rb_vm_env_numbered_parameters(env);
1306bind_implicit_parameter_get(
VALUE bindval,
VALUE sym)
1308 ID lid = check_local_id(bindval, &sym);
1313 if (lid == idIt) lid = idItImplicit;
1315 if (!lid || !rb_implicit_param_p(lid)) {
1316 rb_name_err_raise(
"'%1$s' is not an implicit parameter",
1320 GetBindingPtr(bindval, bind);
1322 env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
1323 if ((ptr = get_local_variable_ptr(&env, lid, FALSE)) != NULL) {
1327 if (lid == idItImplicit) lid = idIt;
1328 rb_name_err_raise(
"implicit parameter '%1$s' is not defined for %2$s", bindval,
ID2SYM(lid));
1356bind_implicit_parameter_defined_p(
VALUE bindval,
VALUE sym)
1358 ID lid = check_local_id(bindval, &sym);
1362 if (lid == idIt) lid = idItImplicit;
1364 if (!lid || !rb_implicit_param_p(lid)) {
1365 rb_name_err_raise(
"'%1$s' is not an implicit parameter",
1369 GetBindingPtr(bindval, bind);
1370 env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
1371 return RBOOL(get_local_variable_ptr(&env, lid, FALSE));
1381bind_receiver(
VALUE bindval)
1384 GetBindingPtr(bindval, bind);
1385 return vm_block_self(&bind->block);
1395bind_location(
VALUE bindval)
1399 GetBindingPtr(bindval, bind);
1400 loc[0] = pathobj_path(bind->pathobj);
1401 loc[1] =
INT2FIX(bind->first_lineno);
1414 proc = &sproc->basic;
1415 vm_block_type_set(&proc->block, block_type_ifunc);
1417 *(
VALUE **)&proc->block.as.captured.ep = ep = sproc->env + VM_ENV_DATA_SIZE-1;
1418 ep[VM_ENV_DATA_INDEX_FLAGS] = VM_FRAME_MAGIC_IFUNC | VM_FRAME_FLAG_CFRAME | VM_ENV_FLAG_LOCAL | VM_ENV_FLAG_ESCAPED;
1419 ep[VM_ENV_DATA_INDEX_ME_CREF] =
Qfalse;
1420 ep[VM_ENV_DATA_INDEX_SPECVAL] = VM_BLOCK_HANDLER_NONE;
1421 ep[VM_ENV_DATA_INDEX_ENV] =
Qundef;
1424 RB_OBJ_WRITE(procval, &proc->block.as.captured.code.ifunc, ifunc);
1425 proc->header.is_lambda = TRUE;
1430rb_func_proc_dup(
VALUE src_obj)
1432 RUBY_ASSERT(rb_typeddata_is_instance_of(src_obj, &proc_data_type));
1435 GetProcPtr(src_obj, src_proc);
1436 RUBY_ASSERT(vm_block_type(&src_proc->block) == block_type_ifunc);
1441 memcpy(&proc->basic, src_proc,
sizeof(
rb_proc_t));
1445 const VALUE *src_ep = src_proc->block.as.captured.ep;
1446 VALUE *ep = *(
VALUE **)&proc->basic.block.as.captured.ep = proc->env + VM_ENV_DATA_SIZE - 1;
1447 ep[VM_ENV_DATA_INDEX_FLAGS] = src_ep[VM_ENV_DATA_INDEX_FLAGS];
1448 ep[VM_ENV_DATA_INDEX_ME_CREF] = src_ep[VM_ENV_DATA_INDEX_ME_CREF];
1449 ep[VM_ENV_DATA_INDEX_SPECVAL] = src_ep[VM_ENV_DATA_INDEX_SPECVAL];
1450 RB_OBJ_WRITE(proc_obj, &ep[VM_ENV_DATA_INDEX_ENV], src_ep[VM_ENV_DATA_INDEX_ENV]);
1458 VALUE procval = rb_proc_alloc(klass, block_type_symbol);
1460 GetProcPtr(procval, proc);
1462 vm_block_type_set(&proc->block, block_type_symbol);
1463 proc->header.is_lambda = TRUE;
1473 min_argc >= (
int)(1U << (
SIZEOF_VALUE * CHAR_BIT) / 2) ||
1476 rb_raise(
rb_eRangeError,
"minimum argument number out of range: %d",
1481 max_argc >= (
int)(1U << (
SIZEOF_VALUE * CHAR_BIT) / 2) ||
1484 rb_raise(
rb_eRangeError,
"maximum argument number out of range: %d",
1489 struct vm_ifunc *ifunc = IMEMO_NEW(
struct vm_ifunc, imemo_ifunc, (
VALUE)rb_vm_svar_lep(ec, ec->cfp));
1491 rb_gc_register_pinning_obj((
VALUE)ifunc);
1495 ifunc->argc.min = min_argc;
1496 ifunc->argc.max = max_argc;
1504 struct vm_ifunc *ifunc = rb_vm_ifunc_new(func, (
void *)val, min_argc, max_argc);
1508static const char proc_without_block[] =
"tried to create Proc object without a block";
1511proc_new(
VALUE klass, int8_t is_lambda)
1516 VALUE block_handler;
1518 if ((block_handler = rb_vm_frame_block_handler(cfp)) == VM_BLOCK_HANDLER_NONE) {
1519 rb_raise(rb_eArgError, proc_without_block);
1523 switch (vm_block_handler_type(block_handler)) {
1524 case block_handler_type_proc:
1525 procval = VM_BH_TO_PROC(block_handler);
1531 VALUE newprocval = rb_proc_dup(procval);
1532 RBASIC_SET_CLASS(newprocval, klass);
1537 case block_handler_type_symbol:
1539 sym_proc_new(klass, VM_BH_TO_SYMBOL(block_handler)) :
1540 rb_sym_to_proc(VM_BH_TO_SYMBOL(block_handler));
1543 case block_handler_type_ifunc:
1544 case block_handler_type_iseq:
1545 return rb_vm_make_proc_lambda(ec, VM_BH_TO_CAPT_BLOCK(block_handler), klass, is_lambda);
1547 VM_UNREACHABLE(proc_new);
1566rb_proc_s_new(
int argc,
VALUE *argv,
VALUE klass)
1568 VALUE block = proc_new(klass, FALSE);
1600f_lambda_filter_non_literal(
void)
1603 VALUE block_handler = rb_vm_frame_block_handler(cfp);
1605 if (block_handler == VM_BLOCK_HANDLER_NONE) {
1610 switch (vm_block_handler_type(block_handler)) {
1611 case block_handler_type_iseq:
1612 if (RUBY_VM_PREVIOUS_CONTROL_FRAME(cfp)->ep == VM_BH_TO_ISEQ_BLOCK(block_handler)->ep) {
1616 case block_handler_type_symbol:
1618 case block_handler_type_proc:
1623 case block_handler_type_ifunc:
1627 rb_raise(rb_eArgError,
"the lambda method requires a literal block");
1641 f_lambda_filter_non_literal();
1696proc_call(
int argc,
VALUE *argv,
VALUE procval)
1702#if SIZEOF_LONG > SIZEOF_INT
1704check_argc(
long argc)
1706 if (argc > INT_MAX || argc < 0) {
1707 rb_raise(rb_eArgError,
"too many arguments (%lu)",
1708 (
unsigned long)argc);
1713#define check_argc(argc) (argc)
1728 GetProcPtr(self, proc);
1729 vret = rb_vm_invoke_proc(GET_EC(), proc, argc, argv,
1730 kw_splat, VM_BLOCK_HANDLER_NONE,
1731 rb_proc_refinements_cref_for_call(self));
1744proc_to_block_handler(
VALUE procval)
1746 return NIL_P(procval) ? VM_BLOCK_HANDLER_NONE : procval;
1755 GetProcPtr(self, proc);
1756 vret = rb_vm_invoke_proc(ec, proc, argc, argv, kw_splat, proc_to_block_handler(passed_procval),
1757 rb_proc_refinements_cref_for_call(self));
1811proc_arity(
VALUE self)
1818rb_iseq_min_max_arity(
const rb_iseq_t *iseq,
int *max)
1820 *max = ISEQ_BODY(iseq)->param.flags.has_rest == FALSE ?
1821 ISEQ_BODY(iseq)->param.lead_num + ISEQ_BODY(iseq)->param.opt_num + ISEQ_BODY(iseq)->param.post_num +
1822 (ISEQ_BODY(iseq)->param.flags.has_kw == TRUE || ISEQ_BODY(iseq)->param.flags.has_kwrest == TRUE || ISEQ_BODY(iseq)->param.flags.forwardable == TRUE)
1824 return ISEQ_BODY(iseq)->param.lead_num + ISEQ_BODY(iseq)->param.post_num + (ISEQ_BODY(iseq)->param.flags.has_kw && ISEQ_BODY(iseq)->param.keyword->required_num > 0);
1828rb_vm_block_min_max_arity(
const struct rb_block *block,
int *max)
1831 switch (vm_block_type(block)) {
1832 case block_type_iseq:
1833 return rb_iseq_min_max_arity(rb_iseq_check(block->as.captured.code.iseq), max);
1834 case block_type_proc:
1835 block = vm_proc_block(block->as.proc);
1837 case block_type_ifunc:
1839 const struct vm_ifunc *ifunc = block->as.captured.code.ifunc;
1840 if (IS_METHOD_PROC_IFUNC(ifunc)) {
1842 return method_min_max_arity((
VALUE)ifunc->data, max);
1844 *max = ifunc->argc.max;
1845 return ifunc->argc.min;
1847 case block_type_symbol:
1862rb_proc_min_max_arity(
VALUE self,
int *max)
1865 GetProcPtr(self, proc);
1866 return rb_vm_block_min_max_arity(&proc->block, max);
1874 GetProcPtr(self, proc);
1875 min = rb_vm_block_min_max_arity(&proc->block, &max);
1882 switch (vm_block_handler_type(block_handler)) {
1883 case block_handler_type_iseq:
1884 block->type = block_type_iseq;
1885 block->as.captured = *VM_BH_TO_ISEQ_BLOCK(block_handler);
1887 case block_handler_type_ifunc:
1888 block->type = block_type_ifunc;
1889 block->as.captured = *VM_BH_TO_IFUNC_BLOCK(block_handler);
1891 case block_handler_type_symbol:
1892 block->type = block_type_symbol;
1893 block->as.symbol = VM_BH_TO_SYMBOL(block_handler);
1895 case block_handler_type_proc:
1896 block->type = block_type_proc;
1897 block->as.proc = VM_BH_TO_PROC(block_handler);
1902rb_block_pair_yield_optimizable(
void)
1907 VALUE block_handler = rb_vm_frame_block_handler(cfp);
1910 if (block_handler == VM_BLOCK_HANDLER_NONE) {
1911 rb_raise(rb_eArgError,
"no block given");
1914 block_setup(&block, block_handler);
1915 min = rb_vm_block_min_max_arity(&block, &max);
1917 switch (vm_block_type(&block)) {
1918 case block_type_symbol:
1921 case block_type_proc:
1923 VALUE procval = block_handler;
1925 GetProcPtr(procval, proc);
1926 if (proc->header.is_lambda)
return 0;
1927 if (min != max)
return 0;
1931 case block_type_ifunc:
1933 const struct vm_ifunc *ifunc = block.as.captured.code.ifunc;
1934 if (ifunc->flags & IFUNC_YIELD_OPTIMIZABLE)
return 1;
1948 VALUE block_handler = rb_vm_frame_block_handler(cfp);
1951 if (block_handler == VM_BLOCK_HANDLER_NONE) {
1952 rb_raise(rb_eArgError,
"no block given");
1955 block_setup(&block, block_handler);
1957 switch (vm_block_type(&block)) {
1958 case block_type_symbol:
1961 case block_type_proc:
1965 min = rb_vm_block_min_max_arity(&block, &max);
1971rb_block_min_max_arity(
int *max)
1975 VALUE block_handler = rb_vm_frame_block_handler(cfp);
1978 if (block_handler == VM_BLOCK_HANDLER_NONE) {
1979 rb_raise(rb_eArgError,
"no block given");
1982 block_setup(&block, block_handler);
1983 return rb_vm_block_min_max_arity(&block, max);
1987rb_proc_get_iseq(
VALUE self,
int *is_proc)
1992 GetProcPtr(self, proc);
1993 block = &proc->block;
1994 if (is_proc) *is_proc = !proc->header.is_lambda;
1996 switch (vm_block_type(block)) {
1997 case block_type_iseq:
1998 return rb_iseq_check(block->as.captured.code.iseq);
1999 case block_type_proc:
2000 return rb_proc_get_iseq(block->as.proc, is_proc);
2001 case block_type_ifunc:
2003 const struct vm_ifunc *ifunc = block->as.captured.code.ifunc;
2004 if (IS_METHOD_PROC_IFUNC(ifunc)) {
2006 if (is_proc) *is_proc = 0;
2007 return rb_method_iseq((
VALUE)ifunc->data);
2013 case block_type_symbol:
2017 VM_UNREACHABLE(rb_proc_get_iseq);
2050 const rb_proc_t *self_proc, *other_proc;
2051 const struct rb_block *self_block, *other_block;
2057 GetProcPtr(self, self_proc);
2058 GetProcPtr(other, other_proc);
2060 if (self_proc->header.is_from_method != other_proc->header.is_from_method ||
2061 self_proc->header.is_lambda != other_proc->header.is_lambda ||
2062 self_proc->header.is_refined != other_proc->header.is_refined) {
2066 self_block = &self_proc->block;
2067 other_block = &other_proc->block;
2069 if (vm_block_type(self_block) != vm_block_type(other_block)) {
2073 switch (vm_block_type(self_block)) {
2074 case block_type_iseq:
2075 if (self_block->as.captured.ep != \
2076 other_block->as.captured.ep) {
2081 if (self_proc->header.is_refined) {
2082 if (!refinement_recipe_eq(rb_proc_refinements_recipe(self),
2083 rb_proc_refinements_recipe(other))) {
2087 else if (self_block->as.captured.code.iseq != \
2088 other_block->as.captured.code.iseq) {
2092 case block_type_ifunc:
2093 if (self_block->as.captured.code.ifunc != \
2094 other_block->as.captured.code.ifunc) {
2105 case block_type_proc:
2106 if (self_block->as.proc != other_block->as.proc) {
2110 case block_type_symbol:
2111 if (self_block->as.symbol != other_block->as.symbol) {
2125 if (!iseq)
return Qnil;
2126 rb_iseq_check(iseq);
2127 loc[0] = rb_iseq_path(iseq);
2128 loc[1] =
RB_INT2NUM(ISEQ_BODY(iseq)->location.first_lineno);
2136 return iseq_location(iseq);
2148rb_proc_location(
VALUE self)
2150 return iseq_location(rb_proc_get_iseq(self, 0));
2167rb_proc_source_range(
VALUE self)
2169 return source_range_new(rb_proc_get_iseq(self, 0));
2173rb_unnamed_parameters(
int arity)
2176 int n = (arity < 0) ? ~arity : arity;
2210rb_proc_parameters(
int argc,
VALUE *argv,
VALUE self)
2212 static ID keyword_ids[1];
2218 iseq = rb_proc_get_iseq(self, &is_proc);
2220 if (!keyword_ids[0]) {
2221 CONST_ID(keyword_ids[0],
"lambda");
2228 if (!
NIL_P(lambda)) {
2229 is_proc = !
RTEST(lambda);
2236 return rb_iseq_parameters(iseq, is_proc);
2240iseq_location_hash(st_index_t hash,
const rb_iseq_t *iseq)
2245 hash = rb_st_hash_uint(hash, (st_index_t)loc->code_location.beg_pos.lineno);
2246 hash = rb_st_hash_uint(hash, (st_index_t)loc->code_location.beg_pos.column);
2247 hash = rb_st_hash_uint(hash, (st_index_t)loc->code_location.end_pos.lineno);
2248 hash = rb_st_hash_uint(hash, (st_index_t)loc->code_location.end_pos.column);
2254rb_hash_proc(st_index_t hash,
VALUE prc)
2257 GetProcPtr(prc, proc);
2259 switch (vm_block_type(&proc->block)) {
2260 case block_type_iseq:
2261 if (proc->header.is_refined) {
2264 VALUE recipe = rb_proc_refinements_recipe(prc);
2266 hash = rb_st_hash_uint(hash, (st_index_t)
RARRAY_AREF(recipe, REFINEMENT_RECIPE_BASE_CREF));
2267 hash = iseq_location_hash(hash, (
const rb_iseq_t *)
RARRAY_AREF(recipe, REFINEMENT_RECIPE_SRC_ISEQ));
2268 for (
long i = REFINEMENT_RECIPE_MODS; i <
len; i++) {
2269 hash = rb_st_hash_uint(hash, (st_index_t)
RARRAY_AREF(recipe, i));
2273 hash = iseq_location_hash(hash, proc->block.as.captured.code.iseq);
2276 case block_type_ifunc:
2277 hash = rb_st_hash_uint(hash, (st_index_t)proc->block.as.captured.code.ifunc->func);
2278 hash = rb_st_hash_uint(hash, (st_index_t)proc->block.as.captured.code.ifunc->data);
2280 case block_type_symbol:
2281 hash = rb_st_hash_uint(hash, rb_any_hash(proc->block.as.symbol));
2283 case block_type_proc:
2284 hash = rb_st_hash_uint(hash, rb_any_hash(proc->block.as.proc));
2287 rb_bug(
"rb_hash_proc: unknown block type %d", vm_block_type(&proc->block));
2294 if (vm_block_type(&proc->block) == block_type_iseq) {
2295 hash =
rb_hash_uint(hash, (st_index_t)proc->block.as.captured.ep);
2318rb_sym_to_proc(
VALUE sym)
2320 enum {SYM_PROC_CACHE_SIZE = 67};
2322 if (rb_ractor_main_p()) {
2323 if (!sym_proc_cache) {
2329 long index = (
id % SYM_PROC_CACHE_SIZE);
2331 if (
RTEST(procval)) {
2333 GetProcPtr(procval, proc);
2335 if (proc->block.as.symbol == sym) {
2340 procval = sym_proc_new(
rb_cProc, sym);
2346 return sym_proc_new(
rb_cProc, sym);
2360proc_hash(
VALUE self)
2364 hash = rb_hash_proc(hash, self);
2370rb_block_to_s(
VALUE self,
const struct rb_block *block,
const char *additional_info)
2373 VALUE str = rb_sprintf(
"#<%"PRIsVALUE
":", cname);
2376 switch (vm_block_type(block)) {
2377 case block_type_proc:
2378 block = vm_proc_block(block->as.proc);
2380 case block_type_iseq:
2382 const rb_iseq_t *iseq = rb_iseq_check(block->as.captured.code.iseq);
2383 rb_str_catf(str,
"%p %"PRIsVALUE
":%d", (
void *)self,
2385 ISEQ_BODY(iseq)->location.first_lineno);
2388 case block_type_symbol:
2389 rb_str_catf(str,
"%p(&%+"PRIsVALUE
")", (
void *)self, block->as.symbol);
2391 case block_type_ifunc:
2392 rb_str_catf(str,
"%p", (
void *)block->as.captured.code.ifunc);
2410proc_to_s(
VALUE self)
2413 GetProcPtr(self, proc);
2414 return rb_block_to_s(self, &proc->block, proc->header.is_lambda ?
" (lambda)" : NULL);
2426proc_to_proc(
VALUE self)
2432bm_mark_and_move(
void *ptr)
2434 struct METHOD *data = ptr;
2435 rb_gc_mark_and_move((
VALUE *)&data->recv);
2436 rb_gc_mark_and_move((
VALUE *)&data->klass);
2437 rb_gc_mark_and_move((
VALUE *)&data->iclass);
2438 rb_gc_mark_and_move((
VALUE *)&data->owner);
2450 0, 0, RUBY_TYPED_THREAD_SAFE_FREE | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_EMBEDDABLE | RUBY_TYPED_FROZEN_SHAREABLE_NO_REC
2456 return RBOOL(rb_typeddata_is_kind_of(m, &method_data_type));
2463 ID rmiss = idRespond_to_missing;
2465 if (UNDEF_P(obj))
return 0;
2484 def->type = VM_METHOD_TYPE_MISSING;
2485 def->original_id = id;
2487 me = rb_method_entry_create(
id, klass, METHOD_VISI_UNDEF, def);
2499 if (!respond_to_missing_p(klass, obj, vid, scope))
return Qfalse;
2500 return mnew_missing(klass, obj,
SYM2ID(vid), mclass);
2512 rb_method_visibility_t visi = METHOD_VISI_UNDEF;
2515 if (UNDEFINED_METHOD_ENTRY_P(me)) {
2516 if (respond_to_missing_p(klass, obj,
ID2SYM(
id), scope)) {
2517 return mnew_missing(klass, obj,
id, mclass);
2519 if (!error)
return Qnil;
2520 rb_print_undef(klass,
id, METHOD_VISI_UNDEF);
2522 if (visi == METHOD_VISI_UNDEF) {
2523 visi = METHOD_ENTRY_VISI(me);
2525 if (scope && (visi != METHOD_VISI_PUBLIC)) {
2526 if (!error)
return Qnil;
2527 rb_print_inaccessible(klass,
id, visi);
2530 if (me->def->type == VM_METHOD_TYPE_ZSUPER ||
2531 (me->def->type == VM_METHOD_TYPE_CFUNC && me->def->body.cfunc.func == (rb_cfunc_t)rb_zsuper_to_super)) {
2532 if (me->def->type == VM_METHOD_TYPE_ZSUPER && me->defined_class) {
2534 id = me->def->original_id;
2535 me = (
rb_method_entry_t *)rb_callable_method_entry_with_refinements(klass,
id, &iclass);
2539 id = me->def->original_id;
2540 me = rb_method_entry_without_refinements(klass,
id, &iclass);
2556 RB_OBJ_WRITE(method, &data->owner, original_me->owner);
2566 return mnew_internal(me, klass, iclass, obj,
id, mclass, scope, TRUE);
2576 me = (
rb_method_entry_t *)rb_callable_method_entry_with_refinements(klass,
id, &iclass);
2577 return mnew_from_me(me, klass, iclass, obj,
id, mclass, scope);
2581mnew_unbound(
VALUE klass,
ID id,
VALUE mclass,
int scope)
2586 me = rb_method_entry_with_refinements(klass,
id, &iclass);
2587 return mnew_from_me(me, klass, iclass,
Qundef,
id, mclass, scope);
2593 VALUE defined_class = me->defined_class;
2594 return defined_class ? defined_class : me->owner;
2638 VALUE klass1, klass2;
2646 m1 = (
struct METHOD *)RTYPEDDATA_GET_DATA(method);
2647 m2 = (
struct METHOD *)RTYPEDDATA_GET_DATA(other);
2649 klass1 = method_entry_defined_class(m1->me);
2650 klass2 = method_entry_defined_class(m2->me);
2654 if (!rb_method_entry_eq(m1->me, m2->me) ||
2656 m1->klass != m2->klass ||
2657 m1->recv != m2->recv) {
2678#define unbound_method_eq method_eq
2690method_hash(
VALUE method)
2697 hash = rb_hash_method_entry(hash, m->me);
2713method_unbind(
VALUE obj)
2716 struct METHOD *orig, *data;
2720 &method_data_type, data);
2725 RB_OBJ_WRITE(method, &data->me, rb_method_entry_clone(orig->me));
2740method_receiver(
VALUE obj)
2756method_name(
VALUE obj)
2761 return ID2SYM(data->me->called_id);
2778method_original_name(
VALUE obj)
2783 return ID2SYM(data->me->def->original_id);
2805method_owner(
VALUE obj)
2819method_box(
VALUE obj)
2825 box = data->me->def->box;
2826 if (!box)
return Qnil;
2827 if (box->box_object)
return box->box_object;
2828 rb_bug(
"Unexpected box on the method definition: %p", (
void*) box);
2835#define MSG(s) rb_fstring_lit("undefined method '%1$s' for"s" '%2$s'")
2839 if (RCLASS_SINGLETON_P(c)) {
2840 VALUE obj = RCLASS_ATTACHED_OBJECT(klass);
2857 rb_name_err_raise_str(s, c, str);
2869 VALUE m = mnew_missing_by_name(klass, obj, &vid, scope, mclass);
2871 rb_method_name_error(klass, vid);
2873 return mnew_callable(klass, obj,
id, mclass, scope);
2918 return obj_method(obj, vid, FALSE);
2931 return obj_method(obj, vid, TRUE);
2935rb_obj_singleton_method_lookup(
VALUE arg)
2942rb_obj_singleton_method_lookup_fail(
VALUE arg1,
VALUE arg2)
2979 NIL_P(klass = RCLASS_ORIGIN(sc)) ||
2980 !
NIL_P(rb_special_singleton_class(obj))) {
2989 VALUE args[2] = {obj, vid};
2990 VALUE ruby_method =
rb_rescue(rb_obj_singleton_method_lookup, (
VALUE)args, rb_obj_singleton_method_lookup_fail,
Qfalse);
2992 struct METHOD *method = (
struct METHOD *)RTYPEDDATA_GET_DATA(ruby_method);
2995 VALUE method_class = method->iclass;
2999 if (lookup_class == method_class) {
3003 }
while (lookup_class && lookup_class != stop_class);
3009 rb_name_err_raise(
"undefined singleton method '%1$s' for '%2$s'",
3050 rb_method_name_error(mod, vid);
3063rb_mod_public_instance_method(
VALUE mod,
VALUE vid)
3067 rb_method_name_error(mod, vid);
3078 int is_method = FALSE;
3097 "wrong argument type %s (expected Proc/Method/UnboundMethod)",
3104 struct METHOD *method = (
struct METHOD *)RTYPEDDATA_GET_DATA(body);
3107 if (RCLASS_SINGLETON_P(method->me->owner)) {
3109 "can't bind singleton method to a different class");
3113 "bind argument must be a subclass of % "PRIsVALUE,
3117 rb_method_entry_set(mod,
id, method->me, scope_visi->method_visi);
3118 if (scope_visi->module_func) {
3125 GetProcPtr(body, body_proc);
3128 if (body_proc->header.is_refined) {
3129 rb_raise(rb_eArgError,
3130 "can't define a method from a Proc with refinements");
3132 VALUE procval = rb_proc_dup(body);
3133 if (vm_proc_iseq(procval) != NULL) {
3135 GetProcPtr(procval, proc);
3136 proc->header.is_lambda = TRUE;
3137 proc->header.is_from_method = TRUE;
3139 rb_add_method(mod,
id, VM_METHOD_TYPE_BMETHOD, (
void *)procval, scope_visi->method_visi);
3140 if (scope_visi->module_func) {
3141 rb_add_method(
rb_singleton_class(mod),
id, VM_METHOD_TYPE_BMETHOD, (
void *)body, METHOD_VISI_PUBLIC);
3189rb_mod_define_method(
int argc,
VALUE *argv,
VALUE mod)
3191 const rb_cref_t *cref = rb_vm_cref_in_context(mod, mod);
3196 scope_visi = CREF_SCOPE_VISI(cref);
3199 return rb_mod_define_method_with_visibility(argc, argv, mod, scope_visi);
3234rb_obj_define_method(
int argc,
VALUE *argv,
VALUE obj)
3239 return rb_mod_define_method_with_visibility(argc, argv, klass, &scope_visi);
3250top_define_method(
int argc,
VALUE *argv,
VALUE obj)
3252 return rb_mod_define_method(argc, argv, rb_top_main_class(
"define_method"));
3273method_clone(
VALUE self)
3276 struct METHOD *orig, *data;
3280 rb_obj_clone_setup(self, clone,
Qnil);
3285 RB_OBJ_WRITE(clone, &data->me, rb_method_entry_clone(orig->me));
3291method_dup(
VALUE self)
3294 struct METHOD *orig, *data;
3298 rb_obj_dup_setup(self, clone);
3303 RB_OBJ_WRITE(clone, &data->me, rb_method_entry_clone(orig->me));
3332rb_method_call_pass_called_kw(
int argc,
const VALUE *argv,
VALUE method)
3352method_callable_method_entry(
const struct METHOD *data)
3354 if (data->me->defined_class == 0) rb_bug(
"method_callable_method_entry: not callable.");
3360 int argc,
const VALUE *argv,
VALUE passed_procval,
int kw_splat)
3362 vm_passed_block_handler_set(ec, proc_to_block_handler(passed_procval));
3363 return rb_vm_call_kw(ec, data->recv, data->me->called_id, argc, argv,
3364 method_callable_method_entry(data), kw_splat);
3370 const struct METHOD *data;
3374 if (UNDEF_P(data->recv)) {
3375 rb_raise(
rb_eTypeError,
"can't call unbound method; bind first");
3377 return call_method_data(ec, data, argc, argv, passed_procval, kw_splat);
3444 VALUE methclass = data->owner;
3445 VALUE iclass = data->me->defined_class;
3449 VALUE refined_class = rb_refinement_module_get_refined_class(methclass);
3450 if (!
NIL_P(refined_class)) methclass = refined_class;
3453 if (RCLASS_SINGLETON_P(methclass)) {
3455 "singleton method called for a different object");
3458 rb_raise(
rb_eTypeError,
"bind argument must be an instance of % "PRIsVALUE,
3465 me = rb_method_entry_clone(data->me);
3475 me = rb_method_entry_clone(me);
3477 VALUE ic = rb_class_search_ancestor(klass, me->owner);
3483 klass = rb_include_class_new(methclass, klass);
3485 me = (
const rb_method_entry_t *) rb_method_entry_complement_defined_class(me, me->called_id, klass);
3488 *methclass_out = methclass;
3490 *iclass_out = iclass;
3532 VALUE methclass, klass, iclass;
3534 const struct METHOD *data;
3536 convert_umethod_to_method_components(data, recv, &methclass, &klass, &iclass, &me,
true);
3558umethod_bind_call(
int argc,
VALUE *argv,
VALUE method)
3561 VALUE recv = argv[0];
3568 const struct METHOD *data;
3573 vm_passed_block_handler_set(ec, proc_to_block_handler(passed_procval));
3577 VALUE methclass, klass, iclass;
3579 convert_umethod_to_method_components(data, recv, &methclass, &klass, &iclass, &me,
false);
3580 struct METHOD bound = { recv, klass, 0, methclass, me };
3595 if (!def)
return *max = 0;
3596 switch (def->type) {
3597 case VM_METHOD_TYPE_CFUNC:
3598 if (def->body.cfunc.argc < 0) {
3602 return *max = check_argc(def->body.cfunc.argc);
3603 case VM_METHOD_TYPE_ZSUPER:
3606 case VM_METHOD_TYPE_ATTRSET:
3608 case VM_METHOD_TYPE_IVAR:
3610 case VM_METHOD_TYPE_ALIAS:
3611 def = def->body.alias.original_me->def;
3613 case VM_METHOD_TYPE_BMETHOD:
3614 return rb_proc_min_max_arity(def->body.bmethod.proc, max);
3615 case VM_METHOD_TYPE_ISEQ:
3616 return rb_iseq_min_max_arity(rb_iseq_check(def->body.iseq.
iseqptr), max);
3617 case VM_METHOD_TYPE_UNDEF:
3618 case VM_METHOD_TYPE_NOTIMPLEMENTED:
3620 case VM_METHOD_TYPE_MISSING:
3623 case VM_METHOD_TYPE_OPTIMIZED: {
3624 switch (def->body.optimized.type) {
3625 case OPTIMIZED_METHOD_TYPE_SEND:
3628 case OPTIMIZED_METHOD_TYPE_CALL:
3631 case OPTIMIZED_METHOD_TYPE_BLOCK_CALL:
3634 case OPTIMIZED_METHOD_TYPE_STRUCT_AREF:
3637 case OPTIMIZED_METHOD_TYPE_STRUCT_ASET:
3645 case VM_METHOD_TYPE_REFINED:
3649 rb_bug(
"method_def_min_max_arity: invalid method entry type (%d)", def->type);
3656 int max, min = method_def_min_max_arity(def, &max);
3657 return min == max ? min : -min-1;
3663 return method_def_arity(me->def);
3710method_arity_m(
VALUE method)
3712 int n = method_arity(method);
3717method_arity(
VALUE method)
3722 return rb_method_entry_arity(data->me);
3726original_method_entry(
VALUE mod,
ID id)
3730 while ((me = rb_method_entry(mod,
id)) != 0) {
3733 if (def->type != VM_METHOD_TYPE_ZSUPER &&
3734 (def->type != VM_METHOD_TYPE_CFUNC ||
3735 def->body.cfunc.func != (rb_cfunc_t)rb_zsuper_to_super))
break;
3738 id = def->original_id;
3744method_min_max_arity(
VALUE method,
int *max)
3746 const struct METHOD *data;
3749 return method_def_min_max_arity(data->me->def, max);
3757 return rb_method_entry_arity(me);
3767rb_callable_receiver(
VALUE callable)
3770 VALUE binding = proc_binding(callable);
3771 return rb_funcall(binding, rb_intern(
"receiver"), 0);
3774 return method_receiver(callable);
3782rb_method_def(
VALUE method)
3784 const struct METHOD *data;
3787 return data->me->def;
3793 switch (def->type) {
3794 case VM_METHOD_TYPE_ISEQ:
3795 return rb_iseq_check(def->body.iseq.
iseqptr);
3796 case VM_METHOD_TYPE_BMETHOD:
3797 return rb_proc_get_iseq(def->body.bmethod.proc, 0);
3798 case VM_METHOD_TYPE_ALIAS:
3799 return method_def_iseq(def->body.alias.original_me->def);
3800 case VM_METHOD_TYPE_CFUNC:
3801 case VM_METHOD_TYPE_ATTRSET:
3802 case VM_METHOD_TYPE_IVAR:
3803 case VM_METHOD_TYPE_ZSUPER:
3804 case VM_METHOD_TYPE_UNDEF:
3805 case VM_METHOD_TYPE_NOTIMPLEMENTED:
3806 case VM_METHOD_TYPE_OPTIMIZED:
3807 case VM_METHOD_TYPE_MISSING:
3808 case VM_METHOD_TYPE_REFINED:
3815rb_method_iseq(
VALUE method)
3817 return method_def_iseq(rb_method_def(method));
3821method_cref(
VALUE method)
3826 switch (def->type) {
3827 case VM_METHOD_TYPE_ISEQ:
3828 return def->body.iseq.
cref;
3829 case VM_METHOD_TYPE_ALIAS:
3830 def = def->body.alias.original_me->def;
3840 if (def->type == VM_METHOD_TYPE_ATTRSET || def->type == VM_METHOD_TYPE_IVAR) {
3841 if (!def->body.attr.location)
3845 return iseq_location(method_def_iseq(def));
3851 if (!me)
return Qnil;
3852 return method_def_location(me->def);
3872rb_method_location(
VALUE method)
3874 return method_def_location(rb_method_def(method));
3880 return source_range_new(method_def_iseq(def));
3897rb_method_source_range(
VALUE method)
3899 return method_def_source_range(rb_method_def(method));
3903vm_proc_method_def(
VALUE procval)
3909 GetProcPtr(procval, proc);
3910 block = &proc->block;
3912 if (vm_block_type(block) == block_type_ifunc &&
3913 IS_METHOD_PROC_IFUNC(ifunc = block->as.captured.code.ifunc)) {
3914 return rb_method_def((
VALUE)ifunc->data);
3927 switch (def->type) {
3928 case VM_METHOD_TYPE_ISEQ:
3929 iseq = method_def_iseq(def);
3930 return rb_iseq_parameters(iseq, 0);
3931 case VM_METHOD_TYPE_BMETHOD:
3932 if ((iseq = method_def_iseq(def)) != NULL) {
3933 return rb_iseq_parameters(iseq, 0);
3935 else if ((bmethod_def = vm_proc_method_def(def->body.bmethod.proc)) != NULL) {
3936 return method_def_parameters(bmethod_def);
3940 case VM_METHOD_TYPE_ALIAS:
3941 return method_def_parameters(def->body.alias.original_me->def);
3943 case VM_METHOD_TYPE_OPTIMIZED:
3944 if (def->body.optimized.type == OPTIMIZED_METHOD_TYPE_STRUCT_ASET) {
3945 VALUE param = rb_ary_new_from_args(2,
ID2SYM(rb_intern(
"req")),
ID2SYM(rb_intern(
"_")));
3946 return rb_ary_new_from_args(1, param);
3950 case VM_METHOD_TYPE_CFUNC:
3951 case VM_METHOD_TYPE_ATTRSET:
3952 case VM_METHOD_TYPE_IVAR:
3953 case VM_METHOD_TYPE_ZSUPER:
3954 case VM_METHOD_TYPE_UNDEF:
3955 case VM_METHOD_TYPE_NOTIMPLEMENTED:
3956 case VM_METHOD_TYPE_MISSING:
3957 case VM_METHOD_TYPE_REFINED:
3961 return rb_unnamed_parameters(method_def_arity(def));
3985rb_method_parameters(
VALUE method)
3987 return method_def_parameters(rb_method_def(method));
3991append_param_name(
VALUE str,
VALUE name,
const char *unnamed)
4036method_inspect(
VALUE method)
4040 const char *sharp =
"#";
4042 VALUE defined_class;
4045 str = rb_sprintf(
"#<% "PRIsVALUE
": ",
rb_obj_class(method));
4047 mklass = data->iclass;
4048 if (!mklass) mklass = data->klass;
4058 if (data->me->def->type == VM_METHOD_TYPE_ALIAS) {
4059 defined_class = data->me->def->body.alias.original_me->owner;
4062 defined_class = method_entry_defined_class(data->me);
4069 if (UNDEF_P(data->recv)) {
4073 else if (RCLASS_SINGLETON_P(mklass)) {
4074 VALUE v = RCLASS_ATTACHED_OBJECT(mklass);
4076 if (UNDEF_P(data->recv)) {
4079 else if (data->recv == v) {
4092 mklass = data->klass;
4093 if (RCLASS_SINGLETON_P(mklass)) {
4094 VALUE v = RCLASS_ATTACHED_OBJECT(mklass);
4102 if (defined_class != mklass) {
4103 rb_str_catf(str,
"(% "PRIsVALUE
")", defined_class);
4108 if (data->me->called_id != data->me->def->original_id) {
4109 rb_str_catf(str,
"(%"PRIsVALUE
")",
4110 rb_id2str(data->me->def->original_id));
4112 if (data->me->def->type == VM_METHOD_TYPE_NOTIMPLEMENTED) {
4118 VALUE params = rb_method_parameters(method);
4119 VALUE pair, name, kind;
4125 const VALUE keyrest =
ID2SYM(rb_intern(
"keyrest"));
4128 const VALUE noblock =
ID2SYM(rb_intern(
"noblock"));
4143 for (
int i = 0; i <
RARRAY_LEN(params); i++) {
4154 append_param_name(str, name,
"_");
4156 else if (kind == opt) {
4159 else if (kind == keyreq) {
4162 else if (kind == key) {
4165 else if (kind == rest) {
4167 if (name !=
ID2SYM(
'*')) {
4168 append_param_name(str, name, NULL);
4171 else if (kind == keyrest) {
4172 if (name !=
ID2SYM(idPow)) {
4182 else if (kind == block) {
4183 if (name ==
ID2SYM(
'&')) {
4195 else if (kind == nokey) {
4198 else if (kind == noblock) {
4210 VALUE loc = rb_method_location(method);
4212 rb_str_catf(str,
" %"PRIsVALUE
":%"PRIsVALUE,
4245method_to_proc(
VALUE method)
4259 procval =
rb_block_call(rb_mRubyVMFrozenCore, idLambda, 0, 0, bmcall, method);
4260 GetProcPtr(procval, proc);
4261 proc->header.is_from_method = 1;
4265extern VALUE rb_find_defined_class_by_owner(
VALUE current_class,
VALUE target_owner);
4278method_super_method(
VALUE method)
4280 const struct METHOD *data;
4281 VALUE super_class, iclass;
4286 iclass = data->iclass;
4287 if (!iclass)
return Qnil;
4288 if (data->me->def->type == VM_METHOD_TYPE_ALIAS && data->me->defined_class) {
4289 super_class =
RCLASS_SUPER(rb_find_defined_class_by_owner(data->me->defined_class,
4290 data->me->def->body.alias.original_me->owner));
4291 mid = data->me->def->body.alias.original_me->def->original_id;
4294 VALUE klass = iclass;
4295 if (RICLASS_FOR_REFINEMENT_P(klass)) {
4297 klass =
RBASIC(klass)->klass;
4300 mid = data->me->def->original_id;
4302 if (!super_class)
return Qnil;
4312 switch (data->me->def->type) {
4313 case VM_METHOD_TYPE_ISEQ:
4314 cref = data->me->def->body.iseq.
cref;
4316 case VM_METHOD_TYPE_BMETHOD: {
4318 GetProcPtr(data->me->def->body.bmethod.proc, proc);
4319 const struct rb_block *block = &proc->block;
4320 if (vm_block_type(block) == block_type_iseq)
4321 cref = rb_vm_get_cref(block->as.captured.ep);
4327 VALUE klass = super_class;
4332 if (cme->def->type != VM_METHOD_TYPE_REFINED) {
4334 iclass = cme->defined_class;
4340 for (c = cref; c; c = CREF_NEXT(c)) {
4341 VALUE refs = CREF_REFINEMENTS(c);
4342 if (
NIL_P(refs))
continue;
4343 VALUE r = rb_hash_lookup(refs, cme->owner);
4344 if (
NIL_P(r))
continue;
4346 if (!ref_cme)
break;
4347 if (ref_cme->def->type == VM_METHOD_TYPE_REFINED)
continue;
4348 if (skip_def && rb_method_definition_eq(ref_cme->def, skip_def))
continue;
4350 iclass = ref_cme->defined_class;
4359 iclass = orig_me->defined_class ? orig_me->defined_class : cme->defined_class;
4364 if (!me)
return Qnil;
4365 return mnew_internal(me, me->owner, iclass, data->recv, mid,
rb_obj_class(method), FALSE, FALSE);
4375localjump_xvalue(
VALUE exc)
4389localjump_reason(
VALUE exc)
4394rb_cref_t *rb_vm_cref_new_toplevel(
void);
4403 VM_ASSERT(env->ep > env->env);
4404 VM_ASSERT(VM_ENV_ESCAPED_P(env->ep));
4407 cref = rb_vm_cref_new_toplevel();
4411 new_ep = &new_body[env->ep - env->env];
4412 new_env = vm_env_new(new_ep, new_body, env->env_size, env->iseq);
4419 new_ep[VM_ENV_DATA_INDEX_ENV] = (
VALUE)new_env;
4421 VM_ASSERT(VM_ENV_ESCAPED_P(new_ep));
4439proc_binding(
VALUE self)
4448 GetProcPtr(self, proc);
4449 block = &proc->block;
4451 if (proc->header.is_isolated) rb_raise(rb_eArgError,
"Can't create Binding from isolated Proc");
4454 switch (vm_block_type(block)) {
4455 case block_type_iseq:
4456 iseq = block->as.captured.code.iseq;
4457 binding_self = block->as.captured.self;
4458 env = VM_ENV_ENVVAL_PTR(block->as.captured.ep);
4460 case block_type_proc:
4461 GetProcPtr(block->as.proc, proc);
4462 block = &proc->block;
4464 case block_type_ifunc:
4466 const struct vm_ifunc *ifunc = block->as.captured.code.ifunc;
4467 if (IS_METHOD_PROC_IFUNC(ifunc)) {
4469 VALUE name = rb_fstring_lit(
"<empty_iseq>");
4471 binding_self = method_receiver(method);
4472 iseq = rb_method_iseq(method);
4473 env = VM_ENV_ENVVAL_PTR(block->as.captured.ep);
4474 env = env_clone(env, method_cref(method));
4476 empty = rb_iseq_new(
Qnil, name, name,
Qnil, 0, ISEQ_TYPE_TOP);
4482 case block_type_symbol:
4483 rb_raise(rb_eArgError,
"Can't create Binding from C level Proc");
4488 GetBindingPtr(bindval, bind);
4489 RB_OBJ_WRITE(bindval, &bind->block.as.captured.self, binding_self);
4490 RB_OBJ_WRITE(bindval, &bind->block.as.captured.code.iseq, env->iseq);
4491 rb_vm_block_ep_update(bindval, &bind->block, env->ep);
4495 rb_iseq_check(iseq);
4496 RB_OBJ_WRITE(bindval, &bind->pathobj, ISEQ_BODY(iseq)->location.pathobj);
4497 bind->first_lineno = ISEQ_BODY(iseq)->location.first_lineno;
4501 rb_iseq_pathobj_new(rb_fstring_lit(
"(binding)"),
Qnil));
4502 bind->first_lineno = 1;
4517 GetProcPtr(proc, procp);
4518 is_lambda = procp->header.is_lambda;
4522 GetProcPtr(proc, procp);
4523 procp->header.is_lambda = is_lambda;
4530 VALUE proc, passed, arity;
4539 if (!
NIL_P(blockarg)) {
4540 rb_warn(
"given block not used");
4542 arity = make_curry_proc(proc, passed, arity);
4605proc_curry(
int argc,
const VALUE *argv,
VALUE self)
4607 int sarity, max_arity, min_arity = rb_proc_min_max_arity(self, &max_arity);
4620 return make_curry_proc(self,
rb_ary_new(), arity);
4656rb_method_curry(
int argc,
const VALUE *argv,
VALUE self)
4658 VALUE proc = method_to_proc(self);
4659 return proc_curry(argc, argv, proc);
4688 mesg = rb_fstring_lit(
"callable object is expected");
4712 return rb_proc_compose_to_left(self, to_callable(g));
4718 VALUE proc, args, procs[2];
4724 args = rb_ary_tmp_new_from_values(0, 2, procs);
4727 GetProcPtr(g, procp);
4728 is_lambda = procp->header.is_lambda;
4736 GetProcPtr(proc, procp);
4737 procp->header.is_lambda = is_lambda;
4771 return rb_proc_compose_to_right(self, to_callable(g));
4777 VALUE proc, args, procs[2];
4783 args = rb_ary_tmp_new_from_values(0, 2, procs);
4785 GetProcPtr(self, procp);
4786 is_lambda = procp->header.is_lambda;
4789 GetProcPtr(proc, procp);
4790 procp->header.is_lambda = is_lambda;
4811rb_method_compose_to_left(
VALUE self,
VALUE g)
4814 self = method_to_proc(self);
4815 return proc_compose_to_left(self, g);
4834rb_method_compose_to_right(
VALUE self,
VALUE g)
4837 self = method_to_proc(self);
4838 return proc_compose_to_right(self, g);
4866proc_ruby2_keywords(
VALUE procval)
4869 GetProcPtr(procval, proc);
4871 rb_check_frozen(procval);
4873 if (proc->header.is_from_method) {
4874 rb_warn(
"Skipping set of ruby2_keywords flag for proc (proc created from method)");
4878 switch (proc->block.type) {
4879 case block_type_iseq:
4880 if (ISEQ_BODY(proc->block.as.captured.code.iseq)->param.flags.has_rest &&
4881 !ISEQ_BODY(proc->block.as.captured.code.iseq)->param.flags.has_post &&
4882 !ISEQ_BODY(proc->block.as.captured.code.iseq)->param.flags.has_kw &&
4883 !ISEQ_BODY(proc->block.as.captured.code.iseq)->param.flags.has_kwrest) {
4884 if (proc->header.is_refined) {
4889 rb_iseq_dup_with_independent_caches(proc->block.as.captured.code.iseq);
4890 ISEQ_BODY(copy)->param.flags.ruby2_keywords = 1;
4896 ISEQ_BODY(proc->block.as.captured.code.iseq)->param.flags.ruby2_keywords = 1;
4900 rb_warn(
"Skipping set of ruby2_keywords flag for proc (proc accepts keywords or post arguments or proc does not accept argument splat)");
4904 rb_warn(
"Skipping set of ruby2_keywords flag for proc (proc not defined in Ruby)");
5344 id_refinements_recipe = rb_make_internal_id();
5346 VALUE mRuby = rb_define_module(
"Ruby");
5349 rb_cSourceRange = rb_define_class_under(mRuby,
"SourceRange",
rb_cObject);
5353 rb_define_method(rb_cSourceRange,
"absolute_path", source_range_absolute_path, 0);
5354 rb_define_method(rb_cSourceRange,
"start_line", source_range_start_line, 0);
5355 rb_define_method(rb_cSourceRange,
"start_column", source_range_start_column, 0);
5357 rb_define_method(rb_cSourceRange,
"end_column", source_range_end_column, 0);
5365 rb_add_method_optimized(
rb_cProc, idCall, OPTIMIZED_METHOD_TYPE_CALL, 0, METHOD_VISI_PUBLIC);
5366 rb_add_method_optimized(
rb_cProc, rb_intern(
"[]"), OPTIMIZED_METHOD_TYPE_CALL, 0, METHOD_VISI_PUBLIC);
5367 rb_add_method_optimized(
rb_cProc, rb_intern(
"==="), OPTIMIZED_METHOD_TYPE_CALL, 0, METHOD_VISI_PUBLIC);
5368 rb_add_method_optimized(
rb_cProc, rb_intern(
"yield"), OPTIMIZED_METHOD_TYPE_CALL, 0, METHOD_VISI_PUBLIC);
5404 rb_vm_register_special_exception(ruby_error_sysstack,
rb_eSysStackError,
"stack level too deep");
5475 "define_method", top_define_method, -1);
5516 rb_gc_register_address(&sym_proc_cache);
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_singleton_method(klass, mid, func, arity)
Defines klass.mid.
#define rb_define_private_method(klass, mid, func, arity)
Defines klass#mid and makes it private.
#define rb_define_global_function(mid, func, arity)
Defines rb_mKernel #mid.
VALUE rb_singleton_class(VALUE obj)
Finds or creates the singleton class of the passed object.
VALUE rb_singleton_class_get(VALUE obj)
Returns the singleton class of obj, or nil if obj is not a singleton object.
void rb_define_alias(VALUE klass, const char *name1, const char *name2)
Defines an alias of a method.
void rb_undef_method(VALUE klass, const char *name)
Defines an undef of a method.
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.
int rb_block_given_p(void)
Determines if the current method is given a block.
int rb_get_kwargs(VALUE keyword_hash, const ID *table, int required, int optional, VALUE *values)
Keyword argument deconstructor.
#define rb_str_buf_cat2
Old name of rb_usascii_str_new_cstr.
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
#define ID2SYM
Old name of RB_ID2SYM.
#define OBJ_FREEZE
Old name of RB_OBJ_FREEZE.
#define UNREACHABLE_RETURN
Old name of RBIMPL_UNREACHABLE_RETURN.
#define SYM2ID
Old name of RB_SYM2ID.
#define ZALLOC
Old name of RB_ZALLOC.
#define CLASS_OF
Old name of rb_class_of.
#define rb_ary_new4
Old name of rb_ary_new_from_values.
#define FIX2INT
Old name of RB_FIX2INT.
#define T_MODULE
Old name of RUBY_T_MODULE.
#define ASSUME
Old name of RBIMPL_ASSUME.
#define T_ICLASS
Old name of RUBY_T_ICLASS.
#define ALLOC_N
Old name of RB_ALLOC_N.
#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 ST2FIX
Old name of RB_ST2FIX.
#define INT2NUM
Old name of RB_INT2NUM.
#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 Check_TypedStruct(v, t)
Old name of rb_check_typeddata.
#define CONST_ID
Old name of RUBY_CONST_ID.
#define rb_ary_new2
Old name of rb_ary_new_capa.
VALUE rb_eLocalJumpError
LocalJumpError exception.
void rb_category_warn(rb_warning_category_t category, const char *fmt,...)
Identical to rb_category_warning(), except it reports unless $VERBOSE is nil.
void rb_exc_raise(VALUE mesg)
Raises an exception in the current thread.
VALUE rb_eStandardError
StandardError exception.
VALUE rb_eRangeError
RangeError exception.
VALUE rb_eTypeError
TypeError exception.
void rb_warn(const char *fmt,...)
Identical to rb_warning(), except it reports unless $VERBOSE is nil.
VALUE rb_exc_new_str(VALUE etype, VALUE str)
Identical to rb_exc_new_cstr(), except it takes a Ruby's string instead of C's.
VALUE rb_eException
Mother of all exceptions.
VALUE rb_eSysStackError
SystemStackError exception.
@ RB_WARN_CATEGORY_PERFORMANCE
Warning is for performance issues (not enabled by -w).
VALUE rb_class_superclass(VALUE klass)
Queries the parent of the given class.
VALUE rb_cUnboundMethod
UnboundMethod class.
VALUE rb_mKernel
Kernel module.
VALUE rb_cObject
Object class.
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
VALUE rb_cBinding
Binding class.
VALUE rb_obj_class(VALUE obj)
Queries the class of an object.
VALUE rb_inspect(VALUE obj)
Generates a human-readable textual representation of the given object.
VALUE rb_cModule
Module class.
VALUE rb_class_inherited_p(VALUE scion, VALUE ascendant)
Determines if the given two modules are relatives.
VALUE rb_obj_is_kind_of(VALUE obj, VALUE klass)
Queries if the given object is an instance (of possibly descendants) of the given class.
VALUE rb_cProc
Proc class.
VALUE rb_cMethod
Method class.
#define RB_OBJ_WRITTEN(old, oldv, young)
Identical to RB_OBJ_WRITE(), except it doesn't write any values, but only a WB declaration.
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
VALUE rb_funcallv(VALUE recv, ID mid, int argc, const VALUE *argv)
Identical to rb_funcall(), except it takes the method arguments as a C array.
VALUE rb_funcall_with_block_kw(VALUE recv, ID mid, int argc, const VALUE *argv, VALUE procval, int kw_splat)
Identical to rb_funcallv_with_block(), except you can specify how to handle the last element of the g...
VALUE rb_ary_dup(VALUE ary)
Duplicates an array.
VALUE rb_ary_plus(VALUE lhs, VALUE rhs)
Creates a new array, concatenating the former to the latter.
VALUE rb_ary_new(void)
Allocates a new, empty array.
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_ary_store(VALUE ary, long key, VALUE val)
Destructively stores the passed value to the passed array's passed index.
#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.
int rb_is_local_id(ID id)
Classifies the given ID, then sees if it is a local variable.
VALUE rb_method_call_with_block(int argc, const VALUE *argv, VALUE recv, VALUE proc)
Identical to rb_proc_call(), except you can additionally pass a proc as a block.
int rb_obj_method_arity(VALUE obj, ID mid)
Identical to rb_mod_method_arity(), except it searches for singleton methods rather than instance met...
VALUE rb_proc_call(VALUE recv, VALUE args)
Evaluates the passed proc with the passed arguments.
VALUE rb_proc_call_with_block_kw(VALUE recv, int argc, const VALUE *argv, VALUE proc, int kw_splat)
Identical to rb_proc_call_with_block(), except you can specify how to handle the last element of the ...
VALUE rb_method_call_kw(int argc, const VALUE *argv, VALUE recv, int kw_splat)
Identical to rb_method_call(), except you can specify how to handle the last element of the given arr...
VALUE rb_obj_method(VALUE recv, VALUE mid)
Creates a method object.
VALUE rb_proc_lambda_p(VALUE recv)
Queries if the given object is a lambda.
VALUE rb_block_proc(void)
Constructs a Proc object from implicitly passed components.
VALUE rb_proc_call_with_block(VALUE recv, int argc, const VALUE *argv, VALUE proc)
Identical to rb_proc_call(), except you can additionally pass another proc object,...
int rb_mod_method_arity(VALUE mod, ID mid)
Queries the number of mandatory arguments of the method defined in the given module.
VALUE rb_method_call_with_block_kw(int argc, const VALUE *argv, VALUE recv, VALUE proc, int kw_splat)
Identical to rb_method_call_with_block(), except you can specify how to handle the last element of th...
VALUE rb_obj_is_method(VALUE recv)
Queries if the given object is a method.
VALUE rb_block_lambda(void)
Identical to rb_proc_new(), except it returns a lambda.
VALUE rb_proc_call_kw(VALUE recv, VALUE args, int kw_splat)
Identical to rb_proc_call(), except you can specify how to handle the last element of the given array...
VALUE rb_binding_new(void)
Snapshots the current execution context and turn it into an instance of rb_cBinding.
int rb_proc_arity(VALUE recv)
Queries the number of mandatory arguments of the given Proc.
VALUE rb_method_call(int argc, const VALUE *argv, VALUE recv)
Evaluates the passed method with the passed arguments.
VALUE rb_obj_is_proc(VALUE recv)
Queries if the given object is a proc.
#define rb_hash_uint(h, i)
Just another name of st_hash_uint.
#define rb_hash_end(h)
Just another name of st_hash_end.
VALUE rb_str_append(VALUE dst, VALUE src)
Identical to rb_str_buf_append(), except it converts the right hand side before concatenating.
VALUE rb_str_buf_append(VALUE dst, VALUE src)
Identical to rb_str_cat_cstr(), except it takes Ruby's string instead of C's.
void rb_str_set_len(VALUE str, long len)
Overwrites the length of the string.
st_index_t rb_hash_start(st_index_t i)
Starts a series of hashing.
#define rb_str_cat_cstr(buf, str)
Identical to rb_str_cat(), except it assumes the passed pointer is a pointer to a C string.
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
VALUE rb_str_intern(VALUE str)
Identical to rb_to_symbol(), except it assumes the receiver being an instance of RString.
VALUE rb_ivar_set(VALUE obj, ID name, VALUE val)
Identical to rb_iv_set(), except it accepts the name as an ID instead of a C string.
VALUE rb_ivar_get(VALUE obj, ID name)
Identical to rb_iv_get(), except it accepts the name as an ID instead of a C string.
void rb_undef_alloc_func(VALUE klass)
Deletes the allocator function of a class.
int rb_method_basic_definition_p(VALUE klass, ID mid)
Well... Let us hesitate from describing what a "basic definition" is.
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_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
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...
VALUE rb_iv_get(VALUE obj, const char *name)
Obtains an instance variable.
int len
Length of the buffer.
#define RB_INT2NUM
Just another name of rb_int2num_inline.
#define RB_BLOCK_CALL_FUNC_ARGLIST(yielded_arg, callback_arg)
Shim for block function parameters.
rb_block_call_func * rb_block_call_func_t
Shorthand type that represents an iterator-written-in-C function pointer.
VALUE rb_block_call_func(RB_BLOCK_CALL_FUNC_ARGLIST(yielded_arg, callback_arg))
This is the type of a function that the interpreter expect for C-backended blocks.
#define MEMCPY(p1, p2, type, n)
Handy macro to call memcpy.
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
VALUE rb_block_call(VALUE q, ID w, int e, const VALUE *r, type *t, VALUE y)
Call a method with a block.
VALUE rb_proc_new(type *q, VALUE w)
Creates a rb_cProc instance.
VALUE type(ANYARGS)
ANYARGS-ed function type.
VALUE rb_rescue(type *q, VALUE w, type *e, VALUE r)
An equivalent of rescue clause.
#define RARRAY_LEN
Just another name of rb_array_len.
static void RARRAY_ASET(VALUE ary, long i, VALUE v)
Assigns an object in an array.
static VALUE * RARRAY_PTR(VALUE ary)
Wild use of a C pointer.
#define RARRAY_AREF(a, i)
#define RARRAY_CONST_PTR
Just another name of rb_array_const_ptr.
static VALUE RBASIC_CLASS(VALUE obj)
Queries the class of an object.
#define RBASIC(obj)
Convenient casting macro.
#define RCLASS_SUPER
Just another name of rb_class_get_superclass.
#define RUBY_TYPED_DEFAULT_FREE
This is a value you can set to rb_data_type_struct::dfree.
#define RUBY_TYPED_FREE_IMMEDIATELY
Macros to see if each corresponding flag is defined.
#define TypedData_Get_Struct(obj, type, data_type, sval)
Obtains a C struct from inside of a wrapper Ruby object.
#define TypedData_Make_Struct(klass, type, data_type, sval)
Identical to TypedData_Wrap_Struct, except it allocates a new data region internally instead of takin...
const char * rb_obj_classname(VALUE obj)
Queries the name of the class of the passed object.
#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.
Internal header for Ruby Box.
This is the struct that holds necessary info for a struct.
rb_cref_t * cref
class reference, should be marked
const rb_iseq_t * iseqptr
iseq pointer, should be separated from iseqval
IFUNC (Internal FUNCtion)
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
#define SIZEOF_VALUE
Identical to sizeof(VALUE), except it is a macro that can also be used inside of preprocessor directi...
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.