From f95ea86dc45825ab320158cccc6c8b896aa74534 Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Tue, 8 Aug 2023 18:09:50 -0400 Subject: [PATCH] YJIT: Correct name of a counter --- yjit/src/codegen.rs | 6 +++--- yjit/src/stats.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs index 721b2a9b071093..3249b92d882e94 100644 --- a/yjit/src/codegen.rs +++ b/yjit/src/codegen.rs @@ -5603,7 +5603,7 @@ fn gen_send_iseq( exit_if_has_kwrest(asm, iseq)?; exit_if_splat_and_ruby2_keywords(asm, jit, flags)?; exit_if_has_rest_and_captured(asm, iseq_has_rest, captured_opnd)?; - exit_if_has_rest_and_send(asm, iseq_has_rest, flags)?; + exit_if_has_rest_and_splat(asm, iseq_has_rest, flags)?; exit_if_has_rest_and_supplying_kws(asm, iseq_has_rest, iseq, supplying_kws)?; exit_if_supplying_kw_and_has_no_kw(asm, supplying_kws, iseq)?; exit_if_supplying_kws_and_accept_no_kwargs(asm, supplying_kws, iseq)?; @@ -6347,8 +6347,8 @@ fn exit_if_has_rest_and_captured(asm: &mut Assembler, iseq_has_rest: bool, captu } #[must_use] -fn exit_if_has_rest_and_send( asm: &mut Assembler, iseq_has_rest: bool, flags: u32) -> Option<()> { - exit_if(asm, iseq_has_rest && flags & VM_CALL_ARGS_SPLAT != 0, Counter::send_iseq_has_rest_and_send) +fn exit_if_has_rest_and_splat( asm: &mut Assembler, iseq_has_rest: bool, flags: u32) -> Option<()> { + exit_if(asm, iseq_has_rest && flags & VM_CALL_ARGS_SPLAT != 0, Counter::send_iseq_has_rest_and_splat) } #[must_use] diff --git a/yjit/src/stats.rs b/yjit/src/stats.rs index c9cf95dacaa0f6..0cd4ff2f442ba7 100644 --- a/yjit/src/stats.rs +++ b/yjit/src/stats.rs @@ -268,7 +268,7 @@ make_counters! { send_send_getter, send_send_builtin, send_iseq_has_rest_and_captured, - send_iseq_has_rest_and_send, + send_iseq_has_rest_and_splat, send_iseq_has_rest_and_kw_supplied, send_iseq_has_rest_opt_and_block, send_bmethod_ractor,