From aceee71c35e0b387691836e756b4e008efd84cf1 Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Thu, 29 Feb 2024 10:57:25 -0800 Subject: [PATCH] Avoid a hash allocation when calling def f(kw: 1) with keyword splat c20e819e8b04e84a4103ca9a036022543459c213 made calling a method that accepts specific keywords but not a keyword splat with a keyword splat allocating a hash when it previously did not. Instead of duplicating the hash and removing hash entries, lookup in the provided hash without duplicating the hash, and track to make sure all hash entries in the hash were looked up (extra hash entries would be errors). --- vm_args.c | 50 ++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 40 insertions(+), 10 deletions(-) diff --git a/vm_args.c b/vm_args.c index ec5df37aabf252..d1a7695c6e39cc 100644 --- a/vm_args.c +++ b/vm_args.c @@ -398,7 +398,7 @@ args_setup_kw_parameters(rb_execution_context_t *const ec, const rb_iseq_t *cons static void args_setup_kw_parameters_from_kwsplat(rb_execution_context_t *const ec, const rb_iseq_t *const iseq, - VALUE keyword_hash, VALUE *const locals) + VALUE keyword_hash, VALUE *const locals, bool remove_hash_value) { const ID *acceptable_keywords = ISEQ_BODY(iseq)->param.keyword->table; const int req_key_num = ISEQ_BODY(iseq)->param.keyword->required_num; @@ -407,13 +407,22 @@ args_setup_kw_parameters_from_kwsplat(rb_execution_context_t *const ec, const rb VALUE missing = 0; int i, di; int unspecified_bits = 0; + size_t keyword_size = RHASH_SIZE(keyword_hash); VALUE unspecified_bits_value = Qnil; for (i=0; ikw_argv, kw_arg->keyword_len, kw_arg->keywords, klocals); } else if (!NIL_P(keyword_hash)) { - keyword_hash = check_kwrestarg(keyword_hash, &kw_flag); - args_setup_kw_parameters_from_kwsplat(ec, iseq, keyword_hash, klocals); + bool remove_hash_value = false; + if (ISEQ_BODY(iseq)->param.flags.has_kwrest) { + keyword_hash = check_kwrestarg(keyword_hash, &kw_flag); + remove_hash_value = true; + } + args_setup_kw_parameters_from_kwsplat(ec, iseq, keyword_hash, klocals, remove_hash_value); } else { VM_ASSERT(args_argc(args) == 0);