2008-05-25 05:12:12 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
|
|
|
vm_eval.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Sat May 24 16:02:32 JST 2008
|
|
|
|
|
|
|
|
Copyright (C) 1993-2007 Yukihiro Matsumoto
|
|
|
|
Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
|
|
|
|
Copyright (C) 2000 Information-technology Promotion Agency, Japan
|
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
static inline VALUE method_missing(VALUE obj, ID id, int argc, const VALUE *argv, int call_status);
|
|
|
|
static inline VALUE vm_yield_with_cref(rb_thread_t *th, int argc, const VALUE *argv, const NODE *cref);
|
|
|
|
static inline VALUE vm_yield(rb_thread_t *th, int argc, const VALUE *argv);
|
2009-12-03 21:25:57 +03:00
|
|
|
static NODE *vm_cref_push(rb_thread_t *th, VALUE klass, int noex, rb_block_t *blockptr);
|
* common.mk: clean up
- remove blockinlining.$(OBJEXT) to built
- make ENCODING_H_INCLDUES variable (include/ruby/encoding.h)
- make VM_CORE_H_INCLUDES variable (vm_core.h)
- simplify rules.
- make depends rule to output depend status using gcc -MM.
* include/ruby/mvm.h, include/ruby/vm.h: rename mvm.h to vm.h.
* include/ruby.h: ditto.
* load.c: add inclusion explicitly.
* enumerator.c, object.c, parse.y, thread.c, vm_dump.c:
remove useless inclusion.
* eval_intern.h: cleanup inclusion.
* vm_core.h: rb_thread_t should be defined in this file.
* vm_evalbody.c, vm_exec.c: rename vm_evalbody.c to vm_exec.c.
* vm.h, vm_exec.h: rename vm.h to vm_exec.h.
* insnhelper.h, vm_insnhelper.h: rename insnhelper.h to vm_insnhelper.h.
* vm.c, vm_insnhelper.c, vm_insnhelper.h:
- rename vm_eval() to vm_exec_core().
- rename vm_eval_body() to vm_exec().
- cleanup include order.
* vm_method.c: fix comment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-23 04:20:28 +04:00
|
|
|
static VALUE vm_exec(rb_thread_t *th);
|
* iseq.c, vm_eval.c: set th->base_block properly.
th->base_block is information for (a) parsing, (b) compiling
and (c) setting up the frame to execute the program passed by
`eval' method. For example, (1) parser need to know up-level
variables to detect it is variable or method without paren.
Befor (a), (b) and (c), VM set th->base_block by passed bindng
(or previous frame information). After execute (a), (b) and (c),
VM should clear th->base_block. However, if (a), (b) or (c)
raises an exception, then th->base_block is not cleared.
Problem is that the uncleared value th->balo_block is used for
irrelevant iseq compilation. It causes SEGV or critical error.
I tried to solve this problem: to clear them before exception,
but finally I found out that it is difficult to do it (Ruby
program can be run in many places).
Because of this background, I set th->base_block before
compiling iseq and restore it after compiling.
Basically, th->base_block is dirty hack (similar to global
variable) and this patch is also dirty.
* bootstraptest/test_eval.rb: add a test for above.
* internal.h: remove unused decl.
* iseq.c (rb_iseq_compile_with_option): add base_block parameter.
set th->base_block before compation and restore it after
compilation.
* ruby.c (require_libraries): pass 0 as base_block instead of
setting th->base_block
* tool/compile_prelude.rb (prelude_eval): apply above changes.
* vm.c, vm_eval.c: ditto.
* vm_core.h: add comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-06-22 13:32:56 +04:00
|
|
|
static void vm_set_eval_stack(rb_thread_t * th, VALUE iseqval, const NODE *cref, rb_block_t *base_block);
|
2009-01-19 03:13:44 +03:00
|
|
|
static int vm_collect_local_variables_in_heap(rb_thread_t *th, VALUE *dfp, VALUE ary);
|
2009-07-15 18:59:41 +04:00
|
|
|
|
2012-06-02 19:59:37 +04:00
|
|
|
/* vm_backtrace.c */
|
|
|
|
VALUE vm_backtrace_str_ary(rb_thread_t *th, int lev, int n);
|
2012-05-24 10:09:23 +04:00
|
|
|
|
2009-07-15 18:59:41 +04:00
|
|
|
typedef enum call_type {
|
|
|
|
CALL_PUBLIC,
|
|
|
|
CALL_FCALL,
|
|
|
|
CALL_VCALL,
|
2009-10-30 11:01:48 +03:00
|
|
|
CALL_TYPE_MAX
|
2009-07-15 18:59:41 +04:00
|
|
|
} call_type;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2009-10-30 10:57:21 +03:00
|
|
|
static VALUE send_internal(int argc, const VALUE *argv, VALUE recv, call_type scope);
|
|
|
|
|
2008-05-25 05:12:12 +04:00
|
|
|
static inline VALUE
|
2009-07-15 18:59:41 +04:00
|
|
|
vm_call0(rb_thread_t* th, VALUE recv, VALUE id, int argc, const VALUE *argv,
|
2012-08-02 15:08:44 +04:00
|
|
|
const rb_method_entry_t *me, VALUE defined_class)
|
2008-05-25 05:12:12 +04:00
|
|
|
{
|
2009-08-28 06:45:41 +04:00
|
|
|
const rb_method_definition_t *def = me->def;
|
2008-05-25 05:12:12 +04:00
|
|
|
VALUE val;
|
2012-08-02 15:08:44 +04:00
|
|
|
VALUE klass = defined_class;
|
2009-07-15 18:59:41 +04:00
|
|
|
const rb_block_t *blockptr = 0;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2009-08-28 06:45:41 +04:00
|
|
|
if (!def) return Qnil;
|
2008-05-25 05:12:12 +04:00
|
|
|
if (th->passed_block) {
|
|
|
|
blockptr = th->passed_block;
|
|
|
|
th->passed_block = 0;
|
|
|
|
}
|
2009-07-15 18:59:41 +04:00
|
|
|
|
2008-12-15 08:39:39 +03:00
|
|
|
again:
|
2009-08-28 06:45:41 +04:00
|
|
|
switch (def->type) {
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_ISEQ: {
|
* vm_core.h: remove VM_FRAME_MAGIC_FINISH (finish frame type).
Before this commit:
`finish frame' was place holder which indicates that VM loop
needs to return function.
If a C method calls a Ruby methods (a method written by Ruby),
then VM loop will be (re-)invoked. When the Ruby method returns,
then also VM loop should be escaped. `finish frame' has only
one instruction `finish', which returns VM loop function.
VM loop function executes `finish' instruction, then VM loop
function returns itself.
With such mechanism, `leave' instruction (which returns one
frame from current scope) doesn't need to check that this `leave'
should also return from VM loop function.
Strictly, one branch can be removed from `leave' instructon.
Consideration:
However, pushing the `finish frame' needs costs because
it needs several memory accesses. The number of pushing
`finish frame' is greater than I had assumed. Of course,
pushing `finish frame' consumes additional control frame.
Moreover, recent processors has good branch prediction,
with which we can ignore such trivial checking.
After this commit:
Finally, I decide to remove `finish frame' and `finish'
instruction. Some parts of VM depend on `finish frame',
so the new frame flag VM_FRAME_FLAG_FINISH is introduced.
If this frame should escape from VM function loop, then
the result of VM_FRAME_TYPE_FINISH_P(cfp) is true.
`leave' instruction checks this flag every time.
I measured performance on it. However on my environments,
it improves some benchmarks and slows some benchmarks down.
Maybe it is because of C compiler optimization parameters.
I'll re-visit here if this cause problems.
* insns.def (leave, finish): remove finish instruction.
* vm.c, vm_eval.c, vm_exec.c, vm_backtrace.c, vm_dump.c:
apply above changes.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36099 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-06-15 14:22:34 +04:00
|
|
|
rb_control_frame_t *reg_cfp = th->cfp;
|
2009-07-16 04:38:07 +04:00
|
|
|
int i;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2009-07-16 04:38:07 +04:00
|
|
|
CHECK_STACK_OVERFLOW(reg_cfp, argc + 1);
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2009-07-16 04:38:07 +04:00
|
|
|
*reg_cfp->sp++ = recv;
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
*reg_cfp->sp++ = argv[i];
|
|
|
|
}
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2012-08-02 15:08:44 +04:00
|
|
|
vm_setup_method(th, reg_cfp, recv, argc, blockptr, 0 /* flag */,
|
|
|
|
me, klass);
|
* vm_core.h: remove VM_FRAME_MAGIC_FINISH (finish frame type).
Before this commit:
`finish frame' was place holder which indicates that VM loop
needs to return function.
If a C method calls a Ruby methods (a method written by Ruby),
then VM loop will be (re-)invoked. When the Ruby method returns,
then also VM loop should be escaped. `finish frame' has only
one instruction `finish', which returns VM loop function.
VM loop function executes `finish' instruction, then VM loop
function returns itself.
With such mechanism, `leave' instruction (which returns one
frame from current scope) doesn't need to check that this `leave'
should also return from VM loop function.
Strictly, one branch can be removed from `leave' instructon.
Consideration:
However, pushing the `finish frame' needs costs because
it needs several memory accesses. The number of pushing
`finish frame' is greater than I had assumed. Of course,
pushing `finish frame' consumes additional control frame.
Moreover, recent processors has good branch prediction,
with which we can ignore such trivial checking.
After this commit:
Finally, I decide to remove `finish frame' and `finish'
instruction. Some parts of VM depend on `finish frame',
so the new frame flag VM_FRAME_FLAG_FINISH is introduced.
If this frame should escape from VM function loop, then
the result of VM_FRAME_TYPE_FINISH_P(cfp) is true.
`leave' instruction checks this flag every time.
I measured performance on it. However on my environments,
it improves some benchmarks and slows some benchmarks down.
Maybe it is because of C compiler optimization parameters.
I'll re-visit here if this cause problems.
* insns.def (leave, finish): remove finish instruction.
* vm.c, vm_eval.c, vm_exec.c, vm_backtrace.c, vm_dump.c:
apply above changes.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36099 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-06-15 14:22:34 +04:00
|
|
|
th->cfp->flag |= VM_FRAME_FLAG_FINISH;
|
2009-07-16 04:38:07 +04:00
|
|
|
val = vm_exec(th);
|
|
|
|
break;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
2010-08-07 08:33:33 +04:00
|
|
|
case VM_METHOD_TYPE_NOTIMPLEMENTED:
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_CFUNC: {
|
2009-07-16 04:38:07 +04:00
|
|
|
EXEC_EVENT_HOOK(th, RUBY_EVENT_C_CALL, recv, id, klass);
|
|
|
|
{
|
|
|
|
rb_control_frame_t *reg_cfp = th->cfp;
|
|
|
|
rb_control_frame_t *cfp =
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
vm_push_frame(th, 0, VM_FRAME_MAGIC_CFUNC,
|
2012-08-02 15:08:44 +04:00
|
|
|
recv, klass, VM_ENVVAL_BLOCK_PTR(blockptr),
|
|
|
|
0, reg_cfp->sp, 1, me);
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2009-07-16 04:38:07 +04:00
|
|
|
cfp->me = me;
|
2009-08-28 06:45:41 +04:00
|
|
|
val = call_cfunc(def->body.cfunc.func, recv, def->body.cfunc.argc, argc, argv);
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2009-07-16 04:38:07 +04:00
|
|
|
if (reg_cfp != th->cfp + 1) {
|
|
|
|
rb_bug("cfp consistency error - call0");
|
|
|
|
}
|
|
|
|
vm_pop_frame(th);
|
|
|
|
}
|
|
|
|
EXEC_EVENT_HOOK(th, RUBY_EVENT_C_RETURN, recv, id, klass);
|
|
|
|
break;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_ATTRSET: {
|
2012-03-15 01:10:34 +04:00
|
|
|
rb_check_arity(argc, 1, 1);
|
2010-03-22 14:44:01 +03:00
|
|
|
val = rb_ivar_set(recv, def->body.attr.id, argv[0]);
|
2009-07-16 04:38:07 +04:00
|
|
|
break;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_IVAR: {
|
2012-03-15 01:10:34 +04:00
|
|
|
rb_check_arity(argc, 0, 0);
|
2010-03-22 14:44:01 +03:00
|
|
|
val = rb_attr_get(recv, def->body.attr.id);
|
2009-07-16 04:38:07 +04:00
|
|
|
break;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_BMETHOD: {
|
2012-08-02 15:08:44 +04:00
|
|
|
val = vm_call_bmethod(th, recv, argc, argv, blockptr, me, klass);
|
2009-07-16 04:38:07 +04:00
|
|
|
break;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_ZSUPER: {
|
2009-07-16 04:38:07 +04:00
|
|
|
klass = RCLASS_SUPER(klass);
|
2012-08-02 15:08:44 +04:00
|
|
|
if (!klass || !(me = rb_method_entry(klass, id, &klass))) {
|
2009-10-30 10:57:21 +03:00
|
|
|
return method_missing(recv, id, argc, argv, NOEX_SUPER);
|
2009-07-16 04:38:07 +04:00
|
|
|
}
|
2012-07-19 18:19:40 +04:00
|
|
|
RUBY_VM_CHECK_INTS(th);
|
2009-08-28 06:45:41 +04:00
|
|
|
if (!(def = me->def)) return Qnil;
|
2009-07-16 04:38:07 +04:00
|
|
|
goto again;
|
2009-07-15 18:59:41 +04:00
|
|
|
}
|
2009-09-28 07:09:16 +04:00
|
|
|
case VM_METHOD_TYPE_MISSING: {
|
|
|
|
VALUE new_args = rb_ary_new4(argc, argv);
|
|
|
|
|
|
|
|
RB_GC_GUARD(new_args);
|
|
|
|
rb_ary_unshift(new_args, ID2SYM(id));
|
2012-01-30 14:08:23 +04:00
|
|
|
th->passed_block = blockptr;
|
2009-10-31 18:32:22 +03:00
|
|
|
return rb_funcall2(recv, idMethodMissing,
|
2009-09-28 07:09:16 +04:00
|
|
|
argc+1, RARRAY_PTR(new_args));
|
|
|
|
}
|
2009-07-15 18:59:41 +04:00
|
|
|
case VM_METHOD_TYPE_OPTIMIZED: {
|
2009-08-28 06:45:41 +04:00
|
|
|
switch (def->body.optimize_type) {
|
2009-07-16 04:38:07 +04:00
|
|
|
case OPTIMIZED_METHOD_TYPE_SEND:
|
2009-10-30 10:57:21 +03:00
|
|
|
val = send_internal(argc, argv, recv, CALL_FCALL);
|
2009-07-16 04:38:07 +04:00
|
|
|
break;
|
|
|
|
case OPTIMIZED_METHOD_TYPE_CALL: {
|
|
|
|
rb_proc_t *proc;
|
|
|
|
GetProcPtr(recv, proc);
|
|
|
|
val = rb_vm_invoke_proc(th, proc, proc->block.self, argc, argv, blockptr);
|
|
|
|
break;
|
2009-07-15 18:59:41 +04:00
|
|
|
}
|
2009-07-16 04:38:07 +04:00
|
|
|
default:
|
2009-08-28 06:45:41 +04:00
|
|
|
rb_bug("vm_call0: unsupported optimized method type (%d)", def->body.optimize_type);
|
2009-07-16 04:38:07 +04:00
|
|
|
val = Qundef;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2008-12-15 08:39:39 +03:00
|
|
|
}
|
2008-05-25 05:12:12 +04:00
|
|
|
default:
|
2009-08-28 06:45:41 +04:00
|
|
|
rb_bug("vm_call0: unsupported method type (%d)", def->type);
|
2009-07-15 18:59:41 +04:00
|
|
|
val = Qundef;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
2012-07-19 18:19:40 +04:00
|
|
|
RUBY_VM_CHECK_INTS(th);
|
2008-05-25 05:12:12 +04:00
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
2009-07-15 18:59:41 +04:00
|
|
|
rb_vm_call(rb_thread_t *th, VALUE recv, VALUE id, int argc, const VALUE *argv,
|
2012-08-02 15:08:44 +04:00
|
|
|
const rb_method_entry_t *me, VALUE defined_class)
|
2008-05-25 05:12:12 +04:00
|
|
|
{
|
2012-08-02 15:08:44 +04:00
|
|
|
return vm_call0(th, recv, id, argc, argv, me, defined_class);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline VALUE
|
2009-07-15 18:59:41 +04:00
|
|
|
vm_call_super(rb_thread_t *th, int argc, const VALUE *argv)
|
2008-05-25 05:12:12 +04:00
|
|
|
{
|
|
|
|
VALUE recv = th->cfp->self;
|
|
|
|
VALUE klass;
|
|
|
|
ID id;
|
2009-07-15 18:59:41 +04:00
|
|
|
rb_method_entry_t *me;
|
2008-05-25 05:12:12 +04:00
|
|
|
rb_control_frame_t *cfp = th->cfp;
|
|
|
|
|
2012-08-06 16:18:10 +04:00
|
|
|
if (cfp->iseq || NIL_P(cfp->klass)) {
|
2008-05-25 05:12:12 +04:00
|
|
|
rb_bug("vm_call_super: should not be reached");
|
|
|
|
}
|
|
|
|
|
2012-08-06 16:18:10 +04:00
|
|
|
klass = RCLASS_SUPER(cfp->klass);
|
|
|
|
id = cfp->me->def->original_id;
|
2012-08-02 15:08:44 +04:00
|
|
|
me = rb_method_entry(klass, id, &klass);
|
2009-07-15 18:59:41 +04:00
|
|
|
if (!me) {
|
2009-10-30 10:57:21 +03:00
|
|
|
return method_missing(recv, id, argc, argv, NOEX_SUPER);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
2012-08-02 15:08:44 +04:00
|
|
|
return vm_call0(th, recv, id, argc, argv, me, klass);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_call_super(int argc, const VALUE *argv)
|
|
|
|
{
|
|
|
|
PASS_PASSED_BLOCK();
|
|
|
|
return vm_call_super(GET_THREAD(), argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
stack_check(void)
|
|
|
|
{
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
|
|
|
|
if (!rb_thread_raised_p(th, RAISED_STACKOVERFLOW) && ruby_stack_check()) {
|
|
|
|
rb_thread_raised_set(th, RAISED_STACKOVERFLOW);
|
|
|
|
rb_exc_raise(sysstack_error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-02 15:08:44 +04:00
|
|
|
static inline rb_method_entry_t *
|
|
|
|
rb_search_method_entry(VALUE recv, ID mid, VALUE *defined_class_ptr);
|
2011-08-05 07:18:25 +04:00
|
|
|
static inline int rb_method_call_status(rb_thread_t *th, const rb_method_entry_t *me, call_type scope, VALUE self);
|
2009-10-30 10:42:04 +03:00
|
|
|
#define NOEX_OK NOEX_NOSUPER
|
|
|
|
|
2009-08-29 17:39:44 +04:00
|
|
|
/*!
|
|
|
|
* \internal
|
|
|
|
* calls the specified method.
|
|
|
|
*
|
|
|
|
* This function is called by functions in rb_call* family.
|
|
|
|
* \param recv receiver of the method
|
|
|
|
* \param mid an ID that represents the name of the method
|
|
|
|
* \param argc the number of method arguments
|
|
|
|
* \param argv a pointer to an array of method arguments
|
2010-05-29 22:51:39 +04:00
|
|
|
* \param scope
|
2009-08-29 17:39:44 +04:00
|
|
|
* \param self self in the caller. Qundef means the current control frame's self.
|
|
|
|
*
|
|
|
|
* \note \a self is used in order to controlling access to protected methods.
|
|
|
|
*/
|
2008-05-25 05:12:12 +04:00
|
|
|
static inline VALUE
|
2009-07-15 18:59:41 +04:00
|
|
|
rb_call0(VALUE recv, ID mid, int argc, const VALUE *argv,
|
|
|
|
call_type scope, VALUE self)
|
2008-05-25 05:12:12 +04:00
|
|
|
{
|
2012-08-02 15:08:44 +04:00
|
|
|
VALUE defined_class;
|
|
|
|
rb_method_entry_t *me = rb_search_method_entry(recv, mid, &defined_class);
|
2008-05-25 05:12:12 +04:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
2009-10-30 10:42:04 +03:00
|
|
|
int call_status = rb_method_call_status(th, me, scope, self);
|
|
|
|
|
|
|
|
if (call_status != NOEX_OK) {
|
|
|
|
return method_missing(recv, mid, argc, argv, call_status);
|
|
|
|
}
|
|
|
|
stack_check();
|
2012-08-02 15:08:44 +04:00
|
|
|
return vm_call0(th, recv, mid, argc, argv, me, defined_class);
|
2009-10-30 10:42:04 +03:00
|
|
|
}
|
|
|
|
|
2009-10-31 18:32:22 +03:00
|
|
|
struct rescue_funcall_args {
|
|
|
|
VALUE recv;
|
|
|
|
VALUE sym;
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
};
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
check_funcall_exec(struct rescue_funcall_args *args)
|
|
|
|
{
|
|
|
|
VALUE new_args = rb_ary_new4(args->argc, args->argv);
|
|
|
|
|
|
|
|
RB_GC_GUARD(new_args);
|
|
|
|
rb_ary_unshift(new_args, args->sym);
|
|
|
|
return rb_funcall2(args->recv, idMethodMissing,
|
|
|
|
args->argc+1, RARRAY_PTR(new_args));
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
check_funcall_failed(struct rescue_funcall_args *args, VALUE e)
|
|
|
|
{
|
2009-11-29 10:56:25 +03:00
|
|
|
if (rb_respond_to(args->recv, SYM2ID(args->sym))) {
|
2009-10-31 18:32:22 +03:00
|
|
|
rb_exc_raise(e);
|
2009-11-28 03:26:27 +03:00
|
|
|
}
|
2009-10-31 18:32:22 +03:00
|
|
|
return Qundef;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2009-10-31 19:14:38 +03:00
|
|
|
check_funcall(VALUE recv, ID mid, int argc, VALUE *argv)
|
2009-10-30 10:42:04 +03:00
|
|
|
{
|
2011-08-05 10:55:36 +04:00
|
|
|
VALUE klass = CLASS_OF(recv);
|
|
|
|
const rb_method_entry_t *me;
|
2009-10-30 10:42:04 +03:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
2011-08-05 07:18:25 +04:00
|
|
|
int call_status;
|
2012-08-02 15:08:44 +04:00
|
|
|
VALUE defined_class;
|
2011-08-05 07:18:25 +04:00
|
|
|
|
2012-08-02 15:08:44 +04:00
|
|
|
me = rb_method_entry(klass, idRespond_to, &defined_class);
|
2011-08-05 07:18:25 +04:00
|
|
|
if (me && !(me->flag & NOEX_BASIC)) {
|
2012-02-11 05:22:05 +04:00
|
|
|
VALUE args[2];
|
2012-02-11 23:15:36 +04:00
|
|
|
int arity = rb_method_entry_arity(me);
|
|
|
|
|
2012-03-15 02:12:53 +04:00
|
|
|
if (arity > 2)
|
|
|
|
rb_raise(rb_eArgError, "respond_to? must accept 1 or 2 arguments (requires %d)", arity);
|
|
|
|
|
|
|
|
if (arity < 1) arity = 2;
|
2011-10-20 16:30:13 +04:00
|
|
|
|
2012-02-11 05:22:05 +04:00
|
|
|
args[0] = ID2SYM(mid);
|
|
|
|
args[1] = Qtrue;
|
2012-08-02 15:08:44 +04:00
|
|
|
if (!RTEST(vm_call0(th, recv, idRespond_to, arity, args, me,
|
|
|
|
defined_class))) {
|
2011-08-05 07:18:25 +04:00
|
|
|
return Qundef;
|
|
|
|
}
|
|
|
|
}
|
2009-10-30 10:42:04 +03:00
|
|
|
|
2012-08-02 15:08:44 +04:00
|
|
|
me = rb_search_method_entry(recv, mid, &defined_class);
|
2011-08-05 07:18:25 +04:00
|
|
|
call_status = rb_method_call_status(th, me, CALL_FCALL, Qundef);
|
2009-10-30 10:42:04 +03:00
|
|
|
if (call_status != NOEX_OK) {
|
2011-08-05 10:55:36 +04:00
|
|
|
if (rb_method_basic_definition_p(klass, idMethodMissing)) {
|
2009-10-31 18:32:22 +03:00
|
|
|
return Qundef;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct rescue_funcall_args args;
|
|
|
|
|
2009-12-19 03:58:13 +03:00
|
|
|
th->method_missing_reason = 0;
|
2009-10-31 18:32:22 +03:00
|
|
|
args.recv = recv;
|
|
|
|
args.sym = ID2SYM(mid);
|
|
|
|
args.argc = argc;
|
|
|
|
args.argv = argv;
|
|
|
|
return rb_rescue2(check_funcall_exec, (VALUE)&args,
|
|
|
|
check_funcall_failed, (VALUE)&args,
|
|
|
|
rb_eNoMethodError, (VALUE)0);
|
|
|
|
}
|
2009-10-30 10:42:04 +03:00
|
|
|
}
|
|
|
|
stack_check();
|
2012-08-02 15:08:44 +04:00
|
|
|
return vm_call0(th, recv, mid, argc, argv, me, defined_class);
|
2009-10-30 10:42:04 +03:00
|
|
|
}
|
|
|
|
|
2009-10-31 18:32:22 +03:00
|
|
|
VALUE
|
|
|
|
rb_check_funcall(VALUE recv, ID mid, int argc, VALUE *argv)
|
|
|
|
{
|
2009-10-31 19:14:38 +03:00
|
|
|
return check_funcall(recv, mid, argc, argv);
|
2009-10-30 10:42:04 +03:00
|
|
|
}
|
|
|
|
|
2009-11-18 20:52:12 +03:00
|
|
|
static const char *
|
|
|
|
rb_type_str(enum ruby_value_type type)
|
|
|
|
{
|
|
|
|
#define type_case(t) case t: return #t;
|
|
|
|
switch (type) {
|
|
|
|
type_case(T_NONE)
|
|
|
|
type_case(T_OBJECT)
|
|
|
|
type_case(T_CLASS)
|
|
|
|
type_case(T_MODULE)
|
|
|
|
type_case(T_FLOAT)
|
|
|
|
type_case(T_STRING)
|
|
|
|
type_case(T_REGEXP)
|
|
|
|
type_case(T_ARRAY)
|
|
|
|
type_case(T_HASH)
|
|
|
|
type_case(T_STRUCT)
|
|
|
|
type_case(T_BIGNUM)
|
|
|
|
type_case(T_FILE)
|
|
|
|
type_case(T_DATA)
|
|
|
|
type_case(T_MATCH)
|
|
|
|
type_case(T_COMPLEX)
|
|
|
|
type_case(T_RATIONAL)
|
|
|
|
type_case(T_NIL)
|
|
|
|
type_case(T_TRUE)
|
|
|
|
type_case(T_FALSE)
|
|
|
|
type_case(T_SYMBOL)
|
|
|
|
type_case(T_FIXNUM)
|
|
|
|
type_case(T_UNDEF)
|
|
|
|
type_case(T_NODE)
|
|
|
|
type_case(T_ICLASS)
|
|
|
|
type_case(T_ZOMBIE)
|
|
|
|
default: return NULL;
|
|
|
|
}
|
|
|
|
#undef type_case
|
|
|
|
}
|
|
|
|
|
2009-10-30 10:42:04 +03:00
|
|
|
static inline rb_method_entry_t *
|
2012-08-02 15:08:44 +04:00
|
|
|
rb_search_method_entry(VALUE recv, ID mid, VALUE *defined_class_ptr)
|
2009-10-30 10:42:04 +03:00
|
|
|
{
|
|
|
|
VALUE klass = CLASS_OF(recv);
|
2008-05-25 05:12:12 +04:00
|
|
|
|
|
|
|
if (!klass) {
|
2009-11-25 14:47:19 +03:00
|
|
|
VALUE flags, klass;
|
2009-11-21 12:49:30 +03:00
|
|
|
if (IMMEDIATE_P(recv)) {
|
|
|
|
rb_raise(rb_eNotImpError,
|
|
|
|
"method `%s' called on unexpected immediate object (%p)",
|
|
|
|
rb_id2name(mid), (void *)recv);
|
|
|
|
}
|
2009-11-25 14:47:19 +03:00
|
|
|
flags = RBASIC(recv)->flags;
|
|
|
|
klass = RBASIC(recv)->klass;
|
|
|
|
if (flags == 0) {
|
2009-11-21 12:49:30 +03:00
|
|
|
rb_raise(rb_eNotImpError,
|
|
|
|
"method `%s' called on terminated object"
|
|
|
|
" (%p flags=0x%"PRIxVALUE" klass=0x%"PRIxVALUE")",
|
2009-11-25 14:47:19 +03:00
|
|
|
rb_id2name(mid), (void *)recv, flags, klass);
|
2009-11-21 12:49:30 +03:00
|
|
|
}
|
|
|
|
else {
|
2009-11-18 20:52:12 +03:00
|
|
|
int type = BUILTIN_TYPE(recv);
|
|
|
|
const char *typestr = rb_type_str(type);
|
2009-11-25 14:47:19 +03:00
|
|
|
if (typestr && T_OBJECT <= type && type < T_NIL)
|
2009-11-18 20:52:12 +03:00
|
|
|
rb_raise(rb_eNotImpError,
|
2009-11-21 12:49:30 +03:00
|
|
|
"method `%s' called on hidden %s object"
|
|
|
|
" (%p flags=0x%"PRIxVALUE" klass=0x%"PRIxVALUE")",
|
2009-11-25 14:47:19 +03:00
|
|
|
rb_id2name(mid), typestr, (void *)recv, flags, klass);
|
|
|
|
if (typestr)
|
|
|
|
rb_raise(rb_eNotImpError,
|
|
|
|
"method `%s' called on unexpected %s object"
|
|
|
|
" (%p flags=0x%"PRIxVALUE" klass=0x%"PRIxVALUE")",
|
|
|
|
rb_id2name(mid), typestr, (void *)recv, flags, klass);
|
2009-11-18 20:52:12 +03:00
|
|
|
else
|
|
|
|
rb_raise(rb_eNotImpError,
|
2009-11-25 14:47:19 +03:00
|
|
|
"method `%s' called on broken T_???" "(0x%02x) object"
|
2009-11-21 12:49:30 +03:00
|
|
|
" (%p flags=0x%"PRIxVALUE" klass=0x%"PRIxVALUE")",
|
2009-11-25 14:47:19 +03:00
|
|
|
rb_id2name(mid), type, (void *)recv, flags, klass);
|
2009-11-18 20:52:12 +03:00
|
|
|
}
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
2012-08-02 15:34:19 +04:00
|
|
|
return rb_method_entry_get_with_omod(Qnil, klass, mid, defined_class_ptr);
|
2009-10-30 10:42:04 +03:00
|
|
|
}
|
2009-07-15 18:59:41 +04:00
|
|
|
|
2009-10-30 10:42:04 +03:00
|
|
|
static inline int
|
2011-08-05 07:18:25 +04:00
|
|
|
rb_method_call_status(rb_thread_t *th, const rb_method_entry_t *me, call_type scope, VALUE self)
|
2009-10-30 10:42:04 +03:00
|
|
|
{
|
|
|
|
VALUE klass;
|
|
|
|
ID oid;
|
|
|
|
int noex;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2009-10-30 10:42:04 +03:00
|
|
|
if (UNDEFINED_METHOD_ENTRY_P(me)) {
|
|
|
|
return scope == CALL_VCALL ? NOEX_VCALL : 0;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
2009-10-30 10:42:04 +03:00
|
|
|
klass = me->klass;
|
2009-08-28 06:45:41 +04:00
|
|
|
oid = me->def->original_id;
|
2009-07-15 18:59:41 +04:00
|
|
|
noex = me->flag;
|
|
|
|
|
|
|
|
if (oid != idMethodMissing) {
|
2008-05-25 05:12:12 +04:00
|
|
|
/* receiver specified form for private method */
|
|
|
|
if (UNLIKELY(noex)) {
|
2009-07-15 18:59:41 +04:00
|
|
|
if (((noex & NOEX_MASK) & NOEX_PRIVATE) && scope == CALL_PUBLIC) {
|
2009-10-30 10:42:04 +03:00
|
|
|
return NOEX_PRIVATE;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* self must be kind of a specified form for protected method */
|
2009-07-15 18:59:41 +04:00
|
|
|
if (((noex & NOEX_MASK) & NOEX_PROTECTED) && scope == CALL_PUBLIC) {
|
2008-05-25 05:12:12 +04:00
|
|
|
VALUE defined_class = klass;
|
2009-02-22 17:23:33 +03:00
|
|
|
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(defined_class, T_ICLASS)) {
|
2008-05-25 05:12:12 +04:00
|
|
|
defined_class = RBASIC(defined_class)->klass;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self == Qundef) {
|
|
|
|
self = th->cfp->self;
|
|
|
|
}
|
2009-11-16 10:01:44 +03:00
|
|
|
if (!rb_obj_is_kind_of(self, defined_class)) {
|
2009-10-30 10:42:04 +03:00
|
|
|
return NOEX_PROTECTED;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NOEX_SAFE(noex) > th->safe_level) {
|
2009-10-30 10:42:04 +03:00
|
|
|
rb_raise(rb_eSecurityError, "calling insecure method: %s",
|
|
|
|
rb_id2name(me->called_id));
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-10-30 10:42:04 +03:00
|
|
|
return NOEX_OK;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
2009-08-29 17:39:44 +04:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \internal
|
|
|
|
* calls the specified method.
|
|
|
|
*
|
|
|
|
* This function is called by functions in rb_call* family.
|
|
|
|
* \param recv receiver
|
|
|
|
* \param mid an ID that represents the name of the method
|
|
|
|
* \param argc the number of method arguments
|
|
|
|
* \param argv a pointer to an array of method arguments
|
2010-05-29 22:51:39 +04:00
|
|
|
* \param scope
|
2009-08-29 17:39:44 +04:00
|
|
|
*/
|
2008-05-25 05:12:12 +04:00
|
|
|
static inline VALUE
|
2009-07-15 18:59:41 +04:00
|
|
|
rb_call(VALUE recv, ID mid, int argc, const VALUE *argv, call_type scope)
|
2008-05-25 05:12:12 +04:00
|
|
|
{
|
2009-07-15 18:59:41 +04:00
|
|
|
return rb_call0(recv, mid, argc, argv, scope, Qundef);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
2009-02-22 04:43:59 +03:00
|
|
|
NORETURN(static void raise_method_missing(rb_thread_t *th, int argc, const VALUE *argv,
|
|
|
|
VALUE obj, int call_status));
|
|
|
|
|
2008-05-25 05:12:12 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* obj.method_missing(symbol [, *args] ) -> result
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
|
|
|
* Invoked by Ruby when <i>obj</i> is sent a message it cannot handle.
|
|
|
|
* <i>symbol</i> is the symbol for the method called, and <i>args</i>
|
|
|
|
* are any arguments that were passed to it. By default, the interpreter
|
|
|
|
* raises an error when this method is called. However, it is possible
|
|
|
|
* to override the method to provide more dynamic behavior.
|
|
|
|
* If it is decided that a particular method should not be handled, then
|
|
|
|
* <i>super</i> should be called, so that ancestors can pick up the
|
|
|
|
* missing method.
|
|
|
|
* The example below creates
|
|
|
|
* a class <code>Roman</code>, which responds to methods with names
|
|
|
|
* consisting of roman numerals, returning the corresponding integer
|
|
|
|
* values.
|
|
|
|
*
|
|
|
|
* class Roman
|
2011-03-07 11:44:45 +03:00
|
|
|
* def roman_to_int(str)
|
2008-05-25 05:12:12 +04:00
|
|
|
* # ...
|
|
|
|
* end
|
|
|
|
* def method_missing(methId)
|
|
|
|
* str = methId.id2name
|
2011-03-07 11:44:45 +03:00
|
|
|
* roman_to_int(str)
|
2008-05-25 05:12:12 +04:00
|
|
|
* end
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* r = Roman.new
|
|
|
|
* r.iv #=> 4
|
|
|
|
* r.xxiii #=> 23
|
|
|
|
* r.mm #=> 2000
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_method_missing(int argc, const VALUE *argv, VALUE obj)
|
2009-02-22 04:43:59 +03:00
|
|
|
{
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
raise_method_missing(th, argc, argv, obj, th->method_missing_reason);
|
2012-04-14 04:36:26 +04:00
|
|
|
UNREACHABLE;
|
2009-02-22 04:43:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define NOEX_MISSING 0x80
|
|
|
|
|
2011-10-06 11:29:33 +04:00
|
|
|
static VALUE
|
2011-10-06 15:51:55 +04:00
|
|
|
make_no_method_exception(VALUE exc, const char *format, VALUE obj, int argc, const VALUE *argv)
|
2011-10-06 11:29:33 +04:00
|
|
|
{
|
|
|
|
int n = 0;
|
|
|
|
VALUE mesg;
|
|
|
|
VALUE args[3];
|
|
|
|
|
|
|
|
if (!format) {
|
|
|
|
format = "undefined method `%s' for %s";
|
|
|
|
}
|
|
|
|
mesg = rb_const_get(exc, rb_intern("message"));
|
|
|
|
if (rb_method_basic_definition_p(CLASS_OF(mesg), '!')) {
|
|
|
|
args[n++] = rb_name_err_mesg_new(mesg, rb_str_new2(format), obj, argv[0]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
args[n++] = rb_funcall(mesg, '!', 3, rb_str_new2(format), obj, argv[0]);
|
|
|
|
}
|
|
|
|
args[n++] = argv[0];
|
|
|
|
if (exc == rb_eNoMethodError) {
|
|
|
|
args[n++] = rb_ary_new4(argc - 1, argv + 1);
|
|
|
|
}
|
|
|
|
return rb_class_new_instance(n, args, exc);
|
|
|
|
}
|
|
|
|
|
2009-02-22 04:43:59 +03:00
|
|
|
static void
|
|
|
|
raise_method_missing(rb_thread_t *th, int argc, const VALUE *argv, VALUE obj,
|
|
|
|
int last_call_status)
|
2008-05-25 05:12:12 +04:00
|
|
|
{
|
|
|
|
VALUE exc = rb_eNoMethodError;
|
2008-05-31 13:28:20 +04:00
|
|
|
const char *format = 0;
|
2009-02-22 04:43:59 +03:00
|
|
|
|
2008-05-25 05:12:12 +04:00
|
|
|
if (argc == 0 || !SYMBOL_P(argv[0])) {
|
|
|
|
rb_raise(rb_eArgError, "no id given");
|
|
|
|
}
|
|
|
|
|
|
|
|
stack_check();
|
|
|
|
|
|
|
|
if (last_call_status & NOEX_PRIVATE) {
|
|
|
|
format = "private method `%s' called for %s";
|
|
|
|
}
|
|
|
|
else if (last_call_status & NOEX_PROTECTED) {
|
|
|
|
format = "protected method `%s' called for %s";
|
|
|
|
}
|
|
|
|
else if (last_call_status & NOEX_VCALL) {
|
|
|
|
format = "undefined local variable or method `%s' for %s";
|
|
|
|
exc = rb_eNameError;
|
|
|
|
}
|
|
|
|
else if (last_call_status & NOEX_SUPER) {
|
|
|
|
format = "super: no superclass method `%s' for %s";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2011-10-06 15:51:55 +04:00
|
|
|
exc = make_no_method_exception(exc, format, obj, argc, argv);
|
2009-02-22 04:43:59 +03:00
|
|
|
if (!(last_call_status & NOEX_MISSING)) {
|
|
|
|
th->cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(th->cfp);
|
|
|
|
}
|
2008-05-25 05:12:12 +04:00
|
|
|
rb_exc_raise(exc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline VALUE
|
|
|
|
method_missing(VALUE obj, ID id, int argc, const VALUE *argv, int call_status)
|
|
|
|
{
|
2008-12-15 08:15:26 +03:00
|
|
|
VALUE *nargv, result, argv_ary = 0;
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
2012-01-30 14:08:23 +04:00
|
|
|
const rb_block_t *blockptr = th->passed_block;
|
2008-12-15 08:15:26 +03:00
|
|
|
|
|
|
|
th->method_missing_reason = call_status;
|
|
|
|
th->passed_block = 0;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2008-12-15 08:15:26 +03:00
|
|
|
if (id == idMethodMissing) {
|
2009-02-22 04:43:59 +03:00
|
|
|
raise_method_missing(th, argc, argv, obj, call_status | NOEX_MISSING);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
else if (id == ID_ALLOCATOR) {
|
|
|
|
rb_raise(rb_eTypeError, "allocator undefined for %s",
|
|
|
|
rb_class2name(obj));
|
|
|
|
}
|
|
|
|
|
2008-12-15 08:15:26 +03:00
|
|
|
if (argc < 0x100) {
|
|
|
|
nargv = ALLOCA_N(VALUE, argc + 1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
argv_ary = rb_ary_tmp_new(argc + 1);
|
|
|
|
nargv = RARRAY_PTR(argv_ary);
|
|
|
|
}
|
2008-05-25 05:12:12 +04:00
|
|
|
nargv[0] = ID2SYM(id);
|
|
|
|
MEMCPY(nargv + 1, argv, VALUE, argc);
|
2011-07-29 18:53:51 +04:00
|
|
|
if (argv_ary) rb_ary_set_len(argv_ary, argc + 1);
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2009-10-29 07:55:10 +03:00
|
|
|
if (rb_method_basic_definition_p(CLASS_OF(obj) , idMethodMissing)) {
|
|
|
|
raise_method_missing(th, argc+1, nargv, obj, call_status | NOEX_MISSING);
|
|
|
|
}
|
2012-01-30 14:08:23 +04:00
|
|
|
th->passed_block = blockptr;
|
2008-12-15 08:15:26 +03:00
|
|
|
result = rb_funcall2(obj, idMethodMissing, argc + 1, nargv);
|
|
|
|
if (argv_ary) rb_ary_clear(argv_ary);
|
|
|
|
return result;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
2009-02-22 04:43:59 +03:00
|
|
|
void
|
|
|
|
rb_raise_method_missing(rb_thread_t *th, int argc, VALUE *argv,
|
|
|
|
VALUE obj, int call_status)
|
|
|
|
{
|
|
|
|
th->passed_block = 0;
|
|
|
|
raise_method_missing(th, argc, argv, obj, call_status | NOEX_MISSING);
|
|
|
|
}
|
|
|
|
|
2009-08-29 17:39:44 +04:00
|
|
|
/*!
|
|
|
|
* Calls a method
|
|
|
|
* \param recv receiver of the method
|
|
|
|
* \param mid an ID that represents the name of the method
|
|
|
|
* \param args an Array object which contains method arguments
|
|
|
|
*
|
|
|
|
* \pre \a args must refer an Array object.
|
|
|
|
*/
|
2008-05-25 05:12:12 +04:00
|
|
|
VALUE
|
|
|
|
rb_apply(VALUE recv, ID mid, VALUE args)
|
|
|
|
{
|
|
|
|
int argc;
|
2011-07-29 18:53:47 +04:00
|
|
|
VALUE *argv, ret;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2009-05-20 20:43:41 +04:00
|
|
|
argc = RARRAY_LENINT(args);
|
2011-07-29 18:53:47 +04:00
|
|
|
if (argc >= 0x100) {
|
|
|
|
args = rb_ary_subseq(args, 0, argc);
|
|
|
|
RBASIC(args)->klass = 0;
|
|
|
|
OBJ_FREEZE(args);
|
|
|
|
ret = rb_call(recv, mid, argc, RARRAY_PTR(args), CALL_FCALL);
|
|
|
|
RB_GC_GUARD(args);
|
|
|
|
return ret;
|
|
|
|
}
|
2008-05-25 05:12:12 +04:00
|
|
|
argv = ALLOCA_N(VALUE, argc);
|
|
|
|
MEMCPY(argv, RARRAY_PTR(args), VALUE, argc);
|
2009-07-15 18:59:41 +04:00
|
|
|
return rb_call(recv, mid, argc, argv, CALL_FCALL);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
2009-08-29 17:39:44 +04:00
|
|
|
/*!
|
|
|
|
* Calls a method
|
|
|
|
* \param recv receiver of the method
|
|
|
|
* \param mid an ID that represents the name of the method
|
|
|
|
* \param n the number of arguments
|
|
|
|
* \param ... arbitrary number of method arguments
|
|
|
|
*
|
|
|
|
* \pre each of arguments after \a n must be a VALUE.
|
|
|
|
*/
|
2008-05-25 05:12:12 +04:00
|
|
|
VALUE
|
|
|
|
rb_funcall(VALUE recv, ID mid, int n, ...)
|
|
|
|
{
|
|
|
|
VALUE *argv;
|
|
|
|
va_list ar;
|
|
|
|
|
|
|
|
if (n > 0) {
|
|
|
|
long i;
|
|
|
|
|
2010-11-15 16:48:37 +03:00
|
|
|
va_init_list(ar, n);
|
|
|
|
|
2008-05-25 05:12:12 +04:00
|
|
|
argv = ALLOCA_N(VALUE, n);
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
argv[i] = va_arg(ar, VALUE);
|
|
|
|
}
|
|
|
|
va_end(ar);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
argv = 0;
|
|
|
|
}
|
2009-07-15 18:59:41 +04:00
|
|
|
return rb_call(recv, mid, n, argv, CALL_FCALL);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
2009-08-29 17:39:44 +04:00
|
|
|
/*!
|
|
|
|
* Calls a method
|
|
|
|
* \param recv receiver of the method
|
|
|
|
* \param mid an ID that represents the name of the method
|
|
|
|
* \param argc the number of arguments
|
|
|
|
* \param argv pointer to an array of method arguments
|
|
|
|
*/
|
2008-05-25 05:12:12 +04:00
|
|
|
VALUE
|
|
|
|
rb_funcall2(VALUE recv, ID mid, int argc, const VALUE *argv)
|
|
|
|
{
|
2009-07-15 18:59:41 +04:00
|
|
|
return rb_call(recv, mid, argc, argv, CALL_FCALL);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
2009-08-29 17:39:44 +04:00
|
|
|
/*!
|
|
|
|
* Calls a method.
|
|
|
|
*
|
|
|
|
* Same as rb_funcall2 but this function can call only public methods.
|
|
|
|
* \param recv receiver of the method
|
|
|
|
* \param mid an ID that represents the name of the method
|
|
|
|
* \param argc the number of arguments
|
|
|
|
* \param argv pointer to an array of method arguments
|
|
|
|
*/
|
2008-05-25 05:12:12 +04:00
|
|
|
VALUE
|
|
|
|
rb_funcall3(VALUE recv, ID mid, int argc, const VALUE *argv)
|
|
|
|
{
|
2009-07-15 18:59:41 +04:00
|
|
|
return rb_call(recv, mid, argc, argv, CALL_PUBLIC);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
2010-09-24 18:45:19 +04:00
|
|
|
VALUE
|
|
|
|
rb_funcall_passing_block(VALUE recv, ID mid, int argc, const VALUE *argv)
|
|
|
|
{
|
|
|
|
PASS_PASSED_BLOCK_TH(GET_THREAD());
|
|
|
|
|
|
|
|
return rb_call(recv, mid, argc, argv, CALL_PUBLIC);
|
|
|
|
}
|
|
|
|
|
2008-05-25 05:12:12 +04:00
|
|
|
static VALUE
|
2009-10-30 10:57:21 +03:00
|
|
|
send_internal(int argc, const VALUE *argv, VALUE recv, call_type scope)
|
2008-05-25 05:12:12 +04:00
|
|
|
{
|
2011-10-06 11:29:33 +04:00
|
|
|
ID id;
|
2008-05-25 05:12:12 +04:00
|
|
|
VALUE vid;
|
|
|
|
VALUE self = RUBY_VM_PREVIOUS_CONTROL_FRAME(GET_THREAD()->cfp)->self;
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
2008-05-25 05:12:12 +04:00
|
|
|
|
|
|
|
if (argc == 0) {
|
|
|
|
rb_raise(rb_eArgError, "no method name given");
|
|
|
|
}
|
|
|
|
|
|
|
|
vid = *argv++; argc--;
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
|
2011-10-06 11:29:33 +04:00
|
|
|
id = rb_check_id(&vid);
|
|
|
|
if (!id) {
|
|
|
|
if (rb_method_basic_definition_p(CLASS_OF(recv), idMethodMissing)) {
|
2011-10-06 15:51:55 +04:00
|
|
|
VALUE exc = make_no_method_exception(rb_eNoMethodError, NULL,
|
2011-10-06 11:29:33 +04:00
|
|
|
recv, ++argc, --argv);
|
|
|
|
rb_exc_raise(exc);
|
|
|
|
}
|
|
|
|
id = rb_to_id(vid);
|
|
|
|
}
|
2011-12-23 20:23:13 +04:00
|
|
|
PASS_PASSED_BLOCK_TH(th);
|
2011-10-06 11:29:33 +04:00
|
|
|
return rb_call0(recv, id, argc, argv, scope, self);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2011-12-30 12:07:27 +04:00
|
|
|
* foo.send(symbol [, args...]) -> obj
|
|
|
|
* foo.__send__(symbol [, args...]) -> obj
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
|
|
|
* Invokes the method identified by _symbol_, passing it any
|
|
|
|
* arguments specified. You can use <code>__send__</code> if the name
|
|
|
|
* +send+ clashes with an existing method in _obj_.
|
|
|
|
*
|
|
|
|
* class Klass
|
|
|
|
* def hello(*args)
|
|
|
|
* "Hello " + args.join(' ')
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
* k = Klass.new
|
|
|
|
* k.send :hello, "gentle", "readers" #=> "Hello gentle readers"
|
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_f_send(int argc, VALUE *argv, VALUE recv)
|
|
|
|
{
|
2009-10-30 10:57:21 +03:00
|
|
|
return send_internal(argc, argv, recv, CALL_FCALL);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* obj.public_send(symbol [, args...]) -> obj
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
|
|
|
* Invokes the method identified by _symbol_, passing it any
|
|
|
|
* arguments specified. Unlike send, public_send calls public
|
|
|
|
* methods only.
|
|
|
|
*
|
|
|
|
* 1.public_send(:puts, "hello") # causes NoMethodError
|
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_f_public_send(int argc, VALUE *argv, VALUE recv)
|
|
|
|
{
|
2009-10-30 10:57:21 +03:00
|
|
|
return send_internal(argc, argv, recv, CALL_PUBLIC);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* yield */
|
|
|
|
|
|
|
|
static inline VALUE
|
|
|
|
rb_yield_0(int argc, const VALUE * argv)
|
|
|
|
{
|
|
|
|
return vm_yield(GET_THREAD(), argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_yield(VALUE val)
|
|
|
|
{
|
|
|
|
if (val == Qundef) {
|
|
|
|
return rb_yield_0(0, 0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return rb_yield_0(1, &val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_yield_values(int n, ...)
|
|
|
|
{
|
|
|
|
if (n == 0) {
|
|
|
|
return rb_yield_0(0, 0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int i;
|
|
|
|
VALUE *argv;
|
|
|
|
va_list args;
|
|
|
|
argv = ALLOCA_N(VALUE, n);
|
|
|
|
|
|
|
|
va_init_list(args, n);
|
|
|
|
for (i=0; i<n; i++) {
|
|
|
|
argv[i] = va_arg(args, VALUE);
|
|
|
|
}
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
return rb_yield_0(n, argv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_yield_values2(int argc, const VALUE *argv)
|
|
|
|
{
|
|
|
|
return rb_yield_0(argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_yield_splat(VALUE values)
|
|
|
|
{
|
|
|
|
VALUE tmp = rb_check_array_type(values);
|
|
|
|
volatile VALUE v;
|
|
|
|
if (NIL_P(tmp)) {
|
|
|
|
rb_raise(rb_eArgError, "not an array");
|
|
|
|
}
|
2009-05-20 20:43:41 +04:00
|
|
|
v = rb_yield_0(RARRAY_LENINT(tmp), RARRAY_PTR(tmp));
|
2008-05-25 05:12:12 +04:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
loop_i(void)
|
|
|
|
{
|
|
|
|
for (;;) {
|
|
|
|
rb_yield_0(0, 0);
|
|
|
|
}
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-13 09:49:55 +04:00
|
|
|
* loop { block }
|
|
|
|
* loop -> an_enumerator
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
|
|
|
* Repeatedly executes the block.
|
|
|
|
*
|
2010-05-13 09:49:55 +04:00
|
|
|
* If no block is given, an enumerator is returned instead.
|
|
|
|
*
|
2008-05-25 05:12:12 +04:00
|
|
|
* loop do
|
|
|
|
* print "Input: "
|
|
|
|
* line = gets
|
|
|
|
* break if !line or line =~ /^qQ/
|
|
|
|
* # ...
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* StopIteration raised in the block breaks the loop.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2008-12-27 12:28:26 +03:00
|
|
|
rb_f_loop(VALUE self)
|
2008-05-25 05:12:12 +04:00
|
|
|
{
|
2008-12-27 12:28:26 +03:00
|
|
|
RETURN_ENUMERATOR(self, 0, 0);
|
2008-05-25 05:12:12 +04:00
|
|
|
rb_rescue2(loop_i, (VALUE)0, 0, 0, rb_eStopIteration, (VALUE)0);
|
|
|
|
return Qnil; /* dummy */
|
|
|
|
}
|
|
|
|
|
2010-02-17 11:05:42 +03:00
|
|
|
#if VMDEBUG
|
2010-01-24 16:52:32 +03:00
|
|
|
static const char *
|
|
|
|
vm_frametype_name(const rb_control_frame_t *cfp);
|
2010-02-17 11:05:42 +03:00
|
|
|
#endif
|
2010-01-24 16:52:32 +03:00
|
|
|
|
2008-05-25 05:12:12 +04:00
|
|
|
VALUE
|
|
|
|
rb_iterate(VALUE (* it_proc) (VALUE), VALUE data1,
|
|
|
|
VALUE (* bl_proc) (ANYARGS), VALUE data2)
|
|
|
|
{
|
|
|
|
int state;
|
|
|
|
volatile VALUE retval = Qnil;
|
2009-12-20 17:20:46 +03:00
|
|
|
NODE *node = NEW_IFUNC(bl_proc, data2);
|
2008-05-25 05:12:12 +04:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
2009-02-28 15:56:10 +03:00
|
|
|
rb_control_frame_t *volatile cfp = th->cfp;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2010-07-14 15:23:10 +04:00
|
|
|
node->nd_aid = rb_frame_this_func();
|
2008-05-25 05:12:12 +04:00
|
|
|
TH_PUSH_TAG(th);
|
|
|
|
state = TH_EXEC_TAG();
|
|
|
|
if (state == 0) {
|
|
|
|
iter_retry:
|
2009-12-20 17:20:46 +03:00
|
|
|
{
|
|
|
|
rb_block_t *blockptr;
|
|
|
|
if (bl_proc) {
|
|
|
|
blockptr = RUBY_VM_GET_BLOCK_PTR_IN_CFP(th->cfp);
|
2009-12-20 20:47:02 +03:00
|
|
|
blockptr->iseq = (void *)node;
|
2009-12-20 17:20:46 +03:00
|
|
|
blockptr->proc = 0;
|
|
|
|
}
|
|
|
|
else {
|
2012-06-11 07:14:59 +04:00
|
|
|
blockptr = VM_CF_BLOCK_PTR(th->cfp);
|
2009-12-20 17:20:46 +03:00
|
|
|
}
|
|
|
|
th->passed_block = blockptr;
|
|
|
|
}
|
2008-05-25 05:12:12 +04:00
|
|
|
retval = (*it_proc) (data1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
VALUE err = th->errinfo;
|
|
|
|
if (state == TAG_BREAK) {
|
2012-06-11 07:14:59 +04:00
|
|
|
VALUE *escape_ep = GET_THROWOBJ_CATCH_POINT(err);
|
|
|
|
VALUE *cep = cfp->ep;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2012-06-11 07:14:59 +04:00
|
|
|
if (cep == escape_ep) {
|
2008-05-25 05:12:12 +04:00
|
|
|
state = 0;
|
|
|
|
th->state = 0;
|
|
|
|
th->errinfo = Qnil;
|
2012-01-24 09:20:48 +04:00
|
|
|
retval = GET_THROWOBJ_VAL(err);
|
2010-01-24 16:52:32 +03:00
|
|
|
|
|
|
|
/* check skipped frame */
|
|
|
|
while (th->cfp != cfp) {
|
2010-02-17 11:05:42 +03:00
|
|
|
#if VMDEBUG
|
|
|
|
printf("skipped frame: %s\n", vm_frametype_name(th->cfp));
|
|
|
|
#endif
|
2010-01-24 16:52:32 +03:00
|
|
|
if (UNLIKELY(VM_FRAME_TYPE(th->cfp) == VM_FRAME_MAGIC_CFUNC)) {
|
|
|
|
const rb_method_entry_t *me = th->cfp->me;
|
|
|
|
EXEC_EVENT_HOOK(th, RUBY_EVENT_C_RETURN, th->cfp->self, me->called_id, me->klass);
|
|
|
|
}
|
|
|
|
|
|
|
|
th->cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(th->cfp);
|
|
|
|
}
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
/* SDR(); printf("%p, %p\n", cdfp, escape_dfp); */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (state == TAG_RETRY) {
|
2012-06-11 07:14:59 +04:00
|
|
|
VALUE *escape_ep = GET_THROWOBJ_CATCH_POINT(err);
|
|
|
|
VALUE *cep = cfp->ep;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2012-06-11 07:14:59 +04:00
|
|
|
if (cep == escape_ep) {
|
2008-05-25 05:12:12 +04:00
|
|
|
state = 0;
|
|
|
|
th->state = 0;
|
|
|
|
th->errinfo = Qnil;
|
|
|
|
th->cfp = cfp;
|
|
|
|
goto iter_retry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TH_POP_TAG();
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
TH_JUMP_TAG(th, state);
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct iter_method_arg {
|
|
|
|
VALUE obj;
|
|
|
|
ID mid;
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
};
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
iterate_method(VALUE obj)
|
|
|
|
{
|
|
|
|
const struct iter_method_arg * arg =
|
|
|
|
(struct iter_method_arg *) obj;
|
|
|
|
|
2009-07-15 18:59:41 +04:00
|
|
|
return rb_call(arg->obj, arg->mid, arg->argc, arg->argv, CALL_FCALL);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_block_call(VALUE obj, ID mid, int argc, VALUE * argv,
|
|
|
|
VALUE (*bl_proc) (ANYARGS), VALUE data2)
|
|
|
|
{
|
|
|
|
struct iter_method_arg arg;
|
|
|
|
|
|
|
|
arg.obj = obj;
|
|
|
|
arg.mid = mid;
|
|
|
|
arg.argc = argc;
|
|
|
|
arg.argv = argv;
|
|
|
|
return rb_iterate(iterate_method, (VALUE)&arg, bl_proc, data2);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_each(VALUE obj)
|
|
|
|
{
|
2009-07-15 18:59:41 +04:00
|
|
|
return rb_call(obj, idEach, 0, 0, CALL_FCALL);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2009-02-28 14:12:36 +03:00
|
|
|
eval_string_with_cref(VALUE self, VALUE src, VALUE scope, NODE *cref, const char *volatile file, volatile int line)
|
2008-05-25 05:12:12 +04:00
|
|
|
{
|
|
|
|
int state;
|
|
|
|
VALUE result = Qundef;
|
|
|
|
VALUE envval;
|
|
|
|
rb_binding_t *bind = 0;
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
rb_env_t *env = NULL;
|
* iseq.c, vm_eval.c: set th->base_block properly.
th->base_block is information for (a) parsing, (b) compiling
and (c) setting up the frame to execute the program passed by
`eval' method. For example, (1) parser need to know up-level
variables to detect it is variable or method without paren.
Befor (a), (b) and (c), VM set th->base_block by passed bindng
(or previous frame information). After execute (a), (b) and (c),
VM should clear th->base_block. However, if (a), (b) or (c)
raises an exception, then th->base_block is not cleared.
Problem is that the uncleared value th->balo_block is used for
irrelevant iseq compilation. It causes SEGV or critical error.
I tried to solve this problem: to clear them before exception,
but finally I found out that it is difficult to do it (Ruby
program can be run in many places).
Because of this background, I set th->base_block before
compiling iseq and restore it after compiling.
Basically, th->base_block is dirty hack (similar to global
variable) and this patch is also dirty.
* bootstraptest/test_eval.rb: add a test for above.
* internal.h: remove unused decl.
* iseq.c (rb_iseq_compile_with_option): add base_block parameter.
set th->base_block before compation and restore it after
compilation.
* ruby.c (require_libraries): pass 0 as base_block instead of
setting th->base_block
* tool/compile_prelude.rb (prelude_eval): apply above changes.
* vm.c, vm_eval.c: ditto.
* vm_core.h: add comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-06-22 13:32:56 +04:00
|
|
|
rb_block_t block, *base_block;
|
2008-06-24 17:16:44 +04:00
|
|
|
volatile int parse_in_eval;
|
2008-07-01 20:55:30 +04:00
|
|
|
volatile int mild_compile_error;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
|
|
|
if (file == 0) {
|
|
|
|
file = rb_sourcefile();
|
|
|
|
line = rb_sourceline();
|
|
|
|
}
|
|
|
|
|
2008-06-24 17:16:44 +04:00
|
|
|
parse_in_eval = th->parse_in_eval;
|
2008-07-01 20:55:30 +04:00
|
|
|
mild_compile_error = th->mild_compile_error;
|
2008-05-25 05:12:12 +04:00
|
|
|
PUSH_TAG();
|
|
|
|
if ((state = EXEC_TAG()) == 0) {
|
|
|
|
rb_iseq_t *iseq;
|
|
|
|
volatile VALUE iseqval;
|
|
|
|
|
|
|
|
if (scope != Qnil) {
|
|
|
|
if (rb_obj_is_kind_of(scope, rb_cBinding)) {
|
|
|
|
GetBindingPtr(scope, bind);
|
|
|
|
envval = bind->env;
|
2012-06-04 06:49:37 +04:00
|
|
|
if (strcmp(file, "(eval)") == 0 && bind->path != Qnil) {
|
|
|
|
file = RSTRING_PTR(bind->path);
|
|
|
|
line = bind->first_lineno;
|
2010-05-09 22:41:51 +04:00
|
|
|
}
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_raise(rb_eTypeError,
|
|
|
|
"wrong argument type %s (expected Binding)",
|
|
|
|
rb_obj_classname(scope));
|
|
|
|
}
|
|
|
|
GetEnvPtr(envval, env);
|
* iseq.c, vm_eval.c: set th->base_block properly.
th->base_block is information for (a) parsing, (b) compiling
and (c) setting up the frame to execute the program passed by
`eval' method. For example, (1) parser need to know up-level
variables to detect it is variable or method without paren.
Befor (a), (b) and (c), VM set th->base_block by passed bindng
(or previous frame information). After execute (a), (b) and (c),
VM should clear th->base_block. However, if (a), (b) or (c)
raises an exception, then th->base_block is not cleared.
Problem is that the uncleared value th->balo_block is used for
irrelevant iseq compilation. It causes SEGV or critical error.
I tried to solve this problem: to clear them before exception,
but finally I found out that it is difficult to do it (Ruby
program can be run in many places).
Because of this background, I set th->base_block before
compiling iseq and restore it after compiling.
Basically, th->base_block is dirty hack (similar to global
variable) and this patch is also dirty.
* bootstraptest/test_eval.rb: add a test for above.
* internal.h: remove unused decl.
* iseq.c (rb_iseq_compile_with_option): add base_block parameter.
set th->base_block before compation and restore it after
compilation.
* ruby.c (require_libraries): pass 0 as base_block instead of
setting th->base_block
* tool/compile_prelude.rb (prelude_eval): apply above changes.
* vm.c, vm_eval.c: ditto.
* vm_core.h: add comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-06-22 13:32:56 +04:00
|
|
|
base_block = &env->block;
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
else {
|
2009-02-13 09:25:59 +03:00
|
|
|
rb_control_frame_t *cfp = rb_vm_get_ruby_level_next_cfp(th, th->cfp);
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
|
|
|
|
if (cfp != 0) {
|
|
|
|
block = *RUBY_VM_GET_BLOCK_PTR_IN_CFP(cfp);
|
* iseq.c, vm_eval.c: set th->base_block properly.
th->base_block is information for (a) parsing, (b) compiling
and (c) setting up the frame to execute the program passed by
`eval' method. For example, (1) parser need to know up-level
variables to detect it is variable or method without paren.
Befor (a), (b) and (c), VM set th->base_block by passed bindng
(or previous frame information). After execute (a), (b) and (c),
VM should clear th->base_block. However, if (a), (b) or (c)
raises an exception, then th->base_block is not cleared.
Problem is that the uncleared value th->balo_block is used for
irrelevant iseq compilation. It causes SEGV or critical error.
I tried to solve this problem: to clear them before exception,
but finally I found out that it is difficult to do it (Ruby
program can be run in many places).
Because of this background, I set th->base_block before
compiling iseq and restore it after compiling.
Basically, th->base_block is dirty hack (similar to global
variable) and this patch is also dirty.
* bootstraptest/test_eval.rb: add a test for above.
* internal.h: remove unused decl.
* iseq.c (rb_iseq_compile_with_option): add base_block parameter.
set th->base_block before compation and restore it after
compilation.
* ruby.c (require_libraries): pass 0 as base_block instead of
setting th->base_block
* tool/compile_prelude.rb (prelude_eval): apply above changes.
* vm.c, vm_eval.c: ditto.
* vm_core.h: add comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-06-22 13:32:56 +04:00
|
|
|
base_block = █
|
|
|
|
base_block->self = self;
|
|
|
|
base_block->iseq = cfp->iseq; /* TODO */
|
* vm.c, eval_intern.h (PASS_PASSED_BLOCK):
set a VM_FRAME_FLAG_PASSED flag to skip this frame when
searching ruby-level-cfp.
* eval.c, eval_intern.h, proc.c: fix to check cfp. if there is
no valid ruby-level-cfp, cause RuntimeError exception.
[ruby-dev:34128]
* vm_core.h, vm_evalbody.c, vm.c, vm_dump.c, vm_insnhelper.c,
insns.def: rename FRAME_MAGIC_* to VM_FRAME_MAGIC_*.
* KNOWNBUGS.rb, bootstraptest/test*.rb: move solved bugs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-11 01:46:43 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_raise(rb_eRuntimeError, "Can't eval on top of Fiber or Thread");
|
|
|
|
}
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* make eval iseq */
|
|
|
|
th->parse_in_eval++;
|
2008-07-01 20:55:30 +04:00
|
|
|
th->mild_compile_error++;
|
* iseq.c, vm_eval.c: set th->base_block properly.
th->base_block is information for (a) parsing, (b) compiling
and (c) setting up the frame to execute the program passed by
`eval' method. For example, (1) parser need to know up-level
variables to detect it is variable or method without paren.
Befor (a), (b) and (c), VM set th->base_block by passed bindng
(or previous frame information). After execute (a), (b) and (c),
VM should clear th->base_block. However, if (a), (b) or (c)
raises an exception, then th->base_block is not cleared.
Problem is that the uncleared value th->balo_block is used for
irrelevant iseq compilation. It causes SEGV or critical error.
I tried to solve this problem: to clear them before exception,
but finally I found out that it is difficult to do it (Ruby
program can be run in many places).
Because of this background, I set th->base_block before
compiling iseq and restore it after compiling.
Basically, th->base_block is dirty hack (similar to global
variable) and this patch is also dirty.
* bootstraptest/test_eval.rb: add a test for above.
* internal.h: remove unused decl.
* iseq.c (rb_iseq_compile_with_option): add base_block parameter.
set th->base_block before compation and restore it after
compilation.
* ruby.c (require_libraries): pass 0 as base_block instead of
setting th->base_block
* tool/compile_prelude.rb (prelude_eval): apply above changes.
* vm.c, vm_eval.c: ditto.
* vm_core.h: add comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-06-22 13:32:56 +04:00
|
|
|
iseqval = rb_iseq_compile_on_base(src, rb_str_new2(file), INT2FIX(line), base_block);
|
2008-07-01 20:55:30 +04:00
|
|
|
th->mild_compile_error--;
|
2008-05-25 05:12:12 +04:00
|
|
|
th->parse_in_eval--;
|
|
|
|
|
* iseq.c, vm_eval.c: set th->base_block properly.
th->base_block is information for (a) parsing, (b) compiling
and (c) setting up the frame to execute the program passed by
`eval' method. For example, (1) parser need to know up-level
variables to detect it is variable or method without paren.
Befor (a), (b) and (c), VM set th->base_block by passed bindng
(or previous frame information). After execute (a), (b) and (c),
VM should clear th->base_block. However, if (a), (b) or (c)
raises an exception, then th->base_block is not cleared.
Problem is that the uncleared value th->balo_block is used for
irrelevant iseq compilation. It causes SEGV or critical error.
I tried to solve this problem: to clear them before exception,
but finally I found out that it is difficult to do it (Ruby
program can be run in many places).
Because of this background, I set th->base_block before
compiling iseq and restore it after compiling.
Basically, th->base_block is dirty hack (similar to global
variable) and this patch is also dirty.
* bootstraptest/test_eval.rb: add a test for above.
* internal.h: remove unused decl.
* iseq.c (rb_iseq_compile_with_option): add base_block parameter.
set th->base_block before compation and restore it after
compilation.
* ruby.c (require_libraries): pass 0 as base_block instead of
setting th->base_block
* tool/compile_prelude.rb (prelude_eval): apply above changes.
* vm.c, vm_eval.c: ditto.
* vm_core.h: add comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-06-22 13:32:56 +04:00
|
|
|
vm_set_eval_stack(th, iseqval, cref, base_block);
|
2008-05-25 05:12:12 +04:00
|
|
|
|
|
|
|
if (0) { /* for debug */
|
2011-02-20 10:23:55 +03:00
|
|
|
VALUE disasm = rb_iseq_disasm(iseqval);
|
|
|
|
printf("%s\n", StringValuePtr(disasm));
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* save new env */
|
|
|
|
GetISeqPtr(iseqval, iseq);
|
2009-09-01 14:58:31 +04:00
|
|
|
if (bind && iseq->local_table_size > 0) {
|
* vm.c: add a prefix "rb_" to exposed functions
vm_get_ruby_level_next_cfp(), rb_vm_make_env_object(),
vm_stack_to_heap(), vm_make_proc(), vm_invoke_proc(),
vm_get_sourceline(), vm_cref(), vm_localjump_error(),
vm_make_jump_tag_but_local_jump(), vm_jump_tag_but_local_jump().
This changes may affect only core because most of renamed functions
require a pointer of not-exposed struct such as rb_thread_t or NODE.
In short, they are core functions.
* cont.c, eval.c, eval_intern.h, load.c, proc.c, thread.c,
vm_core.h, vm_dump.c, vm_eval.c, vm_exec.c, vm_insnhelper.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-19 05:38:11 +03:00
|
|
|
bind->env = rb_vm_make_env_object(th, th->cfp);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* kick */
|
|
|
|
CHECK_STACK_OVERFLOW(th->cfp, iseq->stack_max);
|
* common.mk: clean up
- remove blockinlining.$(OBJEXT) to built
- make ENCODING_H_INCLDUES variable (include/ruby/encoding.h)
- make VM_CORE_H_INCLUDES variable (vm_core.h)
- simplify rules.
- make depends rule to output depend status using gcc -MM.
* include/ruby/mvm.h, include/ruby/vm.h: rename mvm.h to vm.h.
* include/ruby.h: ditto.
* load.c: add inclusion explicitly.
* enumerator.c, object.c, parse.y, thread.c, vm_dump.c:
remove useless inclusion.
* eval_intern.h: cleanup inclusion.
* vm_core.h: rb_thread_t should be defined in this file.
* vm_evalbody.c, vm_exec.c: rename vm_evalbody.c to vm_exec.c.
* vm.h, vm_exec.h: rename vm.h to vm_exec.h.
* insnhelper.h, vm_insnhelper.h: rename insnhelper.h to vm_insnhelper.h.
* vm.c, vm_insnhelper.c, vm_insnhelper.h:
- rename vm_eval() to vm_exec_core().
- rename vm_eval_body() to vm_exec().
- cleanup include order.
* vm_method.c: fix comment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-23 04:20:28 +04:00
|
|
|
result = vm_exec(th);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
POP_TAG();
|
2008-07-01 20:55:30 +04:00
|
|
|
th->mild_compile_error = mild_compile_error;
|
2008-06-24 17:16:44 +04:00
|
|
|
th->parse_in_eval = parse_in_eval;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
|
|
|
if (state) {
|
|
|
|
if (state == TAG_RAISE) {
|
|
|
|
VALUE errinfo = th->errinfo;
|
|
|
|
if (strcmp(file, "(eval)") == 0) {
|
|
|
|
VALUE mesg, errat, bt2;
|
2009-03-30 07:12:48 +04:00
|
|
|
ID id_mesg;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2009-03-30 07:12:48 +04:00
|
|
|
CONST_ID(id_mesg, "mesg");
|
2008-05-25 05:12:12 +04:00
|
|
|
errat = rb_get_backtrace(errinfo);
|
2009-03-30 07:12:48 +04:00
|
|
|
mesg = rb_attr_get(errinfo, id_mesg);
|
2011-09-29 15:07:45 +04:00
|
|
|
if (!NIL_P(errat) && RB_TYPE_P(errat, T_ARRAY) &&
|
2012-05-25 08:50:10 +04:00
|
|
|
(bt2 = vm_backtrace_str_ary(th, 0, 0), RARRAY_LEN(bt2) > 0)) {
|
2011-09-29 15:07:45 +04:00
|
|
|
if (!NIL_P(mesg) && RB_TYPE_P(mesg, T_STRING) && !RSTRING_LEN(mesg)) {
|
2009-03-30 07:12:48 +04:00
|
|
|
if (OBJ_FROZEN(mesg)) {
|
|
|
|
VALUE m = rb_str_cat(rb_str_dup(RARRAY_PTR(errat)[0]), ": ", 2);
|
|
|
|
rb_ivar_set(errinfo, id_mesg, rb_str_append(m, mesg));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_str_update(mesg, 0, 0, rb_str_new2(": "));
|
|
|
|
rb_str_update(mesg, 0, 0, RARRAY_PTR(errat)[0]);
|
|
|
|
}
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
RARRAY_PTR(errat)[0] = RARRAY_PTR(bt2)[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rb_exc_raise(errinfo);
|
|
|
|
}
|
|
|
|
JUMP_TAG(state);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
eval_string(VALUE self, VALUE src, VALUE scope, const char *file, int line)
|
|
|
|
{
|
|
|
|
return eval_string_with_cref(self, src, scope, 0, file, line);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* eval(string [, binding [, filename [,lineno]]]) -> obj
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
|
|
|
* Evaluates the Ruby expression(s) in <em>string</em>. If
|
2009-10-14 18:08:26 +04:00
|
|
|
* <em>binding</em> is given, which must be a <code>Binding</code>
|
|
|
|
* object, the evaluation is performed in its context. If the
|
|
|
|
* optional <em>filename</em> and <em>lineno</em> parameters are
|
|
|
|
* present, they will be used when reporting syntax errors.
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
2011-03-07 11:44:45 +03:00
|
|
|
* def get_binding(str)
|
2008-05-25 05:12:12 +04:00
|
|
|
* return binding
|
|
|
|
* end
|
|
|
|
* str = "hello"
|
|
|
|
* eval "str + ' Fred'" #=> "hello Fred"
|
2011-03-07 11:44:45 +03:00
|
|
|
* eval "str + ' Fred'", get_binding("bye") #=> "bye Fred"
|
2008-05-25 05:12:12 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_f_eval(int argc, VALUE *argv, VALUE self)
|
|
|
|
{
|
|
|
|
VALUE src, scope, vfile, vline;
|
2008-05-31 13:28:20 +04:00
|
|
|
const char *file = "(eval)";
|
2008-05-25 05:12:12 +04:00
|
|
|
int line = 1;
|
|
|
|
|
|
|
|
rb_scan_args(argc, argv, "13", &src, &scope, &vfile, &vline);
|
|
|
|
if (rb_safe_level() >= 4) {
|
|
|
|
StringValue(src);
|
|
|
|
if (!NIL_P(scope) && !OBJ_TAINTED(scope)) {
|
|
|
|
rb_raise(rb_eSecurityError,
|
|
|
|
"Insecure: can't modify trusted binding");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SafeStringValue(src);
|
|
|
|
}
|
|
|
|
if (argc >= 3) {
|
|
|
|
StringValue(vfile);
|
|
|
|
}
|
|
|
|
if (argc >= 4) {
|
|
|
|
line = NUM2INT(vline);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!NIL_P(vfile))
|
|
|
|
file = RSTRING_PTR(vfile);
|
|
|
|
return eval_string(self, src, scope, file, line);
|
|
|
|
}
|
|
|
|
|
2012-07-11 07:25:26 +04:00
|
|
|
/** @note This function name is not stable. */
|
|
|
|
VALUE
|
|
|
|
ruby_eval_string_from_file(const char *str, const char *filename) {
|
|
|
|
return eval_string(rb_vm_top_self(), rb_str_new2(str), Qnil, filename, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct eval_string_from_file_arg {
|
|
|
|
const char *str;
|
|
|
|
const char *filename;
|
|
|
|
};
|
|
|
|
static VALUE
|
|
|
|
eval_string_from_file_helper(void *data) {
|
|
|
|
const struct eval_string_from_file_arg *const arg = (struct eval_string_from_file_arg*)data;
|
|
|
|
return eval_string(rb_vm_top_self(), rb_str_new2(arg->str), Qnil, arg->filename, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
ruby_eval_string_from_file_protect(const char *str, const char *filename, int *state) {
|
|
|
|
struct eval_string_from_file_arg arg = { str, filename };
|
|
|
|
return rb_protect((VALUE (*)(VALUE))eval_string_from_file_helper, (VALUE)&arg, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Evaluates the given string in an isolated binding.
|
|
|
|
*
|
|
|
|
* Here "isolated" means the binding does not inherit any other binding. This
|
|
|
|
* behaves same as the binding for required libraries.
|
|
|
|
*
|
|
|
|
* __FILE__ will be "(eval)", and __LINE__ starts from 1 in the evaluation.
|
|
|
|
*
|
|
|
|
* @param str Ruby code to evaluate.
|
|
|
|
* @return The evaluated result.
|
|
|
|
* @throw Exception Raises an exception on error.
|
|
|
|
*/
|
2008-05-25 05:12:12 +04:00
|
|
|
VALUE
|
|
|
|
rb_eval_string(const char *str)
|
|
|
|
{
|
2012-07-11 07:25:26 +04:00
|
|
|
return ruby_eval_string_from_file(str, "eval");
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
2012-07-11 07:25:26 +04:00
|
|
|
/**
|
|
|
|
* Evaluates the given string in an isolated binding.
|
|
|
|
*
|
|
|
|
* __FILE__ will be "(eval)", and __LINE__ starts from 1 in the evaluation.
|
|
|
|
*
|
|
|
|
* @sa rb_eval_string
|
|
|
|
* @param str Ruby code to evaluate.
|
|
|
|
* @param state Being set to zero if succeeded. Nonzero if an error occurred.
|
|
|
|
* @return The evaluated result if succeeded, an undefined value if otherwise.
|
|
|
|
*/
|
2008-05-25 05:12:12 +04:00
|
|
|
VALUE
|
|
|
|
rb_eval_string_protect(const char *str, int *state)
|
|
|
|
{
|
|
|
|
return rb_protect((VALUE (*)(VALUE))rb_eval_string, (VALUE)str, state);
|
|
|
|
}
|
|
|
|
|
2012-07-11 07:25:26 +04:00
|
|
|
/**
|
|
|
|
* Evaluates the given string under a module binding in an isolated binding.
|
|
|
|
* This is same as the binding for required libraries on "require('foo', true)".
|
|
|
|
*
|
|
|
|
* __FILE__ will be "(eval)", and __LINE__ starts from 1 in the evaluation.
|
|
|
|
*
|
|
|
|
* @sa rb_eval_string
|
|
|
|
* @param str Ruby code to evaluate.
|
|
|
|
* @param state Being set to zero if succeeded. Nonzero if an error occurred.
|
|
|
|
* @return The evaluated result if succeeded, an undefined value if otherwise.
|
|
|
|
*/
|
2008-05-25 05:12:12 +04:00
|
|
|
VALUE
|
|
|
|
rb_eval_string_wrap(const char *str, int *state)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
VALUE self = th->top_self;
|
|
|
|
VALUE wrapper = th->top_wrapper;
|
|
|
|
VALUE val;
|
|
|
|
|
|
|
|
th->top_wrapper = rb_module_new();
|
|
|
|
th->top_self = rb_obj_clone(rb_vm_top_self());
|
|
|
|
rb_extend_object(th->top_self, th->top_wrapper);
|
|
|
|
|
|
|
|
val = rb_eval_string_protect(str, &status);
|
|
|
|
|
|
|
|
th->top_self = self;
|
|
|
|
th->top_wrapper = wrapper;
|
|
|
|
|
|
|
|
if (state) {
|
|
|
|
*state = status;
|
|
|
|
}
|
|
|
|
else if (status) {
|
|
|
|
JUMP_TAG(status);
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_eval_cmd(VALUE cmd, VALUE arg, int level)
|
|
|
|
{
|
|
|
|
int state;
|
|
|
|
VALUE val = Qnil; /* OK */
|
|
|
|
volatile int safe = rb_safe_level();
|
|
|
|
|
|
|
|
if (OBJ_TAINTED(cmd)) {
|
|
|
|
level = 4;
|
|
|
|
}
|
|
|
|
|
2011-09-29 15:07:45 +04:00
|
|
|
if (!RB_TYPE_P(cmd, T_STRING)) {
|
2008-05-25 05:12:12 +04:00
|
|
|
PUSH_TAG();
|
|
|
|
rb_set_safe_level_force(level);
|
|
|
|
if ((state = EXEC_TAG()) == 0) {
|
2009-05-20 20:43:41 +04:00
|
|
|
val = rb_funcall2(cmd, rb_intern("call"), RARRAY_LENINT(arg),
|
2008-05-25 05:12:12 +04:00
|
|
|
RARRAY_PTR(arg));
|
|
|
|
}
|
|
|
|
POP_TAG();
|
|
|
|
|
|
|
|
rb_set_safe_level_force(safe);
|
|
|
|
|
|
|
|
if (state)
|
2011-09-29 15:06:42 +04:00
|
|
|
JUMP_TAG(state);
|
2008-05-25 05:12:12 +04:00
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
PUSH_TAG();
|
|
|
|
if ((state = EXEC_TAG()) == 0) {
|
|
|
|
val = eval_string(rb_vm_top_self(), cmd, Qnil, 0, 0);
|
|
|
|
}
|
|
|
|
POP_TAG();
|
|
|
|
|
|
|
|
rb_set_safe_level_force(safe);
|
* vm.c: add a prefix "rb_" to exposed functions
vm_get_ruby_level_next_cfp(), rb_vm_make_env_object(),
vm_stack_to_heap(), vm_make_proc(), vm_invoke_proc(),
vm_get_sourceline(), vm_cref(), vm_localjump_error(),
vm_make_jump_tag_but_local_jump(), vm_jump_tag_but_local_jump().
This changes may affect only core because most of renamed functions
require a pointer of not-exposed struct such as rb_thread_t or NODE.
In short, they are core functions.
* cont.c, eval.c, eval_intern.h, load.c, proc.c, thread.c,
vm_core.h, vm_dump.c, vm_eval.c, vm_exec.c, vm_insnhelper.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-19 05:38:11 +03:00
|
|
|
if (state) rb_vm_jump_tag_but_local_jump(state, val);
|
2008-05-25 05:12:12 +04:00
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* block eval under the class/module context */
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
yield_under(VALUE under, VALUE self, VALUE values)
|
|
|
|
{
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
rb_block_t block, *blockptr;
|
2009-12-03 21:25:57 +03:00
|
|
|
NODE *cref;
|
2008-05-25 05:12:12 +04:00
|
|
|
|
2012-06-11 07:14:59 +04:00
|
|
|
if ((blockptr = VM_CF_BLOCK_PTR(th->cfp)) != 0) {
|
2008-05-25 05:12:12 +04:00
|
|
|
block = *blockptr;
|
|
|
|
block.self = self;
|
2012-06-11 07:14:59 +04:00
|
|
|
VM_CF_LEP(th->cfp)[0] = VM_ENVVAL_BLOCK_PTR(&block);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
2009-12-04 10:09:17 +03:00
|
|
|
cref = vm_cref_push(th, under, NOEX_PUBLIC, blockptr);
|
2009-12-03 21:25:57 +03:00
|
|
|
cref->flags |= NODE_FL_CREF_PUSHED_BY_EVAL;
|
2012-08-02 15:34:19 +04:00
|
|
|
rb_vm_using_modules(cref, under);
|
2008-05-25 05:12:12 +04:00
|
|
|
|
|
|
|
if (values == Qundef) {
|
2009-12-03 21:25:57 +03:00
|
|
|
return vm_yield_with_cref(th, 1, &self, cref);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
else {
|
2009-05-20 20:43:41 +04:00
|
|
|
return vm_yield_with_cref(th, RARRAY_LENINT(values), RARRAY_PTR(values), cref);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* string eval under the class/module context */
|
|
|
|
static VALUE
|
|
|
|
eval_under(VALUE under, VALUE self, VALUE src, const char *file, int line)
|
|
|
|
{
|
2009-12-03 21:25:57 +03:00
|
|
|
NODE *cref = vm_cref_push(GET_THREAD(), under, NOEX_PUBLIC, NULL);
|
2008-05-25 05:12:12 +04:00
|
|
|
|
|
|
|
if (rb_safe_level() >= 4) {
|
|
|
|
StringValue(src);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SafeStringValue(src);
|
|
|
|
}
|
2012-08-02 15:34:19 +04:00
|
|
|
rb_vm_using_modules(cref, under);
|
2008-05-25 05:12:12 +04:00
|
|
|
|
|
|
|
return eval_string_with_cref(self, src, Qnil, cref, file, line);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
specific_eval(int argc, VALUE *argv, VALUE klass, VALUE self)
|
|
|
|
{
|
|
|
|
if (rb_block_given_p()) {
|
2012-03-15 01:10:34 +04:00
|
|
|
rb_check_arity(argc, 0, 0);
|
2008-05-25 05:12:12 +04:00
|
|
|
return yield_under(klass, self, Qundef);
|
|
|
|
}
|
|
|
|
else {
|
2008-05-31 13:28:20 +04:00
|
|
|
const char *file = "(eval)";
|
2008-05-25 05:12:12 +04:00
|
|
|
int line = 1;
|
|
|
|
|
2012-03-15 01:10:34 +04:00
|
|
|
rb_check_arity(argc, 1, 3);
|
|
|
|
if (rb_safe_level() >= 4) {
|
|
|
|
StringValue(argv[0]);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
else {
|
2012-03-15 01:10:34 +04:00
|
|
|
SafeStringValue(argv[0]);
|
|
|
|
}
|
|
|
|
if (argc > 2)
|
|
|
|
line = NUM2INT(argv[2]);
|
|
|
|
if (argc > 1) {
|
|
|
|
file = StringValuePtr(argv[1]);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
return eval_under(klass, self, argv[0], file, line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* obj.instance_eval(string [, filename [, lineno]] ) -> obj
|
|
|
|
* obj.instance_eval {| | block } -> obj
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
|
|
|
* Evaluates a string containing Ruby source code, or the given block,
|
|
|
|
* within the context of the receiver (_obj_). In order to set the
|
|
|
|
* context, the variable +self+ is set to _obj_ while
|
|
|
|
* the code is executing, giving the code access to _obj_'s
|
|
|
|
* instance variables. In the version of <code>instance_eval</code>
|
|
|
|
* that takes a +String+, the optional second and third
|
|
|
|
* parameters supply a filename and starting line number that are used
|
|
|
|
* when reporting compilation errors.
|
|
|
|
*
|
|
|
|
* class KlassWithSecret
|
|
|
|
* def initialize
|
|
|
|
* @secret = 99
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
* k = KlassWithSecret.new
|
|
|
|
* k.instance_eval { @secret } #=> 99
|
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_obj_instance_eval(int argc, VALUE *argv, VALUE self)
|
|
|
|
{
|
|
|
|
VALUE klass;
|
|
|
|
|
|
|
|
if (SPECIAL_CONST_P(self)) {
|
|
|
|
klass = Qnil;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
klass = rb_singleton_class(self);
|
|
|
|
}
|
|
|
|
return specific_eval(argc, argv, klass, self);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* obj.instance_exec(arg...) {|var...| block } -> obj
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
|
|
|
* Executes the given block within the context of the receiver
|
|
|
|
* (_obj_). In order to set the context, the variable +self+ is set
|
|
|
|
* to _obj_ while the code is executing, giving the code access to
|
|
|
|
* _obj_'s instance variables. Arguments are passed as block parameters.
|
|
|
|
*
|
|
|
|
* class KlassWithSecret
|
|
|
|
* def initialize
|
|
|
|
* @secret = 99
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
* k = KlassWithSecret.new
|
|
|
|
* k.instance_exec(5) {|x| @secret+x } #=> 104
|
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_obj_instance_exec(int argc, VALUE *argv, VALUE self)
|
|
|
|
{
|
|
|
|
VALUE klass;
|
|
|
|
|
|
|
|
if (SPECIAL_CONST_P(self)) {
|
|
|
|
klass = Qnil;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
klass = rb_singleton_class(self);
|
|
|
|
}
|
|
|
|
return yield_under(klass, self, rb_ary_new4(argc, argv));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* mod.class_eval(string [, filename [, lineno]]) -> obj
|
|
|
|
* mod.module_eval {|| block } -> obj
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
2012-03-16 09:28:55 +04:00
|
|
|
* Evaluates the string or block in the context of _mod_, except that when
|
2012-03-16 09:38:52 +04:00
|
|
|
* a block is given, constant/class variable lookup is not affected. This
|
|
|
|
* can be used to add methods to a class. <code>module_eval</code> returns
|
|
|
|
* the result of evaluating its argument. The optional _filename_ and
|
|
|
|
* _lineno_ parameters set the text for error messages.
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
|
|
|
* class Thing
|
|
|
|
* end
|
|
|
|
* a = %q{def hello() "Hello there!" end}
|
|
|
|
* Thing.module_eval(a)
|
|
|
|
* puts Thing.new.hello()
|
|
|
|
* Thing.module_eval("invalid code", "dummy", 123)
|
|
|
|
*
|
|
|
|
* <em>produces:</em>
|
|
|
|
*
|
|
|
|
* Hello there!
|
|
|
|
* dummy:123:in `module_eval': undefined local variable
|
|
|
|
* or method `code' for Thing:Class
|
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_mod_module_eval(int argc, VALUE *argv, VALUE mod)
|
|
|
|
{
|
|
|
|
return specific_eval(argc, argv, mod, mod);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* mod.module_exec(arg...) {|var...| block } -> obj
|
|
|
|
* mod.class_exec(arg...) {|var...| block } -> obj
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
|
|
|
* Evaluates the given block in the context of the class/module.
|
|
|
|
* The method defined in the block will belong to the receiver.
|
|
|
|
*
|
|
|
|
* class Thing
|
|
|
|
* end
|
|
|
|
* Thing.class_exec{
|
|
|
|
* def hello() "Hello there!" end
|
|
|
|
* }
|
|
|
|
* puts Thing.new.hello()
|
|
|
|
*
|
|
|
|
* <em>produces:</em>
|
|
|
|
*
|
|
|
|
* Hello there!
|
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_mod_module_exec(int argc, VALUE *argv, VALUE mod)
|
|
|
|
{
|
|
|
|
return yield_under(mod, mod, rb_ary_new4(argc, argv));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-13 02:06:59 +04:00
|
|
|
* throw(tag [, obj])
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
|
|
|
* Transfers control to the end of the active +catch+ block
|
2009-06-13 02:06:59 +04:00
|
|
|
* waiting for _tag_. Raises +ArgumentError+ if there
|
|
|
|
* is no +catch+ block for the _tag_. The optional second
|
2008-05-25 05:12:12 +04:00
|
|
|
* parameter supplies a return value for the +catch+ block,
|
|
|
|
* which otherwise defaults to +nil+. For examples, see
|
|
|
|
* <code>Kernel::catch</code>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_f_throw(int argc, VALUE *argv)
|
|
|
|
{
|
|
|
|
VALUE tag, value;
|
2009-03-13 12:10:07 +03:00
|
|
|
|
|
|
|
rb_scan_args(argc, argv, "11", &tag, &value);
|
|
|
|
rb_throw_obj(tag, value);
|
2012-04-14 04:36:26 +04:00
|
|
|
UNREACHABLE;
|
2009-03-13 12:10:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_throw_obj(VALUE tag, VALUE value)
|
|
|
|
{
|
2008-05-25 05:12:12 +04:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
struct rb_vm_tag *tt = th->tag;
|
|
|
|
|
|
|
|
while (tt) {
|
|
|
|
if (tt->tag == tag) {
|
|
|
|
tt->retval = value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
tt = tt->prev;
|
|
|
|
}
|
|
|
|
if (!tt) {
|
|
|
|
VALUE desc = rb_inspect(tag);
|
2011-01-26 16:34:20 +03:00
|
|
|
RB_GC_GUARD(desc);
|
2008-05-25 05:12:12 +04:00
|
|
|
rb_raise(rb_eArgError, "uncaught throw %s", RSTRING_PTR(desc));
|
|
|
|
}
|
|
|
|
th->errinfo = NEW_THROW_OBJECT(tag, 0, TAG_THROW);
|
|
|
|
|
|
|
|
JUMP_TAG(TAG_THROW);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_throw(const char *tag, VALUE val)
|
|
|
|
{
|
2009-03-13 12:10:07 +03:00
|
|
|
rb_throw_obj(ID2SYM(rb_intern(tag)), val);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
|
2009-09-16 01:18:04 +04:00
|
|
|
static VALUE
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
catch_i(VALUE tag, VALUE data)
|
|
|
|
{
|
2009-09-16 01:18:04 +04:00
|
|
|
return rb_yield_0(1, &tag);
|
|
|
|
}
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
|
2008-05-25 05:12:12 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* catch([arg]) {|tag| block } -> obj
|
2008-05-25 05:12:12 +04:00
|
|
|
*
|
|
|
|
* +catch+ executes its block. If a +throw+ is
|
|
|
|
* executed, Ruby searches up its stack for a +catch+ block
|
|
|
|
* with a tag corresponding to the +throw+'s
|
2009-06-13 02:06:59 +04:00
|
|
|
* _tag_. If found, that block is terminated, and
|
2008-05-25 05:12:12 +04:00
|
|
|
* +catch+ returns the value given to +throw+. If
|
|
|
|
* +throw+ is not called, the block terminates normally, and
|
|
|
|
* the value of +catch+ is the value of the last expression
|
|
|
|
* evaluated. +catch+ expressions may be nested, and the
|
|
|
|
* +throw+ call need not be in lexical scope.
|
|
|
|
*
|
|
|
|
* def routine(n)
|
|
|
|
* puts n
|
|
|
|
* throw :done if n <= 0
|
|
|
|
* routine(n-1)
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* catch(:done) { routine(3) }
|
|
|
|
*
|
|
|
|
* <em>produces:</em>
|
|
|
|
*
|
|
|
|
* 3
|
|
|
|
* 2
|
|
|
|
* 1
|
|
|
|
* 0
|
2009-06-13 02:06:59 +04:00
|
|
|
*
|
|
|
|
* when _arg_ is given, +catch+ yields it as is, or when no
|
|
|
|
* _arg_ is given, +catch+ assigns a new unique object to
|
2009-11-03 20:46:28 +03:00
|
|
|
* +throw+. this is useful for nested +catch+. _arg_ can
|
2009-06-13 02:06:59 +04:00
|
|
|
* be an arbitrary object, not only Symbol.
|
|
|
|
*
|
2008-05-25 05:12:12 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_f_catch(int argc, VALUE *argv)
|
|
|
|
{
|
|
|
|
VALUE tag;
|
|
|
|
|
|
|
|
if (argc == 0) {
|
|
|
|
tag = rb_obj_alloc(rb_cObject);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_scan_args(argc, argv, "01", &tag);
|
|
|
|
}
|
2009-09-16 01:18:04 +04:00
|
|
|
return rb_catch_obj(tag, catch_i, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_catch(const char *tag, VALUE (*func)(), VALUE data)
|
|
|
|
{
|
|
|
|
VALUE vtag = tag ? ID2SYM(rb_intern(tag)) : rb_obj_alloc(rb_cObject);
|
|
|
|
return rb_catch_obj(vtag, func, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_catch_obj(VALUE tag, VALUE (*func)(), VALUE data)
|
|
|
|
{
|
|
|
|
int state;
|
|
|
|
volatile VALUE val = Qnil; /* OK */
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
rb_control_frame_t *saved_cfp = th->cfp;
|
|
|
|
|
2008-05-25 05:12:12 +04:00
|
|
|
PUSH_TAG();
|
|
|
|
|
|
|
|
th->tag->tag = tag;
|
|
|
|
|
|
|
|
if ((state = EXEC_TAG()) == 0) {
|
2009-09-16 01:18:04 +04:00
|
|
|
/* call with argc=1, argv = [tag], block = Qnil to insure compatibility */
|
|
|
|
val = (*func)(tag, data, 1, &tag, Qnil);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|
|
|
|
else if (state == TAG_THROW && RNODE(th->errinfo)->u1.value == tag) {
|
|
|
|
th->cfp = saved_cfp;
|
|
|
|
val = th->tag->retval;
|
|
|
|
th->errinfo = Qnil;
|
|
|
|
state = 0;
|
|
|
|
}
|
|
|
|
POP_TAG();
|
|
|
|
if (state)
|
|
|
|
JUMP_TAG(state);
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2009-01-19 03:13:44 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* local_variables -> array
|
2009-01-19 03:13:44 +03:00
|
|
|
*
|
|
|
|
* Returns the names of the current local variables.
|
|
|
|
*
|
|
|
|
* fred = 1
|
|
|
|
* for i in 1..10
|
|
|
|
* # ...
|
|
|
|
* end
|
2009-06-13 02:08:46 +04:00
|
|
|
* local_variables #=> [:fred, :i]
|
2009-01-19 03:13:44 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_f_local_variables(void)
|
|
|
|
{
|
|
|
|
VALUE ary = rb_ary_new();
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
rb_control_frame_t *cfp =
|
|
|
|
vm_get_ruby_level_caller_cfp(th, RUBY_VM_PREVIOUS_CONTROL_FRAME(th->cfp));
|
|
|
|
int i;
|
|
|
|
|
|
|
|
while (cfp) {
|
|
|
|
if (cfp->iseq) {
|
|
|
|
for (i = 0; i < cfp->iseq->local_table_size; i++) {
|
|
|
|
ID lid = cfp->iseq->local_table[i];
|
|
|
|
if (lid) {
|
|
|
|
const char *vname = rb_id2name(lid);
|
|
|
|
/* should skip temporary variable */
|
|
|
|
if (vname) {
|
|
|
|
rb_ary_push(ary, ID2SYM(lid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-06-11 07:14:59 +04:00
|
|
|
if (!VM_EP_LEP_P(cfp->ep)) {
|
2009-01-19 03:13:44 +03:00
|
|
|
/* block */
|
2012-06-11 07:14:59 +04:00
|
|
|
VALUE *ep = VM_CF_PREV_EP(cfp);
|
2009-01-19 03:13:44 +03:00
|
|
|
|
2012-06-11 07:14:59 +04:00
|
|
|
if (vm_collect_local_variables_in_heap(th, ep, ary)) {
|
2009-01-19 03:13:44 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
2012-06-11 07:14:59 +04:00
|
|
|
while (cfp->ep != ep) {
|
2009-01-19 03:13:44 +03:00
|
|
|
cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(cfp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ary;
|
|
|
|
}
|
|
|
|
|
2009-01-19 06:03:09 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* block_given? -> true or false
|
|
|
|
* iterator? -> true or false
|
2009-01-19 06:03:09 +03:00
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <code>yield</code> would execute a
|
|
|
|
* block in the current context. The <code>iterator?</code> form
|
|
|
|
* is mildly deprecated.
|
|
|
|
*
|
|
|
|
* def try
|
|
|
|
* if block_given?
|
|
|
|
* yield
|
|
|
|
* else
|
|
|
|
* "no block"
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
* try #=> "no block"
|
|
|
|
* try { "hello" } #=> "hello"
|
|
|
|
* try do "hello" end #=> "hello"
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_f_block_given_p(void)
|
|
|
|
{
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
rb_control_frame_t *cfp = th->cfp;
|
|
|
|
cfp = vm_get_ruby_level_caller_cfp(th, RUBY_VM_PREVIOUS_CONTROL_FRAME(cfp));
|
|
|
|
|
2012-06-11 07:14:59 +04:00
|
|
|
if (cfp != 0 && VM_CF_BLOCK_PTR(cfp)) {
|
2009-01-19 06:03:09 +03:00
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-16 20:40:00 +03:00
|
|
|
VALUE
|
|
|
|
rb_current_realfilepath(void)
|
|
|
|
{
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
rb_control_frame_t *cfp = th->cfp;
|
|
|
|
cfp = vm_get_ruby_level_caller_cfp(th, RUBY_VM_PREVIOUS_CONTROL_FRAME(cfp));
|
2012-06-04 06:49:37 +04:00
|
|
|
if (cfp != 0) return cfp->iseq->location.absolute_path;
|
2010-03-16 20:40:00 +03:00
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2008-05-25 05:12:12 +04:00
|
|
|
void
|
|
|
|
Init_vm_eval(void)
|
|
|
|
{
|
2008-09-25 22:04:34 +04:00
|
|
|
rb_define_global_function("eval", rb_f_eval, -1);
|
2009-01-19 03:13:44 +03:00
|
|
|
rb_define_global_function("local_variables", rb_f_local_variables, 0);
|
2009-01-19 06:03:09 +03:00
|
|
|
rb_define_global_function("iterator?", rb_f_block_given_p, 0);
|
|
|
|
rb_define_global_function("block_given?", rb_f_block_given_p, 0);
|
2009-01-19 03:13:44 +03:00
|
|
|
|
2008-05-25 05:12:12 +04:00
|
|
|
rb_define_global_function("catch", rb_f_catch, -1);
|
|
|
|
rb_define_global_function("throw", rb_f_throw, -1);
|
|
|
|
|
|
|
|
rb_define_global_function("loop", rb_f_loop, 0);
|
|
|
|
|
|
|
|
rb_define_method(rb_cBasicObject, "instance_eval", rb_obj_instance_eval, -1);
|
|
|
|
rb_define_method(rb_cBasicObject, "instance_exec", rb_obj_instance_exec, -1);
|
|
|
|
rb_define_private_method(rb_cBasicObject, "method_missing", rb_method_missing, -1);
|
|
|
|
|
2009-07-15 18:59:41 +04:00
|
|
|
#if 1
|
|
|
|
rb_add_method(rb_cBasicObject, rb_intern("__send__"),
|
|
|
|
VM_METHOD_TYPE_OPTIMIZED, (void *)OPTIMIZED_METHOD_TYPE_SEND, 0);
|
|
|
|
rb_add_method(rb_mKernel, rb_intern("send"),
|
|
|
|
VM_METHOD_TYPE_OPTIMIZED, (void *)OPTIMIZED_METHOD_TYPE_SEND, 0);
|
|
|
|
#else
|
2008-05-25 05:12:12 +04:00
|
|
|
rb_define_method(rb_cBasicObject, "__send__", rb_f_send, -1);
|
|
|
|
rb_define_method(rb_mKernel, "send", rb_f_send, -1);
|
2009-07-15 18:59:41 +04:00
|
|
|
#endif
|
2008-05-25 05:12:12 +04:00
|
|
|
rb_define_method(rb_mKernel, "public_send", rb_f_public_send, -1);
|
|
|
|
|
|
|
|
rb_define_method(rb_cModule, "module_exec", rb_mod_module_exec, -1);
|
|
|
|
rb_define_method(rb_cModule, "class_exec", rb_mod_module_exec, -1);
|
2008-09-25 22:04:34 +04:00
|
|
|
rb_define_method(rb_cModule, "module_eval", rb_mod_module_eval, -1);
|
|
|
|
rb_define_method(rb_cModule, "class_eval", rb_mod_module_eval, -1);
|
2008-05-25 05:12:12 +04:00
|
|
|
}
|