From e2e23e688fd655c55112872b10a7bd6840314653 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@14595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ iseq.c | 30 +++++++++++++++++++++++++----- proc.c | 17 ++++++++++++++++- 3 files changed, 47 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 826c4d7672..064609d587 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Dec 24 18:05:09 2007 Koichi Sasada + + * iseq.c (Init_ISeq): disable ISeq.load() because there is no verifier. + + * iseq.c, proc.c: add ISeq.disasm(method). + Mon Dec 24 18:06:03 2007 Tanaka Akira * eval_method.c (Init_eval_method): extracted from Init_eval diff --git a/iseq.c b/iseq.c index f316edab30..c478062822 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); } diff --git a/proc.c b/proc.c index d316f042be..d9eca588ab 100644 --- a/proc.c +++ b/proc.c @@ -652,7 +652,7 @@ proc_to_proc(VALUE self) * eval("param", b) #=> 99 */ -void +static void bm_mark(struct METHOD *data) { rb_gc_mark(data->rclass); @@ -661,6 +661,21 @@ bm_mark(struct METHOD *data) rb_gc_mark((VALUE)data->body); } +NODE * +rb_method_body(VALUE method) +{ + struct METHOD *data; + + if (TYPE(method) == T_DATA && + RDATA(method)->dmark == (RUBY_DATA_FUNC) bm_mark) { + Data_Get_Struct(method, struct METHOD, data); + return data->body; + } + else { + return 0; + } +} + NODE *rb_get_method_body(VALUE klass, ID id, ID *idp); static VALUE -- cgit v1.2.3