2007-02-02 18:21:41 +03:00
|
|
|
/**********************************************************************
|
|
|
|
|
2007-08-30 09:06:52 +04:00
|
|
|
proc.c - Proc, Binding, Env
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Wed Jan 17 12:13:14 2007
|
|
|
|
|
|
|
|
Copyright (C) 2004-2007 Koichi Sasada
|
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#include "eval_intern.h"
|
2011-05-18 17:41:54 +04:00
|
|
|
#include "internal.h"
|
2007-02-02 18:21:41 +03:00
|
|
|
#include "gc.h"
|
2017-12-26 11:38:35 +03:00
|
|
|
#include "vm_core.h"
|
* internal.h: declare internal functions here.
* node.h: declare NODE dependent internal functions here.
* iseq.h: declare rb_iseq_t dependent internal functions here.
* vm_core.h: declare rb_thread_t dependent internal functions here.
* bignum.c, class.c, compile.c, complex.c, cont.c, dir.c, encoding.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c, io.c,
iseq.c, load.c, marshal.c, math.c, numeric.c, object.c, parse.y,
proc.c, process.c, range.c, rational.c, re.c, ruby.c, string.c,
thread.c, time.c, transcode.c, variable.c, vm.c,
tool/compile_prelude.rb: don't declare internal functions declared
in above headers. include above headers if required.
Note that rb_thread_mark() was declared as
void rb_thread_mark(rb_thread_t *th) in cont.c but defined as
void rb_thread_mark(void *ptr) in vm.c. Now it is declared as
the later in internal.h.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32156 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2011-06-18 02:43:38 +04:00
|
|
|
#include "iseq.h"
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2015-06-19 08:53:41 +03:00
|
|
|
/* Proc.new with no block will raise an exception in the future
|
|
|
|
* versions */
|
|
|
|
#define PROC_NEW_REQUIRES_BLOCK 0
|
|
|
|
|
2016-11-20 13:41:09 +03:00
|
|
|
#if !defined(__GNUC__) || __GNUC__ < 5 || defined(__MINGW32__)
|
2016-05-05 10:11:34 +03:00
|
|
|
# define NO_CLOBBERED(v) (*(volatile VALUE *)&(v))
|
|
|
|
#else
|
|
|
|
# define NO_CLOBBERED(v) (v)
|
|
|
|
#endif
|
|
|
|
|
2019-05-30 22:08:06 +03:00
|
|
|
#define UPDATE_TYPED_REFERENCE(_type, _ref) *(_type*)&_ref = (_type)rb_gc_location((VALUE)_ref)
|
|
|
|
#define UPDATE_REFERENCE(_ref) UPDATE_TYPED_REFERENCE(VALUE, _ref)
|
|
|
|
|
2015-03-09 00:22:43 +03:00
|
|
|
const rb_cref_t *rb_vm_cref_in_context(VALUE self, VALUE cbase);
|
2013-12-24 11:28:11 +04:00
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
struct METHOD {
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
const VALUE recv;
|
|
|
|
const VALUE klass;
|
2017-10-06 08:55:11 +03:00
|
|
|
const VALUE iclass;
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
const rb_method_entry_t * const me;
|
|
|
|
/* for bound methods, `me' should be rb_callable_method_entry_t * */
|
2007-02-02 18:21:41 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
VALUE rb_cUnboundMethod;
|
|
|
|
VALUE rb_cMethod;
|
|
|
|
VALUE rb_cBinding;
|
|
|
|
VALUE rb_cProc;
|
|
|
|
|
2019-08-26 08:25:53 +03:00
|
|
|
static rb_block_call_func bmcall;
|
2007-02-02 18:21:41 +03:00
|
|
|
static int method_arity(VALUE);
|
2013-02-02 02:46:07 +04:00
|
|
|
static int method_min_max_arity(VALUE, int *max);
|
2015-05-21 11:45:57 +03:00
|
|
|
|
2013-05-02 11:54:17 +04:00
|
|
|
#define attached id__attached__
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
/* Proc */
|
|
|
|
|
2015-10-15 18:54:48 +03:00
|
|
|
#define IS_METHOD_PROC_IFUNC(ifunc) ((ifunc)->func == bmcall)
|
2016-07-28 14:02:30 +03:00
|
|
|
|
|
|
|
static void
|
|
|
|
block_mark(const struct rb_block *block)
|
|
|
|
{
|
|
|
|
switch (vm_block_type(block)) {
|
|
|
|
case block_type_iseq:
|
|
|
|
case block_type_ifunc:
|
|
|
|
{
|
|
|
|
const struct rb_captured_block *captured = &block->as.captured;
|
2019-05-30 22:08:06 +03:00
|
|
|
RUBY_MARK_NO_PIN_UNLESS_NULL(captured->self);
|
|
|
|
RUBY_MARK_NO_PIN_UNLESS_NULL((VALUE)captured->code.val);
|
2016-07-28 14:02:30 +03:00
|
|
|
if (captured->ep && captured->ep[VM_ENV_DATA_INDEX_ENV] != Qundef /* cfunc_proc_t */) {
|
2019-06-11 19:16:45 +03:00
|
|
|
RUBY_MARK_NO_PIN_UNLESS_NULL(VM_ENV_ENVVAL(captured->ep));
|
2016-07-28 14:02:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case block_type_symbol:
|
2019-05-30 22:08:06 +03:00
|
|
|
RUBY_MARK_NO_PIN_UNLESS_NULL(block->as.symbol);
|
|
|
|
break;
|
|
|
|
case block_type_proc:
|
|
|
|
RUBY_MARK_NO_PIN_UNLESS_NULL(block->as.proc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
block_compact(struct rb_block *block)
|
|
|
|
{
|
|
|
|
switch (block->type) {
|
|
|
|
case block_type_iseq:
|
|
|
|
case block_type_ifunc:
|
|
|
|
{
|
|
|
|
struct rb_captured_block *captured = &block->as.captured;
|
|
|
|
captured->self = rb_gc_location(captured->self);
|
|
|
|
captured->code.val = rb_gc_location(captured->code.val);
|
2019-06-11 19:16:45 +03:00
|
|
|
if (captured->ep && captured->ep[VM_ENV_DATA_INDEX_ENV] != Qundef /* cfunc_proc_t */) {
|
2019-05-31 23:25:24 +03:00
|
|
|
UPDATE_REFERENCE(captured->ep[VM_ENV_DATA_INDEX_ENV]);
|
2019-06-11 19:16:45 +03:00
|
|
|
}
|
2019-05-30 22:08:06 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case block_type_symbol:
|
|
|
|
block->as.symbol = rb_gc_location(block->as.symbol);
|
2016-07-28 14:02:30 +03:00
|
|
|
break;
|
|
|
|
case block_type_proc:
|
2019-05-30 22:08:06 +03:00
|
|
|
block->as.proc = rb_gc_location(block->as.proc);
|
2016-07-28 14:02:30 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-09-21 12:12:12 +04:00
|
|
|
|
2019-05-30 22:08:06 +03:00
|
|
|
static void
|
|
|
|
proc_compact(void *ptr)
|
|
|
|
{
|
|
|
|
rb_proc_t *proc = ptr;
|
|
|
|
block_compact((struct rb_block *)&proc->block);
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
static void
|
|
|
|
proc_mark(void *ptr)
|
|
|
|
{
|
2014-09-13 01:34:12 +04:00
|
|
|
rb_proc_t *proc = ptr;
|
2016-07-28 14:02:30 +03:00
|
|
|
block_mark(&proc->block);
|
2007-06-25 06:44:20 +04:00
|
|
|
RUBY_MARK_LEAVE("proc");
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2015-10-15 17:56:05 +03:00
|
|
|
typedef struct {
|
|
|
|
rb_proc_t basic;
|
2016-07-28 14:02:30 +03:00
|
|
|
VALUE env[VM_ENV_DATA_SIZE + 1]; /* ..., envval */
|
2015-11-10 12:24:41 +03:00
|
|
|
} cfunc_proc_t;
|
2015-10-15 17:56:05 +03:00
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
static size_t
|
2009-09-09 06:11:35 +04:00
|
|
|
proc_memsize(const void *ptr)
|
2009-07-08 12:13:41 +04:00
|
|
|
{
|
2015-10-15 17:56:05 +03:00
|
|
|
const rb_proc_t *proc = ptr;
|
2016-07-28 14:02:30 +03:00
|
|
|
if (proc->block.as.captured.ep == ((const cfunc_proc_t *)ptr)->env+1)
|
2015-11-10 12:24:41 +03:00
|
|
|
return sizeof(cfunc_proc_t);
|
2014-09-13 01:34:12 +04:00
|
|
|
return sizeof(rb_proc_t);
|
2009-07-08 12:13:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static const rb_data_type_t proc_data_type = {
|
|
|
|
"proc",
|
2010-07-18 11:31:54 +04:00
|
|
|
{
|
|
|
|
proc_mark,
|
2014-09-13 01:34:12 +04:00
|
|
|
RUBY_TYPED_DEFAULT_FREE,
|
2010-07-18 11:31:54 +04:00
|
|
|
proc_memsize,
|
2019-05-30 22:08:06 +03:00
|
|
|
proc_compact,
|
2010-07-18 11:31:54 +04:00
|
|
|
},
|
2016-07-28 14:02:30 +03:00
|
|
|
0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
|
2009-07-08 12:13:41 +04:00
|
|
|
};
|
|
|
|
|
* blockinlining.c: remove "yarv" prefix.
* array.c, numeric.c: ditto.
* insnhelper.ci, insns.def, vm_evalbody.ci: ditto.
* yarvcore.c: removed.
* yarvcore.h: renamed to core.h.
* cont.c, debug.c, error.c, process.c, signal.c : ditto.
* ext/probeprofiler/probeprofiler.c: ditto.
* id.c, id.h: added.
* inits.c: ditto.
* compile.c: rename internal functions.
* compile.h: fix debug flag.
* eval.c, object.c, vm.c: remove ruby_top_self.
use rb_vm_top_self() instead.
* eval_intern.h, eval_load: ditto.
* gc.c: rename yarv_machine_stack_mark() to
rb_gc_mark_machine_stack().
* insnhelper.h: remove unused macros.
* iseq.c: add iseq_compile() to create iseq object
from source string.
* proc.c: rename a internal function.
* template/insns.inc.tmpl: remove YARV prefix.
* thread.c:
* vm.c (rb_iseq_eval): added.
* vm.c: move some functions from yarvcore.c.
* vm_dump.c: fix to remove compiler warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-12 08:25:46 +04:00
|
|
|
VALUE
|
2015-05-16 15:21:25 +03:00
|
|
|
rb_proc_alloc(VALUE klass)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2015-05-16 15:21:25 +03:00
|
|
|
rb_proc_t *proc;
|
|
|
|
return TypedData_Make_Struct(klass, rb_proc_t, &proc_data_type, proc);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
* blockinlining.c, compile.c, compile.h, error.c, eval.c,
eval_intern.h, eval_jump.h, eval_load.c, eval_method.h,
eval_safe.h, gc.c, insnhelper.h, insns.def, iseq.c, proc.c,
process.c, signal.c, thread.c, thread_pthread.ci, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, vm_macro.def,
yarv.h, yarvcore.h, yarvcore.c: change type and macro names:
* yarv_*_t -> rb_*_t
* yarv_*_struct -> rb_*_struct
* yarv_tag -> rb_vm_tag
* YARV_* -> RUBY_VM_*
* proc.c, vm.c: move functions about env object creation
from proc.c to vm.c.
* proc.c, yarvcore.c: fix rb_cVM initialization place.
* inits.c: change Init_ISeq() order (after Init_VM).
* ruby.h, proc.c: change declaration place of rb_cEnv
from proc.c to ruby.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-06 22:00:03 +03:00
|
|
|
rb_obj_is_proc(VALUE proc)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2009-07-08 12:13:41 +04:00
|
|
|
if (rb_typeddata_is_kind_of(proc, &proc_data_type)) {
|
2007-02-02 18:21:41 +03:00
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-21 15:06:32 +04:00
|
|
|
/* :nodoc: */
|
2007-02-02 18:21:41 +03:00
|
|
|
static VALUE
|
|
|
|
proc_clone(VALUE self)
|
|
|
|
{
|
2017-12-28 23:09:24 +03:00
|
|
|
VALUE procval = rb_proc_dup(self);
|
2007-02-02 18:21:41 +03:00
|
|
|
CLONESETUP(procval, self);
|
|
|
|
return procval;
|
|
|
|
}
|
|
|
|
|
2007-12-23 18:36:00 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* prc.lambda? -> true or false
|
2007-12-23 18:36:00 +03:00
|
|
|
*
|
2019-07-14 09:01:39 +03:00
|
|
|
* Returns +true+ if a Proc object is lambda.
|
|
|
|
* +false+ if non-lambda.
|
|
|
|
*
|
|
|
|
* The lambda-ness affects argument handling and the behavior of +return+ and +break+.
|
2007-12-23 18:36:00 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* A Proc object generated by +proc+ ignores extra arguments.
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2010-05-18 01:07:33 +04:00
|
|
|
* proc {|a,b| [a,b] }.call(1,2,3) #=> [1,2]
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* It provides +nil+ for missing arguments.
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2010-05-18 01:07:33 +04:00
|
|
|
* proc {|a,b| [a,b] }.call(1) #=> [1,nil]
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* It expands a single array argument.
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2010-05-18 01:07:33 +04:00
|
|
|
* proc {|a,b| [a,b] }.call([1,2]) #=> [1,2]
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* A Proc object generated by +lambda+ doesn't have such tricks.
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2010-05-18 01:07:33 +04:00
|
|
|
* lambda {|a,b| [a,b] }.call(1,2,3) #=> ArgumentError
|
|
|
|
* lambda {|a,b| [a,b] }.call(1) #=> ArgumentError
|
|
|
|
* lambda {|a,b| [a,b] }.call([1,2]) #=> ArgumentError
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
|
|
|
* Proc#lambda? is a predicate for the tricks.
|
2011-05-27 17:55:43 +04:00
|
|
|
* It returns +true+ if no tricks apply.
|
2007-12-23 18:36:00 +03:00
|
|
|
*
|
2010-05-18 01:07:33 +04:00
|
|
|
* lambda {}.lambda? #=> true
|
|
|
|
* proc {}.lambda? #=> false
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* Proc.new is the same as +proc+.
|
2007-12-24 09:56:06 +03:00
|
|
|
*
|
2010-05-18 01:07:33 +04:00
|
|
|
* Proc.new {}.lambda? #=> false
|
2007-12-23 18:36:00 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* +lambda+, +proc+ and Proc.new preserve the tricks of
|
|
|
|
* a Proc object given by <code>&</code> argument.
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2010-05-18 01:07:33 +04:00
|
|
|
* lambda(&lambda {}).lambda? #=> true
|
|
|
|
* proc(&lambda {}).lambda? #=> true
|
|
|
|
* Proc.new(&lambda {}).lambda? #=> true
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2010-05-18 01:07:33 +04:00
|
|
|
* lambda(&proc {}).lambda? #=> false
|
|
|
|
* proc(&proc {}).lambda? #=> false
|
|
|
|
* Proc.new(&proc {}).lambda? #=> false
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* A Proc object generated by <code>&</code> argument has the tricks
|
2007-12-23 18:36:00 +03:00
|
|
|
*
|
|
|
|
* def n(&b) b.lambda? end
|
2010-05-18 01:07:33 +04:00
|
|
|
* n {} #=> false
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* The <code>&</code> argument preserves the tricks if a Proc object
|
|
|
|
* is given by <code>&</code> argument.
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2010-05-18 01:07:33 +04:00
|
|
|
* n(&lambda {}) #=> true
|
|
|
|
* n(&proc {}) #=> false
|
|
|
|
* n(&Proc.new {}) #=> false
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
|
|
|
* A Proc object converted from a method has no tricks.
|
|
|
|
*
|
|
|
|
* def m() end
|
2010-05-18 01:07:33 +04:00
|
|
|
* method(:m).to_proc.lambda? #=> true
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2010-05-18 01:07:33 +04:00
|
|
|
* n(&method(:m)) #=> true
|
|
|
|
* n(&method(:m).to_proc) #=> true
|
2007-12-23 18:36:00 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* +define_method+ is treated the same as method definition.
|
2007-12-26 06:49:10 +03:00
|
|
|
* The defined method has no tricks.
|
|
|
|
*
|
2007-12-24 21:36:30 +03:00
|
|
|
* class C
|
|
|
|
* define_method(:d) {}
|
|
|
|
* end
|
2011-05-27 17:55:43 +04:00
|
|
|
* C.new.d(1,2) #=> ArgumentError
|
2010-05-18 01:07:33 +04:00
|
|
|
* C.new.method(:d).to_proc.lambda? #=> true
|
2007-12-24 21:36:30 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* +define_method+ always defines a method without the tricks,
|
2007-12-26 06:49:10 +03:00
|
|
|
* even if a non-lambda Proc object is given.
|
2011-05-27 17:55:43 +04:00
|
|
|
* This is the only exception for which the tricks are not preserved.
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
|
|
|
* class C
|
|
|
|
* define_method(:e, &proc {})
|
|
|
|
* end
|
2010-05-18 01:07:33 +04:00
|
|
|
* C.new.e(1,2) #=> ArgumentError
|
|
|
|
* C.new.method(:e).to_proc.lambda? #=> true
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2016-11-08 22:37:59 +03:00
|
|
|
* This exception ensures that methods never have tricks
|
2011-05-27 17:55:43 +04:00
|
|
|
* and makes it easy to have wrappers to define methods that behave as usual.
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* class C
|
|
|
|
* def self.def2(name, &body)
|
2007-12-26 06:49:10 +03:00
|
|
|
* define_method(name, &body)
|
|
|
|
* end
|
2011-05-27 17:55:43 +04:00
|
|
|
*
|
2007-12-26 06:49:10 +03:00
|
|
|
* def2(:f) {}
|
|
|
|
* end
|
2010-05-18 01:07:33 +04:00
|
|
|
* C.new.f(1,2) #=> ArgumentError
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* The wrapper <i>def2</i> defines a method which has no tricks.
|
2007-12-26 06:49:10 +03:00
|
|
|
*
|
2007-12-23 18:36:00 +03:00
|
|
|
*/
|
|
|
|
|
2009-10-24 20:53:11 +04:00
|
|
|
VALUE
|
|
|
|
rb_proc_lambda_p(VALUE procval)
|
2007-06-05 21:26:00 +04:00
|
|
|
{
|
|
|
|
rb_proc_t *proc;
|
|
|
|
GetProcPtr(procval, proc);
|
|
|
|
|
|
|
|
return proc->is_lambda ? Qtrue : Qfalse;
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/* Binding */
|
|
|
|
|
|
|
|
static void
|
|
|
|
binding_free(void *ptr)
|
|
|
|
{
|
2007-06-25 06:44:20 +04:00
|
|
|
RUBY_FREE_ENTER("binding");
|
2017-03-17 22:59:56 +03:00
|
|
|
ruby_xfree(ptr);
|
2007-06-25 06:44:20 +04:00
|
|
|
RUBY_FREE_LEAVE("binding");
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
binding_mark(void *ptr)
|
|
|
|
{
|
2015-07-15 11:29:22 +03:00
|
|
|
rb_binding_t *bind = ptr;
|
2017-06-01 18:12:14 +03:00
|
|
|
|
2007-06-25 06:44:20 +04:00
|
|
|
RUBY_MARK_ENTER("binding");
|
2016-07-28 14:02:30 +03:00
|
|
|
block_mark(&bind->block);
|
2019-08-12 23:09:21 +03:00
|
|
|
rb_gc_mark_movable(bind->pathobj);
|
2007-06-25 06:44:20 +04:00
|
|
|
RUBY_MARK_LEAVE("binding");
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2019-05-30 22:08:06 +03:00
|
|
|
static void
|
|
|
|
binding_compact(void *ptr)
|
|
|
|
{
|
|
|
|
rb_binding_t *bind = ptr;
|
|
|
|
|
|
|
|
block_compact((struct rb_block *)&bind->block);
|
|
|
|
UPDATE_REFERENCE(bind->pathobj);
|
|
|
|
}
|
|
|
|
|
2009-07-08 13:28:09 +04:00
|
|
|
static size_t
|
2009-09-09 06:11:35 +04:00
|
|
|
binding_memsize(const void *ptr)
|
2009-07-08 13:28:09 +04:00
|
|
|
{
|
2015-12-09 03:38:32 +03:00
|
|
|
return sizeof(rb_binding_t);
|
2009-07-08 13:28:09 +04:00
|
|
|
}
|
|
|
|
|
2013-07-22 11:32:52 +04:00
|
|
|
const rb_data_type_t ruby_binding_data_type = {
|
2009-07-08 13:28:09 +04:00
|
|
|
"binding",
|
2010-07-18 11:31:54 +04:00
|
|
|
{
|
|
|
|
binding_mark,
|
|
|
|
binding_free,
|
|
|
|
binding_memsize,
|
2019-05-30 22:08:06 +03:00
|
|
|
binding_compact,
|
2010-07-18 11:31:54 +04:00
|
|
|
},
|
2017-06-01 18:12:14 +03:00
|
|
|
0, 0, RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_FREE_IMMEDIATELY
|
2009-07-08 13:28:09 +04:00
|
|
|
};
|
|
|
|
|
2014-10-18 15:46:31 +04:00
|
|
|
VALUE
|
|
|
|
rb_binding_alloc(VALUE klass)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
|
|
|
VALUE obj;
|
* blockinlining.c, compile.c, compile.h, error.c, eval.c,
eval_intern.h, eval_jump.h, eval_load.c, eval_method.h,
eval_safe.h, gc.c, insnhelper.h, insns.def, iseq.c, proc.c,
process.c, signal.c, thread.c, thread_pthread.ci, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, vm_macro.def,
yarv.h, yarvcore.h, yarvcore.c: change type and macro names:
* yarv_*_t -> rb_*_t
* yarv_*_struct -> rb_*_struct
* yarv_tag -> rb_vm_tag
* YARV_* -> RUBY_VM_*
* proc.c, vm.c: move functions about env object creation
from proc.c to vm.c.
* proc.c, yarvcore.c: fix rb_cVM initialization place.
* inits.c: change Init_ISeq() order (after Init_VM).
* ruby.h, proc.c: change declaration place of rb_cEnv
from proc.c to ruby.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-06 22:00:03 +03:00
|
|
|
rb_binding_t *bind;
|
2013-07-22 11:32:52 +04:00
|
|
|
obj = TypedData_Make_Struct(klass, rb_binding_t, &ruby_binding_data_type, bind);
|
2007-02-02 18:21:41 +03:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2017-06-01 18:12:14 +03:00
|
|
|
|
2009-09-21 15:06:32 +04:00
|
|
|
/* :nodoc: */
|
2007-02-02 18:21:41 +03:00
|
|
|
static VALUE
|
|
|
|
binding_dup(VALUE self)
|
|
|
|
{
|
2014-10-18 15:46:31 +04:00
|
|
|
VALUE bindval = rb_binding_alloc(rb_cBinding);
|
* blockinlining.c, compile.c, compile.h, error.c, eval.c,
eval_intern.h, eval_jump.h, eval_load.c, eval_method.h,
eval_safe.h, gc.c, insnhelper.h, insns.def, iseq.c, proc.c,
process.c, signal.c, thread.c, thread_pthread.ci, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, vm_macro.def,
yarv.h, yarvcore.h, yarvcore.c: change type and macro names:
* yarv_*_t -> rb_*_t
* yarv_*_struct -> rb_*_struct
* yarv_tag -> rb_vm_tag
* YARV_* -> RUBY_VM_*
* proc.c, vm.c: move functions about env object creation
from proc.c to vm.c.
* proc.c, yarvcore.c: fix rb_cVM initialization place.
* inits.c: change Init_ISeq() order (after Init_VM).
* ruby.h, proc.c: change declaration place of rb_cEnv
from proc.c to ruby.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-06 22:00:03 +03:00
|
|
|
rb_binding_t *src, *dst;
|
2007-02-02 18:21:41 +03:00
|
|
|
GetBindingPtr(self, src);
|
|
|
|
GetBindingPtr(bindval, dst);
|
2017-06-01 18:12:14 +03:00
|
|
|
rb_vm_block_copy(bindval, &dst->block, &src->block);
|
|
|
|
RB_OBJ_WRITE(bindval, &dst->pathobj, src->pathobj);
|
2012-06-04 06:49:37 +04:00
|
|
|
dst->first_lineno = src->first_lineno;
|
2007-02-02 18:21:41 +03:00
|
|
|
return bindval;
|
|
|
|
}
|
|
|
|
|
2009-09-21 15:06:32 +04:00
|
|
|
/* :nodoc: */
|
2007-02-02 18:21:41 +03:00
|
|
|
static VALUE
|
|
|
|
binding_clone(VALUE self)
|
|
|
|
{
|
|
|
|
VALUE bindval = binding_dup(self);
|
|
|
|
CLONESETUP(bindval, self);
|
|
|
|
return bindval;
|
|
|
|
}
|
|
|
|
|
2012-08-22 09:12:31 +04:00
|
|
|
VALUE
|
|
|
|
rb_binding_new(void)
|
|
|
|
{
|
2017-10-28 14:15:56 +03:00
|
|
|
rb_execution_context_t *ec = GET_EC();
|
|
|
|
return rb_vm_make_binding(ec, ec->cfp);
|
2012-08-22 09:12:31 +04:00
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* binding -> a_binding
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Returns a +Binding+ object, describing the variable and
|
|
|
|
* method bindings at the point of call. This object can be used when
|
|
|
|
* calling +eval+ to execute the evaluated command in this
|
2011-05-27 17:55:43 +04:00
|
|
|
* environment. See also the description of class +Binding+.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2011-03-07 11:44:45 +03:00
|
|
|
* def get_binding(param)
|
2017-01-17 00:08:12 +03:00
|
|
|
* binding
|
2007-02-02 18:21:41 +03:00
|
|
|
* end
|
2011-03-07 11:44:45 +03:00
|
|
|
* b = get_binding("hello")
|
2007-02-02 18:21:41 +03:00
|
|
|
* eval("param", b) #=> "hello"
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_f_binding(VALUE self)
|
|
|
|
{
|
|
|
|
return rb_binding_new();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* binding.eval(string [, filename [,lineno]]) -> obj
|
2007-02-02 18:21:41 +03:00
|
|
|
*
|
|
|
|
* Evaluates the Ruby expression(s) in <em>string</em>, in the
|
|
|
|
* <em>binding</em>'s context. If the optional <em>filename</em> and
|
|
|
|
* <em>lineno</em> parameters are present, they will be used when
|
|
|
|
* reporting syntax errors.
|
|
|
|
*
|
2011-03-07 11:44:45 +03:00
|
|
|
* def get_binding(param)
|
2017-01-17 00:08:12 +03:00
|
|
|
* binding
|
2007-02-02 18:21:41 +03:00
|
|
|
* end
|
2011-03-07 11:44:45 +03:00
|
|
|
* b = get_binding("hello")
|
2007-02-02 18:21:41 +03:00
|
|
|
* b.eval("param") #=> "hello"
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2007-02-05 21:50:35 +03:00
|
|
|
bind_eval(int argc, VALUE *argv, VALUE bindval)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2007-02-05 21:50:35 +03:00
|
|
|
VALUE args[4];
|
|
|
|
|
|
|
|
rb_scan_args(argc, argv, "12", &args[0], &args[2], &args[3]);
|
|
|
|
args[1] = bindval;
|
|
|
|
return rb_f_eval(argc+1, args, Qnil /* self will be searched in eval */);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2016-07-28 14:02:30 +03:00
|
|
|
static const VALUE *
|
2017-06-12 05:20:09 +03:00
|
|
|
get_local_variable_ptr(const rb_env_t **envp, ID lid)
|
2013-08-09 13:51:00 +04:00
|
|
|
{
|
2017-06-12 05:20:09 +03:00
|
|
|
const rb_env_t *env = *envp;
|
2013-08-09 13:51:00 +04:00
|
|
|
do {
|
2016-08-03 04:50:50 +03:00
|
|
|
if (!VM_ENV_FLAGS(env->ep, VM_FRAME_FLAG_CFRAME)) {
|
|
|
|
const rb_iseq_t *iseq = env->iseq;
|
|
|
|
unsigned int i;
|
2013-08-09 13:51:00 +04:00
|
|
|
|
2016-08-03 04:50:50 +03:00
|
|
|
VM_ASSERT(rb_obj_is_iseq((VALUE)iseq));
|
2013-08-09 13:51:00 +04:00
|
|
|
|
2015-07-22 01:52:59 +03:00
|
|
|
for (i=0; i<iseq->body->local_table_size; i++) {
|
|
|
|
if (iseq->body->local_table[i] == lid) {
|
2017-10-24 14:13:49 +03:00
|
|
|
if (iseq->body->local_iseq == iseq &&
|
|
|
|
iseq->body->param.flags.has_block &&
|
|
|
|
(unsigned int)iseq->body->param.block_start == i) {
|
|
|
|
const VALUE *ep = env->ep;
|
|
|
|
if (!VM_ENV_FLAGS(ep, VM_FRAME_FLAG_MODIFIED_BLOCK_PARAM)) {
|
2017-10-27 02:33:59 +03:00
|
|
|
RB_OBJ_WRITE(env, &env->env[i], rb_vm_bh_to_procval(GET_EC(), VM_ENV_BLOCK_HANDLER(ep)));
|
2017-10-24 14:13:49 +03:00
|
|
|
VM_ENV_FLAGS_SET(ep, VM_FRAME_FLAG_MODIFIED_BLOCK_PARAM);
|
|
|
|
}
|
|
|
|
}
|
2017-10-24 14:13:50 +03:00
|
|
|
|
2017-06-12 05:20:09 +03:00
|
|
|
*envp = env;
|
2015-05-21 14:52:21 +03:00
|
|
|
return &env->env[i];
|
|
|
|
}
|
2013-08-09 13:51:00 +04:00
|
|
|
}
|
|
|
|
}
|
2015-05-21 11:45:57 +03:00
|
|
|
else {
|
2017-06-12 05:20:09 +03:00
|
|
|
*envp = NULL;
|
2015-05-21 11:45:57 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
2016-07-28 22:13:26 +03:00
|
|
|
} while ((env = rb_vm_env_prev_env(env)) != NULL);
|
2013-08-09 13:51:00 +04:00
|
|
|
|
2017-06-12 05:20:09 +03:00
|
|
|
*envp = NULL;
|
2015-05-21 11:45:57 +03:00
|
|
|
return NULL;
|
2013-08-09 13:51:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check local variable name.
|
|
|
|
* returns ID if it's an already interned symbol, or 0 with setting
|
|
|
|
* local name in String to *namep.
|
|
|
|
*/
|
|
|
|
static ID
|
|
|
|
check_local_id(VALUE bindval, volatile VALUE *pname)
|
|
|
|
{
|
|
|
|
ID lid = rb_check_id(pname);
|
2015-10-28 09:24:12 +03:00
|
|
|
VALUE name = *pname;
|
2013-08-09 13:51:00 +04:00
|
|
|
|
|
|
|
if (lid) {
|
2013-08-09 17:24:37 +04:00
|
|
|
if (!rb_is_local_id(lid)) {
|
2015-10-28 09:24:12 +03:00
|
|
|
rb_name_err_raise("wrong local variable name `%1$s' for %2$s",
|
|
|
|
bindval, ID2SYM(lid));
|
2013-08-09 13:51:00 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2015-10-28 09:24:12 +03:00
|
|
|
if (!rb_is_local_name(name)) {
|
|
|
|
rb_name_err_raise("wrong local variable name `%1$s' for %2$s",
|
|
|
|
bindval, name);
|
|
|
|
}
|
2013-08-09 13:51:00 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return lid;
|
|
|
|
}
|
|
|
|
|
2013-12-24 20:03:12 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* binding.local_variables -> Array
|
|
|
|
*
|
2017-01-17 00:08:12 +03:00
|
|
|
* Returns the names of the binding's local variables as symbols.
|
2013-12-24 20:03:12 +04:00
|
|
|
*
|
|
|
|
* def foo
|
|
|
|
* a = 1
|
|
|
|
* 2.times do |n|
|
|
|
|
* binding.local_variables #=> [:a, :n]
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
*
|
2017-01-17 00:08:12 +03:00
|
|
|
* This method is the short version of the following code:
|
2013-12-24 20:03:12 +04:00
|
|
|
*
|
|
|
|
* binding.eval("local_variables")
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
bind_local_variables(VALUE bindval)
|
|
|
|
{
|
|
|
|
const rb_binding_t *bind;
|
2015-07-14 20:36:36 +03:00
|
|
|
const rb_env_t *env;
|
2013-12-24 20:03:12 +04:00
|
|
|
|
|
|
|
GetBindingPtr(bindval, bind);
|
2016-07-28 22:13:26 +03:00
|
|
|
env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
|
2015-07-14 20:36:36 +03:00
|
|
|
return rb_vm_env_local_variables(env);
|
2013-12-24 20:03:12 +04:00
|
|
|
}
|
|
|
|
|
2013-08-09 13:51:00 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* binding.local_variable_get(symbol) -> obj
|
|
|
|
*
|
2017-01-17 00:08:12 +03:00
|
|
|
* Returns the value of the local variable +symbol+.
|
2013-08-09 13:51:00 +04:00
|
|
|
*
|
2013-08-10 04:19:44 +04:00
|
|
|
* def foo
|
|
|
|
* a = 1
|
|
|
|
* binding.local_variable_get(:a) #=> 1
|
|
|
|
* binding.local_variable_get(:b) #=> NameError
|
|
|
|
* end
|
2013-08-09 13:51:00 +04:00
|
|
|
*
|
2017-01-17 00:08:12 +03:00
|
|
|
* This method is the short version of the following code:
|
2013-08-09 13:51:00 +04:00
|
|
|
*
|
2013-08-10 04:19:44 +04:00
|
|
|
* binding.eval("#{symbol}")
|
2013-08-09 13:51:00 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
bind_local_variable_get(VALUE bindval, VALUE sym)
|
|
|
|
{
|
|
|
|
ID lid = check_local_id(bindval, &sym);
|
|
|
|
const rb_binding_t *bind;
|
|
|
|
const VALUE *ptr;
|
2017-06-12 05:20:09 +03:00
|
|
|
const rb_env_t *env;
|
2013-08-09 13:51:00 +04:00
|
|
|
|
|
|
|
if (!lid) goto undefined;
|
|
|
|
|
|
|
|
GetBindingPtr(bindval, bind);
|
|
|
|
|
2017-06-12 05:20:09 +03:00
|
|
|
env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
|
|
|
|
if ((ptr = get_local_variable_ptr(&env, lid)) == NULL) {
|
2015-10-28 09:24:12 +03:00
|
|
|
sym = ID2SYM(lid);
|
2013-08-09 13:51:00 +04:00
|
|
|
undefined:
|
2017-08-29 10:01:27 +03:00
|
|
|
rb_name_err_raise("local variable `%1$s' is not defined for %2$s",
|
2015-10-28 09:24:12 +03:00
|
|
|
bindval, sym);
|
2013-08-09 13:51:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return *ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* binding.local_variable_set(symbol, obj) -> obj
|
|
|
|
*
|
|
|
|
* Set local variable named +symbol+ as +obj+.
|
|
|
|
*
|
2013-08-10 04:19:44 +04:00
|
|
|
* def foo
|
|
|
|
* a = 1
|
2015-05-07 16:28:03 +03:00
|
|
|
* bind = binding
|
|
|
|
* bind.local_variable_set(:a, 2) # set existing local variable `a'
|
|
|
|
* bind.local_variable_set(:b, 3) # create new local variable `b'
|
2017-01-17 00:08:12 +03:00
|
|
|
* # `b' exists only in binding
|
|
|
|
*
|
|
|
|
* p bind.local_variable_get(:a) #=> 2
|
|
|
|
* p bind.local_variable_get(:b) #=> 3
|
|
|
|
* p a #=> 2
|
|
|
|
* p b #=> NameError
|
2013-08-10 04:19:44 +04:00
|
|
|
* end
|
2013-08-09 13:51:00 +04:00
|
|
|
*
|
2017-01-17 00:08:12 +03:00
|
|
|
* This method behaves similarly to the following code:
|
2013-08-09 13:51:00 +04:00
|
|
|
*
|
|
|
|
* binding.eval("#{symbol} = #{obj}")
|
|
|
|
*
|
2017-01-17 00:08:12 +03:00
|
|
|
* if +obj+ can be dumped in Ruby code.
|
2013-08-09 13:51:00 +04:00
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
bind_local_variable_set(VALUE bindval, VALUE sym, VALUE val)
|
|
|
|
{
|
|
|
|
ID lid = check_local_id(bindval, &sym);
|
|
|
|
rb_binding_t *bind;
|
2016-07-28 14:02:30 +03:00
|
|
|
const VALUE *ptr;
|
2016-07-28 22:13:26 +03:00
|
|
|
const rb_env_t *env;
|
2013-08-09 13:51:00 +04:00
|
|
|
|
|
|
|
if (!lid) lid = rb_intern_str(sym);
|
|
|
|
|
|
|
|
GetBindingPtr(bindval, bind);
|
2016-07-28 22:13:26 +03:00
|
|
|
env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
|
2017-06-12 05:20:09 +03:00
|
|
|
if ((ptr = get_local_variable_ptr(&env, lid)) == NULL) {
|
2013-08-09 13:51:00 +04:00
|
|
|
/* not found. create new env */
|
2017-06-01 18:12:14 +03:00
|
|
|
ptr = rb_binding_add_dynavars(bindval, bind, 1, &lid);
|
2016-07-28 22:13:26 +03:00
|
|
|
env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
|
2013-08-09 13:51:00 +04:00
|
|
|
}
|
|
|
|
|
2016-07-28 22:13:26 +03:00
|
|
|
RB_OBJ_WRITE(env, ptr, val);
|
2013-08-09 13:51:00 +04:00
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* binding.local_variable_defined?(symbol) -> obj
|
|
|
|
*
|
2017-01-17 00:08:12 +03:00
|
|
|
* Returns +true+ if a local variable +symbol+ exists.
|
2013-08-09 13:51:00 +04:00
|
|
|
*
|
2013-08-10 04:19:44 +04:00
|
|
|
* def foo
|
|
|
|
* a = 1
|
|
|
|
* binding.local_variable_defined?(:a) #=> true
|
|
|
|
* binding.local_variable_defined?(:b) #=> false
|
|
|
|
* end
|
2013-08-09 13:51:00 +04:00
|
|
|
*
|
2017-01-17 00:08:12 +03:00
|
|
|
* This method is the short version of the following code:
|
2013-08-09 13:51:00 +04:00
|
|
|
*
|
2013-08-10 04:19:44 +04:00
|
|
|
* binding.eval("defined?(#{symbol}) == 'local-variable'")
|
2013-08-09 13:51:00 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
bind_local_variable_defined_p(VALUE bindval, VALUE sym)
|
|
|
|
{
|
|
|
|
ID lid = check_local_id(bindval, &sym);
|
|
|
|
const rb_binding_t *bind;
|
2017-06-12 05:20:09 +03:00
|
|
|
const rb_env_t *env;
|
2013-08-09 13:51:00 +04:00
|
|
|
|
|
|
|
if (!lid) return Qfalse;
|
|
|
|
|
|
|
|
GetBindingPtr(bindval, bind);
|
2017-06-12 05:20:09 +03:00
|
|
|
env = VM_ENV_ENVVAL_PTR(vm_block_ep(&bind->block));
|
|
|
|
return get_local_variable_ptr(&env, lid) ? Qtrue : Qfalse;
|
2013-08-09 13:51:00 +04:00
|
|
|
}
|
|
|
|
|
2014-07-01 21:24:02 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* binding.receiver -> object
|
|
|
|
*
|
|
|
|
* Returns the bound receiver of the binding object.
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
bind_receiver(VALUE bindval)
|
|
|
|
{
|
|
|
|
const rb_binding_t *bind;
|
|
|
|
GetBindingPtr(bindval, bind);
|
2016-07-28 14:02:30 +03:00
|
|
|
return vm_block_self(&bind->block);
|
2014-07-01 21:24:02 +04:00
|
|
|
}
|
|
|
|
|
2017-12-26 11:38:35 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* binding.source_location -> [String, Integer]
|
|
|
|
*
|
|
|
|
* Returns the Ruby source filename and line number of the binding object.
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
bind_location(VALUE bindval)
|
|
|
|
{
|
|
|
|
VALUE loc[2];
|
|
|
|
const rb_binding_t *bind;
|
|
|
|
GetBindingPtr(bindval, bind);
|
|
|
|
loc[0] = pathobj_path(bind->pathobj);
|
|
|
|
loc[1] = INT2FIX(bind->first_lineno);
|
|
|
|
|
|
|
|
return rb_ary_new4(2, loc);
|
|
|
|
}
|
|
|
|
|
2015-10-16 06:21:10 +03:00
|
|
|
static VALUE
|
2015-11-10 12:24:41 +03:00
|
|
|
cfunc_proc_new(VALUE klass, VALUE ifunc, int8_t is_lambda)
|
2015-10-16 06:21:10 +03:00
|
|
|
{
|
|
|
|
rb_proc_t *proc;
|
2015-11-10 12:24:41 +03:00
|
|
|
cfunc_proc_t *sproc;
|
|
|
|
VALUE procval = TypedData_Make_Struct(klass, cfunc_proc_t, &proc_data_type, sproc);
|
2016-07-28 14:02:30 +03:00
|
|
|
VALUE *ep;
|
|
|
|
|
2015-11-10 12:24:41 +03:00
|
|
|
proc = &sproc->basic;
|
2016-07-28 14:02:30 +03:00
|
|
|
vm_block_type_set(&proc->block, block_type_ifunc);
|
|
|
|
|
|
|
|
*(VALUE **)&proc->block.as.captured.ep = ep = sproc->env + VM_ENV_DATA_SIZE-1;
|
2016-08-03 03:16:34 +03:00
|
|
|
ep[VM_ENV_DATA_INDEX_FLAGS] = VM_FRAME_MAGIC_IFUNC | VM_FRAME_FLAG_CFRAME | VM_ENV_FLAG_LOCAL | VM_ENV_FLAG_ESCAPED;
|
2016-07-28 14:02:30 +03:00
|
|
|
ep[VM_ENV_DATA_INDEX_ME_CREF] = Qfalse;
|
|
|
|
ep[VM_ENV_DATA_INDEX_SPECVAL] = VM_BLOCK_HANDLER_NONE;
|
|
|
|
ep[VM_ENV_DATA_INDEX_ENV] = Qundef; /* envval */
|
|
|
|
|
|
|
|
/* self? */
|
|
|
|
RB_OBJ_WRITE(procval, &proc->block.as.captured.code.ifunc, ifunc);
|
2015-11-10 12:24:41 +03:00
|
|
|
proc->is_lambda = is_lambda;
|
2015-10-16 06:21:10 +03:00
|
|
|
return procval;
|
|
|
|
}
|
|
|
|
|
2015-11-10 12:24:41 +03:00
|
|
|
static VALUE
|
|
|
|
sym_proc_new(VALUE klass, VALUE sym)
|
|
|
|
{
|
2016-07-28 14:02:30 +03:00
|
|
|
VALUE procval = rb_proc_alloc(klass);
|
|
|
|
rb_proc_t *proc;
|
|
|
|
GetProcPtr(procval, proc);
|
|
|
|
|
|
|
|
vm_block_type_set(&proc->block, block_type_symbol);
|
|
|
|
RB_OBJ_WRITE(procval, &proc->block.as.symbol, sym);
|
|
|
|
return procval;
|
2015-11-10 12:24:41 +03:00
|
|
|
}
|
|
|
|
|
2017-07-18 11:31:02 +03:00
|
|
|
struct vm_ifunc *
|
2019-08-26 08:25:53 +03:00
|
|
|
rb_vm_ifunc_new(rb_block_call_func_t func, const void *data, int min_argc, int max_argc)
|
2017-07-18 11:31:02 +03:00
|
|
|
{
|
|
|
|
union {
|
|
|
|
struct vm_ifunc_argc argc;
|
|
|
|
VALUE packed;
|
|
|
|
} arity;
|
|
|
|
|
|
|
|
if (min_argc < UNLIMITED_ARGUMENTS ||
|
|
|
|
#if SIZEOF_INT * 2 > SIZEOF_VALUE
|
|
|
|
min_argc >= (int)(1U << (SIZEOF_VALUE * CHAR_BIT) / 2) ||
|
|
|
|
#endif
|
|
|
|
0) {
|
|
|
|
rb_raise(rb_eRangeError, "minimum argument number out of range: %d",
|
|
|
|
min_argc);
|
|
|
|
}
|
|
|
|
if (max_argc < UNLIMITED_ARGUMENTS ||
|
|
|
|
#if SIZEOF_INT * 2 > SIZEOF_VALUE
|
|
|
|
max_argc >= (int)(1U << (SIZEOF_VALUE * CHAR_BIT) / 2) ||
|
|
|
|
#endif
|
|
|
|
0) {
|
|
|
|
rb_raise(rb_eRangeError, "maximum argument number out of range: %d",
|
|
|
|
max_argc);
|
|
|
|
}
|
|
|
|
arity.argc.min = min_argc;
|
|
|
|
arity.argc.max = max_argc;
|
|
|
|
return IFUNC_NEW(func, data, arity.packed);
|
|
|
|
}
|
|
|
|
|
mjit_compile.c: merge initial JIT compiler
which has been developed by Takashi Kokubun <takashikkbn@gmail> as
YARV-MJIT. Many of its bugs are fixed by wanabe <s.wanabe@gmail.com>.
This JIT compiler is designed to be a safe migration path to introduce
JIT compiler to MRI. So this commit does not include any bytecode
changes or dynamic instruction modifications, which are done in original
MJIT.
This commit even strips off some aggressive optimizations from
YARV-MJIT, and thus it's slower than YARV-MJIT too. But it's still
fairly faster than Ruby 2.5 in some benchmarks (attached below).
Note that this JIT compiler passes `make test`, `make test-all`, `make
test-spec` without JIT, and even with JIT. Not only it's perfectly safe
with JIT disabled because it does not replace VM instructions unlike
MJIT, but also with JIT enabled it stably runs Ruby applications
including Rails applications.
I'm expecting this version as just "initial" JIT compiler. I have many
optimization ideas which are skipped for initial merging, and you may
easily replace this JIT compiler with a faster one by just replacing
mjit_compile.c. `mjit_compile` interface is designed for the purpose.
common.mk: update dependencies for mjit_compile.c.
internal.h: declare `rb_vm_insn_addr2insn` for MJIT.
vm.c: exclude some definitions if `-DMJIT_HEADER` is provided to
compiler. This avoids to include some functions which take a long time
to compile, e.g. vm_exec_core. Some of the purpose is achieved in
transform_mjit_header.rb (see `IGNORED_FUNCTIONS`) but others are
manually resolved for now. Load mjit_helper.h for MJIT header.
mjit_helper.h: New. This is a file used only by JIT-ed code. I'll
refactor `mjit_call_cfunc` later.
vm_eval.c: add some #ifdef switches to skip compiling some functions
like Init_vm_eval.
win32/mkexports.rb: export thread/ec functions, which are used by MJIT.
include/ruby/defines.h: add MJIT_FUNC_EXPORTED macro alis to clarify
that a function is exported only for MJIT.
array.c: export a function used by MJIT.
bignum.c: ditto.
class.c: ditto.
compile.c: ditto.
error.c: ditto.
gc.c: ditto.
hash.c: ditto.
iseq.c: ditto.
numeric.c: ditto.
object.c: ditto.
proc.c: ditto.
re.c: ditto.
st.c: ditto.
string.c: ditto.
thread.c: ditto.
variable.c: ditto.
vm_backtrace.c: ditto.
vm_insnhelper.c: ditto.
vm_method.c: ditto.
I would like to improve maintainability of function exports, but I
believe this way is acceptable as initial merging if we clarify the
new exports are for MJIT (so that we can use them as TODO list to fix)
and add unit tests to detect unresolved symbols.
I'll add unit tests of JIT compilations in succeeding commits.
Author: Takashi Kokubun <takashikkbn@gmail.com>
Contributor: wanabe <s.wanabe@gmail.com>
Part of [Feature #14235]
---
* Known issues
* Code generated by gcc is faster than clang. The benchmark may be worse
in macOS. Following benchmark result is provided by gcc w/ Linux.
* Performance is decreased when Google Chrome is running
* JIT can work on MinGW, but it doesn't improve performance at least
in short running benchmark.
* Currently it doesn't perform well with Rails. We'll try to fix this
before release.
---
* Benchmark reslts
Benchmarked with:
Intel 4.0GHz i7-4790K with 16GB memory under x86-64 Ubuntu 8 Cores
- 2.0.0-p0: Ruby 2.0.0-p0
- r62186: Ruby trunk (early 2.6.0), before MJIT changes
- JIT off: On this commit, but without `--jit` option
- JIT on: On this commit, and with `--jit` option
** Optcarrot fps
Benchmark: https://github.com/mame/optcarrot
| |2.0.0-p0 |r62186 |JIT off |JIT on |
|:--------|:--------|:--------|:--------|:--------|
|fps |37.32 |51.46 |51.31 |58.88 |
|vs 2.0.0 |1.00x |1.38x |1.37x |1.58x |
** MJIT benchmarks
Benchmark: https://github.com/benchmark-driver/mjit-benchmarks
(Original: https://github.com/vnmakarov/ruby/tree/rtl_mjit_branch/MJIT-benchmarks)
| |2.0.0-p0 |r62186 |JIT off |JIT on |
|:----------|:--------|:--------|:--------|:--------|
|aread |1.00 |1.09 |1.07 |2.19 |
|aref |1.00 |1.13 |1.11 |2.22 |
|aset |1.00 |1.50 |1.45 |2.64 |
|awrite |1.00 |1.17 |1.13 |2.20 |
|call |1.00 |1.29 |1.26 |2.02 |
|const2 |1.00 |1.10 |1.10 |2.19 |
|const |1.00 |1.11 |1.10 |2.19 |
|fannk |1.00 |1.04 |1.02 |1.00 |
|fib |1.00 |1.32 |1.31 |1.84 |
|ivread |1.00 |1.13 |1.12 |2.43 |
|ivwrite |1.00 |1.23 |1.21 |2.40 |
|mandelbrot |1.00 |1.13 |1.16 |1.28 |
|meteor |1.00 |2.97 |2.92 |3.17 |
|nbody |1.00 |1.17 |1.15 |1.49 |
|nest-ntimes|1.00 |1.22 |1.20 |1.39 |
|nest-while |1.00 |1.10 |1.10 |1.37 |
|norm |1.00 |1.18 |1.16 |1.24 |
|nsvb |1.00 |1.16 |1.16 |1.17 |
|red-black |1.00 |1.02 |0.99 |1.12 |
|sieve |1.00 |1.30 |1.28 |1.62 |
|trees |1.00 |1.14 |1.13 |1.19 |
|while |1.00 |1.12 |1.11 |2.41 |
** Discourse's script/bench.rb
Benchmark: https://github.com/discourse/discourse/blob/v1.8.7/script/bench.rb
NOTE: Rails performance was somehow a little degraded with JIT for now.
We should fix this.
(At least I know opt_aref is performing badly in JIT and I have an idea
to fix it. Please wait for the fix.)
*** JIT off
Your Results: (note for timings- percentile is first, duration is second in millisecs)
categories_admin:
50: 17
75: 18
90: 22
99: 29
home_admin:
50: 21
75: 21
90: 27
99: 40
topic_admin:
50: 17
75: 18
90: 22
99: 32
categories:
50: 35
75: 41
90: 43
99: 77
home:
50: 39
75: 46
90: 49
99: 95
topic:
50: 46
75: 52
90: 56
99: 101
*** JIT on
Your Results: (note for timings- percentile is first, duration is second in millisecs)
categories_admin:
50: 19
75: 21
90: 25
99: 33
home_admin:
50: 24
75: 26
90: 30
99: 35
topic_admin:
50: 19
75: 20
90: 25
99: 30
categories:
50: 40
75: 44
90: 48
99: 76
home:
50: 42
75: 48
90: 51
99: 89
topic:
50: 49
75: 55
90: 58
99: 99
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62197 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-02-04 14:22:28 +03:00
|
|
|
MJIT_FUNC_EXPORTED VALUE
|
2015-11-10 12:24:41 +03:00
|
|
|
rb_func_proc_new(rb_block_call_func_t func, VALUE val)
|
|
|
|
{
|
2017-07-18 11:31:02 +03:00
|
|
|
struct vm_ifunc *ifunc = rb_vm_ifunc_proc_new(func, (void *)val);
|
|
|
|
return cfunc_proc_new(rb_cProc, (VALUE)ifunc, 0);
|
2015-11-10 12:24:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
2017-07-18 11:31:02 +03:00
|
|
|
rb_func_lambda_new(rb_block_call_func_t func, VALUE val, int min_argc, int max_argc)
|
2015-11-10 12:24:41 +03:00
|
|
|
{
|
2017-07-18 11:31:02 +03:00
|
|
|
struct vm_ifunc *ifunc = rb_vm_ifunc_new(func, (void *)val, min_argc, max_argc);
|
|
|
|
return cfunc_proc_new(rb_cProc, (VALUE)ifunc, 1);
|
2015-11-10 12:24:41 +03:00
|
|
|
}
|
|
|
|
|
2015-06-19 07:54:23 +03:00
|
|
|
static const char proc_without_block[] = "tried to create Proc object without a block";
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
static VALUE
|
2019-11-12 16:58:09 +03:00
|
|
|
proc_new(VALUE klass, int8_t is_lambda, int8_t kernel)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2016-07-28 14:02:30 +03:00
|
|
|
VALUE procval;
|
2017-10-28 14:43:17 +03:00
|
|
|
const rb_execution_context_t *ec = GET_EC();
|
|
|
|
rb_control_frame_t *cfp = ec->cfp;
|
2016-07-28 14:02:30 +03:00
|
|
|
VALUE block_handler;
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2016-07-28 14:02:30 +03:00
|
|
|
if ((block_handler = rb_vm_frame_block_handler(cfp)) == VM_BLOCK_HANDLER_NONE) {
|
2015-06-19 08:53:41 +03:00
|
|
|
#if !PROC_NEW_REQUIRES_BLOCK
|
* blockinlining.c, compile.c, compile.h, error.c, eval.c,
eval_intern.h, eval_jump.h, eval_load.c, eval_method.h,
eval_safe.h, gc.c, insnhelper.h, insns.def, iseq.c, proc.c,
process.c, signal.c, thread.c, thread_pthread.ci, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, vm_macro.def,
yarv.h, yarvcore.h, yarvcore.c: change type and macro names:
* yarv_*_t -> rb_*_t
* yarv_*_struct -> rb_*_struct
* yarv_tag -> rb_vm_tag
* YARV_* -> RUBY_VM_*
* proc.c, vm.c: move functions about env object creation
from proc.c to vm.c.
* proc.c, yarvcore.c: fix rb_cVM initialization place.
* inits.c: change Init_ISeq() order (after Init_VM).
* ruby.h, proc.c: change declaration place of rb_cEnv
from proc.c to ruby.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-06 22:00:03 +03:00
|
|
|
cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(cfp);
|
2007-05-01 08:35:58 +04:00
|
|
|
|
2016-07-28 14:02:30 +03:00
|
|
|
if ((block_handler = rb_vm_frame_block_handler(cfp)) != VM_BLOCK_HANDLER_NONE) {
|
2007-02-02 18:21:41 +03:00
|
|
|
if (is_lambda) {
|
2019-01-10 11:19:14 +03:00
|
|
|
rb_raise(rb_eArgError, proc_without_block);
|
|
|
|
}
|
|
|
|
else {
|
2019-11-12 16:58:09 +03:00
|
|
|
const char *name = kernel ? "Kernel#proc" : "Proc.new";
|
|
|
|
rb_warn("Capturing the given block using %s is deprecated; "
|
|
|
|
"use `&block` instead", name);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
}
|
2015-06-19 08:53:41 +03:00
|
|
|
#else
|
2019-11-12 16:58:09 +03:00
|
|
|
if (0);
|
2015-06-19 08:53:41 +03:00
|
|
|
#endif
|
2007-02-02 18:21:41 +03:00
|
|
|
else {
|
2015-06-19 07:54:23 +03:00
|
|
|
rb_raise(rb_eArgError, proc_without_block);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-28 14:02:30 +03:00
|
|
|
/* block is in cf */
|
|
|
|
switch (vm_block_handler_type(block_handler)) {
|
|
|
|
case block_handler_type_proc:
|
|
|
|
procval = VM_BH_TO_PROC(block_handler);
|
2008-12-25 06:51:35 +03:00
|
|
|
|
2016-07-28 14:02:30 +03:00
|
|
|
if (RBASIC_CLASS(procval) == klass) {
|
2008-12-25 06:51:35 +03:00
|
|
|
return procval;
|
|
|
|
}
|
|
|
|
else {
|
2017-12-28 23:09:24 +03:00
|
|
|
VALUE newprocval = rb_proc_dup(procval);
|
2018-05-23 09:56:08 +03:00
|
|
|
RBASIC_SET_CLASS(newprocval, klass);
|
2008-12-25 06:51:35 +03:00
|
|
|
return newprocval;
|
|
|
|
}
|
2016-07-28 14:02:30 +03:00
|
|
|
break;
|
2007-06-29 11:42:16 +04:00
|
|
|
|
2016-07-28 14:02:30 +03:00
|
|
|
case block_handler_type_symbol:
|
|
|
|
return (klass != rb_cProc) ?
|
|
|
|
sym_proc_new(klass, VM_BH_TO_SYMBOL(block_handler)) :
|
|
|
|
rb_sym_to_proc(VM_BH_TO_SYMBOL(block_handler));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case block_handler_type_ifunc:
|
|
|
|
case block_handler_type_iseq:
|
2017-10-28 14:43:17 +03:00
|
|
|
return rb_vm_make_proc_lambda(ec, VM_BH_TO_CAPT_BLOCK(block_handler), klass, is_lambda);
|
2016-07-28 14:02:30 +03:00
|
|
|
}
|
|
|
|
VM_UNREACHABLE(proc_new);
|
|
|
|
return Qnil;
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Proc.new {|...| block } -> a_proc
|
|
|
|
* Proc.new -> a_proc
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2019-03-28 06:33:35 +03:00
|
|
|
* Creates a new Proc object, bound to the current context. Proc::new
|
|
|
|
* may be called without a block only within a method with an
|
|
|
|
* attached block, in which case that block is converted to the Proc
|
|
|
|
* object.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* def proc_from
|
|
|
|
* Proc.new
|
|
|
|
* end
|
|
|
|
* proc = proc_from { "hello" }
|
|
|
|
* proc.call #=> "hello"
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2007-12-05 10:18:52 +03:00
|
|
|
rb_proc_s_new(int argc, VALUE *argv, VALUE klass)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2019-11-12 16:58:09 +03:00
|
|
|
VALUE block = proc_new(klass, FALSE, FALSE);
|
2007-12-05 10:18:52 +03:00
|
|
|
|
2019-09-14 11:49:33 +03:00
|
|
|
rb_obj_call_init_kw(block, argc, argv, RB_PASS_CALLED_KEYWORDS);
|
2007-12-05 10:18:52 +03:00
|
|
|
return block;
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2019-08-29 04:23:14 +03:00
|
|
|
VALUE
|
|
|
|
rb_block_proc(void)
|
|
|
|
{
|
2019-11-12 16:58:09 +03:00
|
|
|
return proc_new(rb_cProc, FALSE, FALSE);
|
2019-08-29 04:23:14 +03:00
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* proc { |...| block } -> a_proc
|
2007-02-02 18:21:41 +03:00
|
|
|
*
|
2019-03-28 06:33:35 +03:00
|
|
|
* Equivalent to Proc.new.
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
2019-08-28 12:19:11 +03:00
|
|
|
static VALUE
|
|
|
|
f_proc(VALUE _)
|
|
|
|
{
|
2019-11-12 16:58:09 +03:00
|
|
|
return proc_new(rb_cProc, FALSE, TRUE);
|
2019-08-28 12:19:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-29 04:23:14 +03:00
|
|
|
VALUE
|
|
|
|
rb_block_lambda(void)
|
|
|
|
{
|
2019-11-12 16:58:09 +03:00
|
|
|
return proc_new(rb_cProc, TRUE, FALSE);
|
2019-08-29 04:23:14 +03:00
|
|
|
}
|
|
|
|
|
2013-04-30 07:30:21 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* lambda { |...| block } -> a_proc
|
|
|
|
*
|
2019-03-28 06:33:35 +03:00
|
|
|
* Equivalent to Proc.new, except the resulting Proc objects check the
|
|
|
|
* number of parameters passed when called.
|
2013-04-30 07:30:21 +04:00
|
|
|
*/
|
|
|
|
|
2019-08-28 12:19:11 +03:00
|
|
|
static VALUE
|
|
|
|
f_lambda(VALUE _)
|
|
|
|
{
|
|
|
|
return rb_block_lambda();
|
|
|
|
}
|
|
|
|
|
2018-10-21 18:33:30 +03:00
|
|
|
/* Document-method: Proc#===
|
2011-10-04 02:59:45 +04:00
|
|
|
*
|
|
|
|
* call-seq:
|
|
|
|
* proc === obj -> result_of_proc
|
|
|
|
*
|
2018-10-26 15:23:25 +03:00
|
|
|
* Invokes the block with +obj+ as the proc's parameter like Proc#call.
|
|
|
|
* This allows a proc object to be the target of a +when+ clause
|
|
|
|
* in a case statement.
|
2011-10-04 02:59:45 +04:00
|
|
|
*/
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/* CHECKME: are the argument checking semantics correct? */
|
|
|
|
|
|
|
|
/*
|
2018-10-21 18:33:30 +03:00
|
|
|
* Document-method: Proc#[]
|
|
|
|
* Document-method: Proc#call
|
|
|
|
* Document-method: Proc#yield
|
2016-05-16 00:11:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* prc.call(params,...) -> obj
|
|
|
|
* prc[params,...] -> obj
|
|
|
|
* prc.(params,...) -> obj
|
2017-03-03 11:45:04 +03:00
|
|
|
* prc.yield(params,...) -> obj
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Invokes the block, setting the block's parameters to the values in
|
|
|
|
* <i>params</i> using something close to method calling semantics.
|
2017-03-03 11:45:04 +03:00
|
|
|
* Returns the value of the last expression evaluated in the block.
|
2015-02-12 04:46:33 +03:00
|
|
|
*
|
2017-03-03 11:45:04 +03:00
|
|
|
* a_proc = Proc.new {|scalar, *values| values.map {|value| value*scalar } }
|
|
|
|
* a_proc.call(9, 1, 2, 3) #=> [9, 18, 27]
|
|
|
|
* a_proc[9, 1, 2, 3] #=> [9, 18, 27]
|
|
|
|
* a_proc.(9, 1, 2, 3) #=> [9, 18, 27]
|
|
|
|
* a_proc.yield(9, 1, 2, 3) #=> [9, 18, 27]
|
2015-02-12 04:46:33 +03:00
|
|
|
*
|
2017-03-03 11:45:04 +03:00
|
|
|
* Note that <code>prc.()</code> invokes <code>prc.call()</code> with
|
|
|
|
* the parameters given. It's syntactic sugar to hide "call".
|
2007-02-02 18:21:41 +03:00
|
|
|
*
|
2019-03-28 06:33:35 +03:00
|
|
|
* For procs created using #lambda or <code>->()</code> an error is
|
|
|
|
* generated if the wrong number of parameters are passed to the
|
|
|
|
* proc. For procs created using Proc.new or Kernel.proc, extra
|
|
|
|
* parameters are silently discarded and missing parameters are set
|
|
|
|
* to +nil+.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2017-03-03 11:45:04 +03:00
|
|
|
* a_proc = proc {|a,b| [a,b] }
|
|
|
|
* a_proc.call(1) #=> [1, nil]
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2017-03-03 11:45:04 +03:00
|
|
|
* a_proc = lambda {|a,b| [a,b] }
|
|
|
|
* a_proc.call(1) # ArgumentError: wrong number of arguments (given 1, expected 2)
|
2011-10-04 03:16:11 +04:00
|
|
|
*
|
2017-03-03 11:45:04 +03:00
|
|
|
* See also Proc#lambda?.
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
2015-10-06 00:34:24 +03:00
|
|
|
#if 0
|
2007-02-02 18:21:41 +03:00
|
|
|
static VALUE
|
|
|
|
proc_call(int argc, VALUE *argv, VALUE procval)
|
|
|
|
{
|
2016-07-28 14:02:30 +03:00
|
|
|
/* removed */
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
2015-10-06 00:34:24 +03:00
|
|
|
#endif
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2009-03-14 12:05:09 +03:00
|
|
|
#if SIZEOF_LONG > SIZEOF_INT
|
2009-03-14 12:18:09 +03:00
|
|
|
static inline int
|
|
|
|
check_argc(long argc)
|
|
|
|
{
|
2009-03-14 12:05:09 +03:00
|
|
|
if (argc > INT_MAX || argc < 0) {
|
|
|
|
rb_raise(rb_eArgError, "too many arguments (%lu)",
|
|
|
|
(unsigned long)argc);
|
|
|
|
}
|
2009-03-14 12:18:09 +03:00
|
|
|
return (int)argc;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define check_argc(argc) (argc)
|
2009-03-14 12:05:09 +03:00
|
|
|
#endif
|
2009-03-14 12:18:09 +03:00
|
|
|
|
2019-09-26 19:10:42 +03:00
|
|
|
VALUE
|
|
|
|
rb_proc_call_kw(VALUE self, VALUE args, int kw_splat)
|
|
|
|
{
|
|
|
|
VALUE vret;
|
|
|
|
rb_proc_t *proc;
|
|
|
|
VALUE v;
|
|
|
|
int argc = check_argc(RARRAY_LEN(args));
|
|
|
|
const VALUE *argv = RARRAY_CONST_PTR(args);
|
|
|
|
GetProcPtr(self, proc);
|
|
|
|
v = rb_adjust_argv_kw_splat(&argc, &argv, &kw_splat);
|
|
|
|
vret = rb_vm_invoke_proc(GET_EC(), proc, argc, argv,
|
|
|
|
kw_splat, VM_BLOCK_HANDLER_NONE);
|
|
|
|
rb_free_tmp_buffer(&v);
|
|
|
|
RB_GC_GUARD(self);
|
|
|
|
RB_GC_GUARD(args);
|
|
|
|
return vret;
|
|
|
|
}
|
|
|
|
|
2009-03-14 12:18:09 +03:00
|
|
|
VALUE
|
|
|
|
rb_proc_call(VALUE self, VALUE args)
|
|
|
|
{
|
2011-12-24 07:38:56 +04:00
|
|
|
VALUE vret;
|
2009-03-14 12:18:09 +03:00
|
|
|
rb_proc_t *proc;
|
|
|
|
GetProcPtr(self, proc);
|
2017-10-27 09:06:31 +03:00
|
|
|
vret = rb_vm_invoke_proc(GET_EC(), proc,
|
2016-07-28 14:02:30 +03:00
|
|
|
check_argc(RARRAY_LEN(args)), RARRAY_CONST_PTR(args),
|
2019-09-30 02:41:00 +03:00
|
|
|
RB_NO_KEYWORDS, VM_BLOCK_HANDLER_NONE);
|
2011-12-24 07:38:56 +04:00
|
|
|
RB_GC_GUARD(self);
|
|
|
|
RB_GC_GUARD(args);
|
|
|
|
return vret;
|
2008-06-10 20:33:51 +04:00
|
|
|
}
|
|
|
|
|
2016-07-28 14:02:30 +03:00
|
|
|
static VALUE
|
|
|
|
proc_to_block_handler(VALUE procval)
|
|
|
|
{
|
|
|
|
return NIL_P(procval) ? VM_BLOCK_HANDLER_NONE : procval;
|
|
|
|
}
|
|
|
|
|
2019-09-25 21:22:14 +03:00
|
|
|
VALUE
|
|
|
|
rb_proc_call_with_block_kw(VALUE self, int argc, const VALUE *argv, VALUE passed_procval, int kw_splat)
|
|
|
|
{
|
|
|
|
rb_execution_context_t *ec = GET_EC();
|
|
|
|
VALUE vret;
|
|
|
|
rb_proc_t *proc;
|
|
|
|
VALUE v = rb_adjust_argv_kw_splat(&argc, &argv, &kw_splat);
|
|
|
|
GetProcPtr(self, proc);
|
|
|
|
vret = rb_vm_invoke_proc(ec, proc, argc, argv, kw_splat, proc_to_block_handler(passed_procval));
|
|
|
|
rb_free_tmp_buffer(&v);
|
|
|
|
RB_GC_GUARD(self);
|
|
|
|
return vret;
|
|
|
|
}
|
|
|
|
|
2008-06-10 20:33:51 +04:00
|
|
|
VALUE
|
2016-07-28 14:02:30 +03:00
|
|
|
rb_proc_call_with_block(VALUE self, int argc, const VALUE *argv, VALUE passed_procval)
|
2008-06-10 20:33:51 +04:00
|
|
|
{
|
2017-10-27 09:06:31 +03:00
|
|
|
rb_execution_context_t *ec = GET_EC();
|
2011-12-24 07:38:56 +04:00
|
|
|
VALUE vret;
|
2008-07-31 20:02:18 +04:00
|
|
|
rb_proc_t *proc;
|
2008-06-10 20:33:51 +04:00
|
|
|
GetProcPtr(self, proc);
|
2019-09-30 02:41:00 +03:00
|
|
|
vret = rb_vm_invoke_proc(ec, proc, argc, argv, RB_NO_KEYWORDS, proc_to_block_handler(passed_procval));
|
2011-12-24 07:38:56 +04:00
|
|
|
RB_GC_GUARD(self);
|
|
|
|
return vret;
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2013-07-15 08:26:58 +04:00
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* prc.arity -> integer
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2014-03-02 05:55:33 +04:00
|
|
|
* Returns the number of mandatory arguments. If the block
|
2007-02-02 18:21:41 +03:00
|
|
|
* is declared to take no arguments, returns 0. If the block is known
|
2014-03-02 05:55:33 +04:00
|
|
|
* to take exactly n arguments, returns n.
|
|
|
|
* If the block has optional arguments, returns -n-1, where n is the
|
|
|
|
* number of mandatory arguments, with the exception for blocks that
|
|
|
|
* are not lambdas and have only a finite number of optional arguments;
|
|
|
|
* in this latter case, returns n.
|
2017-11-02 23:21:15 +03:00
|
|
|
* Keyword arguments will be considered as a single additional argument,
|
2014-03-02 05:55:49 +04:00
|
|
|
* that argument being mandatory if any keyword argument is mandatory.
|
2019-03-28 06:33:35 +03:00
|
|
|
* A #proc with no argument declarations is the same as a block
|
|
|
|
* declaring <code>||</code> as its arguments.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2014-03-02 05:55:17 +04:00
|
|
|
* proc {}.arity #=> 0
|
|
|
|
* proc { || }.arity #=> 0
|
|
|
|
* proc { |a| }.arity #=> 1
|
|
|
|
* proc { |a, b| }.arity #=> 2
|
|
|
|
* proc { |a, b, c| }.arity #=> 3
|
|
|
|
* proc { |*a| }.arity #=> -1
|
|
|
|
* proc { |a, *b| }.arity #=> -2
|
|
|
|
* proc { |a, *b, c| }.arity #=> -3
|
2014-03-02 05:55:49 +04:00
|
|
|
* proc { |x:, y:, z:0| }.arity #=> 1
|
|
|
|
* proc { |*a, x:, y:0| }.arity #=> -2
|
2014-03-02 05:55:17 +04:00
|
|
|
*
|
2017-11-02 23:20:11 +03:00
|
|
|
* proc { |a=0| }.arity #=> 0
|
|
|
|
* lambda { |a=0| }.arity #=> -1
|
|
|
|
* proc { |a=0, b| }.arity #=> 1
|
|
|
|
* lambda { |a=0, b| }.arity #=> -2
|
|
|
|
* proc { |a=0, b=0| }.arity #=> 0
|
|
|
|
* lambda { |a=0, b=0| }.arity #=> -1
|
|
|
|
* proc { |a, b=0| }.arity #=> 1
|
|
|
|
* lambda { |a, b=0| }.arity #=> -2
|
|
|
|
* proc { |(a, b), c=0| }.arity #=> 1
|
|
|
|
* lambda { |(a, b), c=0| }.arity #=> -2
|
2014-03-02 05:55:49 +04:00
|
|
|
* proc { |a, x:0, y:0| }.arity #=> 1
|
|
|
|
* lambda { |a, x:0, y:0| }.arity #=> -2
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_arity(VALUE self)
|
2009-03-14 11:59:12 +03:00
|
|
|
{
|
|
|
|
int arity = rb_proc_arity(self);
|
|
|
|
return INT2FIX(arity);
|
|
|
|
}
|
|
|
|
|
2013-02-02 02:46:07 +04:00
|
|
|
static inline int
|
|
|
|
rb_iseq_min_max_arity(const rb_iseq_t *iseq, int *max)
|
|
|
|
{
|
2015-07-22 01:52:59 +03:00
|
|
|
*max = iseq->body->param.flags.has_rest == FALSE ?
|
|
|
|
iseq->body->param.lead_num + iseq->body->param.opt_num + iseq->body->param.post_num +
|
|
|
|
(iseq->body->param.flags.has_kw == TRUE || iseq->body->param.flags.has_kwrest == TRUE)
|
2013-02-02 02:46:07 +04:00
|
|
|
: UNLIMITED_ARGUMENTS;
|
2015-07-22 01:52:59 +03:00
|
|
|
return iseq->body->param.lead_num + iseq->body->param.post_num + (iseq->body->param.flags.has_kw && iseq->body->param.keyword->required_num > 0);
|
2013-02-02 02:46:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2017-07-18 10:48:37 +03:00
|
|
|
rb_vm_block_min_max_arity(const struct rb_block *block, int *max)
|
2016-07-28 14:02:30 +03:00
|
|
|
{
|
2017-04-29 13:27:46 +03:00
|
|
|
again:
|
2016-07-28 14:02:30 +03:00
|
|
|
switch (vm_block_type(block)) {
|
|
|
|
case block_type_iseq:
|
2017-02-16 11:24:37 +03:00
|
|
|
return rb_iseq_min_max_arity(rb_iseq_check(block->as.captured.code.iseq), max);
|
2016-07-28 14:02:30 +03:00
|
|
|
case block_type_proc:
|
2017-04-29 13:27:46 +03:00
|
|
|
block = vm_proc_block(block->as.proc);
|
|
|
|
goto again;
|
2016-07-28 14:02:30 +03:00
|
|
|
case block_type_ifunc:
|
|
|
|
{
|
|
|
|
const struct vm_ifunc *ifunc = block->as.captured.code.ifunc;
|
|
|
|
if (IS_METHOD_PROC_IFUNC(ifunc)) {
|
2013-02-02 02:46:07 +04:00
|
|
|
/* e.g. method(:foo).to_proc.arity */
|
2015-03-11 16:31:11 +03:00
|
|
|
return method_min_max_arity((VALUE)ifunc->data, max);
|
2007-05-01 09:01:15 +04:00
|
|
|
}
|
2017-07-18 11:31:02 +03:00
|
|
|
*max = ifunc->argc.max;
|
|
|
|
return ifunc->argc.min;
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
2016-07-28 14:02:30 +03:00
|
|
|
case block_type_symbol:
|
|
|
|
break;
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
2013-02-02 02:46:07 +04:00
|
|
|
*max = UNLIMITED_ARGUMENTS;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-15 08:26:58 +04:00
|
|
|
/*
|
|
|
|
* Returns the number of required parameters and stores the maximum
|
|
|
|
* number of parameters in max, or UNLIMITED_ARGUMENTS if no max.
|
|
|
|
* For non-lambda procs, the maximum is the number of non-ignored
|
|
|
|
* parameters even though there is no actual limit to the number of parameters
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
rb_proc_min_max_arity(VALUE self, int *max)
|
|
|
|
{
|
|
|
|
rb_proc_t *proc;
|
|
|
|
GetProcPtr(self, proc);
|
2017-07-18 10:48:37 +03:00
|
|
|
return rb_vm_block_min_max_arity(&proc->block, max);
|
2013-07-15 08:26:58 +04:00
|
|
|
}
|
|
|
|
|
2013-02-02 02:46:07 +04:00
|
|
|
int
|
|
|
|
rb_proc_arity(VALUE self)
|
|
|
|
{
|
|
|
|
rb_proc_t *proc;
|
2016-09-25 16:33:08 +03:00
|
|
|
int max, min;
|
2013-02-02 02:46:07 +04:00
|
|
|
GetProcPtr(self, proc);
|
2017-07-18 10:48:37 +03:00
|
|
|
min = rb_vm_block_min_max_arity(&proc->block, &max);
|
2013-02-02 02:46:07 +04:00
|
|
|
return (proc->is_lambda ? min == max : max != UNLIMITED_ARGUMENTS) ? min : -min-1;
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2016-07-28 14:02:30 +03:00
|
|
|
static void
|
|
|
|
block_setup(struct rb_block *block, VALUE block_handler)
|
|
|
|
{
|
|
|
|
switch (vm_block_handler_type(block_handler)) {
|
|
|
|
case block_handler_type_iseq:
|
|
|
|
block->type = block_type_iseq;
|
|
|
|
block->as.captured = *VM_BH_TO_ISEQ_BLOCK(block_handler);
|
|
|
|
break;
|
|
|
|
case block_handler_type_ifunc:
|
|
|
|
block->type = block_type_ifunc;
|
|
|
|
block->as.captured = *VM_BH_TO_IFUNC_BLOCK(block_handler);
|
|
|
|
break;
|
|
|
|
case block_handler_type_symbol:
|
|
|
|
block->type = block_type_symbol;
|
|
|
|
block->as.symbol = VM_BH_TO_SYMBOL(block_handler);
|
|
|
|
break;
|
|
|
|
case block_handler_type_proc:
|
|
|
|
block->type = block_type_proc;
|
|
|
|
block->as.proc = VM_BH_TO_PROC(block_handler);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-15 08:26:58 +04:00
|
|
|
int
|
|
|
|
rb_block_arity(void)
|
|
|
|
{
|
|
|
|
int min, max;
|
2017-10-28 14:46:32 +03:00
|
|
|
const rb_execution_context_t *ec = GET_EC();
|
|
|
|
rb_control_frame_t *cfp = ec->cfp;
|
2016-07-28 14:02:30 +03:00
|
|
|
VALUE block_handler = rb_vm_frame_block_handler(cfp);
|
|
|
|
struct rb_block block;
|
|
|
|
|
|
|
|
if (block_handler == VM_BLOCK_HANDLER_NONE) {
|
|
|
|
rb_raise(rb_eArgError, "no block given");
|
|
|
|
}
|
|
|
|
|
|
|
|
block_setup(&block, block_handler);
|
2017-07-18 10:48:37 +03:00
|
|
|
min = rb_vm_block_min_max_arity(&block, &max);
|
2016-07-28 14:02:30 +03:00
|
|
|
|
|
|
|
switch (vm_block_type(&block)) {
|
|
|
|
case block_handler_type_symbol:
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
case block_handler_type_proc:
|
|
|
|
{
|
|
|
|
VALUE procval = block_handler;
|
2015-12-17 10:16:14 +03:00
|
|
|
rb_proc_t *proc;
|
2016-07-28 14:02:30 +03:00
|
|
|
GetProcPtr(procval, proc);
|
|
|
|
return (proc->is_lambda ? min == max : max != UNLIMITED_ARGUMENTS) ? min : -min-1;
|
|
|
|
/* fall through */
|
2015-12-17 10:16:14 +03:00
|
|
|
}
|
2016-07-28 14:02:30 +03:00
|
|
|
|
|
|
|
default:
|
|
|
|
return max != UNLIMITED_ARGUMENTS ? min : -min-1;
|
2013-07-15 08:26:58 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-18 10:48:37 +03:00
|
|
|
int
|
|
|
|
rb_block_min_max_arity(int *max)
|
|
|
|
{
|
2017-10-28 14:46:32 +03:00
|
|
|
const rb_execution_context_t *ec = GET_EC();
|
|
|
|
rb_control_frame_t *cfp = ec->cfp;
|
2017-07-18 10:48:37 +03:00
|
|
|
VALUE block_handler = rb_vm_frame_block_handler(cfp);
|
|
|
|
struct rb_block block;
|
|
|
|
|
|
|
|
if (block_handler == VM_BLOCK_HANDLER_NONE) {
|
|
|
|
rb_raise(rb_eArgError, "no block given");
|
|
|
|
}
|
|
|
|
|
|
|
|
block_setup(&block, block_handler);
|
|
|
|
return rb_vm_block_min_max_arity(&block, max);
|
|
|
|
}
|
|
|
|
|
2015-05-21 12:01:44 +03:00
|
|
|
const rb_iseq_t *
|
2009-09-30 08:15:46 +04:00
|
|
|
rb_proc_get_iseq(VALUE self, int *is_proc)
|
2007-12-05 10:18:52 +03:00
|
|
|
{
|
2015-05-21 12:01:44 +03:00
|
|
|
const rb_proc_t *proc;
|
2016-07-28 14:02:30 +03:00
|
|
|
const struct rb_block *block;
|
2007-12-05 10:18:52 +03:00
|
|
|
|
|
|
|
GetProcPtr(self, proc);
|
2016-07-28 14:02:30 +03:00
|
|
|
block = &proc->block;
|
2008-12-05 07:05:48 +03:00
|
|
|
if (is_proc) *is_proc = !proc->is_lambda;
|
2016-07-28 14:02:30 +03:00
|
|
|
|
|
|
|
switch (vm_block_type(block)) {
|
|
|
|
case block_type_iseq:
|
|
|
|
return rb_iseq_check(block->as.captured.code.iseq);
|
|
|
|
case block_type_proc:
|
|
|
|
return rb_proc_get_iseq(block->as.proc, is_proc);
|
|
|
|
case block_type_ifunc:
|
|
|
|
{
|
|
|
|
const struct vm_ifunc *ifunc = block->as.captured.code.ifunc;
|
|
|
|
if (IS_METHOD_PROC_IFUNC(ifunc)) {
|
|
|
|
/* method(:foo).to_proc */
|
|
|
|
if (is_proc) *is_proc = 0;
|
|
|
|
return rb_method_iseq((VALUE)ifunc->data);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-11-28 07:19:37 +03:00
|
|
|
}
|
2016-07-28 14:02:30 +03:00
|
|
|
case block_type_symbol:
|
2015-12-19 18:29:01 +03:00
|
|
|
return NULL;
|
2015-10-16 06:21:10 +03:00
|
|
|
}
|
2016-07-28 14:02:30 +03:00
|
|
|
|
|
|
|
VM_UNREACHABLE(rb_proc_get_iseq);
|
|
|
|
return NULL;
|
2007-12-05 10:18:52 +03:00
|
|
|
}
|
|
|
|
|
2019-08-31 08:11:00 +03:00
|
|
|
static VALUE
|
2015-05-21 12:01:44 +03:00
|
|
|
iseq_location(const rb_iseq_t *iseq)
|
2007-12-05 10:18:52 +03:00
|
|
|
{
|
|
|
|
VALUE loc[2];
|
|
|
|
|
|
|
|
if (!iseq) return Qnil;
|
2015-12-08 16:58:50 +03:00
|
|
|
rb_iseq_check(iseq);
|
2017-06-01 03:05:33 +03:00
|
|
|
loc[0] = rb_iseq_path(iseq);
|
2016-12-20 08:26:07 +03:00
|
|
|
loc[1] = iseq->body->location.first_lineno;
|
|
|
|
|
2007-12-05 10:18:52 +03:00
|
|
|
return rb_ary_new4(2, loc);
|
|
|
|
}
|
|
|
|
|
2019-08-31 08:11:00 +03:00
|
|
|
MJIT_FUNC_EXPORTED VALUE
|
|
|
|
rb_iseq_location(const rb_iseq_t *iseq)
|
|
|
|
{
|
|
|
|
return iseq_location(iseq);
|
|
|
|
}
|
|
|
|
|
2008-09-26 17:47:01 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-10-26 09:11:23 +03:00
|
|
|
* prc.source_location -> [String, Integer]
|
2008-09-26 17:47:01 +04:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* Returns the Ruby source filename and line number containing this proc
|
2017-01-17 00:08:12 +03:00
|
|
|
* or +nil+ if this proc was not defined in Ruby (i.e. native).
|
2008-09-26 17:47:01 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_proc_location(VALUE self)
|
|
|
|
{
|
2015-12-19 18:14:50 +03:00
|
|
|
return iseq_location(rb_proc_get_iseq(self, 0));
|
2008-09-26 17:47:01 +04:00
|
|
|
}
|
|
|
|
|
2018-06-03 08:10:41 +03:00
|
|
|
VALUE
|
|
|
|
rb_unnamed_parameters(int arity)
|
2008-11-28 07:19:37 +03:00
|
|
|
{
|
|
|
|
VALUE a, param = rb_ary_new2((arity < 0) ? -arity : arity);
|
|
|
|
int n = (arity < 0) ? ~arity : arity;
|
|
|
|
ID req, rest;
|
|
|
|
CONST_ID(req, "req");
|
|
|
|
a = rb_ary_new3(1, ID2SYM(req));
|
|
|
|
OBJ_FREEZE(a);
|
|
|
|
for (; n; --n) {
|
|
|
|
rb_ary_push(param, a);
|
|
|
|
}
|
|
|
|
if (arity < 0) {
|
|
|
|
CONST_ID(rest, "rest");
|
|
|
|
rb_ary_store(param, ~arity, rb_ary_new3(1, ID2SYM(rest)));
|
|
|
|
}
|
|
|
|
return param;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2011-05-27 17:55:43 +04:00
|
|
|
* prc.parameters -> array
|
2008-11-28 07:19:37 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* Returns the parameter information of this proc.
|
2010-05-18 01:07:46 +04:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* prc = lambda{|x, y=42, *other|}
|
|
|
|
* prc.parameters #=> [[:req, :x], [:opt, :y], [:rest, :other]]
|
2008-11-28 07:19:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_proc_parameters(VALUE self)
|
|
|
|
{
|
2008-12-05 07:05:48 +03:00
|
|
|
int is_proc;
|
2015-12-19 18:14:50 +03:00
|
|
|
const rb_iseq_t *iseq = rb_proc_get_iseq(self, &is_proc);
|
2008-11-28 07:19:37 +03:00
|
|
|
if (!iseq) {
|
2018-06-03 08:10:41 +03:00
|
|
|
return rb_unnamed_parameters(rb_proc_arity(self));
|
2008-11-28 07:19:37 +03:00
|
|
|
}
|
2008-12-05 07:05:48 +03:00
|
|
|
return rb_iseq_parameters(iseq, is_proc);
|
2008-11-28 07:19:37 +03:00
|
|
|
}
|
|
|
|
|
2012-02-21 04:13:44 +04:00
|
|
|
st_index_t
|
|
|
|
rb_hash_proc(st_index_t hash, VALUE prc)
|
|
|
|
{
|
2012-02-21 11:08:21 +04:00
|
|
|
rb_proc_t *proc;
|
|
|
|
GetProcPtr(prc, proc);
|
2016-07-28 14:02:30 +03:00
|
|
|
hash = rb_hash_uint(hash, (st_index_t)proc->block.as.captured.code.val);
|
|
|
|
hash = rb_hash_uint(hash, (st_index_t)proc->block.as.captured.self);
|
|
|
|
return rb_hash_uint(hash, (st_index_t)proc->block.as.captured.ep >> 16);
|
2012-02-21 04:13:44 +04:00
|
|
|
}
|
|
|
|
|
mjit_compile.c: merge initial JIT compiler
which has been developed by Takashi Kokubun <takashikkbn@gmail> as
YARV-MJIT. Many of its bugs are fixed by wanabe <s.wanabe@gmail.com>.
This JIT compiler is designed to be a safe migration path to introduce
JIT compiler to MRI. So this commit does not include any bytecode
changes or dynamic instruction modifications, which are done in original
MJIT.
This commit even strips off some aggressive optimizations from
YARV-MJIT, and thus it's slower than YARV-MJIT too. But it's still
fairly faster than Ruby 2.5 in some benchmarks (attached below).
Note that this JIT compiler passes `make test`, `make test-all`, `make
test-spec` without JIT, and even with JIT. Not only it's perfectly safe
with JIT disabled because it does not replace VM instructions unlike
MJIT, but also with JIT enabled it stably runs Ruby applications
including Rails applications.
I'm expecting this version as just "initial" JIT compiler. I have many
optimization ideas which are skipped for initial merging, and you may
easily replace this JIT compiler with a faster one by just replacing
mjit_compile.c. `mjit_compile` interface is designed for the purpose.
common.mk: update dependencies for mjit_compile.c.
internal.h: declare `rb_vm_insn_addr2insn` for MJIT.
vm.c: exclude some definitions if `-DMJIT_HEADER` is provided to
compiler. This avoids to include some functions which take a long time
to compile, e.g. vm_exec_core. Some of the purpose is achieved in
transform_mjit_header.rb (see `IGNORED_FUNCTIONS`) but others are
manually resolved for now. Load mjit_helper.h for MJIT header.
mjit_helper.h: New. This is a file used only by JIT-ed code. I'll
refactor `mjit_call_cfunc` later.
vm_eval.c: add some #ifdef switches to skip compiling some functions
like Init_vm_eval.
win32/mkexports.rb: export thread/ec functions, which are used by MJIT.
include/ruby/defines.h: add MJIT_FUNC_EXPORTED macro alis to clarify
that a function is exported only for MJIT.
array.c: export a function used by MJIT.
bignum.c: ditto.
class.c: ditto.
compile.c: ditto.
error.c: ditto.
gc.c: ditto.
hash.c: ditto.
iseq.c: ditto.
numeric.c: ditto.
object.c: ditto.
proc.c: ditto.
re.c: ditto.
st.c: ditto.
string.c: ditto.
thread.c: ditto.
variable.c: ditto.
vm_backtrace.c: ditto.
vm_insnhelper.c: ditto.
vm_method.c: ditto.
I would like to improve maintainability of function exports, but I
believe this way is acceptable as initial merging if we clarify the
new exports are for MJIT (so that we can use them as TODO list to fix)
and add unit tests to detect unresolved symbols.
I'll add unit tests of JIT compilations in succeeding commits.
Author: Takashi Kokubun <takashikkbn@gmail.com>
Contributor: wanabe <s.wanabe@gmail.com>
Part of [Feature #14235]
---
* Known issues
* Code generated by gcc is faster than clang. The benchmark may be worse
in macOS. Following benchmark result is provided by gcc w/ Linux.
* Performance is decreased when Google Chrome is running
* JIT can work on MinGW, but it doesn't improve performance at least
in short running benchmark.
* Currently it doesn't perform well with Rails. We'll try to fix this
before release.
---
* Benchmark reslts
Benchmarked with:
Intel 4.0GHz i7-4790K with 16GB memory under x86-64 Ubuntu 8 Cores
- 2.0.0-p0: Ruby 2.0.0-p0
- r62186: Ruby trunk (early 2.6.0), before MJIT changes
- JIT off: On this commit, but without `--jit` option
- JIT on: On this commit, and with `--jit` option
** Optcarrot fps
Benchmark: https://github.com/mame/optcarrot
| |2.0.0-p0 |r62186 |JIT off |JIT on |
|:--------|:--------|:--------|:--------|:--------|
|fps |37.32 |51.46 |51.31 |58.88 |
|vs 2.0.0 |1.00x |1.38x |1.37x |1.58x |
** MJIT benchmarks
Benchmark: https://github.com/benchmark-driver/mjit-benchmarks
(Original: https://github.com/vnmakarov/ruby/tree/rtl_mjit_branch/MJIT-benchmarks)
| |2.0.0-p0 |r62186 |JIT off |JIT on |
|:----------|:--------|:--------|:--------|:--------|
|aread |1.00 |1.09 |1.07 |2.19 |
|aref |1.00 |1.13 |1.11 |2.22 |
|aset |1.00 |1.50 |1.45 |2.64 |
|awrite |1.00 |1.17 |1.13 |2.20 |
|call |1.00 |1.29 |1.26 |2.02 |
|const2 |1.00 |1.10 |1.10 |2.19 |
|const |1.00 |1.11 |1.10 |2.19 |
|fannk |1.00 |1.04 |1.02 |1.00 |
|fib |1.00 |1.32 |1.31 |1.84 |
|ivread |1.00 |1.13 |1.12 |2.43 |
|ivwrite |1.00 |1.23 |1.21 |2.40 |
|mandelbrot |1.00 |1.13 |1.16 |1.28 |
|meteor |1.00 |2.97 |2.92 |3.17 |
|nbody |1.00 |1.17 |1.15 |1.49 |
|nest-ntimes|1.00 |1.22 |1.20 |1.39 |
|nest-while |1.00 |1.10 |1.10 |1.37 |
|norm |1.00 |1.18 |1.16 |1.24 |
|nsvb |1.00 |1.16 |1.16 |1.17 |
|red-black |1.00 |1.02 |0.99 |1.12 |
|sieve |1.00 |1.30 |1.28 |1.62 |
|trees |1.00 |1.14 |1.13 |1.19 |
|while |1.00 |1.12 |1.11 |2.41 |
** Discourse's script/bench.rb
Benchmark: https://github.com/discourse/discourse/blob/v1.8.7/script/bench.rb
NOTE: Rails performance was somehow a little degraded with JIT for now.
We should fix this.
(At least I know opt_aref is performing badly in JIT and I have an idea
to fix it. Please wait for the fix.)
*** JIT off
Your Results: (note for timings- percentile is first, duration is second in millisecs)
categories_admin:
50: 17
75: 18
90: 22
99: 29
home_admin:
50: 21
75: 21
90: 27
99: 40
topic_admin:
50: 17
75: 18
90: 22
99: 32
categories:
50: 35
75: 41
90: 43
99: 77
home:
50: 39
75: 46
90: 49
99: 95
topic:
50: 46
75: 52
90: 56
99: 101
*** JIT on
Your Results: (note for timings- percentile is first, duration is second in millisecs)
categories_admin:
50: 19
75: 21
90: 25
99: 33
home_admin:
50: 24
75: 26
90: 30
99: 35
topic_admin:
50: 19
75: 20
90: 25
99: 30
categories:
50: 40
75: 44
90: 48
99: 76
home:
50: 42
75: 48
90: 51
99: 89
topic:
50: 49
75: 55
90: 58
99: 99
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62197 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-02-04 14:22:28 +03:00
|
|
|
MJIT_FUNC_EXPORTED VALUE
|
2015-10-15 07:37:26 +03:00
|
|
|
rb_sym_to_proc(VALUE sym)
|
|
|
|
{
|
|
|
|
static VALUE sym_proc_cache = Qfalse;
|
|
|
|
enum {SYM_PROC_CACHE_SIZE = 67};
|
|
|
|
VALUE proc;
|
|
|
|
long index;
|
|
|
|
ID id;
|
|
|
|
|
|
|
|
if (!sym_proc_cache) {
|
|
|
|
sym_proc_cache = rb_ary_tmp_new(SYM_PROC_CACHE_SIZE * 2);
|
|
|
|
rb_gc_register_mark_object(sym_proc_cache);
|
|
|
|
rb_ary_store(sym_proc_cache, SYM_PROC_CACHE_SIZE*2 - 1, Qnil);
|
|
|
|
}
|
|
|
|
|
|
|
|
id = SYM2ID(sym);
|
|
|
|
index = (id % SYM_PROC_CACHE_SIZE) << 1;
|
|
|
|
|
2018-10-10 07:17:01 +03:00
|
|
|
if (RARRAY_AREF(sym_proc_cache, index) == sym) {
|
|
|
|
return RARRAY_AREF(sym_proc_cache, index + 1);
|
2015-10-15 07:37:26 +03:00
|
|
|
}
|
|
|
|
else {
|
2018-10-10 07:17:01 +03:00
|
|
|
proc = sym_proc_new(rb_cProc, ID2SYM(id));
|
|
|
|
RARRAY_ASET(sym_proc_cache, index, sym);
|
|
|
|
RARRAY_ASET(sym_proc_cache, index + 1, proc);
|
2015-10-15 07:37:26 +03:00
|
|
|
return proc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* prc.hash -> integer
|
2007-02-02 18:21:41 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* Returns a hash value corresponding to proc body.
|
2014-03-14 05:27:43 +04:00
|
|
|
*
|
|
|
|
* See also Object#hash.
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_hash(VALUE self)
|
|
|
|
{
|
2009-09-08 17:10:04 +04:00
|
|
|
st_index_t hash;
|
2012-02-21 04:13:44 +04:00
|
|
|
hash = rb_hash_start(0);
|
2012-02-21 11:08:21 +04:00
|
|
|
hash = rb_hash_proc(hash, self);
|
2009-09-08 17:10:04 +04:00
|
|
|
hash = rb_hash_end(hash);
|
2016-10-04 19:25:01 +03:00
|
|
|
return ST2FIX(hash);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2017-08-10 05:58:36 +03:00
|
|
|
VALUE
|
|
|
|
rb_block_to_s(VALUE self, const struct rb_block *block, const char *additional_info)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2017-03-08 10:34:13 +03:00
|
|
|
VALUE cname = rb_obj_class(self);
|
|
|
|
VALUE str = rb_sprintf("#<%"PRIsVALUE":", cname);
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2016-07-28 14:02:30 +03:00
|
|
|
again:
|
|
|
|
switch (vm_block_type(block)) {
|
|
|
|
case block_type_proc:
|
|
|
|
block = vm_proc_block(block->as.proc);
|
|
|
|
goto again;
|
|
|
|
case block_type_iseq:
|
|
|
|
{
|
|
|
|
const rb_iseq_t *iseq = rb_iseq_check(block->as.captured.code.iseq);
|
2019-08-14 10:25:32 +03:00
|
|
|
rb_str_catf(str, "%p %"PRIsVALUE":%d", (void *)self,
|
2017-06-01 03:05:33 +03:00
|
|
|
rb_iseq_path(iseq),
|
2017-03-08 10:34:13 +03:00
|
|
|
FIX2INT(iseq->body->location.first_lineno));
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
2016-07-28 14:02:30 +03:00
|
|
|
break;
|
|
|
|
case block_type_symbol:
|
2017-03-08 10:34:13 +03:00
|
|
|
rb_str_catf(str, "%p(&%+"PRIsVALUE")", (void *)self, block->as.symbol);
|
2016-07-28 14:02:30 +03:00
|
|
|
break;
|
|
|
|
case block_type_ifunc:
|
2018-01-02 09:41:40 +03:00
|
|
|
rb_str_catf(str, "%p", (void *)block->as.captured.code.ifunc);
|
2016-07-28 14:02:30 +03:00
|
|
|
break;
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2017-08-10 05:58:36 +03:00
|
|
|
if (additional_info) rb_str_cat_cstr(str, additional_info);
|
2017-03-08 10:34:13 +03:00
|
|
|
rb_str_cat_cstr(str, ">");
|
2007-02-02 18:21:41 +03:00
|
|
|
return str;
|
|
|
|
}
|
2017-08-10 05:58:36 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* prc.to_s -> string
|
|
|
|
*
|
|
|
|
* Returns the unique identifier for this proc, along with
|
|
|
|
* an indication of where the proc was defined.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_to_s(VALUE self)
|
|
|
|
{
|
|
|
|
const rb_proc_t *proc;
|
|
|
|
GetProcPtr(self, proc);
|
|
|
|
return rb_block_to_s(self, &proc->block, proc->is_lambda ? " (lambda)" : NULL);
|
|
|
|
}
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2014-01-19 09:43:28 +04:00
|
|
|
* prc.to_proc -> proc
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2019-03-28 06:33:35 +03:00
|
|
|
* Part of the protocol for converting objects to Proc objects.
|
|
|
|
* Instances of class Proc simply return themselves.
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_to_proc(VALUE self)
|
|
|
|
{
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2007-12-24 12:09:21 +03:00
|
|
|
static void
|
2009-07-08 12:13:41 +04:00
|
|
|
bm_mark(void *ptr)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2009-07-08 12:13:41 +04:00
|
|
|
struct METHOD *data = ptr;
|
2019-08-12 23:09:21 +03:00
|
|
|
rb_gc_mark_movable(data->recv);
|
|
|
|
rb_gc_mark_movable(data->klass);
|
|
|
|
rb_gc_mark_movable(data->iclass);
|
|
|
|
rb_gc_mark_movable((VALUE)data->me);
|
2019-05-30 22:08:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bm_compact(void *ptr)
|
|
|
|
{
|
|
|
|
struct METHOD *data = ptr;
|
|
|
|
UPDATE_REFERENCE(data->recv);
|
|
|
|
UPDATE_REFERENCE(data->klass);
|
|
|
|
UPDATE_REFERENCE(data->iclass);
|
2019-10-03 06:26:41 +03:00
|
|
|
UPDATE_TYPED_REFERENCE(rb_method_entry_t *, data->me);
|
2009-08-28 06:45:41 +04:00
|
|
|
}
|
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
static size_t
|
2009-09-09 06:11:35 +04:00
|
|
|
bm_memsize(const void *ptr)
|
2009-07-08 12:13:41 +04:00
|
|
|
{
|
2015-12-09 03:38:32 +03:00
|
|
|
return sizeof(struct METHOD);
|
2009-07-08 12:13:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static const rb_data_type_t method_data_type = {
|
|
|
|
"method",
|
2010-07-18 11:31:54 +04:00
|
|
|
{
|
|
|
|
bm_mark,
|
2015-12-09 22:58:48 +03:00
|
|
|
RUBY_TYPED_DEFAULT_FREE,
|
2010-07-18 11:31:54 +04:00
|
|
|
bm_memsize,
|
2019-05-30 22:08:06 +03:00
|
|
|
bm_compact,
|
2010-07-18 11:31:54 +04:00
|
|
|
},
|
2014-12-01 09:38:04 +03:00
|
|
|
0, 0, RUBY_TYPED_FREE_IMMEDIATELY
|
2009-07-08 12:13:41 +04:00
|
|
|
};
|
|
|
|
|
2010-12-07 16:05:26 +03:00
|
|
|
VALUE
|
2009-07-08 12:13:41 +04:00
|
|
|
rb_obj_is_method(VALUE m)
|
|
|
|
{
|
2010-12-07 16:05:26 +03:00
|
|
|
if (rb_typeddata_is_kind_of(m, &method_data_type)) {
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Qfalse;
|
|
|
|
}
|
2009-07-08 12:13:41 +04:00
|
|
|
}
|
|
|
|
|
2015-03-20 12:41:06 +03:00
|
|
|
static int
|
|
|
|
respond_to_missing_p(VALUE klass, VALUE obj, VALUE sym, int scope)
|
|
|
|
{
|
|
|
|
/* TODO: merge with obj_respond_to() */
|
|
|
|
ID rmiss = idRespond_to_missing;
|
|
|
|
|
|
|
|
if (obj == Qundef) return 0;
|
|
|
|
if (rb_method_basic_definition_p(klass, rmiss)) return 0;
|
|
|
|
return RTEST(rb_funcall(obj, rmiss, 2, sym, scope ? Qfalse : Qtrue));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static VALUE
|
2016-08-18 18:59:12 +03:00
|
|
|
mnew_missing(VALUE klass, VALUE obj, ID id, VALUE mclass)
|
2015-03-20 12:41:06 +03:00
|
|
|
{
|
|
|
|
struct METHOD *data;
|
|
|
|
VALUE method = TypedData_Make_Struct(mclass, struct METHOD, &method_data_type, data);
|
2019-10-03 06:26:41 +03:00
|
|
|
rb_method_entry_t *me;
|
|
|
|
rb_method_definition_t *def;
|
|
|
|
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
RB_OBJ_WRITE(method, &data->recv, obj);
|
|
|
|
RB_OBJ_WRITE(method, &data->klass, klass);
|
2019-10-03 06:26:41 +03:00
|
|
|
|
|
|
|
def = ZALLOC(rb_method_definition_t);
|
|
|
|
def->type = VM_METHOD_TYPE_MISSING;
|
|
|
|
def->original_id = id;
|
|
|
|
|
|
|
|
me = rb_method_entry_create(id, klass, METHOD_VISI_UNDEF, def);
|
|
|
|
|
|
|
|
RB_OBJ_WRITE(method, &data->me, me);
|
2015-03-20 12:41:06 +03:00
|
|
|
|
|
|
|
return method;
|
|
|
|
}
|
|
|
|
|
2019-03-06 14:16:34 +03:00
|
|
|
static VALUE
|
|
|
|
mnew_missing_by_name(VALUE klass, VALUE obj, VALUE *name, int scope, VALUE mclass)
|
|
|
|
{
|
|
|
|
VALUE vid = rb_str_intern(*name);
|
|
|
|
*name = vid;
|
|
|
|
if (!respond_to_missing_p(klass, obj, vid, scope)) return Qfalse;
|
|
|
|
return mnew_missing(klass, obj, SYM2ID(vid), mclass);
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
static VALUE
|
2017-10-06 08:55:11 +03:00
|
|
|
mnew_internal(const rb_method_entry_t *me, VALUE klass, VALUE iclass,
|
2014-07-26 20:22:41 +04:00
|
|
|
VALUE obj, ID id, VALUE mclass, int scope, int error)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2015-03-20 12:41:06 +03:00
|
|
|
struct METHOD *data;
|
|
|
|
VALUE method;
|
2015-06-03 04:39:16 +03:00
|
|
|
rb_method_visibility_t visi = METHOD_VISI_UNDEF;
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
again:
|
2009-08-28 06:45:41 +04:00
|
|
|
if (UNDEFINED_METHOD_ENTRY_P(me)) {
|
2015-03-20 12:41:06 +03:00
|
|
|
if (respond_to_missing_p(klass, obj, ID2SYM(id), scope)) {
|
2016-08-18 18:59:12 +03:00
|
|
|
return mnew_missing(klass, obj, id, mclass);
|
2009-09-24 08:42:28 +04:00
|
|
|
}
|
2014-07-26 20:22:41 +04:00
|
|
|
if (!error) return Qnil;
|
2016-01-03 07:59:54 +03:00
|
|
|
rb_print_undef(klass, id, METHOD_VISI_UNDEF);
|
2007-12-18 02:01:50 +03:00
|
|
|
}
|
2015-06-03 04:39:16 +03:00
|
|
|
if (visi == METHOD_VISI_UNDEF) {
|
2015-06-06 13:19:48 +03:00
|
|
|
visi = METHOD_ENTRY_VISI(me);
|
2015-06-03 04:39:16 +03:00
|
|
|
if (scope && (visi != METHOD_VISI_PUBLIC)) {
|
2014-07-26 20:22:41 +04:00
|
|
|
if (!error) return Qnil;
|
2015-06-03 04:39:16 +03:00
|
|
|
rb_print_inaccessible(klass, id, visi);
|
2010-01-08 17:40:38 +03:00
|
|
|
}
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
2015-06-06 13:19:48 +03:00
|
|
|
if (me->def->type == VM_METHOD_TYPE_ZSUPER) {
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
if (me->defined_class) {
|
2016-10-25 06:54:09 +03:00
|
|
|
VALUE klass = RCLASS_SUPER(RCLASS_ORIGIN(me->defined_class));
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
id = me->def->original_id;
|
2019-10-03 06:26:41 +03:00
|
|
|
me = (rb_method_entry_t *)rb_callable_method_entry_with_refinements(klass, id, &iclass);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
VALUE klass = RCLASS_SUPER(me->owner);
|
|
|
|
id = me->def->original_id;
|
2017-10-06 08:55:11 +03:00
|
|
|
me = rb_method_entry_without_refinements(klass, id, &iclass);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
}
|
2007-02-02 18:21:41 +03:00
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
method = TypedData_Make_Struct(mclass, struct METHOD, &method_data_type, data);
|
2007-02-02 18:21:41 +03:00
|
|
|
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
RB_OBJ_WRITE(method, &data->recv, obj);
|
|
|
|
RB_OBJ_WRITE(method, &data->klass, klass);
|
2017-10-06 08:55:11 +03:00
|
|
|
RB_OBJ_WRITE(method, &data->iclass, iclass);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
RB_OBJ_WRITE(method, &data->me, me);
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
return method;
|
|
|
|
}
|
|
|
|
|
2014-07-26 20:22:41 +04:00
|
|
|
static VALUE
|
2017-10-06 08:55:11 +03:00
|
|
|
mnew_from_me(const rb_method_entry_t *me, VALUE klass, VALUE iclass,
|
2014-07-26 20:22:41 +04:00
|
|
|
VALUE obj, ID id, VALUE mclass, int scope)
|
|
|
|
{
|
2017-10-06 08:55:11 +03:00
|
|
|
return mnew_internal(me, klass, iclass, obj, id, mclass, scope, TRUE);
|
2014-07-26 20:22:41 +04:00
|
|
|
}
|
|
|
|
|
2013-05-13 09:52:03 +04:00
|
|
|
static VALUE
|
|
|
|
mnew(VALUE klass, VALUE obj, ID id, VALUE mclass, int scope)
|
|
|
|
{
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
const rb_method_entry_t *me;
|
2017-10-06 08:55:11 +03:00
|
|
|
VALUE iclass = Qnil;
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
|
|
|
|
if (obj == Qundef) { /* UnboundMethod */
|
2019-01-28 14:45:24 +03:00
|
|
|
me = rb_method_entry_with_refinements(klass, id, &iclass);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
}
|
|
|
|
else {
|
2019-10-03 06:26:41 +03:00
|
|
|
me = (rb_method_entry_t *)rb_callable_method_entry_with_refinements(klass, id, &iclass);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
}
|
2017-10-06 08:55:11 +03:00
|
|
|
return mnew_from_me(me, klass, iclass, obj, id, mclass, scope);
|
2013-05-13 09:52:03 +04:00
|
|
|
}
|
|
|
|
|
2015-08-07 11:07:58 +03:00
|
|
|
static inline VALUE
|
|
|
|
method_entry_defined_class(const rb_method_entry_t *me)
|
|
|
|
{
|
|
|
|
VALUE defined_class = me->defined_class;
|
|
|
|
return defined_class ? defined_class : me->owner;
|
|
|
|
}
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
*
|
2017-11-02 23:23:47 +03:00
|
|
|
* Document-class: Method
|
2007-02-02 18:21:41 +03:00
|
|
|
*
|
2019-03-28 06:33:35 +03:00
|
|
|
* Method objects are created by Object#method, and are associated
|
|
|
|
* with a particular object (not just with a class). They may be
|
|
|
|
* used to invoke the method within the object, and as a block
|
|
|
|
* associated with an iterator. They may also be unbound from one
|
|
|
|
* object (creating an UnboundMethod) and bound to another.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* class Thing
|
|
|
|
* def square(n)
|
|
|
|
* n*n
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
* thing = Thing.new
|
|
|
|
* meth = thing.method(:square)
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* meth.call(9) #=> 81
|
|
|
|
* [ 1, 2, 3 ].collect(&meth) #=> [1, 4, 9]
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2018-10-21 18:33:30 +03:00
|
|
|
* [ 1, 2, 3 ].each(&method(:puts)) #=> prints 1, 2, 3
|
|
|
|
*
|
|
|
|
* require 'date'
|
|
|
|
* %w[2017-03-01 2017-03-02].collect(&Date.method(:parse))
|
|
|
|
* #=> [#<Date: 2017-03-01 ((2457814j,0s,0n),+0s,2299161j)>, #<Date: 2017-03-02 ((2457815j,0s,0n),+0s,2299161j)>]
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2013-04-12 06:59:07 +04:00
|
|
|
* meth.eql?(other_meth) -> true or false
|
2010-05-18 01:07:33 +04:00
|
|
|
* meth == other_meth -> true or false
|
2007-02-02 18:21:41 +03:00
|
|
|
*
|
2009-09-25 00:59:19 +04:00
|
|
|
* Two method objects are equal if they are bound to the same
|
2012-12-28 06:23:11 +04:00
|
|
|
* object and refer to the same method definition and their owners are the
|
|
|
|
* same class or module.
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2007-02-05 21:31:08 +03:00
|
|
|
method_eq(VALUE method, VALUE other)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
|
|
|
struct METHOD *m1, *m2;
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
VALUE klass1, klass2;
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
if (!rb_obj_is_method(other))
|
2007-02-02 18:21:41 +03:00
|
|
|
return Qfalse;
|
|
|
|
if (CLASS_OF(method) != CLASS_OF(other))
|
|
|
|
return Qfalse;
|
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
Check_TypedStruct(method, &method_data_type);
|
|
|
|
m1 = (struct METHOD *)DATA_PTR(method);
|
|
|
|
m2 = (struct METHOD *)DATA_PTR(other);
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2015-08-07 11:07:58 +03:00
|
|
|
klass1 = method_entry_defined_class(m1->me);
|
|
|
|
klass2 = method_entry_defined_class(m2->me);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
|
2011-07-25 18:29:28 +04:00
|
|
|
if (!rb_method_entry_eq(m1->me, m2->me) ||
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
klass1 != klass2 ||
|
|
|
|
m1->klass != m2->klass ||
|
2009-07-15 18:59:41 +04:00
|
|
|
m1->recv != m2->recv) {
|
2007-02-02 18:21:41 +03:00
|
|
|
return Qfalse;
|
2009-07-15 18:59:41 +04:00
|
|
|
}
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* meth.hash -> integer
|
2007-02-02 18:21:41 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* Returns a hash value corresponding to the method object.
|
2014-03-14 05:27:43 +04:00
|
|
|
*
|
|
|
|
* See also Object#hash.
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2007-02-05 21:31:08 +03:00
|
|
|
method_hash(VALUE method)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
|
|
|
struct METHOD *m;
|
2009-09-08 17:10:04 +04:00
|
|
|
st_index_t hash;
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
TypedData_Get_Struct(method, struct METHOD, &method_data_type, m);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
hash = rb_hash_start((st_index_t)m->recv);
|
2012-02-21 04:13:44 +04:00
|
|
|
hash = rb_hash_method_entry(hash, m->me);
|
2009-09-08 17:10:04 +04:00
|
|
|
hash = rb_hash_end(hash);
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2019-04-08 06:26:28 +03:00
|
|
|
return ST2FIX(hash);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* meth.unbind -> unbound_method
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* Dissociates <i>meth</i> from its current receiver. The resulting
|
2019-03-28 06:33:35 +03:00
|
|
|
* UnboundMethod can subsequently be bound to a new object of the
|
|
|
|
* same class (see UnboundMethod).
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2007-02-05 21:31:08 +03:00
|
|
|
method_unbind(VALUE obj)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
|
|
|
VALUE method;
|
|
|
|
struct METHOD *orig, *data;
|
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
TypedData_Get_Struct(obj, struct METHOD, &method_data_type, orig);
|
2009-07-15 18:59:41 +04:00
|
|
|
method = TypedData_Make_Struct(rb_cUnboundMethod, struct METHOD,
|
|
|
|
&method_data_type, data);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
RB_OBJ_WRITE(method, &data->recv, Qundef);
|
|
|
|
RB_OBJ_WRITE(method, &data->klass, orig->klass);
|
2019-10-03 01:20:10 +03:00
|
|
|
RB_OBJ_WRITE(method, &data->iclass, orig->iclass);
|
2015-06-02 07:20:30 +03:00
|
|
|
RB_OBJ_WRITE(method, &data->me, rb_method_entry_clone(orig->me));
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
return method;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* meth.receiver -> object
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Returns the bound receiver of the method object.
|
2018-10-21 18:33:30 +03:00
|
|
|
*
|
|
|
|
* (1..3).method(:map).receiver # => 1..3
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
method_receiver(VALUE obj)
|
|
|
|
{
|
|
|
|
struct METHOD *data;
|
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
TypedData_Get_Struct(obj, struct METHOD, &method_data_type, data);
|
2007-02-02 18:21:41 +03:00
|
|
|
return data->recv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* meth.name -> symbol
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Returns the name of the method.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
method_name(VALUE obj)
|
|
|
|
{
|
|
|
|
struct METHOD *data;
|
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
TypedData_Get_Struct(obj, struct METHOD, &method_data_type, data);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
return ID2SYM(data->me->called_id);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2013-02-13 13:12:04 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* meth.original_name -> symbol
|
|
|
|
*
|
|
|
|
* Returns the original name of the method.
|
2017-09-02 04:41:14 +03:00
|
|
|
*
|
|
|
|
* class C
|
|
|
|
* def foo; end
|
|
|
|
* alias bar foo
|
|
|
|
* end
|
2017-09-02 09:17:52 +03:00
|
|
|
* C.instance_method(:bar).original_name # => :foo
|
2013-02-13 13:12:04 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
method_original_name(VALUE obj)
|
|
|
|
{
|
|
|
|
struct METHOD *data;
|
|
|
|
|
|
|
|
TypedData_Get_Struct(obj, struct METHOD, &method_data_type, data);
|
|
|
|
return ID2SYM(data->me->def->original_id);
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* meth.owner -> class_or_module
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Returns the class or module that defines the method.
|
2019-04-27 05:18:25 +03:00
|
|
|
* See also Method#receiver.
|
2018-10-21 18:33:30 +03:00
|
|
|
*
|
|
|
|
* (1..3).method(:map).owner #=> Enumerable
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
method_owner(VALUE obj)
|
|
|
|
{
|
|
|
|
struct METHOD *data;
|
2009-07-08 12:13:41 +04:00
|
|
|
TypedData_Get_Struct(obj, struct METHOD, &method_data_type, data);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
return data->me->owner;
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2011-07-26 20:05:35 +04:00
|
|
|
void
|
2011-07-23 19:05:03 +04:00
|
|
|
rb_method_name_error(VALUE klass, VALUE str)
|
|
|
|
{
|
2018-10-13 12:59:22 +03:00
|
|
|
#define MSG(s) rb_fstring_lit("undefined method `%1$s' for"s" `%2$s'")
|
2011-07-23 19:05:03 +04:00
|
|
|
VALUE c = klass;
|
2015-10-28 09:24:12 +03:00
|
|
|
VALUE s;
|
2011-07-23 19:05:03 +04:00
|
|
|
|
|
|
|
if (FL_TEST(c, FL_SINGLETON)) {
|
|
|
|
VALUE obj = rb_ivar_get(klass, attached);
|
|
|
|
|
2015-10-28 09:24:12 +03:00
|
|
|
switch (BUILTIN_TYPE(obj)) {
|
2011-07-23 19:05:03 +04:00
|
|
|
case T_MODULE:
|
|
|
|
case T_CLASS:
|
|
|
|
c = obj;
|
2015-10-28 09:24:12 +03:00
|
|
|
s = MSG("");
|
2011-07-23 19:05:03 +04:00
|
|
|
}
|
2015-10-28 09:24:12 +03:00
|
|
|
goto normal_class;
|
2011-07-23 19:05:03 +04:00
|
|
|
}
|
|
|
|
else if (RB_TYPE_P(c, T_MODULE)) {
|
2015-10-28 09:24:12 +03:00
|
|
|
s = MSG(" module");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
normal_class:
|
|
|
|
s = MSG(" class");
|
2011-07-23 19:05:03 +04:00
|
|
|
}
|
2015-10-28 09:24:12 +03:00
|
|
|
rb_name_err_raise_str(s, c, str);
|
|
|
|
#undef MSG
|
2011-07-23 19:05:03 +04:00
|
|
|
}
|
|
|
|
|
2015-03-20 12:41:06 +03:00
|
|
|
static VALUE
|
|
|
|
obj_method(VALUE obj, VALUE vid, int scope)
|
|
|
|
{
|
|
|
|
ID id = rb_check_id(&vid);
|
|
|
|
const VALUE klass = CLASS_OF(obj);
|
|
|
|
const VALUE mclass = rb_cMethod;
|
|
|
|
|
|
|
|
if (!id) {
|
2019-03-06 14:16:34 +03:00
|
|
|
VALUE m = mnew_missing_by_name(klass, obj, &vid, scope, mclass);
|
|
|
|
if (m) return m;
|
2015-03-20 12:41:06 +03:00
|
|
|
rb_method_name_error(klass, vid);
|
|
|
|
}
|
|
|
|
return mnew(klass, obj, id, mclass, scope);
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* obj.method(sym) -> method
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Looks up the named method as a receiver in <i>obj</i>, returning a
|
2019-03-28 06:33:35 +03:00
|
|
|
* Method object (or raising NameError). The Method object acts as a
|
|
|
|
* closure in <i>obj</i>'s object instance, so instance variables and
|
|
|
|
* the value of <code>self</code> remain available.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* class Demo
|
|
|
|
* def initialize(n)
|
|
|
|
* @iv = n
|
|
|
|
* end
|
|
|
|
* def hello()
|
|
|
|
* "Hello, @iv = #{@iv}"
|
|
|
|
* end
|
|
|
|
* end
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* k = Demo.new(99)
|
|
|
|
* m = k.method(:hello)
|
|
|
|
* m.call #=> "Hello, @iv = 99"
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* l = Demo.new('Fred')
|
|
|
|
* m = l.method("hello")
|
|
|
|
* m.call #=> "Hello, @iv = Fred"
|
2018-10-21 18:33:30 +03:00
|
|
|
*
|
2019-03-28 06:33:35 +03:00
|
|
|
* Note that Method implements <code>to_proc</code> method, which
|
|
|
|
* means it can be used with iterators.
|
2018-10-21 18:33:30 +03:00
|
|
|
*
|
|
|
|
* [ 1, 2, 3 ].each(&method(:puts)) # => prints 3 lines to stdout
|
|
|
|
*
|
|
|
|
* out = File.open('test.txt', 'w')
|
|
|
|
* [ 1, 2, 3 ].each(&out.method(:puts)) # => prints 3 lines to file
|
|
|
|
*
|
|
|
|
* require 'date'
|
|
|
|
* %w[2017-03-01 2017-03-02].collect(&Date.method(:parse))
|
|
|
|
* #=> [#<Date: 2017-03-01 ((2457814j,0s,0n),+0s,2299161j)>, #<Date: 2017-03-02 ((2457815j,0s,0n),+0s,2299161j)>]
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
2007-02-05 21:31:08 +03:00
|
|
|
rb_obj_method(VALUE obj, VALUE vid)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2015-03-20 12:41:06 +03:00
|
|
|
return obj_method(obj, vid, FALSE);
|
2007-12-18 02:01:50 +03:00
|
|
|
}
|
|
|
|
|
2009-09-21 15:06:32 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* obj.public_method(sym) -> method
|
2009-09-21 15:06:32 +04:00
|
|
|
*
|
2009-11-03 20:46:28 +03:00
|
|
|
* Similar to _method_, searches public method only.
|
2009-09-21 15:06:32 +04:00
|
|
|
*/
|
|
|
|
|
2007-12-18 02:01:50 +03:00
|
|
|
VALUE
|
|
|
|
rb_obj_public_method(VALUE obj, VALUE vid)
|
|
|
|
{
|
2015-03-20 12:41:06 +03:00
|
|
|
return obj_method(obj, vid, TRUE);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2013-05-13 09:52:03 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* obj.singleton_method(sym) -> method
|
|
|
|
*
|
|
|
|
* Similar to _method_, searches singleton method only.
|
|
|
|
*
|
|
|
|
* class Demo
|
|
|
|
* def initialize(n)
|
|
|
|
* @iv = n
|
|
|
|
* end
|
|
|
|
* def hello()
|
|
|
|
* "Hello, @iv = #{@iv}"
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* k = Demo.new(99)
|
|
|
|
* def k.hi
|
|
|
|
* "Hi, @iv = #{@iv}"
|
|
|
|
* end
|
|
|
|
* m = k.singleton_method(:hi)
|
|
|
|
* m.call #=> "Hi, @iv = 99"
|
|
|
|
* m = k.singleton_method(:hello) #=> NameError
|
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_obj_singleton_method(VALUE obj, VALUE vid)
|
|
|
|
{
|
2015-05-21 12:01:44 +03:00
|
|
|
const rb_method_entry_t *me;
|
2018-04-03 09:57:44 +03:00
|
|
|
VALUE klass = rb_singleton_class_get(obj);
|
2013-05-13 09:52:03 +04:00
|
|
|
ID id = rb_check_id(&vid);
|
2015-05-21 12:01:44 +03:00
|
|
|
|
2018-04-03 09:57:44 +03:00
|
|
|
if (NIL_P(klass) || NIL_P(klass = RCLASS_ORIGIN(klass))) {
|
|
|
|
undef:
|
|
|
|
rb_name_err_raise("undefined singleton method `%1$s' for `%2$s'",
|
|
|
|
obj, vid);
|
|
|
|
}
|
2013-05-13 09:52:03 +04:00
|
|
|
if (!id) {
|
2019-03-06 14:16:34 +03:00
|
|
|
VALUE m = mnew_missing_by_name(klass, obj, &vid, FALSE, rb_cMethod);
|
|
|
|
if (m) return m;
|
2018-04-03 09:57:44 +03:00
|
|
|
goto undef;
|
2013-05-13 09:52:03 +04:00
|
|
|
}
|
2018-04-03 09:57:44 +03:00
|
|
|
me = rb_method_entry_at(klass, id);
|
|
|
|
if (UNDEFINED_METHOD_ENTRY_P(me) ||
|
2015-01-15 15:35:00 +03:00
|
|
|
UNDEFINED_REFINED_METHOD_P(me->def)) {
|
2015-10-28 09:24:12 +03:00
|
|
|
vid = ID2SYM(id);
|
|
|
|
goto undef;
|
2013-05-13 09:52:03 +04:00
|
|
|
}
|
2017-10-06 08:55:11 +03:00
|
|
|
return mnew_from_me(me, klass, klass, obj, id, rb_cMethod, FALSE);
|
2013-05-13 09:52:03 +04:00
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* mod.instance_method(symbol) -> unbound_method
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Returns an +UnboundMethod+ representing the given
|
|
|
|
* instance method in _mod_.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* class Interpreter
|
|
|
|
* def do_a() print "there, "; end
|
|
|
|
* def do_d() print "Hello "; end
|
|
|
|
* def do_e() print "!\n"; end
|
|
|
|
* def do_v() print "Dave"; end
|
|
|
|
* Dispatcher = {
|
2009-12-07 22:06:11 +03:00
|
|
|
* "a" => instance_method(:do_a),
|
|
|
|
* "d" => instance_method(:do_d),
|
|
|
|
* "e" => instance_method(:do_e),
|
|
|
|
* "v" => instance_method(:do_v)
|
2007-02-02 18:21:41 +03:00
|
|
|
* }
|
|
|
|
* def interpret(string)
|
2009-12-07 22:06:11 +03:00
|
|
|
* string.each_char {|b| Dispatcher[b].bind(self).call }
|
2007-02-02 18:21:41 +03:00
|
|
|
* end
|
|
|
|
* end
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* interpreter = Interpreter.new
|
|
|
|
* interpreter.interpret('dave')
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* <em>produces:</em>
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Hello there, Dave!
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2007-12-18 02:01:50 +03:00
|
|
|
rb_mod_instance_method(VALUE mod, VALUE vid)
|
|
|
|
{
|
2011-07-26 20:05:27 +04:00
|
|
|
ID id = rb_check_id(&vid);
|
2011-07-23 19:05:03 +04:00
|
|
|
if (!id) {
|
|
|
|
rb_method_name_error(mod, vid);
|
|
|
|
}
|
|
|
|
return mnew(mod, Qundef, id, rb_cUnboundMethod, FALSE);
|
2007-12-18 02:01:50 +03:00
|
|
|
}
|
|
|
|
|
2009-09-21 15:06:32 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* mod.public_instance_method(symbol) -> unbound_method
|
2009-09-21 15:06:32 +04:00
|
|
|
*
|
2009-11-03 20:46:28 +03:00
|
|
|
* Similar to _instance_method_, searches public method only.
|
2009-09-21 15:06:32 +04:00
|
|
|
*/
|
|
|
|
|
2007-12-18 02:01:50 +03:00
|
|
|
static VALUE
|
|
|
|
rb_mod_public_instance_method(VALUE mod, VALUE vid)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2011-07-26 20:05:27 +04:00
|
|
|
ID id = rb_check_id(&vid);
|
2011-07-23 19:05:03 +04:00
|
|
|
if (!id) {
|
|
|
|
rb_method_name_error(mod, vid);
|
|
|
|
}
|
|
|
|
return mnew(mod, Qundef, id, rb_cUnboundMethod, TRUE);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2013-08-14 09:35:21 +04:00
|
|
|
* define_method(symbol, method) -> symbol
|
|
|
|
* define_method(symbol) { block } -> symbol
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Defines an instance method in the receiver. The _method_
|
2009-09-22 22:53:25 +04:00
|
|
|
* parameter can be a +Proc+, a +Method+ or an +UnboundMethod+ object.
|
2019-08-15 20:21:17 +03:00
|
|
|
* If a block is specified, it is used as the method body.
|
|
|
|
* If a block or the _method_ parameter has parameters,
|
|
|
|
* they're used as method parameters.
|
|
|
|
* This block is evaluated using #instance_eval.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* class A
|
|
|
|
* def fred
|
|
|
|
* puts "In Fred"
|
|
|
|
* end
|
|
|
|
* def create_method(name, &block)
|
2018-07-25 21:06:29 +03:00
|
|
|
* self.class.define_method(name, &block)
|
2007-02-02 18:21:41 +03:00
|
|
|
* end
|
|
|
|
* define_method(:wilma) { puts "Charge it!" }
|
2019-08-15 20:21:17 +03:00
|
|
|
* define_method(:flint) {|name| puts "I'm #{name}!"}
|
2007-02-02 18:21:41 +03:00
|
|
|
* end
|
|
|
|
* class B < A
|
|
|
|
* define_method(:barney, instance_method(:fred))
|
|
|
|
* end
|
|
|
|
* a = B.new
|
|
|
|
* a.barney
|
|
|
|
* a.wilma
|
2019-08-15 20:21:17 +03:00
|
|
|
* a.flint('Dino')
|
2007-02-02 18:21:41 +03:00
|
|
|
* a.create_method(:betty) { p self }
|
|
|
|
* a.betty
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* <em>produces:</em>
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* In Fred
|
|
|
|
* Charge it!
|
2019-08-15 20:21:17 +03:00
|
|
|
* I'm Dino!
|
2007-02-02 18:21:41 +03:00
|
|
|
* #<B:0x401b39e8>
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_mod_define_method(int argc, VALUE *argv, VALUE mod)
|
|
|
|
{
|
|
|
|
ID id;
|
|
|
|
VALUE body;
|
2015-06-19 07:55:01 +03:00
|
|
|
VALUE name;
|
2015-03-09 00:22:43 +03:00
|
|
|
const rb_cref_t *cref = rb_vm_cref_in_context(mod, mod);
|
2015-06-03 04:39:16 +03:00
|
|
|
const rb_scope_visibility_t default_scope_visi = {METHOD_VISI_PUBLIC, FALSE};
|
|
|
|
const rb_scope_visibility_t *scope_visi = &default_scope_visi;
|
2015-06-15 11:18:18 +03:00
|
|
|
int is_method = FALSE;
|
2013-12-24 11:28:11 +04:00
|
|
|
|
2013-12-24 18:04:31 +04:00
|
|
|
if (cref) {
|
2015-06-03 04:39:16 +03:00
|
|
|
scope_visi = CREF_SCOPE_VISI(cref);
|
2013-12-24 11:28:11 +04:00
|
|
|
}
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2015-06-19 07:55:01 +03:00
|
|
|
rb_check_arity(argc, 1, 2);
|
|
|
|
name = argv[0];
|
|
|
|
id = rb_check_id(&name);
|
2007-02-02 18:21:41 +03:00
|
|
|
if (argc == 1) {
|
2015-06-19 08:53:41 +03:00
|
|
|
#if PROC_NEW_REQUIRES_BLOCK
|
2007-02-02 18:21:41 +03:00
|
|
|
body = rb_block_lambda();
|
2015-06-19 08:53:41 +03:00
|
|
|
#else
|
2017-10-28 14:46:32 +03:00
|
|
|
const rb_execution_context_t *ec = GET_EC();
|
|
|
|
VALUE block_handler = rb_vm_frame_block_handler(ec->cfp);
|
2016-07-28 14:02:30 +03:00
|
|
|
if (block_handler == VM_BLOCK_HANDLER_NONE) rb_raise(rb_eArgError, proc_without_block);
|
2015-12-20 05:14:57 +03:00
|
|
|
|
2016-07-28 14:02:30 +03:00
|
|
|
switch (vm_block_handler_type(block_handler)) {
|
|
|
|
case block_handler_type_proc:
|
|
|
|
body = VM_BH_TO_PROC(block_handler);
|
|
|
|
break;
|
|
|
|
case block_handler_type_symbol:
|
|
|
|
body = rb_sym_to_proc(VM_BH_TO_SYMBOL(block_handler));
|
|
|
|
break;
|
|
|
|
case block_handler_type_iseq:
|
|
|
|
case block_handler_type_ifunc:
|
2017-11-16 10:25:30 +03:00
|
|
|
body = rb_vm_make_lambda(ec, VM_BH_TO_CAPT_BLOCK(block_handler), rb_cProc);
|
2015-06-19 08:53:41 +03:00
|
|
|
}
|
|
|
|
#endif
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
2012-03-15 01:10:34 +04:00
|
|
|
else {
|
2007-02-02 18:21:41 +03:00
|
|
|
body = argv[1];
|
2015-12-20 05:02:55 +03:00
|
|
|
|
|
|
|
if (rb_obj_is_method(body)) {
|
|
|
|
is_method = TRUE;
|
|
|
|
}
|
|
|
|
else if (rb_obj_is_proc(body)) {
|
|
|
|
is_method = FALSE;
|
|
|
|
}
|
|
|
|
else {
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_raise(rb_eTypeError,
|
2016-10-24 05:42:31 +03:00
|
|
|
"wrong argument type %s (expected Proc/Method/UnboundMethod)",
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_obj_classname(body));
|
|
|
|
}
|
|
|
|
}
|
2015-06-19 07:55:01 +03:00
|
|
|
if (!id) id = rb_to_id(name);
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2015-06-15 11:18:18 +03:00
|
|
|
if (is_method) {
|
2007-02-02 18:21:41 +03:00
|
|
|
struct METHOD *method = (struct METHOD *)DATA_PTR(body);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
if (method->me->owner != mod && !RB_TYPE_P(method->me->owner, T_MODULE) &&
|
|
|
|
!RTEST(rb_class_inherited_p(mod, method->me->owner))) {
|
|
|
|
if (FL_TEST(method->me->owner, FL_SINGLETON)) {
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_raise(rb_eTypeError,
|
|
|
|
"can't bind singleton method to a different class");
|
|
|
|
}
|
2009-09-23 00:04:59 +04:00
|
|
|
else {
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_raise(rb_eTypeError,
|
2013-08-31 08:30:30 +04:00
|
|
|
"bind argument must be a subclass of % "PRIsVALUE,
|
2017-10-06 08:55:10 +03:00
|
|
|
method->me->owner);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
}
|
2015-06-03 04:39:16 +03:00
|
|
|
rb_method_entry_set(mod, id, method->me, scope_visi->method_visi);
|
|
|
|
if (scope_visi->module_func) {
|
|
|
|
rb_method_entry_set(rb_singleton_class(mod), id, method->me, METHOD_VISI_PUBLIC);
|
2013-03-31 12:18:09 +04:00
|
|
|
}
|
2014-10-12 17:24:35 +04:00
|
|
|
RB_GC_GUARD(body);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
2015-06-15 11:18:18 +03:00
|
|
|
else {
|
2017-12-28 23:09:24 +03:00
|
|
|
VALUE procval = rb_proc_dup(body);
|
2016-07-28 14:02:30 +03:00
|
|
|
if (vm_proc_iseq(procval) != NULL) {
|
|
|
|
rb_proc_t *proc;
|
|
|
|
GetProcPtr(procval, proc);
|
2009-07-18 12:05:32 +04:00
|
|
|
proc->is_lambda = TRUE;
|
|
|
|
proc->is_from_method = TRUE;
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
2016-07-28 14:02:30 +03:00
|
|
|
rb_add_method(mod, id, VM_METHOD_TYPE_BMETHOD, (void *)procval, scope_visi->method_visi);
|
2015-06-03 04:39:16 +03:00
|
|
|
if (scope_visi->module_func) {
|
|
|
|
rb_add_method(rb_singleton_class(mod), id, VM_METHOD_TYPE_BMETHOD, (void *)body, METHOD_VISI_PUBLIC);
|
2013-03-31 12:18:09 +04:00
|
|
|
}
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2013-08-14 09:35:21 +04:00
|
|
|
return ID2SYM(id);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2009-07-13 16:41:24 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-03 18:21:43 +03:00
|
|
|
* define_singleton_method(symbol, method) -> symbol
|
|
|
|
* define_singleton_method(symbol) { block } -> symbol
|
2009-07-13 16:41:24 +04:00
|
|
|
*
|
|
|
|
* Defines a singleton method in the receiver. The _method_
|
2009-09-22 23:02:42 +04:00
|
|
|
* parameter can be a +Proc+, a +Method+ or an +UnboundMethod+ object.
|
2010-05-29 22:51:39 +04:00
|
|
|
* If a block is specified, it is used as the method body.
|
2019-08-15 20:21:17 +03:00
|
|
|
* If a block or a method has parameters, they're used as method parameters.
|
2009-07-13 16:41:24 +04:00
|
|
|
*
|
|
|
|
* class A
|
|
|
|
* class << self
|
|
|
|
* def class_name
|
|
|
|
* to_s
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
* A.define_singleton_method(:who_am_i) do
|
|
|
|
* "I am: #{class_name}"
|
|
|
|
* end
|
|
|
|
* A.who_am_i # ==> "I am: A"
|
|
|
|
*
|
|
|
|
* guy = "Bob"
|
|
|
|
* guy.define_singleton_method(:hello) { "#{self}: Hello there!" }
|
2010-05-18 01:07:33 +04:00
|
|
|
* guy.hello #=> "Bob: Hello there!"
|
2019-08-15 20:21:17 +03:00
|
|
|
*
|
|
|
|
* chris = "Chris"
|
|
|
|
* chris.define_singleton_method(:greet) {|greeting| "#{greeting}, I'm Chris!" }
|
|
|
|
* chris.greet("Hi") #=> "Hi, I'm Chris!"
|
2009-07-13 16:41:24 +04:00
|
|
|
*/
|
|
|
|
|
2007-08-30 09:06:52 +04:00
|
|
|
static VALUE
|
|
|
|
rb_obj_define_method(int argc, VALUE *argv, VALUE obj)
|
|
|
|
{
|
|
|
|
VALUE klass = rb_singleton_class(obj);
|
|
|
|
|
|
|
|
return rb_mod_define_method(argc, argv, klass);
|
|
|
|
}
|
|
|
|
|
2012-11-02 03:24:33 +04:00
|
|
|
/*
|
2016-09-03 18:21:43 +03:00
|
|
|
* define_method(symbol, method) -> symbol
|
|
|
|
* define_method(symbol) { block } -> symbol
|
2012-11-02 03:24:33 +04:00
|
|
|
*
|
|
|
|
* Defines a global function by _method_ or the block.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
top_define_method(int argc, VALUE *argv, VALUE obj)
|
|
|
|
{
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
VALUE klass;
|
|
|
|
|
|
|
|
klass = th->top_wrapper;
|
|
|
|
if (klass) {
|
|
|
|
rb_warning("main.define_method in the wrapped load is effective only in wrapper module");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
klass = rb_cObject;
|
|
|
|
}
|
|
|
|
return rb_mod_define_method(argc, argv, klass);
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
2012-08-08 00:51:48 +04:00
|
|
|
* call-seq:
|
|
|
|
* method.clone -> new_method
|
|
|
|
*
|
|
|
|
* Returns a clone of this method.
|
|
|
|
*
|
|
|
|
* class A
|
|
|
|
* def foo
|
|
|
|
* return "bar"
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* m = A.new.method(:foo)
|
|
|
|
* m.call # => "bar"
|
|
|
|
* n = m.clone.call # => "bar"
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2007-02-05 21:31:08 +03:00
|
|
|
method_clone(VALUE self)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
|
|
|
VALUE clone;
|
|
|
|
struct METHOD *orig, *data;
|
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
TypedData_Get_Struct(self, struct METHOD, &method_data_type, orig);
|
|
|
|
clone = TypedData_Make_Struct(CLASS_OF(self), struct METHOD, &method_data_type, data);
|
2007-02-02 18:21:41 +03:00
|
|
|
CLONESETUP(clone, self);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
RB_OBJ_WRITE(clone, &data->recv, orig->recv);
|
|
|
|
RB_OBJ_WRITE(clone, &data->klass, orig->klass);
|
2019-10-03 01:20:10 +03:00
|
|
|
RB_OBJ_WRITE(clone, &data->iclass, orig->iclass);
|
2015-06-02 07:20:30 +03:00
|
|
|
RB_OBJ_WRITE(clone, &data->me, rb_method_entry_clone(orig->me));
|
2007-02-02 18:21:41 +03:00
|
|
|
return clone;
|
|
|
|
}
|
|
|
|
|
2018-10-21 18:33:30 +03:00
|
|
|
/* Document-method: Method#===
|
|
|
|
*
|
|
|
|
* call-seq:
|
|
|
|
* method === obj -> result_of_method
|
|
|
|
*
|
2018-10-26 15:23:25 +03:00
|
|
|
* Invokes the method with +obj+ as the parameter like #call.
|
|
|
|
* This allows a method object to be the target of a +when+ clause
|
|
|
|
* in a case statement.
|
2018-10-21 18:33:30 +03:00
|
|
|
*
|
|
|
|
* require 'prime'
|
|
|
|
*
|
|
|
|
* case 1373
|
|
|
|
* when Prime.method(:prime?)
|
2018-10-26 15:23:25 +03:00
|
|
|
* # ...
|
2018-10-21 18:33:30 +03:00
|
|
|
* end
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* meth.call(args, ...) -> obj
|
|
|
|
* meth[args, ...] -> obj
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Invokes the <i>meth</i> with the specified arguments, returning the
|
|
|
|
* method's return value.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* m = 12.method("+")
|
|
|
|
* m.call(3) #=> 15
|
|
|
|
* m.call(20) #=> 32
|
|
|
|
*/
|
|
|
|
|
2019-09-14 11:49:33 +03:00
|
|
|
static VALUE
|
|
|
|
rb_method_call_pass_called_kw(int argc, const VALUE *argv, VALUE method)
|
|
|
|
{
|
|
|
|
VALUE procval = rb_block_given_p() ? rb_block_proc() : Qnil;
|
|
|
|
return rb_method_call_with_block_kw(argc, argv, method, procval, RB_PASS_CALLED_KEYWORDS);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_method_call_kw(int argc, const VALUE *argv, VALUE method, int kw_splat)
|
|
|
|
{
|
|
|
|
VALUE procval = rb_block_given_p() ? rb_block_proc() : Qnil;
|
|
|
|
return rb_method_call_with_block_kw(argc, argv, method, procval, kw_splat);
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
VALUE
|
2014-06-18 10:16:39 +04:00
|
|
|
rb_method_call(int argc, const VALUE *argv, VALUE method)
|
2013-06-17 16:38:52 +04:00
|
|
|
{
|
2016-07-28 14:02:30 +03:00
|
|
|
VALUE procval = rb_block_given_p() ? rb_block_proc() : Qnil;
|
|
|
|
return rb_method_call_with_block(argc, argv, method, procval);
|
2013-06-17 16:38:52 +04:00
|
|
|
}
|
|
|
|
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
static const rb_callable_method_entry_t *
|
2016-05-04 13:10:05 +03:00
|
|
|
method_callable_method_entry(const struct METHOD *data)
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
{
|
2015-07-07 05:52:34 +03:00
|
|
|
if (data->me->defined_class == 0) rb_bug("method_callable_method_entry: not callable.");
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
return (const rb_callable_method_entry_t *)data->me;
|
|
|
|
}
|
|
|
|
|
2016-05-04 13:10:07 +03:00
|
|
|
static inline VALUE
|
2017-10-28 14:52:56 +03:00
|
|
|
call_method_data(rb_execution_context_t *ec, const struct METHOD *data,
|
2019-09-14 11:49:33 +03:00
|
|
|
int argc, const VALUE *argv, VALUE passed_procval, int kw_splat)
|
2016-05-04 13:10:07 +03:00
|
|
|
{
|
2017-10-28 14:52:56 +03:00
|
|
|
vm_passed_block_handler_set(ec, proc_to_block_handler(passed_procval));
|
2019-09-14 02:42:27 +03:00
|
|
|
return rb_vm_call_kw(ec, data->recv, data->me->called_id, argc, argv,
|
2019-09-14 11:49:33 +03:00
|
|
|
method_callable_method_entry(data), kw_splat);
|
2016-05-04 13:10:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
2019-09-14 11:49:33 +03:00
|
|
|
rb_method_call_with_block_kw(int argc, const VALUE *argv, VALUE method, VALUE passed_procval, int kw_splat)
|
2016-05-04 13:10:07 +03:00
|
|
|
{
|
|
|
|
const struct METHOD *data;
|
2017-10-28 14:52:56 +03:00
|
|
|
rb_execution_context_t *ec = GET_EC();
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
TypedData_Get_Struct(method, struct METHOD, &method_data_type, data);
|
2007-02-02 18:21:41 +03:00
|
|
|
if (data->recv == Qundef) {
|
|
|
|
rb_raise(rb_eTypeError, "can't call unbound method; bind first");
|
|
|
|
}
|
2019-09-14 11:49:33 +03:00
|
|
|
return call_method_data(ec, data, argc, argv, passed_procval, kw_splat);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_method_call_with_block(int argc, const VALUE *argv, VALUE method, VALUE passed_procval)
|
|
|
|
{
|
|
|
|
return rb_method_call_with_block_kw(argc, argv, method, passed_procval, RB_NO_KEYWORDS);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
*
|
|
|
|
* Document-class: UnboundMethod
|
|
|
|
*
|
2019-03-28 06:33:35 +03:00
|
|
|
* Ruby supports two forms of objectified methods. Class Method is
|
|
|
|
* used to represent methods that are associated with a particular
|
|
|
|
* object: these method objects are bound to that object. Bound
|
|
|
|
* method objects for an object can be created using Object#method.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Ruby also supports unbound methods; methods objects that are not
|
2019-03-28 06:33:35 +03:00
|
|
|
* associated with a particular object. These can be created either
|
|
|
|
* by calling Module#instance_method or by calling #unbind on a bound
|
|
|
|
* method object. The result of both of these is an UnboundMethod
|
|
|
|
* object.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Unbound methods can only be called after they are bound to an
|
2015-08-04 03:35:26 +03:00
|
|
|
* object. That object must be a kind_of? the method's original
|
2007-02-02 18:21:41 +03:00
|
|
|
* class.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* class Square
|
|
|
|
* def area
|
|
|
|
* @side * @side
|
|
|
|
* end
|
|
|
|
* def initialize(side)
|
|
|
|
* @side = side
|
|
|
|
* end
|
|
|
|
* end
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* area_un = Square.instance_method(:area)
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* s = Square.new(12)
|
|
|
|
* area = area_un.bind(s)
|
|
|
|
* area.call #=> 144
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Unbound methods are a reference to the method at the time it was
|
|
|
|
* objectified: subsequent changes to the underlying class will not
|
|
|
|
* affect the unbound method.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* class Test
|
|
|
|
* def test
|
|
|
|
* :original
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
* um = Test.instance_method(:test)
|
|
|
|
* class Test
|
|
|
|
* def test
|
|
|
|
* :modified
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
* t = Test.new
|
|
|
|
* t.test #=> :modified
|
|
|
|
* um.bind(t).call #=> :original
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
2019-08-30 05:01:25 +03:00
|
|
|
static void
|
2019-10-03 01:20:10 +03:00
|
|
|
convert_umethod_to_method_components(VALUE method, VALUE recv, VALUE *methclass_out, VALUE *klass_out, VALUE *iclass_out, const rb_method_entry_t **me_out)
|
2019-08-30 05:01:25 +03:00
|
|
|
{
|
|
|
|
struct METHOD *data;
|
|
|
|
|
|
|
|
TypedData_Get_Struct(method, struct METHOD, &method_data_type, data);
|
|
|
|
|
|
|
|
VALUE methclass = data->me->owner;
|
2019-10-03 01:20:10 +03:00
|
|
|
VALUE iclass = data->me->defined_class;
|
2019-08-30 05:01:25 +03:00
|
|
|
VALUE klass = CLASS_OF(recv);
|
|
|
|
|
|
|
|
if (!RB_TYPE_P(methclass, T_MODULE) &&
|
|
|
|
methclass != CLASS_OF(recv) && !rb_obj_is_kind_of(recv, methclass)) {
|
|
|
|
if (FL_TEST(methclass, FL_SINGLETON)) {
|
|
|
|
rb_raise(rb_eTypeError,
|
|
|
|
"singleton method called for a different object");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_raise(rb_eTypeError, "bind argument must be an instance of % "PRIsVALUE,
|
|
|
|
methclass);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const rb_method_entry_t *me = rb_method_entry_clone(data->me);
|
|
|
|
|
|
|
|
if (RB_TYPE_P(me->owner, T_MODULE)) {
|
|
|
|
VALUE ic = rb_class_search_ancestor(klass, me->owner);
|
|
|
|
if (ic) {
|
|
|
|
klass = ic;
|
2019-10-03 01:20:10 +03:00
|
|
|
iclass = ic;
|
2019-08-30 05:01:25 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
klass = rb_include_class_new(methclass, klass);
|
|
|
|
}
|
|
|
|
me = (const rb_method_entry_t *) rb_method_entry_complement_defined_class(me, me->called_id, klass);
|
|
|
|
}
|
|
|
|
|
|
|
|
*methclass_out = methclass;
|
|
|
|
*klass_out = klass;
|
2019-10-03 01:20:10 +03:00
|
|
|
*iclass_out = iclass;
|
2019-08-30 05:01:25 +03:00
|
|
|
*me_out = me;
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* umeth.bind(obj) -> method
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2019-03-28 06:33:35 +03:00
|
|
|
* Bind <i>umeth</i> to <i>obj</i>. If Klass was the class from which
|
|
|
|
* <i>umeth</i> was obtained, <code>obj.kind_of?(Klass)</code> must
|
|
|
|
* be true.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* class A
|
|
|
|
* def test
|
|
|
|
* puts "In test, class = #{self.class}"
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
* class B < A
|
|
|
|
* end
|
|
|
|
* class C < B
|
|
|
|
* end
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* um = B.instance_method(:test)
|
|
|
|
* bm = um.bind(C.new)
|
|
|
|
* bm.call
|
|
|
|
* bm = um.bind(B.new)
|
|
|
|
* bm.call
|
|
|
|
* bm = um.bind(A.new)
|
|
|
|
* bm.call
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* <em>produces:</em>
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* In test, class = C
|
|
|
|
* In test, class = B
|
|
|
|
* prog.rb:16:in `bind': bind argument must be an instance of B (TypeError)
|
|
|
|
* from prog.rb:16
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2007-02-05 21:31:08 +03:00
|
|
|
umethod_bind(VALUE method, VALUE recv)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2019-10-03 01:20:10 +03:00
|
|
|
VALUE methclass, klass, iclass;
|
2019-08-30 05:01:25 +03:00
|
|
|
const rb_method_entry_t *me;
|
2019-10-03 01:20:10 +03:00
|
|
|
convert_umethod_to_method_components(method, recv, &methclass, &klass, &iclass, &me);
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2019-08-30 05:01:25 +03:00
|
|
|
struct METHOD *bound;
|
|
|
|
method = TypedData_Make_Struct(rb_cMethod, struct METHOD, &method_data_type, bound);
|
|
|
|
RB_OBJ_WRITE(method, &bound->recv, recv);
|
|
|
|
RB_OBJ_WRITE(method, &bound->klass, klass);
|
2019-10-03 01:20:10 +03:00
|
|
|
RB_OBJ_WRITE(method, &bound->iclass, iclass);
|
2019-08-30 05:01:25 +03:00
|
|
|
RB_OBJ_WRITE(method, &bound->me, me);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
|
2019-08-30 05:01:25 +03:00
|
|
|
return method;
|
|
|
|
}
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2019-08-30 05:01:25 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2019-08-30 06:01:45 +03:00
|
|
|
* umeth.bind_call(recv, args, ...) -> obj
|
2019-08-30 05:01:25 +03:00
|
|
|
*
|
2019-08-30 06:01:45 +03:00
|
|
|
* Bind <i>umeth</i> to <i>recv</i> and then invokes the method with the
|
2019-08-30 05:01:25 +03:00
|
|
|
* specified arguments.
|
2019-08-30 06:01:45 +03:00
|
|
|
* This is semantically equivalent to <code>umeth.bind(recv).call(args, ...)</code>.
|
2019-08-30 05:01:25 +03:00
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
umethod_bind_call(int argc, VALUE *argv, VALUE method)
|
|
|
|
{
|
|
|
|
rb_check_arity(argc, 1, UNLIMITED_ARGUMENTS);
|
|
|
|
VALUE recv = argv[0];
|
|
|
|
argc--;
|
|
|
|
argv++;
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
|
2019-10-03 01:20:10 +03:00
|
|
|
VALUE methclass, klass, iclass;
|
2019-08-30 05:01:25 +03:00
|
|
|
const rb_method_entry_t *me;
|
2019-10-03 01:20:10 +03:00
|
|
|
convert_umethod_to_method_components(method, recv, &methclass, &klass, &iclass, &me);
|
2019-08-30 05:01:25 +03:00
|
|
|
struct METHOD bound = { recv, klass, 0, me };
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
|
2019-08-30 05:01:25 +03:00
|
|
|
VALUE passed_procval = rb_block_given_p() ? rb_block_proc() : Qnil;
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2019-08-30 05:01:25 +03:00
|
|
|
rb_execution_context_t *ec = GET_EC();
|
2019-09-14 11:49:33 +03:00
|
|
|
return call_method_data(ec, &bound, argc, argv, passed_procval, RB_PASS_CALLED_KEYWORDS);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2013-02-02 02:46:07 +04:00
|
|
|
/*
|
|
|
|
* Returns the number of required parameters and stores the maximum
|
|
|
|
* number of parameters in max, or UNLIMITED_ARGUMENTS
|
|
|
|
* if there is no maximum.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
rb_method_entry_min_max_arity(const rb_method_entry_t *me, int *max)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2009-08-28 06:45:41 +04:00
|
|
|
const rb_method_definition_t *def = me->def;
|
2015-05-21 12:01:44 +03:00
|
|
|
|
2017-04-29 13:27:46 +03:00
|
|
|
again:
|
2013-02-02 02:46:07 +04:00
|
|
|
if (!def) return *max = 0;
|
2009-08-28 06:45:41 +04:00
|
|
|
switch (def->type) {
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_CFUNC:
|
2013-02-02 02:46:07 +04:00
|
|
|
if (def->body.cfunc.argc < 0) {
|
|
|
|
*max = UNLIMITED_ARGUMENTS;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return *max = check_argc(def->body.cfunc.argc);
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_ZSUPER:
|
2013-02-02 02:46:07 +04:00
|
|
|
*max = UNLIMITED_ARGUMENTS;
|
|
|
|
return 0;
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_ATTRSET:
|
2013-02-02 02:46:07 +04:00
|
|
|
return *max = 1;
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_IVAR:
|
2013-02-02 02:46:07 +04:00
|
|
|
return *max = 0;
|
2015-05-30 21:45:28 +03:00
|
|
|
case VM_METHOD_TYPE_ALIAS:
|
2017-04-29 13:27:46 +03:00
|
|
|
def = def->body.alias.original_me->def;
|
|
|
|
goto again;
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_BMETHOD:
|
2018-11-26 21:16:54 +03:00
|
|
|
return rb_proc_min_max_arity(def->body.bmethod.proc, max);
|
2017-02-16 11:24:37 +03:00
|
|
|
case VM_METHOD_TYPE_ISEQ:
|
|
|
|
return rb_iseq_min_max_arity(rb_iseq_check(def->body.iseq.iseqptr), max);
|
2009-07-28 22:14:11 +04:00
|
|
|
case VM_METHOD_TYPE_UNDEF:
|
|
|
|
case VM_METHOD_TYPE_NOTIMPLEMENTED:
|
2013-02-02 02:46:07 +04:00
|
|
|
return *max = 0;
|
2009-09-28 07:09:16 +04:00
|
|
|
case VM_METHOD_TYPE_MISSING:
|
2013-02-02 02:46:07 +04:00
|
|
|
*max = UNLIMITED_ARGUMENTS;
|
|
|
|
return 0;
|
2009-07-28 14:41:11 +04:00
|
|
|
case VM_METHOD_TYPE_OPTIMIZED: {
|
2009-08-28 06:45:41 +04:00
|
|
|
switch (def->body.optimize_type) {
|
2009-08-28 04:45:27 +04:00
|
|
|
case OPTIMIZED_METHOD_TYPE_SEND:
|
2013-02-02 02:46:07 +04:00
|
|
|
*max = UNLIMITED_ARGUMENTS;
|
|
|
|
return 0;
|
2015-10-06 17:44:06 +03:00
|
|
|
case OPTIMIZED_METHOD_TYPE_CALL:
|
|
|
|
*max = UNLIMITED_ARGUMENTS;
|
|
|
|
return 0;
|
2018-01-07 22:18:49 +03:00
|
|
|
case OPTIMIZED_METHOD_TYPE_BLOCK_CALL:
|
|
|
|
*max = UNLIMITED_ARGUMENTS;
|
|
|
|
return 0;
|
2009-08-28 04:45:27 +04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2013-05-25 13:55:17 +04:00
|
|
|
break;
|
2012-12-12 11:06:14 +04:00
|
|
|
}
|
* revised r37993 to avoid SEGV/ILL in tests. In r37993, a method
entry with VM_METHOD_TYPE_REFINED holds only the original method
definition, so ci->me is set to a method entry allocated in the
stack, and it causes SEGV/ILL. In this commit, a method entry
with VM_METHOD_TYPE_REFINED holds the whole original method entry.
Furthermore, rb_thread_mark() is changed to mark cfp->klass to
avoid GC for iclasses created by copy_refinement_iclass().
* vm_method.c (rb_method_entry_make): add a method entry with
VM_METHOD_TYPE_REFINED to the class refined by the refinement if
the target module is a refinement. When a method entry with
VM_METHOD_TYPE_UNDEF is invoked by vm_call_method(), a method with
the same name is searched in refinements. If such a method is
found, the method is invoked. Otherwise, the original method in
the refined class (rb_method_definition_t::body.orig_me) is
invoked. This change is made to simplify the normal method lookup
and to improve the performance of normal method calls.
* vm_method.c (EXPR1, search_method, rb_method_entry),
vm_eval.c (rb_call0, rb_search_method_entry): do not use
refinements for method lookup.
* vm_insnhelper.c (vm_call_method): search methods in refinements if
ci->me is VM_METHOD_TYPE_REFINED. If the method is called by
super (i.e., ci->call == vm_call_super_method), skip the same
method entry as the current method to avoid infinite call of the
same method.
* class.c (include_modules_at): add a refined method entry for each
method defined in a module included in a refinement.
* class.c (rb_prepend_module): set an empty table to
RCLASS_M_TBL(klass) to add refined method entries, because
refinements should have priority over prepended modules.
* proc.c (mnew): use rb_method_entry_with_refinements() to get
a refined method.
* vm.c (rb_thread_mark): mark cfp->klass for iclasses created by
copy_refinement_iclass().
* vm.c (Init_VM), cont.c (fiber_init): initialize th->cfp->klass.
* test/ruby/test_refinement.rb (test_inline_method_cache): do not skip
the test because it should pass successfully.
* test/ruby/test_refinement.rb (test_redefine_refined_method): new
test for the case a refined method is redefined.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38236 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-12-06 17:08:41 +04:00
|
|
|
case VM_METHOD_TYPE_REFINED:
|
2013-02-02 02:46:07 +04:00
|
|
|
*max = UNLIMITED_ARGUMENTS;
|
|
|
|
return 0;
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
2013-02-02 02:46:07 +04:00
|
|
|
rb_bug("rb_method_entry_min_max_arity: invalid method entry type (%d)", def->type);
|
2018-07-24 08:38:07 +03:00
|
|
|
UNREACHABLE_RETURN(Qnil);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2013-02-02 02:46:07 +04:00
|
|
|
int
|
|
|
|
rb_method_entry_arity(const rb_method_entry_t *me)
|
|
|
|
{
|
|
|
|
int max, min = rb_method_entry_min_max_arity(me, &max);
|
|
|
|
return min == max ? min : -min-1;
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* meth.arity -> integer
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Returns an indication of the number of arguments accepted by a
|
|
|
|
* method. Returns a nonnegative integer for methods that take a fixed
|
|
|
|
* number of arguments. For Ruby methods that take a variable number of
|
2017-11-02 23:21:15 +03:00
|
|
|
* arguments, returns -n-1, where n is the number of required arguments.
|
|
|
|
* Keyword arguments will be considered as a single additional argument,
|
2017-11-02 23:20:11 +03:00
|
|
|
* that argument being mandatory if any keyword argument is mandatory.
|
2017-11-02 23:21:15 +03:00
|
|
|
* For methods written in C, returns -1 if the call takes a
|
|
|
|
* variable number of arguments.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* class C
|
|
|
|
* def one; end
|
|
|
|
* def two(a); end
|
|
|
|
* def three(*a); end
|
|
|
|
* def four(a, b); end
|
|
|
|
* def five(a, b, *c); end
|
|
|
|
* def six(a, b, *c, &d); end
|
2017-11-02 23:21:15 +03:00
|
|
|
* def seven(a, b, x:0); end
|
|
|
|
* def eight(x:, y:); end
|
|
|
|
* def nine(x:, y:, **z); end
|
|
|
|
* def ten(*a, x:, y:); end
|
2007-02-02 18:21:41 +03:00
|
|
|
* end
|
|
|
|
* c = C.new
|
|
|
|
* c.method(:one).arity #=> 0
|
|
|
|
* c.method(:two).arity #=> 1
|
|
|
|
* c.method(:three).arity #=> -1
|
|
|
|
* c.method(:four).arity #=> 2
|
|
|
|
* c.method(:five).arity #=> -3
|
|
|
|
* c.method(:six).arity #=> -3
|
2017-11-02 23:21:15 +03:00
|
|
|
* c.method(:seven).arity #=> -3
|
|
|
|
* c.method(:eight).arity #=> 1
|
|
|
|
* c.method(:nine).arity #=> 1
|
|
|
|
* c.method(:ten).arity #=> -2
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* "cat".method(:size).arity #=> 0
|
|
|
|
* "cat".method(:replace).arity #=> 1
|
|
|
|
* "cat".method(:squeeze).arity #=> -1
|
|
|
|
* "cat".method(:count).arity #=> -1
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2007-02-05 21:31:08 +03:00
|
|
|
method_arity_m(VALUE method)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
|
|
|
int n = method_arity(method);
|
|
|
|
return INT2FIX(n);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-02-05 21:31:08 +03:00
|
|
|
method_arity(VALUE method)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
|
|
|
struct METHOD *data;
|
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
TypedData_Get_Struct(method, struct METHOD, &method_data_type, data);
|
2011-07-25 18:29:28 +04:00
|
|
|
return rb_method_entry_arity(data->me);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2015-05-21 12:01:44 +03:00
|
|
|
static const rb_method_entry_t *
|
2013-01-29 11:49:22 +04:00
|
|
|
original_method_entry(VALUE mod, ID id)
|
|
|
|
{
|
2015-05-21 12:01:44 +03:00
|
|
|
const rb_method_entry_t *me;
|
|
|
|
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
while ((me = rb_method_entry(mod, id)) != 0) {
|
2015-05-21 12:01:44 +03:00
|
|
|
const rb_method_definition_t *def = me->def;
|
2013-01-29 11:49:22 +04:00
|
|
|
if (def->type != VM_METHOD_TYPE_ZSUPER) break;
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
mod = RCLASS_SUPER(me->owner);
|
2013-01-29 11:49:22 +04:00
|
|
|
id = def->original_id;
|
|
|
|
}
|
|
|
|
return me;
|
|
|
|
}
|
|
|
|
|
2013-02-02 02:46:07 +04:00
|
|
|
static int
|
|
|
|
method_min_max_arity(VALUE method, int *max)
|
|
|
|
{
|
2015-05-21 12:01:44 +03:00
|
|
|
const struct METHOD *data;
|
2013-02-02 02:46:07 +04:00
|
|
|
|
|
|
|
TypedData_Get_Struct(method, struct METHOD, &method_data_type, data);
|
|
|
|
return rb_method_entry_min_max_arity(data->me, max);
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
int
|
2007-02-05 21:31:08 +03:00
|
|
|
rb_mod_method_arity(VALUE mod, ID id)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2015-05-21 12:01:44 +03:00
|
|
|
const rb_method_entry_t *me = original_method_entry(mod, id);
|
2013-01-29 11:49:22 +04:00
|
|
|
if (!me) return 0; /* should raise? */
|
2009-07-15 18:59:41 +04:00
|
|
|
return rb_method_entry_arity(me);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2007-02-05 21:31:08 +03:00
|
|
|
rb_obj_method_arity(VALUE obj, ID id)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
|
|
|
return rb_mod_method_arity(CLASS_OF(obj), id);
|
|
|
|
}
|
|
|
|
|
2018-11-26 21:16:39 +03:00
|
|
|
const rb_method_definition_t *
|
|
|
|
rb_method_def(VALUE method)
|
2008-09-26 17:47:01 +04:00
|
|
|
{
|
2015-05-21 12:01:44 +03:00
|
|
|
const struct METHOD *data;
|
2008-09-26 17:47:01 +04:00
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
TypedData_Get_Struct(method, struct METHOD, &method_data_type, data);
|
2011-07-25 18:29:28 +04:00
|
|
|
return data->me->def;
|
2010-03-22 14:44:01 +03:00
|
|
|
}
|
2009-07-15 18:59:41 +04:00
|
|
|
|
2015-05-21 12:01:44 +03:00
|
|
|
static const rb_iseq_t *
|
|
|
|
method_def_iseq(const rb_method_definition_t *def)
|
2010-03-22 14:44:01 +03:00
|
|
|
{
|
2009-08-28 06:45:41 +04:00
|
|
|
switch (def->type) {
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_ISEQ:
|
2015-12-08 16:58:50 +03:00
|
|
|
return rb_iseq_check(def->body.iseq.iseqptr);
|
2015-05-30 21:45:28 +03:00
|
|
|
case VM_METHOD_TYPE_BMETHOD:
|
2018-11-26 21:16:54 +03:00
|
|
|
return rb_proc_get_iseq(def->body.bmethod.proc, 0);
|
2015-05-30 21:45:28 +03:00
|
|
|
case VM_METHOD_TYPE_ALIAS:
|
|
|
|
return method_def_iseq(def->body.alias.original_me->def);
|
|
|
|
case VM_METHOD_TYPE_CFUNC:
|
|
|
|
case VM_METHOD_TYPE_ATTRSET:
|
|
|
|
case VM_METHOD_TYPE_IVAR:
|
|
|
|
case VM_METHOD_TYPE_ZSUPER:
|
|
|
|
case VM_METHOD_TYPE_UNDEF:
|
|
|
|
case VM_METHOD_TYPE_NOTIMPLEMENTED:
|
|
|
|
case VM_METHOD_TYPE_OPTIMIZED:
|
|
|
|
case VM_METHOD_TYPE_MISSING:
|
|
|
|
case VM_METHOD_TYPE_REFINED:
|
|
|
|
break;
|
* fix namespace issue on singleton class expressions. [Bug #10943]
* vm_core.h, method.h: remove rb_iseq_t::cref_stack. CREF is stored
to rb_method_definition_t::body.iseq_body.cref.
* vm_insnhelper.c: modify SVAR usage.
When calling ISEQ type method, push CREF information onto method
frame, SVAR located place. Before this fix, SVAR is simply nil.
After this patch, CREF (or NULL == Qfalse for not iseq methods)
is stored at the method invocation.
When SVAR is requierd, then put NODE_IF onto SVAR location,
and NDOE_IF::nd_reserved points CREF itself.
* vm.c (vm_cref_new, vm_cref_dump, vm_cref_new_toplevel): added.
* vm_insnhelper.c (vm_push_frame): accept CREF.
* method.h, vm_method.c (rb_add_method_iseq): added. This function
accepts iseq and CREF.
* class.c (clone_method): use rb_add_method_iseq().
* gc.c (mark_method_entry): mark method_entry::body.iseq_body.cref.
* iseq.c: remove CREF related codes.
* insns.def (getinlinecache/setinlinecache): CREF should be cache key
because a different CREF has a different namespace.
* node.c (rb_gc_mark_node): mark NODE_IF::nd_reserved for SVAR.
* proc.c: catch up changes.
* struct.c: ditto.
* insns.def: ditto.
* vm_args.c (raise_argument_error): ditto.
* vm_eval.c: ditto.
* test/ruby/test_class.rb: add a test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-03-06 15:24:58 +03:00
|
|
|
}
|
2015-05-30 21:45:28 +03:00
|
|
|
return NULL;
|
* fix namespace issue on singleton class expressions. [Bug #10943]
* vm_core.h, method.h: remove rb_iseq_t::cref_stack. CREF is stored
to rb_method_definition_t::body.iseq_body.cref.
* vm_insnhelper.c: modify SVAR usage.
When calling ISEQ type method, push CREF information onto method
frame, SVAR located place. Before this fix, SVAR is simply nil.
After this patch, CREF (or NULL == Qfalse for not iseq methods)
is stored at the method invocation.
When SVAR is requierd, then put NODE_IF onto SVAR location,
and NDOE_IF::nd_reserved points CREF itself.
* vm.c (vm_cref_new, vm_cref_dump, vm_cref_new_toplevel): added.
* vm_insnhelper.c (vm_push_frame): accept CREF.
* method.h, vm_method.c (rb_add_method_iseq): added. This function
accepts iseq and CREF.
* class.c (clone_method): use rb_add_method_iseq().
* gc.c (mark_method_entry): mark method_entry::body.iseq_body.cref.
* iseq.c: remove CREF related codes.
* insns.def (getinlinecache/setinlinecache): CREF should be cache key
because a different CREF has a different namespace.
* node.c (rb_gc_mark_node): mark NODE_IF::nd_reserved for SVAR.
* proc.c: catch up changes.
* struct.c: ditto.
* insns.def: ditto.
* vm_args.c (raise_argument_error): ditto.
* vm_eval.c: ditto.
* test/ruby/test_class.rb: add a test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-03-06 15:24:58 +03:00
|
|
|
}
|
|
|
|
|
2015-05-21 12:01:44 +03:00
|
|
|
const rb_iseq_t *
|
2015-05-21 11:03:58 +03:00
|
|
|
rb_method_iseq(VALUE method)
|
|
|
|
{
|
2018-11-26 21:16:39 +03:00
|
|
|
return method_def_iseq(rb_method_def(method));
|
2015-05-21 11:03:58 +03:00
|
|
|
}
|
|
|
|
|
2015-03-09 00:22:43 +03:00
|
|
|
static const rb_cref_t *
|
2015-05-21 11:03:58 +03:00
|
|
|
method_cref(VALUE method)
|
* fix namespace issue on singleton class expressions. [Bug #10943]
* vm_core.h, method.h: remove rb_iseq_t::cref_stack. CREF is stored
to rb_method_definition_t::body.iseq_body.cref.
* vm_insnhelper.c: modify SVAR usage.
When calling ISEQ type method, push CREF information onto method
frame, SVAR located place. Before this fix, SVAR is simply nil.
After this patch, CREF (or NULL == Qfalse for not iseq methods)
is stored at the method invocation.
When SVAR is requierd, then put NODE_IF onto SVAR location,
and NDOE_IF::nd_reserved points CREF itself.
* vm.c (vm_cref_new, vm_cref_dump, vm_cref_new_toplevel): added.
* vm_insnhelper.c (vm_push_frame): accept CREF.
* method.h, vm_method.c (rb_add_method_iseq): added. This function
accepts iseq and CREF.
* class.c (clone_method): use rb_add_method_iseq().
* gc.c (mark_method_entry): mark method_entry::body.iseq_body.cref.
* iseq.c: remove CREF related codes.
* insns.def (getinlinecache/setinlinecache): CREF should be cache key
because a different CREF has a different namespace.
* node.c (rb_gc_mark_node): mark NODE_IF::nd_reserved for SVAR.
* proc.c: catch up changes.
* struct.c: ditto.
* insns.def: ditto.
* vm_args.c (raise_argument_error): ditto.
* vm_eval.c: ditto.
* test/ruby/test_class.rb: add a test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-03-06 15:24:58 +03:00
|
|
|
{
|
2018-11-26 21:16:39 +03:00
|
|
|
const rb_method_definition_t *def = rb_method_def(method);
|
2015-05-21 11:03:58 +03:00
|
|
|
|
2015-05-30 21:45:28 +03:00
|
|
|
again:
|
* fix namespace issue on singleton class expressions. [Bug #10943]
* vm_core.h, method.h: remove rb_iseq_t::cref_stack. CREF is stored
to rb_method_definition_t::body.iseq_body.cref.
* vm_insnhelper.c: modify SVAR usage.
When calling ISEQ type method, push CREF information onto method
frame, SVAR located place. Before this fix, SVAR is simply nil.
After this patch, CREF (or NULL == Qfalse for not iseq methods)
is stored at the method invocation.
When SVAR is requierd, then put NODE_IF onto SVAR location,
and NDOE_IF::nd_reserved points CREF itself.
* vm.c (vm_cref_new, vm_cref_dump, vm_cref_new_toplevel): added.
* vm_insnhelper.c (vm_push_frame): accept CREF.
* method.h, vm_method.c (rb_add_method_iseq): added. This function
accepts iseq and CREF.
* class.c (clone_method): use rb_add_method_iseq().
* gc.c (mark_method_entry): mark method_entry::body.iseq_body.cref.
* iseq.c: remove CREF related codes.
* insns.def (getinlinecache/setinlinecache): CREF should be cache key
because a different CREF has a different namespace.
* node.c (rb_gc_mark_node): mark NODE_IF::nd_reserved for SVAR.
* proc.c: catch up changes.
* struct.c: ditto.
* insns.def: ditto.
* vm_args.c (raise_argument_error): ditto.
* vm_eval.c: ditto.
* test/ruby/test_class.rb: add a test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-03-06 15:24:58 +03:00
|
|
|
switch (def->type) {
|
|
|
|
case VM_METHOD_TYPE_ISEQ:
|
2015-06-02 07:20:30 +03:00
|
|
|
return def->body.iseq.cref;
|
2015-05-30 21:45:28 +03:00
|
|
|
case VM_METHOD_TYPE_ALIAS:
|
|
|
|
def = def->body.alias.original_me->def;
|
|
|
|
goto again;
|
* fix namespace issue on singleton class expressions. [Bug #10943]
* vm_core.h, method.h: remove rb_iseq_t::cref_stack. CREF is stored
to rb_method_definition_t::body.iseq_body.cref.
* vm_insnhelper.c: modify SVAR usage.
When calling ISEQ type method, push CREF information onto method
frame, SVAR located place. Before this fix, SVAR is simply nil.
After this patch, CREF (or NULL == Qfalse for not iseq methods)
is stored at the method invocation.
When SVAR is requierd, then put NODE_IF onto SVAR location,
and NDOE_IF::nd_reserved points CREF itself.
* vm.c (vm_cref_new, vm_cref_dump, vm_cref_new_toplevel): added.
* vm_insnhelper.c (vm_push_frame): accept CREF.
* method.h, vm_method.c (rb_add_method_iseq): added. This function
accepts iseq and CREF.
* class.c (clone_method): use rb_add_method_iseq().
* gc.c (mark_method_entry): mark method_entry::body.iseq_body.cref.
* iseq.c: remove CREF related codes.
* insns.def (getinlinecache/setinlinecache): CREF should be cache key
because a different CREF has a different namespace.
* node.c (rb_gc_mark_node): mark NODE_IF::nd_reserved for SVAR.
* proc.c: catch up changes.
* struct.c: ditto.
* insns.def: ditto.
* vm_args.c (raise_argument_error): ditto.
* vm_eval.c: ditto.
* test/ruby/test_class.rb: add a test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-03-06 15:24:58 +03:00
|
|
|
default:
|
|
|
|
return NULL;
|
2008-09-26 17:47:01 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-06 08:35:23 +04:00
|
|
|
static VALUE
|
2015-05-21 12:01:44 +03:00
|
|
|
method_def_location(const rb_method_definition_t *def)
|
2013-02-06 08:35:23 +04:00
|
|
|
{
|
|
|
|
if (def->type == VM_METHOD_TYPE_ATTRSET || def->type == VM_METHOD_TYPE_IVAR) {
|
|
|
|
if (!def->body.attr.location)
|
|
|
|
return Qnil;
|
|
|
|
return rb_ary_dup(def->body.attr.location);
|
|
|
|
}
|
2015-05-21 11:03:58 +03:00
|
|
|
return iseq_location(method_def_iseq(def));
|
2013-02-06 08:35:23 +04:00
|
|
|
}
|
|
|
|
|
2015-08-20 02:53:12 +03:00
|
|
|
VALUE
|
|
|
|
rb_method_entry_location(const rb_method_entry_t *me)
|
2013-02-06 08:35:23 +04:00
|
|
|
{
|
2015-06-03 14:10:16 +03:00
|
|
|
if (!me) return Qnil;
|
2013-02-06 08:35:23 +04:00
|
|
|
return method_def_location(me->def);
|
|
|
|
}
|
|
|
|
|
2008-09-26 17:47:01 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-10-26 09:11:23 +03:00
|
|
|
* meth.source_location -> [String, Integer]
|
2008-09-26 17:47:01 +04:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* Returns the Ruby source filename and line number containing this method
|
2017-01-17 00:08:12 +03:00
|
|
|
* or nil if this method was not defined in Ruby (i.e. native).
|
2008-09-26 17:47:01 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_method_location(VALUE method)
|
|
|
|
{
|
2018-11-26 21:16:39 +03:00
|
|
|
return method_def_location(rb_method_def(method));
|
2008-09-26 17:47:01 +04:00
|
|
|
}
|
|
|
|
|
2008-11-28 07:19:37 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* meth.parameters -> array
|
2008-11-28 07:19:37 +03:00
|
|
|
*
|
2011-05-27 17:55:43 +04:00
|
|
|
* Returns the parameter information of this method.
|
2016-02-09 21:43:45 +03:00
|
|
|
*
|
|
|
|
* def foo(bar); end
|
|
|
|
* method(:foo).parameters #=> [[:req, :bar]]
|
|
|
|
*
|
|
|
|
* def foo(bar, baz, bat, &blk); end
|
|
|
|
* method(:foo).parameters #=> [[:req, :bar], [:req, :baz], [:req, :bat], [:block, :blk]]
|
|
|
|
*
|
|
|
|
* def foo(bar, *args); end
|
|
|
|
* method(:foo).parameters #=> [[:req, :bar], [:rest, :args]]
|
|
|
|
*
|
|
|
|
* def foo(bar, baz, *args, &blk); end
|
|
|
|
* method(:foo).parameters #=> [[:req, :bar], [:req, :baz], [:rest, :args], [:block, :blk]]
|
2008-11-28 07:19:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_method_parameters(VALUE method)
|
|
|
|
{
|
2015-05-21 12:01:44 +03:00
|
|
|
const rb_iseq_t *iseq = rb_method_iseq(method);
|
2008-11-28 07:19:37 +03:00
|
|
|
if (!iseq) {
|
2018-06-03 08:10:41 +03:00
|
|
|
return rb_unnamed_parameters(method_arity(method));
|
2008-11-28 07:19:37 +03:00
|
|
|
}
|
2008-12-05 07:05:48 +03:00
|
|
|
return rb_iseq_parameters(iseq, 0);
|
2008-11-28 07:19:37 +03:00
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* meth.to_s -> string
|
|
|
|
* meth.inspect -> string
|
2007-02-02 18:21:41 +03:00
|
|
|
*
|
2018-10-21 18:33:30 +03:00
|
|
|
* Returns a human-readable description of the underlying method.
|
2007-02-02 18:21:41 +03:00
|
|
|
*
|
|
|
|
* "cat".method(:count).inspect #=> "#<Method: String#count>"
|
2018-10-21 18:33:30 +03:00
|
|
|
* (1..3).method(:map).inspect #=> "#<Method: Range(Enumerable)#map>"
|
|
|
|
*
|
2018-10-26 15:21:22 +03:00
|
|
|
* In the latter case, the method description includes the "owner" of the
|
|
|
|
* original method (+Enumerable+ module, which is included into +Range+).
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
method_inspect(VALUE method)
|
|
|
|
{
|
|
|
|
struct METHOD *data;
|
|
|
|
VALUE str;
|
2008-05-31 13:28:20 +04:00
|
|
|
const char *sharp = "#";
|
2013-12-13 05:36:31 +04:00
|
|
|
VALUE mklass;
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
VALUE defined_class;
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2009-07-08 12:13:41 +04:00
|
|
|
TypedData_Get_Struct(method, struct METHOD, &method_data_type, data);
|
2017-10-06 08:55:10 +03:00
|
|
|
str = rb_sprintf("#<% "PRIsVALUE": ", rb_obj_class(method));
|
2007-02-02 18:21:41 +03:00
|
|
|
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
mklass = data->klass;
|
|
|
|
|
2019-10-24 22:01:02 +03:00
|
|
|
if (RB_TYPE_P(mklass, T_ICLASS)) {
|
|
|
|
/* TODO: I'm not sure why mklass is T_ICLASS.
|
|
|
|
* UnboundMethod#bind() can set it as T_ICLASS at convert_umethod_to_method_components()
|
|
|
|
* but not sure it is needed.
|
|
|
|
*/
|
|
|
|
mklass = RBASIC_CLASS(mklass);
|
|
|
|
}
|
|
|
|
|
2015-07-07 05:52:34 +03:00
|
|
|
if (data->me->def->type == VM_METHOD_TYPE_ALIAS) {
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
defined_class = data->me->def->body.alias.original_me->owner;
|
|
|
|
}
|
|
|
|
else {
|
2015-08-07 11:07:58 +03:00
|
|
|
defined_class = method_entry_defined_class(data->me);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (RB_TYPE_P(defined_class, T_ICLASS)) {
|
|
|
|
defined_class = RBASIC_CLASS(defined_class);
|
|
|
|
}
|
|
|
|
|
2013-12-13 05:36:31 +04:00
|
|
|
if (FL_TEST(mklass, FL_SINGLETON)) {
|
|
|
|
VALUE v = rb_ivar_get(mklass, attached);
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
if (data->recv == Qundef) {
|
2013-12-13 05:36:31 +04:00
|
|
|
rb_str_buf_append(str, rb_inspect(mklass));
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
else if (data->recv == v) {
|
|
|
|
rb_str_buf_append(str, rb_inspect(v));
|
|
|
|
sharp = ".";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_str_buf_append(str, rb_inspect(data->recv));
|
|
|
|
rb_str_buf_cat2(str, "(");
|
|
|
|
rb_str_buf_append(str, rb_inspect(v));
|
|
|
|
rb_str_buf_cat2(str, ")");
|
|
|
|
sharp = ".";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2017-10-06 08:55:10 +03:00
|
|
|
rb_str_buf_append(str, rb_inspect(mklass));
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
if (defined_class != mklass) {
|
2017-10-06 08:55:10 +03:00
|
|
|
rb_str_catf(str, "(% "PRIsVALUE")", defined_class);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
rb_str_buf_cat2(str, sharp);
|
* method.h: introduce rb_callable_method_entry_t to remove
rb_control_frame_t::klass.
[Bug #11278], [Bug #11279]
rb_method_entry_t data belong to modules/classes.
rb_method_entry_t::owner points defined module or class.
module M
def foo; end
end
In this case, owner is M.
rb_callable_method_entry_t data belong to only classes.
For modules, MRI creates corresponding T_ICLASS internally.
rb_callable_method_entry_t can also belong to T_ICLASS.
rb_callable_method_entry_t::defined_class points T_CLASS or
T_ICLASS.
rb_method_entry_t data for classes (not for modules) are also
rb_callable_method_entry_t data because it is completely same data.
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
For example, there are classes C and D, and incldues M,
class C; include M; end
class D; include M; end
then, two T_ICLASS objects for C's super class and D's super class
will be created.
When C.new.foo is called, then M#foo is searcheed and
rb_callable_method_t data is used by VM to invoke M#foo.
rb_method_entry_t data is only one for M#foo.
However, rb_callable_method_entry_t data are two (and can be more).
It is proportional to the number of including (and prepending)
classes (the number of T_ICLASS which point to the module).
Now, created rb_callable_method_entry_t are collected when
the original module M was modified. We can think it is a cache.
We need to select what kind of method entry data is needed.
To operate definition, then you need to use rb_method_entry_t.
You can access them by the following functions.
* rb_method_entry(VALUE klass, ID id);
* rb_method_entry_with_refinements(VALUE klass, ID id);
* rb_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);
To invoke methods, then you need to use rb_callable_method_entry_t
which you can get by the following APIs corresponding to the
above listed functions.
* rb_callable_method_entry(VALUE klass, ID id);
* rb_callable_method_entry_with_refinements(VALUE klass, ID id);
* rb_callable_method_entry_without_refinements(VALUE klass, ID id);
* rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
VM pushes rb_callable_method_entry_t, so that rb_vm_frame_method_entry()
returns rb_callable_method_entry_t.
You can check a super class of current method by
rb_callable_method_entry_t::defined_class.
* method.h: renamed from rb_method_entry_t::klass to
rb_method_entry_t::owner.
* internal.h: add rb_classext_struct::callable_m_tbl to cache
rb_callable_method_entry_t data.
We need to consider abotu this field again because it is only
active for T_ICLASS.
* class.c (method_entry_i): ditto.
* class.c (rb_define_attr): rb_method_entry() does not takes
defiend_class_ptr.
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
* cont.c (fiber_init): rb_control_frame_t::klass is removed.
* proc.c: fix `struct METHOD' data structure because
rb_callable_method_t has all information.
* vm_core.h: remove several fields.
* rb_control_frame_t::klass.
* rb_block_t::klass.
And catch up changes.
* eval.c: catch up changes.
* gc.c: ditto.
* insns.def: ditto.
* vm.c: ditto.
* vm_args.c: ditto.
* vm_backtrace.c: ditto.
* vm_dump.c: ditto.
* vm_eval.c: ditto.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-07-03 14:24:50 +03:00
|
|
|
rb_str_append(str, rb_id2str(data->me->called_id));
|
|
|
|
if (data->me->called_id != data->me->def->original_id) {
|
2013-02-13 13:10:12 +04:00
|
|
|
rb_str_catf(str, "(%"PRIsVALUE")",
|
|
|
|
rb_id2str(data->me->def->original_id));
|
|
|
|
}
|
2011-07-25 18:29:28 +04:00
|
|
|
if (data->me->def->type == VM_METHOD_TYPE_NOTIMPLEMENTED) {
|
2009-04-16 18:17:14 +04:00
|
|
|
rb_str_buf_cat2(str, " (not-implemented)");
|
|
|
|
}
|
2019-07-14 09:42:55 +03:00
|
|
|
|
|
|
|
// parameter information
|
Method parameters inspect
Example:
def m(a, b=nil, *c, d:, e: nil, **rest, &block)
end
p method(:m)
#=> #<Method: m(a, b=<default>, *c, d:, e: <default>, **rest, &block) ...>
2019-10-27 13:39:33 +03:00
|
|
|
{
|
|
|
|
VALUE params = rb_method_parameters(method);
|
|
|
|
VALUE pair, name, kind;
|
|
|
|
const VALUE req = ID2SYM(rb_intern("req"));
|
|
|
|
const VALUE opt = ID2SYM(rb_intern("opt"));
|
|
|
|
const VALUE keyreq = ID2SYM(rb_intern("keyreq"));
|
|
|
|
const VALUE key = ID2SYM(rb_intern("key"));
|
|
|
|
const VALUE rest = ID2SYM(rb_intern("rest"));
|
|
|
|
const VALUE keyrest = ID2SYM(rb_intern("keyrest"));
|
|
|
|
const VALUE block = ID2SYM(rb_intern("block"));
|
|
|
|
const VALUE nokey = ID2SYM(rb_intern("nokey"));
|
2019-11-20 20:14:20 +03:00
|
|
|
int forwarding = 0;
|
Method parameters inspect
Example:
def m(a, b=nil, *c, d:, e: nil, **rest, &block)
end
p method(:m)
#=> #<Method: m(a, b=<default>, *c, d:, e: <default>, **rest, &block) ...>
2019-10-27 13:39:33 +03:00
|
|
|
|
|
|
|
rb_str_buf_cat2(str, "(");
|
|
|
|
|
|
|
|
for (int i = 0; i < RARRAY_LEN(params); i++) {
|
|
|
|
pair = RARRAY_AREF(params, i);
|
|
|
|
kind = RARRAY_AREF(pair, 0);
|
|
|
|
name = RARRAY_AREF(pair, 1);
|
|
|
|
// FIXME: in tests it turns out that kind, name = [:req] produces name to be false. Why?..
|
|
|
|
if (NIL_P(name) || name == Qfalse) {
|
|
|
|
// FIXME: can it be reduced to switch/case?
|
|
|
|
if (kind == req || kind == opt) {
|
2019-11-20 03:33:20 +03:00
|
|
|
name = rb_str_new2("_");
|
2019-11-20 20:14:20 +03:00
|
|
|
}
|
|
|
|
else if (kind == rest || kind == keyrest) {
|
Method parameters inspect
Example:
def m(a, b=nil, *c, d:, e: nil, **rest, &block)
end
p method(:m)
#=> #<Method: m(a, b=<default>, *c, d:, e: <default>, **rest, &block) ...>
2019-10-27 13:39:33 +03:00
|
|
|
name = rb_str_new2("");
|
2019-11-20 20:14:20 +03:00
|
|
|
}
|
|
|
|
else if (kind == block) {
|
Method parameters inspect
Example:
def m(a, b=nil, *c, d:, e: nil, **rest, &block)
end
p method(:m)
#=> #<Method: m(a, b=<default>, *c, d:, e: <default>, **rest, &block) ...>
2019-10-27 13:39:33 +03:00
|
|
|
name = rb_str_new2("block");
|
2019-11-20 20:14:20 +03:00
|
|
|
}
|
|
|
|
else if (kind == nokey) {
|
Method parameters inspect
Example:
def m(a, b=nil, *c, d:, e: nil, **rest, &block)
end
p method(:m)
#=> #<Method: m(a, b=<default>, *c, d:, e: <default>, **rest, &block) ...>
2019-10-27 13:39:33 +03:00
|
|
|
name = rb_str_new2("nil");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (kind == req) {
|
|
|
|
rb_str_catf(str, "%"PRIsVALUE, name);
|
2019-11-20 20:14:20 +03:00
|
|
|
}
|
|
|
|
else if (kind == opt) {
|
2019-11-20 03:33:20 +03:00
|
|
|
rb_str_catf(str, "%"PRIsVALUE"=...", name);
|
2019-11-20 20:14:20 +03:00
|
|
|
}
|
|
|
|
else if (kind == keyreq) {
|
Method parameters inspect
Example:
def m(a, b=nil, *c, d:, e: nil, **rest, &block)
end
p method(:m)
#=> #<Method: m(a, b=<default>, *c, d:, e: <default>, **rest, &block) ...>
2019-10-27 13:39:33 +03:00
|
|
|
rb_str_catf(str, "%"PRIsVALUE":", name);
|
2019-11-20 20:14:20 +03:00
|
|
|
}
|
|
|
|
else if (kind == key) {
|
2019-11-20 03:33:20 +03:00
|
|
|
rb_str_catf(str, "%"PRIsVALUE": ...", name);
|
2019-11-20 20:14:20 +03:00
|
|
|
}
|
|
|
|
else if (kind == rest) {
|
|
|
|
if (name == ID2SYM('*')) {
|
|
|
|
forwarding = 1;
|
|
|
|
rb_str_cat_cstr(str, "...");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_str_catf(str, "*%"PRIsVALUE, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (kind == keyrest) {
|
Method parameters inspect
Example:
def m(a, b=nil, *c, d:, e: nil, **rest, &block)
end
p method(:m)
#=> #<Method: m(a, b=<default>, *c, d:, e: <default>, **rest, &block) ...>
2019-10-27 13:39:33 +03:00
|
|
|
rb_str_catf(str, "**%"PRIsVALUE, name);
|
2019-11-20 20:14:20 +03:00
|
|
|
}
|
|
|
|
else if (kind == block) {
|
|
|
|
if (name == ID2SYM('&')) {
|
|
|
|
if (forwarding) {
|
|
|
|
rb_str_set_len(str, RSTRING_LEN(str) - 2);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_str_cat_cstr(str, "...");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_str_catf(str, "&%"PRIsVALUE, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (kind == nokey) {
|
Method parameters inspect
Example:
def m(a, b=nil, *c, d:, e: nil, **rest, &block)
end
p method(:m)
#=> #<Method: m(a, b=<default>, *c, d:, e: <default>, **rest, &block) ...>
2019-10-27 13:39:33 +03:00
|
|
|
rb_str_buf_cat2(str, "**nil");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < RARRAY_LEN(params) - 1) {
|
|
|
|
rb_str_buf_cat2(str, ", ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rb_str_buf_cat2(str, ")");
|
|
|
|
}
|
2019-07-14 09:42:55 +03:00
|
|
|
|
|
|
|
{ // source location
|
|
|
|
VALUE loc = rb_method_location(method);
|
|
|
|
if (!NIL_P(loc)) {
|
|
|
|
rb_str_catf(str, " %"PRIsVALUE":%"PRIsVALUE,
|
|
|
|
RARRAY_AREF(loc, 0), RARRAY_AREF(loc, 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_str_buf_cat2(str, ">");
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
mproc(VALUE method)
|
|
|
|
{
|
2015-02-16 07:08:52 +03:00
|
|
|
return rb_funcallv(rb_mRubyVMFrozenCore, idProc, 0, 0);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2007-06-25 23:06:00 +04:00
|
|
|
static VALUE
|
|
|
|
mlambda(VALUE method)
|
|
|
|
{
|
2015-02-16 07:08:52 +03:00
|
|
|
return rb_funcallv(rb_mRubyVMFrozenCore, idLambda, 0, 0);
|
2007-06-25 23:06:00 +04:00
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
static VALUE
|
2019-08-26 08:25:53 +03:00
|
|
|
bmcall(RB_BLOCK_CALL_FUNC_ARGLIST(args, method))
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2019-09-27 03:25:54 +03:00
|
|
|
return rb_method_call_with_block_kw(argc, argv, method, blockarg, RB_PASS_CALLED_KEYWORDS);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_proc_new(
|
2019-08-26 09:35:28 +03:00
|
|
|
rb_block_call_func_t func,
|
2007-02-02 18:21:41 +03:00
|
|
|
VALUE val)
|
|
|
|
{
|
2007-12-24 07:55:37 +03:00
|
|
|
VALUE procval = rb_iterate(mproc, 0, func, val);
|
2007-02-02 18:21:41 +03:00
|
|
|
return procval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2014-01-19 09:43:28 +04:00
|
|
|
* meth.to_proc -> proc
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2019-03-28 06:33:35 +03:00
|
|
|
* Returns a Proc object corresponding to this method.
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2015-05-21 05:00:31 +03:00
|
|
|
method_to_proc(VALUE method)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2007-08-19 08:02:21 +04:00
|
|
|
VALUE procval;
|
|
|
|
rb_proc_t *proc;
|
2014-10-27 11:17:26 +03:00
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
|
|
|
* class Method
|
|
|
|
* def to_proc
|
2015-05-21 11:45:57 +03:00
|
|
|
* lambda{|*args|
|
2007-02-02 18:21:41 +03:00
|
|
|
* self.call(*args)
|
|
|
|
* }
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
*/
|
2007-12-24 07:55:37 +03:00
|
|
|
procval = rb_iterate(mlambda, 0, bmcall, method);
|
2007-08-19 08:02:21 +04:00
|
|
|
GetProcPtr(procval, proc);
|
|
|
|
proc->is_from_method = 1;
|
|
|
|
return procval;
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
2014-07-26 20:47:27 +04:00
|
|
|
/*
|
2015-11-16 10:00:56 +03:00
|
|
|
* call-seq:
|
|
|
|
* meth.super_method -> method
|
|
|
|
*
|
|
|
|
* Returns a Method of superclass which would be called when super is used
|
|
|
|
* or nil if there is no method on superclass.
|
2014-07-26 20:47:27 +04:00
|
|
|
*/
|
2015-11-16 10:00:56 +03:00
|
|
|
|
2014-07-26 20:22:41 +04:00
|
|
|
static VALUE
|
|
|
|
method_super_method(VALUE method)
|
|
|
|
{
|
2015-05-21 12:01:44 +03:00
|
|
|
const struct METHOD *data;
|
2017-10-06 08:55:11 +03:00
|
|
|
VALUE super_class, iclass;
|
|
|
|
ID mid;
|
2015-05-21 12:01:44 +03:00
|
|
|
const rb_method_entry_t *me;
|
2014-07-26 20:22:41 +04:00
|
|
|
|
|
|
|
TypedData_Get_Struct(method, struct METHOD, &method_data_type, data);
|
2017-10-06 08:55:11 +03:00
|
|
|
iclass = data->iclass;
|
2018-01-30 22:35:12 +03:00
|
|
|
if (!iclass) return Qnil;
|
2017-10-06 08:55:11 +03:00
|
|
|
super_class = RCLASS_SUPER(RCLASS_ORIGIN(iclass));
|
|
|
|
mid = data->me->called_id;
|
2014-07-26 20:22:41 +04:00
|
|
|
if (!super_class) return Qnil;
|
2019-10-03 06:26:41 +03:00
|
|
|
me = (rb_method_entry_t *)rb_callable_method_entry_with_refinements(super_class, mid, &iclass);
|
2014-07-26 20:22:41 +04:00
|
|
|
if (!me) return Qnil;
|
2017-10-06 08:55:11 +03:00
|
|
|
return mnew_internal(me, me->owner, iclass, data->recv, mid, rb_obj_class(method), FALSE, FALSE);
|
2014-07-26 20:22:41 +04:00
|
|
|
}
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
2013-05-31 11:04:33 +04:00
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* local_jump_error.exit_value -> obj
|
2007-02-02 18:21:41 +03:00
|
|
|
*
|
|
|
|
* Returns the exit value associated with this +LocalJumpError+.
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
localjump_xvalue(VALUE exc)
|
|
|
|
{
|
|
|
|
return rb_iv_get(exc, "@exit_value");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* local_jump_error.reason -> symbol
|
2007-02-02 18:21:41 +03:00
|
|
|
*
|
|
|
|
* The reason this block was terminated:
|
|
|
|
* :break, :redo, :retry, :next, :return, or :noreason.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
localjump_reason(VALUE exc)
|
|
|
|
{
|
|
|
|
return rb_iv_get(exc, "@reason");
|
|
|
|
}
|
|
|
|
|
2015-05-21 11:45:57 +03:00
|
|
|
rb_cref_t *rb_vm_cref_new_toplevel(void); /* vm.c */
|
|
|
|
|
2016-07-28 22:13:26 +03:00
|
|
|
static const rb_env_t *
|
|
|
|
env_clone(const rb_env_t *env, const rb_cref_t *cref)
|
2015-05-21 11:45:57 +03:00
|
|
|
{
|
2016-07-28 22:13:26 +03:00
|
|
|
VALUE *new_ep;
|
|
|
|
VALUE *new_body;
|
|
|
|
const rb_env_t *new_env;
|
|
|
|
|
|
|
|
VM_ASSERT(env->ep > env->env);
|
|
|
|
VM_ASSERT(VM_ENV_ESCAPED_P(env->ep));
|
2015-05-21 11:45:57 +03:00
|
|
|
|
|
|
|
if (cref == NULL) {
|
|
|
|
cref = rb_vm_cref_new_toplevel();
|
|
|
|
}
|
|
|
|
|
2016-07-28 22:13:26 +03:00
|
|
|
new_body = ALLOC_N(VALUE, env->env_size);
|
|
|
|
MEMCPY(new_body, env->env, VALUE, env->env_size);
|
|
|
|
new_ep = &new_body[env->ep - env->env];
|
|
|
|
new_env = vm_env_new(new_ep, new_body, env->env_size, env->iseq);
|
|
|
|
RB_OBJ_WRITE(new_env, &new_ep[VM_ENV_DATA_INDEX_ME_CREF], (VALUE)cref);
|
|
|
|
VM_ASSERT(VM_ENV_ESCAPED_P(new_ep));
|
|
|
|
return new_env;
|
2015-05-21 11:45:57 +03:00
|
|
|
}
|
|
|
|
|
2007-12-20 11:20:02 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* prc.binding -> binding
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2018-03-21 18:46:15 +03:00
|
|
|
* Returns the binding associated with <i>prc</i>.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-12-20 11:20:02 +03:00
|
|
|
* def fred(param)
|
|
|
|
* proc {}
|
|
|
|
* end
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-12-20 11:20:02 +03:00
|
|
|
* b = fred(99)
|
|
|
|
* eval("param", b.binding) #=> 99
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
proc_binding(VALUE self)
|
|
|
|
{
|
2016-07-28 22:13:26 +03:00
|
|
|
VALUE bindval, binding_self = Qundef;
|
2007-12-20 11:20:02 +03:00
|
|
|
rb_binding_t *bind;
|
2016-07-28 14:02:30 +03:00
|
|
|
const rb_proc_t *proc;
|
|
|
|
const rb_iseq_t *iseq = NULL;
|
|
|
|
const struct rb_block *block;
|
2016-07-28 22:13:26 +03:00
|
|
|
const rb_env_t *env = NULL;
|
2007-12-20 11:20:02 +03:00
|
|
|
|
|
|
|
GetProcPtr(self, proc);
|
2016-07-28 14:02:30 +03:00
|
|
|
block = &proc->block;
|
|
|
|
|
|
|
|
again:
|
|
|
|
switch (vm_block_type(block)) {
|
|
|
|
case block_type_iseq:
|
|
|
|
iseq = block->as.captured.code.iseq;
|
|
|
|
binding_self = block->as.captured.self;
|
2016-07-28 22:13:26 +03:00
|
|
|
env = VM_ENV_ENVVAL_PTR(block->as.captured.ep);
|
2016-07-28 14:02:30 +03:00
|
|
|
break;
|
|
|
|
case block_type_proc:
|
|
|
|
GetProcPtr(block->as.proc, proc);
|
|
|
|
block = &proc->block;
|
|
|
|
goto again;
|
|
|
|
case block_type_symbol:
|
|
|
|
goto error;
|
|
|
|
case block_type_ifunc:
|
|
|
|
{
|
|
|
|
const struct vm_ifunc *ifunc = block->as.captured.code.ifunc;
|
|
|
|
if (IS_METHOD_PROC_IFUNC(ifunc)) {
|
|
|
|
VALUE method = (VALUE)ifunc->data;
|
2018-10-13 12:59:22 +03:00
|
|
|
VALUE name = rb_fstring_lit("<empty_iseq>");
|
2017-12-28 11:28:42 +03:00
|
|
|
rb_iseq_t *empty;
|
2016-07-28 14:02:30 +03:00
|
|
|
binding_self = method_receiver(method);
|
2016-07-28 22:13:26 +03:00
|
|
|
iseq = rb_method_iseq(method);
|
|
|
|
env = VM_ENV_ENVVAL_PTR(block->as.captured.ep);
|
|
|
|
env = env_clone(env, method_cref(method));
|
2016-07-28 14:02:30 +03:00
|
|
|
/* set empty iseq */
|
2017-12-28 11:28:42 +03:00
|
|
|
empty = rb_iseq_new(NULL, name, name, Qnil, 0, ISEQ_TYPE_TOP);
|
|
|
|
RB_OBJ_WRITE(env, &env->iseq, empty);
|
2016-07-28 14:02:30 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
error:
|
|
|
|
rb_raise(rb_eArgError, "Can't create Binding from C level Proc");
|
|
|
|
return Qnil;
|
|
|
|
}
|
2015-05-21 14:52:21 +03:00
|
|
|
}
|
2007-12-20 11:20:02 +03:00
|
|
|
}
|
|
|
|
|
2014-10-18 15:46:31 +04:00
|
|
|
bindval = rb_binding_alloc(rb_cBinding);
|
2009-09-21 12:12:12 +04:00
|
|
|
GetBindingPtr(bindval, bind);
|
2017-06-01 18:12:14 +03:00
|
|
|
RB_OBJ_WRITE(bindval, &bind->block.as.captured.self, binding_self);
|
|
|
|
RB_OBJ_WRITE(bindval, &bind->block.as.captured.code.iseq, env->iseq);
|
|
|
|
rb_vm_block_ep_update(bindval, &bind->block, env->ep);
|
|
|
|
RB_OBJ_WRITTEN(bindval, Qundef, VM_ENV_ENVVAL(env->ep));
|
2015-05-21 11:45:57 +03:00
|
|
|
|
|
|
|
if (iseq) {
|
2015-12-08 16:58:50 +03:00
|
|
|
rb_iseq_check(iseq);
|
2017-06-01 18:12:14 +03:00
|
|
|
RB_OBJ_WRITE(bindval, &bind->pathobj, iseq->body->location.pathobj);
|
2015-07-22 01:52:59 +03:00
|
|
|
bind->first_lineno = FIX2INT(rb_iseq_first_lineno(iseq));
|
2010-05-16 12:18:49 +04:00
|
|
|
}
|
|
|
|
else {
|
2017-06-01 18:12:14 +03:00
|
|
|
RB_OBJ_WRITE(bindval, &bind->pathobj,
|
2018-10-13 12:59:22 +03:00
|
|
|
rb_iseq_pathobj_new(rb_fstring_lit("(binding)"), Qnil));
|
2017-06-01 03:05:33 +03:00
|
|
|
bind->first_lineno = 1;
|
2010-05-16 12:18:49 +04:00
|
|
|
}
|
2015-05-21 11:45:57 +03:00
|
|
|
|
2007-12-20 11:20:02 +03:00
|
|
|
return bindval;
|
|
|
|
}
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2019-08-26 09:35:28 +03:00
|
|
|
static rb_block_call_func curry;
|
2008-02-13 15:51:31 +03:00
|
|
|
|
|
|
|
static VALUE
|
|
|
|
make_curry_proc(VALUE proc, VALUE passed, VALUE arity)
|
|
|
|
{
|
2008-10-09 09:47:04 +04:00
|
|
|
VALUE args = rb_ary_new3(3, proc, passed, arity);
|
2009-07-06 04:31:55 +04:00
|
|
|
rb_proc_t *procp;
|
|
|
|
int is_lambda;
|
|
|
|
|
|
|
|
GetProcPtr(proc, procp);
|
|
|
|
is_lambda = procp->is_lambda;
|
2008-02-13 15:51:31 +03:00
|
|
|
rb_ary_freeze(passed);
|
|
|
|
rb_ary_freeze(args);
|
2009-07-06 04:31:55 +04:00
|
|
|
proc = rb_proc_new(curry, args);
|
|
|
|
GetProcPtr(proc, procp);
|
|
|
|
procp->is_lambda = is_lambda;
|
|
|
|
return proc;
|
2008-02-13 15:51:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2019-08-26 09:35:28 +03:00
|
|
|
curry(RB_BLOCK_CALL_FUNC_ARGLIST(_, args))
|
2008-02-13 15:51:31 +03:00
|
|
|
{
|
|
|
|
VALUE proc, passed, arity;
|
2013-05-13 13:56:22 +04:00
|
|
|
proc = RARRAY_AREF(args, 0);
|
|
|
|
passed = RARRAY_AREF(args, 1);
|
|
|
|
arity = RARRAY_AREF(args, 2);
|
2008-02-13 15:51:31 +03:00
|
|
|
|
|
|
|
passed = rb_ary_plus(passed, rb_ary_new4(argc, argv));
|
|
|
|
rb_ary_freeze(passed);
|
2008-06-10 20:33:51 +04:00
|
|
|
|
2009-07-06 04:31:55 +04:00
|
|
|
if (RARRAY_LEN(passed) < FIX2INT(arity)) {
|
2019-08-26 09:35:28 +03:00
|
|
|
if (!NIL_P(blockarg)) {
|
2008-06-09 19:52:51 +04:00
|
|
|
rb_warn("given block not used");
|
|
|
|
}
|
2008-02-13 15:51:31 +03:00
|
|
|
arity = make_curry_proc(proc, passed, arity);
|
|
|
|
return arity;
|
|
|
|
}
|
2008-06-10 20:33:51 +04:00
|
|
|
else {
|
2019-08-26 09:35:28 +03:00
|
|
|
return rb_proc_call_with_block(proc, check_argc(RARRAY_LEN(passed)), RARRAY_CONST_PTR(passed), blockarg);
|
2008-06-10 20:33:51 +04:00
|
|
|
}
|
2008-02-13 15:51:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* prc.curry -> a_proc
|
|
|
|
* prc.curry(arity) -> a_proc
|
2008-02-13 15:51:31 +03:00
|
|
|
*
|
|
|
|
* Returns a curried proc. If the optional <i>arity</i> argument is given,
|
|
|
|
* it determines the number of arguments.
|
|
|
|
* A curried proc receives some arguments. If a sufficient number of
|
|
|
|
* arguments are supplied, it passes the supplied arguments to the original
|
|
|
|
* proc and returns the result. Otherwise, returns another curried proc that
|
|
|
|
* takes the rest of arguments.
|
|
|
|
*
|
|
|
|
* b = proc {|x, y, z| (x||0) + (y||0) + (z||0) }
|
|
|
|
* p b.curry[1][2][3] #=> 6
|
|
|
|
* p b.curry[1, 2][3, 4] #=> 6
|
|
|
|
* p b.curry(5)[1][2][3][4][5] #=> 6
|
|
|
|
* p b.curry(5)[1, 2][3, 4][5] #=> 6
|
|
|
|
* p b.curry(1)[1] #=> 1
|
|
|
|
*
|
|
|
|
* b = proc {|x, y, z, *w| (x||0) + (y||0) + (z||0) + w.inject(0, &:+) }
|
|
|
|
* p b.curry[1][2][3] #=> 6
|
|
|
|
* p b.curry[1, 2][3, 4] #=> 10
|
|
|
|
* p b.curry(5)[1][2][3][4][5] #=> 15
|
|
|
|
* p b.curry(5)[1, 2][3, 4][5] #=> 15
|
|
|
|
* p b.curry(1)[1] #=> 1
|
|
|
|
*
|
|
|
|
* b = lambda {|x, y, z| (x||0) + (y||0) + (z||0) }
|
|
|
|
* p b.curry[1][2][3] #=> 6
|
2015-10-25 03:39:29 +03:00
|
|
|
* p b.curry[1, 2][3, 4] #=> wrong number of arguments (given 4, expected 3)
|
|
|
|
* p b.curry(5) #=> wrong number of arguments (given 5, expected 3)
|
|
|
|
* p b.curry(1) #=> wrong number of arguments (given 1, expected 3)
|
2008-02-13 15:51:31 +03:00
|
|
|
*
|
|
|
|
* b = lambda {|x, y, z, *w| (x||0) + (y||0) + (z||0) + w.inject(0, &:+) }
|
|
|
|
* p b.curry[1][2][3] #=> 6
|
|
|
|
* p b.curry[1, 2][3, 4] #=> 10
|
|
|
|
* p b.curry(5)[1][2][3][4][5] #=> 15
|
|
|
|
* p b.curry(5)[1, 2][3, 4][5] #=> 15
|
2015-10-25 03:39:29 +03:00
|
|
|
* p b.curry(1) #=> wrong number of arguments (given 1, expected 3)
|
2008-02-13 15:51:31 +03:00
|
|
|
*
|
|
|
|
* b = proc { :foo }
|
|
|
|
* p b.curry[] #=> :foo
|
|
|
|
*/
|
|
|
|
static VALUE
|
2014-06-19 08:42:16 +04:00
|
|
|
proc_curry(int argc, const VALUE *argv, VALUE self)
|
2008-02-13 15:51:31 +03:00
|
|
|
{
|
2013-02-02 02:46:32 +04:00
|
|
|
int sarity, max_arity, min_arity = rb_proc_min_max_arity(self, &max_arity);
|
|
|
|
VALUE arity;
|
2008-02-13 15:51:31 +03:00
|
|
|
|
2018-12-06 10:49:24 +03:00
|
|
|
if (rb_check_arity(argc, 0, 1) == 0 || NIL_P(arity = argv[0])) {
|
2013-02-02 02:46:32 +04:00
|
|
|
arity = INT2FIX(min_arity);
|
2008-02-13 15:51:31 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
sarity = FIX2INT(arity);
|
2013-02-02 02:46:32 +04:00
|
|
|
if (rb_proc_lambda_p(self)) {
|
|
|
|
rb_check_arity(sarity, min_arity, max_arity);
|
2008-02-13 15:51:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return make_curry_proc(self, rb_ary_new(), arity);
|
|
|
|
}
|
|
|
|
|
2014-06-19 08:42:16 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* meth.curry -> proc
|
|
|
|
* meth.curry(arity) -> proc
|
|
|
|
*
|
|
|
|
* Returns a curried proc based on the method. When the proc is called with a number of
|
|
|
|
* arguments that is lower than the method's arity, then another curried proc is returned.
|
|
|
|
* Only when enough arguments have been supplied to satisfy the method signature, will the
|
|
|
|
* method actually be called.
|
|
|
|
*
|
|
|
|
* The optional <i>arity</i> argument should be supplied when currying methods with
|
|
|
|
* variable arguments to determine how many arguments are needed before the method is
|
|
|
|
* called.
|
|
|
|
*
|
|
|
|
* def foo(a,b,c)
|
|
|
|
* [a, b, c]
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* proc = self.method(:foo).curry
|
|
|
|
* proc2 = proc.call(1, 2) #=> #<Proc>
|
|
|
|
* proc2.call(3) #=> [1,2,3]
|
|
|
|
*
|
|
|
|
* def vararg(*args)
|
|
|
|
* args
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* proc = self.method(:vararg).curry(4)
|
|
|
|
* proc2 = proc.call(:x) #=> #<Proc>
|
|
|
|
* proc3 = proc2.call(:y, :z) #=> #<Proc>
|
|
|
|
* proc3.call(:a) #=> [:x, :y, :z, :a]
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_method_curry(int argc, const VALUE *argv, VALUE self)
|
|
|
|
{
|
2015-05-21 05:00:31 +03:00
|
|
|
VALUE proc = method_to_proc(self);
|
2014-06-19 08:42:16 +04:00
|
|
|
return proc_curry(argc, argv, proc);
|
|
|
|
}
|
|
|
|
|
2018-11-22 08:51:40 +03:00
|
|
|
static VALUE
|
2019-08-26 09:35:28 +03:00
|
|
|
compose(RB_BLOCK_CALL_FUNC_ARGLIST(_, args))
|
2018-11-22 08:51:40 +03:00
|
|
|
{
|
|
|
|
VALUE f, g, fargs;
|
|
|
|
f = RARRAY_AREF(args, 0);
|
|
|
|
g = RARRAY_AREF(args, 1);
|
|
|
|
|
2018-11-22 08:51:43 +03:00
|
|
|
if (rb_obj_is_proc(g))
|
2019-09-25 21:22:14 +03:00
|
|
|
fargs = rb_proc_call_with_block_kw(g, argc, argv, blockarg, RB_PASS_CALLED_KEYWORDS);
|
2018-11-22 08:51:43 +03:00
|
|
|
else
|
2019-09-25 21:22:14 +03:00
|
|
|
fargs = rb_funcall_with_block_kw(g, idCall, argc, argv, blockarg, RB_PASS_CALLED_KEYWORDS);
|
2018-11-22 08:51:43 +03:00
|
|
|
|
|
|
|
if (rb_obj_is_proc(f))
|
|
|
|
return rb_proc_call(f, rb_ary_new3(1, fargs));
|
|
|
|
else
|
|
|
|
return rb_funcallv(f, idCall, 1, &fargs);
|
2018-11-22 08:51:40 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 09:01:32 +03:00
|
|
|
static VALUE
|
|
|
|
to_callable(VALUE f)
|
|
|
|
{
|
|
|
|
VALUE mesg;
|
|
|
|
|
|
|
|
if (rb_obj_is_proc(f)) return f;
|
|
|
|
if (rb_obj_is_method(f)) return f;
|
|
|
|
if (rb_obj_respond_to(f, idCall, TRUE)) return f;
|
|
|
|
mesg = rb_fstring_lit("callable object is expected");
|
|
|
|
rb_exc_raise(rb_exc_new_str(rb_eTypeError, mesg));
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE rb_proc_compose_to_left(VALUE self, VALUE g);
|
|
|
|
static VALUE rb_proc_compose_to_right(VALUE self, VALUE g);
|
|
|
|
|
2018-11-22 08:51:40 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2018-11-22 08:51:43 +03:00
|
|
|
* prc << g -> a_proc
|
2018-11-22 08:51:40 +03:00
|
|
|
*
|
2018-11-22 08:51:42 +03:00
|
|
|
* Returns a proc that is the composition of this proc and the given <i>g</i>.
|
2018-11-22 08:51:40 +03:00
|
|
|
* The returned proc takes a variable number of arguments, calls <i>g</i> with them
|
|
|
|
* then calls this proc with the result.
|
|
|
|
*
|
2018-11-23 14:42:50 +03:00
|
|
|
* f = proc {|x| x * x }
|
|
|
|
* g = proc {|x| x + x }
|
|
|
|
* p (f << g).call(2) #=> 16
|
2019-10-24 19:35:36 +03:00
|
|
|
*
|
|
|
|
* See Proc#>> for detailed explanations.
|
2018-11-22 08:51:40 +03:00
|
|
|
*/
|
|
|
|
static VALUE
|
2018-11-22 08:51:43 +03:00
|
|
|
proc_compose_to_left(VALUE self, VALUE g)
|
2019-01-10 09:01:32 +03:00
|
|
|
{
|
|
|
|
return rb_proc_compose_to_left(self, to_callable(g));
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_proc_compose_to_left(VALUE self, VALUE g)
|
2018-11-22 08:51:40 +03:00
|
|
|
{
|
2018-11-22 08:51:43 +03:00
|
|
|
VALUE proc, args, procs[2];
|
2018-11-22 08:51:40 +03:00
|
|
|
rb_proc_t *procp;
|
|
|
|
int is_lambda;
|
|
|
|
|
2018-11-22 08:51:43 +03:00
|
|
|
procs[0] = self;
|
|
|
|
procs[1] = g;
|
|
|
|
args = rb_ary_tmp_new_from_values(0, 2, procs);
|
2018-11-22 08:51:40 +03:00
|
|
|
|
|
|
|
GetProcPtr(self, procp);
|
|
|
|
is_lambda = procp->is_lambda;
|
|
|
|
|
|
|
|
proc = rb_proc_new(compose, args);
|
|
|
|
GetProcPtr(proc, procp);
|
|
|
|
procp->is_lambda = is_lambda;
|
|
|
|
|
|
|
|
return proc;
|
|
|
|
}
|
|
|
|
|
2018-11-22 08:51:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2018-11-22 08:51:43 +03:00
|
|
|
* prc >> g -> a_proc
|
|
|
|
*
|
|
|
|
* Returns a proc that is the composition of this proc and the given <i>g</i>.
|
2019-11-25 01:08:16 +03:00
|
|
|
* The returned proc takes a variable number of arguments, calls this proc with them
|
|
|
|
* then calls <i>g</i> with the result.
|
2018-11-22 08:51:43 +03:00
|
|
|
*
|
2018-11-23 14:42:50 +03:00
|
|
|
* f = proc {|x| x * x }
|
|
|
|
* g = proc {|x| x + x }
|
|
|
|
* p (f >> g).call(2) #=> 8
|
2019-10-24 19:35:36 +03:00
|
|
|
*
|
|
|
|
* <i>g</i> could be other Proc, or Method, or any other object responding to
|
|
|
|
* +call+ method:
|
|
|
|
*
|
|
|
|
* class Parser
|
|
|
|
* def self.call(text)
|
|
|
|
* # ...some complicated parsing logic...
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* pipeline = File.method(:read) >> Parser >> proc { |data| puts "data size: #{data.count}" }
|
|
|
|
* pipeline.call('data.json')
|
|
|
|
*
|
|
|
|
* See also Method#>> and Method#<<.
|
2018-11-22 08:51:43 +03:00
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
proc_compose_to_right(VALUE self, VALUE g)
|
2019-01-10 09:01:32 +03:00
|
|
|
{
|
|
|
|
return rb_proc_compose_to_right(self, to_callable(g));
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_proc_compose_to_right(VALUE self, VALUE g)
|
2018-11-22 08:51:43 +03:00
|
|
|
{
|
|
|
|
VALUE proc, args, procs[2];
|
|
|
|
rb_proc_t *procp;
|
|
|
|
int is_lambda;
|
|
|
|
|
|
|
|
procs[0] = g;
|
|
|
|
procs[1] = self;
|
|
|
|
args = rb_ary_tmp_new_from_values(0, 2, procs);
|
|
|
|
|
|
|
|
GetProcPtr(self, procp);
|
|
|
|
is_lambda = procp->is_lambda;
|
|
|
|
|
|
|
|
proc = rb_proc_new(compose, args);
|
|
|
|
GetProcPtr(proc, procp);
|
|
|
|
procp->is_lambda = is_lambda;
|
|
|
|
|
|
|
|
return proc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* meth << g -> a_proc
|
2018-11-22 08:51:41 +03:00
|
|
|
*
|
2018-11-22 08:51:42 +03:00
|
|
|
* Returns a proc that is the composition of this method and the given <i>g</i>.
|
2018-11-22 08:51:41 +03:00
|
|
|
* The returned proc takes a variable number of arguments, calls <i>g</i> with them
|
|
|
|
* then calls this method with the result.
|
|
|
|
*
|
|
|
|
* def f(x)
|
2018-11-23 14:42:50 +03:00
|
|
|
* x * x
|
2018-11-22 08:51:41 +03:00
|
|
|
* end
|
|
|
|
*
|
|
|
|
* f = self.method(:f)
|
2018-11-23 14:42:50 +03:00
|
|
|
* g = proc {|x| x + x }
|
|
|
|
* p (f << g).call(2) #=> 16
|
2018-11-22 08:51:43 +03:00
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
rb_method_compose_to_left(VALUE self, VALUE g)
|
|
|
|
{
|
2019-01-10 09:01:32 +03:00
|
|
|
g = to_callable(g);
|
|
|
|
self = method_to_proc(self);
|
|
|
|
return proc_compose_to_left(self, g);
|
2018-11-22 08:51:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* meth >> g -> a_proc
|
|
|
|
*
|
|
|
|
* Returns a proc that is the composition of this method and the given <i>g</i>.
|
|
|
|
* The returned proc takes a variable number of arguments, calls <i>g</i> with them
|
|
|
|
* then calls this method with the result.
|
|
|
|
*
|
2018-11-23 14:42:50 +03:00
|
|
|
* def f(x)
|
|
|
|
* x * x
|
2018-11-22 08:51:43 +03:00
|
|
|
* end
|
|
|
|
*
|
|
|
|
* f = self.method(:f)
|
2018-11-23 14:42:50 +03:00
|
|
|
* g = proc {|x| x + x }
|
|
|
|
* p (f >> g).call(2) #=> 8
|
2018-11-22 08:51:41 +03:00
|
|
|
*/
|
|
|
|
static VALUE
|
2018-11-22 08:51:43 +03:00
|
|
|
rb_method_compose_to_right(VALUE self, VALUE g)
|
2018-11-22 08:51:41 +03:00
|
|
|
{
|
2019-01-10 09:01:32 +03:00
|
|
|
g = to_callable(g);
|
|
|
|
self = method_to_proc(self);
|
|
|
|
return proc_compose_to_right(self, g);
|
2018-11-22 08:51:41 +03:00
|
|
|
}
|
|
|
|
|
2019-12-05 22:01:20 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* proc.ruby2_keywords -> proc
|
|
|
|
*
|
|
|
|
* Marks the proc as passing keywords through a normal argument splat.
|
|
|
|
* This should only be called on procs that accept an argument splat
|
|
|
|
* (<tt>*args</tt>) but not explicit keywords or a keyword splat. It
|
|
|
|
* marks the proc such that if the proc is called with keyword arguments,
|
|
|
|
* the final hash argument is marked with a special flag such that if it
|
|
|
|
* is the final element of a normal argument splat to another method call,
|
|
|
|
* and that method call does not include explicit keywords or a keyword
|
|
|
|
* splat, the final element is interpreted as keywords. In other words,
|
|
|
|
* keywords will be passed through the proc to other methods.
|
|
|
|
*
|
|
|
|
* This should only be used for procs that delegate keywords to another
|
|
|
|
* method, and only for backwards compatibility with Ruby versions before
|
|
|
|
* 2.7.
|
|
|
|
*
|
|
|
|
* This method will probably be removed at some point, as it exists only
|
|
|
|
* for backwards compatibility. As it does not exist in Ruby versions
|
|
|
|
* before 2.7, check that the proc responds to this method before calling
|
|
|
|
* it. Also, be aware that if this method is removed, the behavior of the
|
|
|
|
* proc will change so that it does not pass through keywords.
|
|
|
|
*
|
|
|
|
* module Mod
|
|
|
|
* foo = ->(meth, *args, &block) do
|
|
|
|
* send(:"do_#{meth}", *args, &block)
|
|
|
|
* end
|
|
|
|
* foo.ruby2_keywords if foo.respond_to?(:ruby2_keywords)
|
|
|
|
* end
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_ruby2_keywords(VALUE procval)
|
|
|
|
{
|
|
|
|
rb_proc_t *proc;
|
|
|
|
GetProcPtr(procval, proc);
|
|
|
|
|
|
|
|
rb_check_frozen(procval);
|
|
|
|
|
|
|
|
if (proc->is_from_method) {
|
|
|
|
rb_warn("Skipping set of ruby2_keywords flag for proc (proc created from method)");
|
|
|
|
return procval;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (proc->block.type) {
|
|
|
|
case block_type_iseq:
|
|
|
|
if (proc->block.as.captured.code.iseq->body->param.flags.has_rest &&
|
|
|
|
!proc->block.as.captured.code.iseq->body->param.flags.has_kw &&
|
|
|
|
!proc->block.as.captured.code.iseq->body->param.flags.has_kwrest) {
|
|
|
|
proc->block.as.captured.code.iseq->body->param.flags.ruby2_keywords = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_warn("Skipping set of ruby2_keywords flag for proc (proc accepts keywords or proc does not accept argument splat)");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rb_warn("Skipping set of ruby2_keywords flag for proc (proc not defined in Ruby)");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return procval;
|
|
|
|
}
|
|
|
|
|
2010-05-08 08:50:09 +04:00
|
|
|
/*
|
|
|
|
* Document-class: LocalJumpError
|
|
|
|
*
|
|
|
|
* Raised when Ruby can't yield as requested.
|
|
|
|
*
|
|
|
|
* A typical scenario is attempting to yield when no block is given:
|
|
|
|
*
|
|
|
|
* def call_block
|
|
|
|
* yield 42
|
|
|
|
* end
|
|
|
|
* call_block
|
|
|
|
*
|
|
|
|
* <em>raises the exception:</em>
|
|
|
|
*
|
|
|
|
* LocalJumpError: no block given (yield)
|
|
|
|
*
|
|
|
|
* A more subtle example:
|
|
|
|
*
|
|
|
|
* def get_me_a_return
|
|
|
|
* Proc.new { return 42 }
|
|
|
|
* end
|
|
|
|
* get_me_a_return.call
|
|
|
|
*
|
|
|
|
* <em>raises the exception:</em>
|
|
|
|
*
|
|
|
|
* LocalJumpError: unexpected return
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Document-class: SystemStackError
|
|
|
|
*
|
|
|
|
* Raised in case of a stack overflow.
|
|
|
|
*
|
|
|
|
* def me_myself_and_i
|
|
|
|
* me_myself_and_i
|
|
|
|
* end
|
|
|
|
* me_myself_and_i
|
|
|
|
*
|
|
|
|
* <em>raises the exception:</em>
|
|
|
|
*
|
|
|
|
* SystemStackError: stack level too deep
|
|
|
|
*/
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
/*
|
2018-12-14 08:44:41 +03:00
|
|
|
* Document-class: Proc
|
|
|
|
*
|
|
|
|
* A +Proc+ object is an encapsulation of a block of code, which can be stored
|
|
|
|
* in a local variable, passed to a method or another Proc, and can be called.
|
2018-12-12 10:37:16 +03:00
|
|
|
* Proc is an essential concept in Ruby and a core of its functional
|
|
|
|
* programming features.
|
|
|
|
*
|
|
|
|
* square = Proc.new {|x| x**2 }
|
|
|
|
*
|
|
|
|
* square.call(3) #=> 9
|
|
|
|
* # shorthands:
|
|
|
|
* square.(3) #=> 9
|
|
|
|
* square[3] #=> 9
|
|
|
|
*
|
|
|
|
* Proc objects are _closures_, meaning they remember and can use the entire
|
|
|
|
* context in which they were created.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* def gen_times(factor)
|
2018-12-14 08:44:41 +03:00
|
|
|
* Proc.new {|n| n*factor } # remembers the value of factor at the moment of creation
|
2007-02-02 18:21:41 +03:00
|
|
|
* end
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* times3 = gen_times(3)
|
|
|
|
* times5 = gen_times(5)
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* times3.call(12) #=> 36
|
|
|
|
* times5.call(5) #=> 25
|
|
|
|
* times3.call(times5.call(4)) #=> 60
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2018-12-12 10:37:16 +03:00
|
|
|
* == Creation
|
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* There are several methods to create a Proc
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* * Use the Proc class constructor:
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
|
|
|
* proc1 = Proc.new {|x| x**2 }
|
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* * Use the Kernel#proc method as a shorthand of Proc.new:
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
|
|
|
* proc2 = proc {|x| x**2 }
|
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* * Receiving a block of code into proc argument (note the <code>&</code>):
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
|
|
|
* def make_proc(&block)
|
|
|
|
* block
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* proc3 = make_proc {|x| x**2 }
|
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* * Construct a proc with lambda semantics using the Kernel#lambda method
|
|
|
|
* (see below for explanations about lambdas):
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
|
|
|
* lambda1 = lambda {|x| x**2 }
|
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* * Use the Lambda literal syntax (also constructs a proc with lambda semantics):
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
|
|
|
* lambda2 = ->(x) { x**2 }
|
|
|
|
*
|
|
|
|
* == Lambda and non-lambda semantics
|
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* Procs are coming in two flavors: lambda and non-lambda (regular procs).
|
2018-12-12 10:37:16 +03:00
|
|
|
* Differences are:
|
|
|
|
*
|
2019-07-14 09:01:39 +03:00
|
|
|
* * In lambdas, +return+ and +break+ means exit from this lambda;
|
|
|
|
* * In non-lambda procs, +return+ means exit from embracing method
|
2018-12-12 10:37:16 +03:00
|
|
|
* (and will throw +LocalJumpError+ if invoked outside the method);
|
2019-07-14 09:01:39 +03:00
|
|
|
* * In non-lambda procs, +break+ means exit from the method which the block given for.
|
|
|
|
* (and will throw +LocalJumpError+ if invoked after the method returns);
|
2018-12-14 08:44:41 +03:00
|
|
|
* * In lambdas, arguments are treated in the same way as in methods: strict,
|
2018-12-12 10:37:16 +03:00
|
|
|
* with +ArgumentError+ for mismatching argument number,
|
|
|
|
* and no additional argument processing;
|
2018-12-14 08:44:41 +03:00
|
|
|
* * Regular procs accept arguments more generously: missing arguments
|
|
|
|
* are filled with +nil+, single Array arguments are deconstructed if the
|
|
|
|
* proc has multiple arguments, and there is no error raised on extra
|
2018-12-12 10:37:16 +03:00
|
|
|
* arguments.
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
*
|
2019-07-14 09:01:39 +03:00
|
|
|
* # +return+ in non-lambda proc, +b+, exits +m2+.
|
|
|
|
* # (The block +{ return }+ is given for +m1+ and embraced by +m2+.)
|
|
|
|
* $a = []; def m1(&b) b.call; $a << :m1 end; def m2() m1 { return }; $a << :m2 end; m2; p $a
|
|
|
|
* #=> []
|
|
|
|
*
|
|
|
|
* # +break+ in non-lambda proc, +b+, exits +m1+.
|
|
|
|
* # (The block +{ break }+ is given for +m1+ and embraced by +m2+.)
|
|
|
|
* $a = []; def m1(&b) b.call; $a << :m1 end; def m2() m1 { break }; $a << :m2 end; m2; p $a
|
|
|
|
* #=> [:m2]
|
|
|
|
*
|
|
|
|
* # +next+ in non-lambda proc, +b+, exits the block.
|
|
|
|
* # (The block +{ next }+ is given for +m1+ and embraced by +m2+.)
|
|
|
|
* $a = []; def m1(&b) b.call; $a << :m1 end; def m2() m1 { next }; $a << :m2 end; m2; p $a
|
|
|
|
* #=> [:m1, :m2]
|
|
|
|
*
|
|
|
|
* # Using +proc+ method changes the behavior as follows because
|
|
|
|
* # The block is given for +proc+ method and embraced by +m2+.
|
|
|
|
* $a = []; def m1(&b) b.call; $a << :m1 end; def m2() m1(&proc { return }); $a << :m2 end; m2; p $a
|
|
|
|
* #=> []
|
|
|
|
* $a = []; def m1(&b) b.call; $a << :m1 end; def m2() m1(&proc { break }); $a << :m2 end; m2; p $a
|
|
|
|
* # break from proc-closure (LocalJumpError)
|
|
|
|
* $a = []; def m1(&b) b.call; $a << :m1 end; def m2() m1(&proc { next }); $a << :m2 end; m2; p $a
|
|
|
|
* #=> [:m1, :m2]
|
|
|
|
*
|
2019-07-14 16:04:27 +03:00
|
|
|
* # +return+, +break+ and +next+ in the stubby lambda exits the block.
|
2019-07-14 09:01:39 +03:00
|
|
|
* # (+lambda+ method behaves same.)
|
|
|
|
* # (The block is given for stubby lambda syntax and embraced by +m2+.)
|
|
|
|
* $a = []; def m1(&b) b.call; $a << :m1 end; def m2() m1(&-> { return }); $a << :m2 end; m2; p $a
|
|
|
|
* #=> [:m1, :m2]
|
|
|
|
* $a = []; def m1(&b) b.call; $a << :m1 end; def m2() m1(&-> { break }); $a << :m2 end; m2; p $a
|
|
|
|
* #=> [:m1, :m2]
|
|
|
|
* $a = []; def m1(&b) b.call; $a << :m1 end; def m2() m1(&-> { next }); $a << :m2 end; m2; p $a
|
|
|
|
* #=> [:m1, :m2]
|
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* p = proc {|x, y| "x=#{x}, y=#{y}" }
|
2018-12-12 10:37:16 +03:00
|
|
|
* p.call(1, 2) #=> "x=1, y=2"
|
|
|
|
* p.call([1, 2]) #=> "x=1, y=2", array deconstructed
|
|
|
|
* p.call(1, 2, 8) #=> "x=1, y=2", extra argument discarded
|
2018-12-14 08:44:41 +03:00
|
|
|
* p.call(1) #=> "x=1, y=", nil substituted instead of error
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
|
|
|
* l = lambda {|x, y| "x=#{x}, y=#{y}" }
|
|
|
|
* l.call(1, 2) #=> "x=1, y=2"
|
|
|
|
* l.call([1, 2]) # ArgumentError: wrong number of arguments (given 1, expected 2)
|
|
|
|
* l.call(1, 2, 8) # ArgumentError: wrong number of arguments (given 3, expected 2)
|
|
|
|
* l.call(1) # ArgumentError: wrong number of arguments (given 1, expected 2)
|
|
|
|
*
|
|
|
|
* def test_return
|
|
|
|
* -> { return 3 }.call # just returns from lambda into method body
|
|
|
|
* proc { return 4 }.call # returns from method
|
|
|
|
* return 5
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* test_return # => 4, return from proc
|
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* Lambdas are useful as self-sufficient functions, in particular useful as
|
|
|
|
* arguments to higher-order functions, behaving exactly like Ruby methods.
|
2018-12-14 08:44:43 +03:00
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* Procs are useful for implementing iterators:
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
|
|
|
* def test
|
|
|
|
* [[1, 2], [3, 4], [5, 6]].map {|a, b| return a if a + b > 10 }
|
|
|
|
* # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
* end
|
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* Inside +map+, the block of code is treated as a regular (non-lambda) proc,
|
|
|
|
* which means that the internal arrays will be deconstructed to pairs of
|
2018-12-12 10:37:16 +03:00
|
|
|
* arguments, and +return+ will exit from the method +test+. That would
|
2018-12-14 08:44:41 +03:00
|
|
|
* not be possible with a stricter lambda.
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* You can tell a lambda from a regular proc by using the #lambda? instance method.
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
|
|
|
* Lambda semantics is typically preserved during the proc lifetime, including
|
2018-12-14 08:44:41 +03:00
|
|
|
* <code>&</code>-deconstruction to a block of code:
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
|
|
|
* p = proc {|x, y| x }
|
|
|
|
* l = lambda {|x, y| x }
|
|
|
|
* [[1, 2], [3, 4]].map(&p) #=> [1, 2]
|
|
|
|
* [[1, 2], [3, 4]].map(&l) # ArgumentError: wrong number of arguments (given 1, expected 2)
|
|
|
|
*
|
|
|
|
* The only exception is dynamic method definition: even if defined by
|
2018-12-14 08:44:41 +03:00
|
|
|
* passing a non-lambda proc, methods still have normal semantics of argument
|
2018-12-12 10:37:16 +03:00
|
|
|
* checking.
|
|
|
|
*
|
|
|
|
* class C
|
|
|
|
* define_method(:e, &proc {})
|
|
|
|
* end
|
|
|
|
* C.new.e(1,2) #=> ArgumentError
|
|
|
|
* C.new.method(:e).to_proc.lambda? #=> true
|
|
|
|
*
|
|
|
|
* This exception ensures that methods never have unusual argument passing
|
|
|
|
* conventions, and makes it easy to have wrappers defining methods that
|
|
|
|
* behave as usual.
|
|
|
|
*
|
|
|
|
* class C
|
|
|
|
* def self.def2(name, &body)
|
|
|
|
* define_method(name, &body)
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* def2(:f) {}
|
|
|
|
* end
|
|
|
|
* C.new.f(1,2) #=> ArgumentError
|
|
|
|
*
|
2019-03-28 06:33:35 +03:00
|
|
|
* The wrapper <code>def2</code> receives _body_ as a non-lambda proc,
|
2018-12-12 10:37:16 +03:00
|
|
|
* yet defines a method which has normal semantics.
|
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* == Conversion of other objects to procs
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
2018-12-14 08:44:41 +03:00
|
|
|
* Any object that implements the +to_proc+ method can be converted into
|
|
|
|
* a proc by the <code>&</code> operator, and therefore con be
|
|
|
|
* consumed by iterators.
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
2019-07-14 16:04:27 +03:00
|
|
|
|
|
|
|
* class Greeter
|
|
|
|
* def initialize(greeting)
|
|
|
|
* @greeting = greeting
|
2018-12-12 10:37:16 +03:00
|
|
|
* end
|
|
|
|
*
|
|
|
|
* def to_proc
|
2019-07-14 16:04:27 +03:00
|
|
|
* proc {|name| "#{@greeting}, #{name}!" }
|
2018-12-12 10:37:16 +03:00
|
|
|
* end
|
|
|
|
* end
|
|
|
|
*
|
2019-07-14 16:04:27 +03:00
|
|
|
* hi = Greeter.new("Hi")
|
|
|
|
* hey = Greeter.new("Hey")
|
2018-12-12 10:37:16 +03:00
|
|
|
* ["Bob", "Jane"].map(&hi) #=> ["Hi, Bob!", "Hi, Jane!"]
|
|
|
|
* ["Bob", "Jane"].map(&hey) #=> ["Hey, Bob!", "Hey, Jane!"]
|
|
|
|
*
|
2018-12-14 18:18:14 +03:00
|
|
|
* Of the Ruby core classes, this method is implemented by Symbol,
|
|
|
|
* Method, and Hash.
|
2018-12-12 10:37:16 +03:00
|
|
|
*
|
|
|
|
* :to_s.to_proc.call(1) #=> "1"
|
|
|
|
* [1, 2].map(&:to_s) #=> ["1", "2"]
|
|
|
|
*
|
|
|
|
* method(:puts).to_proc.call(1) # prints 1
|
|
|
|
* [1, 2].each(&method(:puts)) # prints 1, 2
|
|
|
|
*
|
|
|
|
* {test: 1}.to_proc.call(:test) #=> 1
|
|
|
|
* %i[test many keys].map(&{test: 1}) #=> [1, nil, nil]
|
|
|
|
*
|
2019-07-14 09:01:39 +03:00
|
|
|
* == Orphaned Proc
|
|
|
|
*
|
|
|
|
* +return+ and +break+ in a block exit a method.
|
|
|
|
* If a Proc object is generated from the block and the Proc object
|
|
|
|
* survives until the method is returned, +return+ and +break+ cannot work.
|
|
|
|
* In such case, +return+ and +break+ raises LocalJumpError.
|
|
|
|
* A Proc object in such situation is called as orphaned Proc object.
|
|
|
|
*
|
|
|
|
* Note that the method to exit is different for +return+ and +break+.
|
|
|
|
* There is a situation that orphaned for +break+ but not orphaned for +return+.
|
|
|
|
*
|
|
|
|
* def m1(&b) b.call end; def m2(); m1 { return } end; m2 # ok
|
|
|
|
* def m1(&b) b.call end; def m2(); m1 { break } end; m2 # ok
|
|
|
|
*
|
|
|
|
* def m1(&b) b end; def m2(); m1 { return }.call end; m2 # ok
|
|
|
|
* def m1(&b) b end; def m2(); m1 { break }.call end; m2 # LocalJumpError
|
|
|
|
*
|
|
|
|
* def m1(&b) b end; def m2(); m1 { return } end; m2.call # LocalJumpError
|
|
|
|
* def m1(&b) b end; def m2(); m1 { break } end; m2.call # LocalJumpError
|
|
|
|
*
|
2019-07-14 16:04:27 +03:00
|
|
|
* Since +return+ and +break+ exits the block itself in lambdas,
|
2019-07-14 09:01:39 +03:00
|
|
|
* lambdas cannot be orphaned.
|
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
2018-12-12 10:37:16 +03:00
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
void
|
2007-02-05 21:31:08 +03:00
|
|
|
Init_Proc(void)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2018-02-16 11:39:48 +03:00
|
|
|
#undef rb_intern
|
2007-02-02 18:21:41 +03:00
|
|
|
/* Proc */
|
|
|
|
rb_cProc = rb_define_class("Proc", rb_cObject);
|
|
|
|
rb_undef_alloc_func(rb_cProc);
|
2007-12-05 10:18:52 +03:00
|
|
|
rb_define_singleton_method(rb_cProc, "new", rb_proc_s_new, -1);
|
2009-07-15 18:59:41 +04:00
|
|
|
|
2018-01-22 16:09:37 +03:00
|
|
|
rb_add_method(rb_cProc, idCall, VM_METHOD_TYPE_OPTIMIZED,
|
2015-10-06 13:24:34 +03:00
|
|
|
(void *)OPTIMIZED_METHOD_TYPE_CALL, METHOD_VISI_PUBLIC);
|
2009-07-15 18:59:41 +04:00
|
|
|
rb_add_method(rb_cProc, rb_intern("[]"), VM_METHOD_TYPE_OPTIMIZED,
|
2015-10-06 13:24:34 +03:00
|
|
|
(void *)OPTIMIZED_METHOD_TYPE_CALL, METHOD_VISI_PUBLIC);
|
2009-07-15 18:59:41 +04:00
|
|
|
rb_add_method(rb_cProc, rb_intern("==="), VM_METHOD_TYPE_OPTIMIZED,
|
2015-10-06 13:24:34 +03:00
|
|
|
(void *)OPTIMIZED_METHOD_TYPE_CALL, METHOD_VISI_PUBLIC);
|
2009-07-15 18:59:41 +04:00
|
|
|
rb_add_method(rb_cProc, rb_intern("yield"), VM_METHOD_TYPE_OPTIMIZED,
|
2015-10-06 13:24:34 +03:00
|
|
|
(void *)OPTIMIZED_METHOD_TYPE_CALL, METHOD_VISI_PUBLIC);
|
2015-10-06 00:34:24 +03:00
|
|
|
|
2016-05-16 00:11:33 +03:00
|
|
|
#if 0 /* for RDoc */
|
|
|
|
rb_define_method(rb_cProc, "call", proc_call, -1);
|
|
|
|
rb_define_method(rb_cProc, "[]", proc_call, -1);
|
|
|
|
rb_define_method(rb_cProc, "===", proc_call, -1);
|
|
|
|
rb_define_method(rb_cProc, "yield", proc_call, -1);
|
|
|
|
#endif
|
|
|
|
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_define_method(rb_cProc, "to_proc", proc_to_proc, 0);
|
|
|
|
rb_define_method(rb_cProc, "arity", proc_arity, 0);
|
|
|
|
rb_define_method(rb_cProc, "clone", proc_clone, 0);
|
2017-12-28 23:09:24 +03:00
|
|
|
rb_define_method(rb_cProc, "dup", rb_proc_dup, 0);
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_define_method(rb_cProc, "hash", proc_hash, 0);
|
|
|
|
rb_define_method(rb_cProc, "to_s", proc_to_s, 0);
|
2012-08-15 15:50:01 +04:00
|
|
|
rb_define_alias(rb_cProc, "inspect", "to_s");
|
2009-10-24 20:53:11 +04:00
|
|
|
rb_define_method(rb_cProc, "lambda?", rb_proc_lambda_p, 0);
|
2007-12-20 11:20:02 +03:00
|
|
|
rb_define_method(rb_cProc, "binding", proc_binding, 0);
|
2008-02-13 15:51:31 +03:00
|
|
|
rb_define_method(rb_cProc, "curry", proc_curry, -1);
|
2018-11-22 08:51:43 +03:00
|
|
|
rb_define_method(rb_cProc, "<<", proc_compose_to_left, 1);
|
|
|
|
rb_define_method(rb_cProc, ">>", proc_compose_to_right, 1);
|
2008-09-26 17:47:01 +04:00
|
|
|
rb_define_method(rb_cProc, "source_location", rb_proc_location, 0);
|
2008-11-28 07:19:37 +03:00
|
|
|
rb_define_method(rb_cProc, "parameters", rb_proc_parameters, 0);
|
2019-12-05 22:01:20 +03:00
|
|
|
rb_define_method(rb_cProc, "ruby2_keywords", proc_ruby2_keywords, 0);
|
2007-02-02 18:21:41 +03:00
|
|
|
|
2007-02-05 21:31:08 +03:00
|
|
|
/* Exceptions */
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_eLocalJumpError = rb_define_class("LocalJumpError", rb_eStandardError);
|
|
|
|
rb_define_method(rb_eLocalJumpError, "exit_value", localjump_xvalue, 0);
|
|
|
|
rb_define_method(rb_eLocalJumpError, "reason", localjump_reason, 0);
|
|
|
|
|
|
|
|
rb_eSysStackError = rb_define_class("SystemStackError", rb_eException);
|
2014-09-11 14:53:48 +04:00
|
|
|
rb_vm_register_special_exception(ruby_error_sysstack, rb_eSysStackError, "stack level too deep");
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
/* utility functions */
|
2019-08-28 12:19:11 +03:00
|
|
|
rb_define_global_function("proc", f_proc, 0);
|
|
|
|
rb_define_global_function("lambda", f_lambda, 0);
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
/* Method */
|
|
|
|
rb_cMethod = rb_define_class("Method", rb_cObject);
|
|
|
|
rb_undef_alloc_func(rb_cMethod);
|
|
|
|
rb_undef_method(CLASS_OF(rb_cMethod), "new");
|
|
|
|
rb_define_method(rb_cMethod, "==", method_eq, 1);
|
|
|
|
rb_define_method(rb_cMethod, "eql?", method_eq, 1);
|
|
|
|
rb_define_method(rb_cMethod, "hash", method_hash, 0);
|
|
|
|
rb_define_method(rb_cMethod, "clone", method_clone, 0);
|
2019-09-14 11:49:33 +03:00
|
|
|
rb_define_method(rb_cMethod, "call", rb_method_call_pass_called_kw, -1);
|
|
|
|
rb_define_method(rb_cMethod, "===", rb_method_call_pass_called_kw, -1);
|
2014-06-19 08:42:16 +04:00
|
|
|
rb_define_method(rb_cMethod, "curry", rb_method_curry, -1);
|
2018-11-22 08:51:43 +03:00
|
|
|
rb_define_method(rb_cMethod, "<<", rb_method_compose_to_left, 1);
|
|
|
|
rb_define_method(rb_cMethod, ">>", rb_method_compose_to_right, 1);
|
2019-09-14 11:49:33 +03:00
|
|
|
rb_define_method(rb_cMethod, "[]", rb_method_call_pass_called_kw, -1);
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_define_method(rb_cMethod, "arity", method_arity_m, 0);
|
|
|
|
rb_define_method(rb_cMethod, "inspect", method_inspect, 0);
|
|
|
|
rb_define_method(rb_cMethod, "to_s", method_inspect, 0);
|
2015-05-21 05:00:31 +03:00
|
|
|
rb_define_method(rb_cMethod, "to_proc", method_to_proc, 0);
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_define_method(rb_cMethod, "receiver", method_receiver, 0);
|
|
|
|
rb_define_method(rb_cMethod, "name", method_name, 0);
|
2013-02-13 13:12:04 +04:00
|
|
|
rb_define_method(rb_cMethod, "original_name", method_original_name, 0);
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_define_method(rb_cMethod, "owner", method_owner, 0);
|
|
|
|
rb_define_method(rb_cMethod, "unbind", method_unbind, 0);
|
2008-09-26 17:47:01 +04:00
|
|
|
rb_define_method(rb_cMethod, "source_location", rb_method_location, 0);
|
2008-11-28 07:19:37 +03:00
|
|
|
rb_define_method(rb_cMethod, "parameters", rb_method_parameters, 0);
|
2014-07-26 20:22:41 +04:00
|
|
|
rb_define_method(rb_cMethod, "super_method", method_super_method, 0);
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_define_method(rb_mKernel, "method", rb_obj_method, 1);
|
2007-12-18 02:01:50 +03:00
|
|
|
rb_define_method(rb_mKernel, "public_method", rb_obj_public_method, 1);
|
2013-05-13 09:52:03 +04:00
|
|
|
rb_define_method(rb_mKernel, "singleton_method", rb_obj_singleton_method, 1);
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
/* UnboundMethod */
|
|
|
|
rb_cUnboundMethod = rb_define_class("UnboundMethod", rb_cObject);
|
|
|
|
rb_undef_alloc_func(rb_cUnboundMethod);
|
|
|
|
rb_undef_method(CLASS_OF(rb_cUnboundMethod), "new");
|
|
|
|
rb_define_method(rb_cUnboundMethod, "==", method_eq, 1);
|
|
|
|
rb_define_method(rb_cUnboundMethod, "eql?", method_eq, 1);
|
|
|
|
rb_define_method(rb_cUnboundMethod, "hash", method_hash, 0);
|
|
|
|
rb_define_method(rb_cUnboundMethod, "clone", method_clone, 0);
|
|
|
|
rb_define_method(rb_cUnboundMethod, "arity", method_arity_m, 0);
|
|
|
|
rb_define_method(rb_cUnboundMethod, "inspect", method_inspect, 0);
|
|
|
|
rb_define_method(rb_cUnboundMethod, "to_s", method_inspect, 0);
|
|
|
|
rb_define_method(rb_cUnboundMethod, "name", method_name, 0);
|
2013-02-13 13:12:04 +04:00
|
|
|
rb_define_method(rb_cUnboundMethod, "original_name", method_original_name, 0);
|
2007-02-02 18:21:41 +03:00
|
|
|
rb_define_method(rb_cUnboundMethod, "owner", method_owner, 0);
|
|
|
|
rb_define_method(rb_cUnboundMethod, "bind", umethod_bind, 1);
|
2019-08-30 05:01:25 +03:00
|
|
|
rb_define_method(rb_cUnboundMethod, "bind_call", umethod_bind_call, -1);
|
2008-09-26 17:47:01 +04:00
|
|
|
rb_define_method(rb_cUnboundMethod, "source_location", rb_method_location, 0);
|
2008-11-28 07:19:37 +03:00
|
|
|
rb_define_method(rb_cUnboundMethod, "parameters", rb_method_parameters, 0);
|
2014-07-26 20:22:41 +04:00
|
|
|
rb_define_method(rb_cUnboundMethod, "super_method", method_super_method, 0);
|
2007-02-02 18:21:41 +03:00
|
|
|
|
|
|
|
/* Module#*_method */
|
2007-12-18 02:01:50 +03:00
|
|
|
rb_define_method(rb_cModule, "instance_method", rb_mod_instance_method, 1);
|
|
|
|
rb_define_method(rb_cModule, "public_instance_method", rb_mod_public_instance_method, 1);
|
2017-11-29 20:47:59 +03:00
|
|
|
rb_define_method(rb_cModule, "define_method", rb_mod_define_method, -1);
|
2007-08-30 09:06:52 +04:00
|
|
|
|
|
|
|
/* Kernel */
|
|
|
|
rb_define_method(rb_mKernel, "define_singleton_method", rb_obj_define_method, -1);
|
2012-11-02 03:24:33 +04:00
|
|
|
|
2013-01-07 16:42:48 +04:00
|
|
|
rb_define_private_method(rb_singleton_class(rb_vm_top_self()),
|
|
|
|
"define_method", top_define_method, -1);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2019-03-28 06:33:35 +03:00
|
|
|
* Objects of class Binding encapsulate the execution context at some
|
|
|
|
* particular place in the code and retain this context for future
|
|
|
|
* use. The variables, methods, value of <code>self</code>, and
|
|
|
|
* possibly an iterator block that can be accessed in this context
|
2007-02-02 18:21:41 +03:00
|
|
|
* are all retained. Binding objects can be created using
|
2019-03-28 06:33:35 +03:00
|
|
|
* Kernel#binding, and are made available to the callback of
|
2019-04-22 17:10:10 +03:00
|
|
|
* Kernel#set_trace_func and instances of TracePoint.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* These binding objects can be passed as the second argument of the
|
2019-03-28 06:33:35 +03:00
|
|
|
* Kernel#eval method, establishing an environment for the
|
2007-02-02 18:21:41 +03:00
|
|
|
* evaluation.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* class Demo
|
|
|
|
* def initialize(n)
|
|
|
|
* @secret = n
|
|
|
|
* end
|
2011-03-07 11:44:45 +03:00
|
|
|
* def get_binding
|
2017-01-17 00:08:12 +03:00
|
|
|
* binding
|
2007-02-02 18:21:41 +03:00
|
|
|
* end
|
|
|
|
* end
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* k1 = Demo.new(99)
|
2011-03-07 11:44:45 +03:00
|
|
|
* b1 = k1.get_binding
|
2007-02-02 18:21:41 +03:00
|
|
|
* k2 = Demo.new(-3)
|
2011-03-07 11:44:45 +03:00
|
|
|
* b2 = k2.get_binding
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* eval("@secret", b1) #=> 99
|
|
|
|
* eval("@secret", b2) #=> -3
|
|
|
|
* eval("@secret") #=> nil
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
* Binding objects have no class-specific methods.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-02-02 18:21:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2007-02-05 21:31:08 +03:00
|
|
|
Init_Binding(void)
|
2007-02-02 18:21:41 +03:00
|
|
|
{
|
2007-02-05 21:31:08 +03:00
|
|
|
rb_cBinding = rb_define_class("Binding", rb_cObject);
|
|
|
|
rb_undef_alloc_func(rb_cBinding);
|
|
|
|
rb_undef_method(CLASS_OF(rb_cBinding), "new");
|
|
|
|
rb_define_method(rb_cBinding, "clone", binding_clone, 0);
|
|
|
|
rb_define_method(rb_cBinding, "dup", binding_dup, 0);
|
2007-02-05 21:50:35 +03:00
|
|
|
rb_define_method(rb_cBinding, "eval", bind_eval, -1);
|
2013-12-24 20:03:12 +04:00
|
|
|
rb_define_method(rb_cBinding, "local_variables", bind_local_variables, 0);
|
2013-08-09 13:51:00 +04:00
|
|
|
rb_define_method(rb_cBinding, "local_variable_get", bind_local_variable_get, 1);
|
|
|
|
rb_define_method(rb_cBinding, "local_variable_set", bind_local_variable_set, 2);
|
|
|
|
rb_define_method(rb_cBinding, "local_variable_defined?", bind_local_variable_defined_p, 1);
|
2014-07-01 21:24:02 +04:00
|
|
|
rb_define_method(rb_cBinding, "receiver", bind_receiver, 0);
|
2017-12-26 11:38:35 +03:00
|
|
|
rb_define_method(rb_cBinding, "source_location", bind_location, 0);
|
2007-02-05 21:31:08 +03:00
|
|
|
rb_define_global_function("binding", rb_f_binding, 0);
|
2007-02-02 18:21:41 +03:00
|
|
|
}
|