[前][次][番号順一覧][スレッド一覧]

ruby-changes:73809

From: Jemma <ko1@a...>
Date: Sat, 1 Oct 2022 04:41:24 +0900 (JST)
Subject: [ruby-changes:73809] 850cfb021e (master): Only assert ractor_shareable is consistent on ivar_set for T_OBJECT

https://git.ruby-lang.org/ruby.git/commit/?id=850cfb021e

From 850cfb021e2ee679bc62d3edc2246e5196630059 Mon Sep 17 00:00:00 2001
From: Jemma Issroff <jemmaissroff@g...>
Date: Fri, 30 Sep 2022 14:04:08 -0400
Subject: Only assert ractor_shareable is consistent on ivar_set for T_OBJECT

Before d594a5a8bd0756f65c078fcf5ce0098250cba141, we were only
asserting that the value on an ivar_get was ractor_sharable if the
object was a T_OBJECT and also ractor shareable. We should still
be doing this check only if the object is a T_OBJECT and ractor
shareable
---
 vm_insnhelper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index a915b1cf62..8d1369c604 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -1173,7 +1173,7 @@ vm_getivar(VALUE obj, ID id, const rb_iseq_t *iseq, IVC ic, const struct rb_call https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L1173
         }
 
         val = ivar_list[index];
-        VM_ASSERT(rb_ractor_shareable_p(obj) ? rb_ractor_shareable_p(val) : true);
+        VM_ASSERT(BUILTIN_TYPE(obj) == T_OBJECT && rb_ractor_shareable_p(obj) ? rb_ractor_shareable_p(val) : true);
     }
     else { // cache miss case
 #if RUBY_DEBUG
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]