summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--iseq.c30
-rw-r--r--proc.c17
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 <ko1@atdot.net>
+
+ * 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 <akr@fsij.org>
* 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