mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
vm_insnhelper.c: disable fastpath if splat
* vm_insnhelper.c (vm_callee_setup_arg): disable fastpath if splat argument, since argc may differ for each calls. [ruby-core:61422] [Bug #9622] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45321 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ab9e4d11a3
commit
c28b5723f6
3 changed files with 23 additions and 2 deletions
|
@ -1,4 +1,8 @@
|
|||
Wed Mar 12 11:18:40 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
Wed Mar 12 11:19:03 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* vm_insnhelper.c (vm_callee_setup_arg): disable fastpath if splat
|
||||
argument, since argc may differ for each calls.
|
||||
[ruby-core:61422] [Bug #9622]
|
||||
|
||||
* vm_insnhelper.c (vm_callee_setup_arg): turn a macro into an
|
||||
inline function.
|
||||
|
|
|
@ -16,4 +16,19 @@ class TestCall < Test::Unit::TestCase
|
|||
assert_equal([1, 2, 3, 4], aaa(1, 2, 3, 4))
|
||||
assert_equal([1, 2, 3, 4], aaa(1, *[2, 3, 4]))
|
||||
end
|
||||
|
||||
def test_callinfo
|
||||
bug9622 = '[ruby-core:61422] [Bug #9622]'
|
||||
o = Class.new do
|
||||
def foo(*args)
|
||||
bar(:foo, *args)
|
||||
end
|
||||
def bar(name)
|
||||
name
|
||||
end
|
||||
end.new
|
||||
e = assert_raise(ArgumentError) {o.foo(100)}
|
||||
assert_nothing_raised(ArgumentError) {o.foo}
|
||||
assert_raise_with_message(ArgumentError, e.message, bug9622) {o.foo(100)}
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1210,7 +1210,9 @@ vm_callee_setup_arg(rb_thread_t *th, rb_call_info_t *ci, const rb_iseq_t *iseq,
|
|||
(UNLIKELY(ci->flag & VM_CALL_TAILCALL) ?
|
||||
vm_call_iseq_setup_tailcall :
|
||||
vm_call_iseq_setup_normal),
|
||||
!is_lambda && !(ci->me->flag & NOEX_PROTECTED));
|
||||
(!is_lambda &&
|
||||
!(ci->flag & VM_CALL_ARGS_SPLAT) && /* argc may differ for each calls */
|
||||
!(ci->me->flag & NOEX_PROTECTED)));
|
||||
}
|
||||
else {
|
||||
ci->aux.opt_pc = vm_callee_setup_arg_complex(th, ci, iseq, argv);
|
||||
|
|
Loading…
Add table
Reference in a new issue