From 1919ce3274f7ce03a2a76827e04cae9e299e2102 Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 24 Dec 2007 09:09:21 +0000 Subject: * iseq.c (Init_ISeq): disable ISeq.load() because there is no verifier. * iseq.c, proc.c: add ISeq.disasm(method). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- iseq.c | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) (limited to 'iseq.c') diff --git a/iseq.c b/iseq.c index f316edab3..c47806282 100644 --- a/iseq.c +++ b/iseq.c @@ -881,6 +881,23 @@ ruby_iseq_disasm(VALUE self) return str; } +static VALUE +iseq_s_disasm(VALUE klass, VALUE body) +{ + extern NODE *rb_method_body(VALUE body); + NODE *node; + VALUE ret = Qnil; + + if ((node = rb_method_body(body)) != 0) { + if (nd_type(node) == RUBY_VM_METHOD_NODE) { + VALUE iseqval = (VALUE)node->nd_body; + ret = ruby_iseq_disasm(iseqval); + } + } + + return ret; +} + const char * ruby_node_name(int node) { @@ -1250,16 +1267,19 @@ Init_ISeq(void) rb_define_alloc_func(rb_cISeq, iseq_alloc); rb_define_method(rb_cISeq, "inspect", iseq_inspect, 0); rb_define_method(rb_cISeq, "disasm", ruby_iseq_disasm, 0); + rb_define_method(rb_cISeq, "disassemble", ruby_iseq_disasm, 0); rb_define_method(rb_cISeq, "to_a", iseq_to_a, 0); rb_define_method(rb_cISeq, "eval", iseq_eval, 0); - rb_define_singleton_method(rb_cISeq, "load", iseq_s_load, -1); + /* disable this feature because there is no verifier. */ + /* rb_define_singleton_method(rb_cISeq, "load", iseq_s_load, -1); */ + rb_define_singleton_method(rb_cISeq, "compile", iseq_s_compile, -1); rb_define_singleton_method(rb_cISeq, "new", iseq_s_compile, -1); rb_define_singleton_method(rb_cISeq, "compile_file", iseq_s_compile_file, -1); - rb_define_singleton_method(rb_cISeq, "compile_option", - iseq_s_compile_option_get, 0); - rb_define_singleton_method(rb_cISeq, "compile_option=", - iseq_s_compile_option_set, 1); + rb_define_singleton_method(rb_cISeq, "compile_option", iseq_s_compile_option_get, 0); + rb_define_singleton_method(rb_cISeq, "compile_option=", iseq_s_compile_option_set, 1); + rb_define_singleton_method(rb_cISeq, "disasm", iseq_s_disasm, 1); + rb_define_singleton_method(rb_cISeq, "disassemble", iseq_s_disasm, 1); } -- cgit