diff options
| author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-01-06 00:24:59 +0000 |
|---|---|---|
| committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-01-06 00:24:59 +0000 |
| commit | 2725f1eb4ceb3a1aba0654c58ebfbb8adef7a9f3 (patch) | |
| tree | f4252badb58ec3ab74af8c2f2a99db6ccbf4d4ab /ChangeLog | |
| parent | 9c2436e55289f38dd4fc9801badb65562610b69c (diff) | |
| download | ruby-2725f1eb4ceb3a1aba0654c58ebfbb8adef7a9f3.tar.gz ruby-2725f1eb4ceb3a1aba0654c58ebfbb8adef7a9f3.tar.xz ruby-2725f1eb4ceb3a1aba0654c58ebfbb8adef7a9f3.zip | |
* insns.def : support direct method dispatch with "send" or "funcall".
This means that "obj.send :m" skips "BasicObject#send" invocation
(method frame creation, etc) and "obj.m" invokes directly.
If you make backtrace, there are no enties of "send" method.
* compile.c (iseq_specialized_instruction) : fix to support above
* eval.c : ditto (remove "static" from rb_f_send and rb_f_funcall
* yarvcore.c : ditto (add a external IDs for compiler)
* yarvcore.h : ditto (add a VM_CALL_SEND_BIT macro)
* yarvtest/test_method.rb : add tests for above changes
* eval.c : remove unused "Kernel#send" declaration
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11488 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -1,3 +1,22 @@ +Sat Jan 6 09:10:52 2007 Koichi Sasada <ko1@atdot.net> + + * insns.def : support direct method dispatch with "send" or "funcall". + This means that "obj.send :m" skips "BasicObject#send" invocation + (method frame creation, etc) and "obj.m" invokes directly. + If you make backtrace, there are no enties of "send" method. + + * compile.c (iseq_specialized_instruction) : fix to support above + + * eval.c : ditto (remove "static" from rb_f_send and rb_f_funcall + + * yarvcore.c : ditto (add a external IDs for compiler) + + * yarvcore.h : ditto (add a VM_CALL_SEND_BIT macro) + + * yarvtest/test_method.rb : add tests for above changes + + * eval.c : remove unused "Kernel#send" declaration + Sat Jan 6 08:29:17 2007 Masaki Suketa <masaki.suketa@nifty.ne.jp> * ext/win32ole/win32ole.c (Init_win32ole): add |
