ruby-changes:73306
From: Alan <ko1@a...>
Date: Tue, 30 Aug 2022 01:09:59 +0900 (JST)
Subject: [ruby-changes:73306] 342459576d (master): Use VALUE for callinfos that are on the heap (https://github.com/Shopify/ruby/pull/420)
https://git.ruby-lang.org/ruby.git/commit/?id=342459576d From 342459576d4dc57a4c2e92c95c5ff225bf9df763 Mon Sep 17 00:00:00 2001 From: Alan Wu <XrXr@u...> Date: Thu, 18 Aug 2022 11:00:58 -0400 Subject: Use VALUE for callinfos that are on the heap (https://github.com/Shopify/ruby/pull/420) Yet another case of `jit_mov_gc_ptr()` being yanked out during the transition to the new backend, causing a crash after object movement. The intresting wrinkle with this one is that not all callinfos are GC'ed objects, so the old code had an implicit assumption. https://github.com/ruby/ruby/blob/b0b9f7201acab05c2a3ad92c3043a1f01df3e17f/yjit/src/codegen.rs#L4087-L4095 --- yjit/src/codegen.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs index 01ce65deb1..b94ddc32d5 100644 --- a/yjit/src/codegen.rs +++ b/yjit/src/codegen.rs @@ -4033,8 +4033,11 @@ fn gen_send_cfunc( https://github.com/ruby/ruby/blob/trunk/yjit/src/codegen.rs#L4033 if !kw_arg.is_null() { // Build a hash from all kwargs passed asm.comment("build_kwhash"); + let imemo_ci = VALUE(ci as usize); + assert_ne!(0, unsafe { rb_IMEMO_TYPE_P(imemo_ci, imemo_callinfo) }, + "we assume all callinfos with kwargs are on the GC heap"); let sp = asm.lea(ctx.sp_opnd(0)); - let kwargs = asm.ccall(build_kwhash as *const u8, vec![Opnd::UImm(ci as u64), sp]); + let kwargs = asm.ccall(build_kwhash as *const u8, vec![imemo_ci.into(), sp]); // Replace the stack location at the start of kwargs with the new hash let stack_opnd = ctx.stack_opnd(argc - passed_argc); -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/