зеркало из https://github.com/github/ruby.git
* vm_eval.c, eval.c (rb_f_block_given_p): move definition of
"iterator?" and "block_given?" to make static. * vm.c (vm_get_ruby_level_caller_cfp): make it static. * eval_intern.h, vm_insnhelper.c: move decl. of vm_get_ruby_level_caller_cfp() from eval_intern.h to vm_insnhelper.c. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21660 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
cf23d0f0f0
Коммит
9b520ddcec
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
Mon Jan 19 11:46:39 2009 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* vm_eval.c, eval.c (rb_f_block_given_p): move definition of
|
||||
"iterator?" and "block_given?" to make static.
|
||||
|
||||
* vm.c (vm_get_ruby_level_caller_cfp): make it static.
|
||||
|
||||
* eval_intern.h, vm_insnhelper.c: move decl. of
|
||||
vm_get_ruby_level_caller_cfp()
|
||||
from eval_intern.h to vm_insnhelper.c.
|
||||
|
||||
Mon Jan 19 11:27:39 2009 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* vm.c: add a prefix "rb_" to exposed functions
|
||||
|
|
42
eval.c
42
eval.c
|
@ -547,45 +547,6 @@ rb_iterator_p()
|
|||
return rb_block_given_p();
|
||||
}
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* block_given? => true or false
|
||||
* iterator? => true or false
|
||||
*
|
||||
* 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));
|
||||
|
||||
if (cfp != 0 &&
|
||||
(cfp->lfp[0] & 0x02) == 0 &&
|
||||
GC_GUARDED_PTR_REF(cfp->lfp[0])) {
|
||||
return Qtrue;
|
||||
}
|
||||
else {
|
||||
return Qfalse;
|
||||
}
|
||||
}
|
||||
|
||||
VALUE rb_eThreadError;
|
||||
|
||||
void
|
||||
|
@ -1069,9 +1030,6 @@ Init_eval(void)
|
|||
rb_define_virtual_variable("$@", errat_getter, errat_setter);
|
||||
rb_define_virtual_variable("$!", errinfo_getter, 0);
|
||||
|
||||
rb_define_global_function("iterator?", rb_f_block_given_p, 0);
|
||||
rb_define_global_function("block_given?", rb_f_block_given_p, 0);
|
||||
|
||||
rb_define_global_function("raise", rb_f_raise, -1);
|
||||
rb_define_global_function("fail", rb_f_raise, -1);
|
||||
|
||||
|
|
|
@ -198,7 +198,6 @@ NORETURN(void rb_vm_jump_tag_but_local_jump(int, VALUE));
|
|||
|
||||
VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val);
|
||||
NODE *rb_vm_cref(void);
|
||||
rb_control_frame_t *vm_get_ruby_level_caller_cfp(rb_thread_t *th, rb_control_frame_t *cfp);
|
||||
VALUE rb_obj_is_proc(VALUE);
|
||||
VALUE rb_vm_call_cfunc(VALUE recv, VALUE (*func)(VALUE), VALUE arg, const rb_block_t *blockptr, VALUE filename);
|
||||
void rb_thread_terminate_all(void);
|
||||
|
|
2
vm.c
2
vm.c
|
@ -146,7 +146,7 @@ rb_vm_get_ruby_level_next_cfp(rb_thread_t *th, rb_control_frame_t *cfp)
|
|||
return 0;
|
||||
}
|
||||
|
||||
rb_control_frame_t *
|
||||
static rb_control_frame_t *
|
||||
vm_get_ruby_level_caller_cfp(rb_thread_t *th, rb_control_frame_t *cfp)
|
||||
{
|
||||
if (RUBY_VM_NORMAL_ISEQ_P(cfp->iseq)) {
|
||||
|
|
41
vm_eval.c
41
vm_eval.c
|
@ -1377,11 +1377,52 @@ rb_f_local_variables(void)
|
|||
return ary;
|
||||
}
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* block_given? => true or false
|
||||
* iterator? => true or false
|
||||
*
|
||||
* 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));
|
||||
|
||||
if (cfp != 0 &&
|
||||
(cfp->lfp[0] & 0x02) == 0 &&
|
||||
GC_GUARDED_PTR_REF(cfp->lfp[0])) {
|
||||
return Qtrue;
|
||||
}
|
||||
else {
|
||||
return Qfalse;
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
Init_vm_eval(void)
|
||||
{
|
||||
rb_define_global_function("eval", rb_f_eval, -1);
|
||||
rb_define_global_function("local_variables", rb_f_local_variables, 0);
|
||||
rb_define_global_function("iterator?", rb_f_block_given_p, 0);
|
||||
rb_define_global_function("block_given?", rb_f_block_given_p, 0);
|
||||
|
||||
rb_define_global_function("catch", rb_f_catch, -1);
|
||||
rb_define_global_function("throw", rb_f_throw, -1);
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#define INLINE inline
|
||||
#endif
|
||||
|
||||
static rb_control_frame_t *vm_get_ruby_level_caller_cfp(rb_thread_t *th, rb_control_frame_t *cfp);
|
||||
|
||||
static inline rb_control_frame_t *
|
||||
vm_push_frame(rb_thread_t * th, const rb_iseq_t * iseq,
|
||||
VALUE type, VALUE self, VALUE specval,
|
||||
|
|
Загрузка…
Ссылка в новой задаче