From dfefbcad5fbda9d28dacd83a34b08b682ec58152 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 15 Jul 2009 14:59:41 +0000 Subject: * method.h, vm_core.h: add rb_method_entry_t. Remove nodes around method management. This change affect some VM control stack structure. * vm.c, vm_insnhelper.c, vm_method.c, vm_eval.c: ditto. and make some refactoring. * insns.def, class.c, eval.c, proc.c, vm_dump.c : ditto. * vm_core.h, compile.c (iseq_specialized_instruction): remove VM_CALL_SEND_BIT. use another optimization tech for Kernel#send. * node.h: remove unused node types. * ext/objspace/objspace.c (count_nodes): ditto. * gc.c: add mark/free functions for method entry. * include/ruby/intern.h: remove decl of rb_define_notimplement_method_id(). nobody can use it because noex is not opend. * iseq.c (iseq_mark): fix to check ic_method is available. * iseq.c (rb_iseq_disasm): fix to use rb_method_get_iseq(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24128 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index cd156b0a6..e89536bbd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,30 @@ +Wed Jul 15 23:46:55 2009 Koichi Sasada + + * method.h, vm_core.h: add rb_method_entry_t. Remove nodes around + method management. This change affect some VM control stack structure. + + * vm.c, vm_insnhelper.c, vm_method.c, vm_eval.c: ditto. and make some + refactoring. + + * insns.def, class.c, eval.c, proc.c, vm_dump.c : ditto. + + * vm_core.h, compile.c (iseq_specialized_instruction): remove + VM_CALL_SEND_BIT. use another optimization tech for Kernel#send. + + * node.h: remove unused node types. + + * ext/objspace/objspace.c (count_nodes): ditto. + + * gc.c: add mark/free functions for method entry. + + * include/ruby/intern.h: remove decl of + rb_define_notimplement_method_id(). nobody can use it + because noex is not opend. + + * iseq.c (iseq_mark): fix to check ic_method is available. + + * iseq.c (rb_iseq_disasm): fix to use rb_method_get_iseq(). + Wed Jul 15 23:45:11 2009 Koichi Sasada * dir.c (push_glob): fix GC problem. -- cgit