From 52865263467b48c0f5af6d9548972dd1f9e5bee1 Mon Sep 17 00:00:00 2001 From: Koichi Sasada Date: Fri, 25 Sep 2020 03:19:27 +0900 Subject: [PATCH] frozen T_OBJECT can be shareable. If an T_OBJECT object is frozen and all ivars are shareable, the object should be shareable. --- bootstraptest/test_ractor.rb | 27 +++++++++++++++++++++++++++ ractor.c | 23 +++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/bootstraptest/test_ractor.rb b/bootstraptest/test_ractor.rb index b6f00de515..c693a9c496 100644 --- a/bootstraptest/test_ractor.rb +++ b/bootstraptest/test_ractor.rb @@ -424,6 +424,33 @@ assert_equal "[[[1, true], [:sym, true], [:xyzzy, true], [\"frozen\", true], " \ [sr, ur].inspect } +# frozen Objects are shareable +assert_equal [false, true, false].inspect, %q{ + class C + def initialize freeze + @a = 1 + @b = :sym + @c = 'frozen_str' + @c.freeze if freeze + @d = true + end + end + + def check obj1 + obj2 = Ractor.new obj1 do |obj| + obj + end.take + + obj1.object_id == obj2.object_id + end + + results = [] + results << check(C.new(true)) # false + results << check(C.new(true).freeze) # true + results << check(C.new(false).freeze) # false +} + + # move example2: String # touching moved object causes an error assert_equal 'hello world', %q{ diff --git a/ractor.c b/ractor.c index a7e588a9d8..fbc9192af8 100644 --- a/ractor.c +++ b/ractor.c @@ -1776,6 +1776,22 @@ rb_ractor_shareable_p_hash_i(VALUE key, VALUE value, VALUE arg) return ST_CONTINUE; } +static bool +ractor_obj_ivars_shareable_p(VALUE obj) +{ + uint32_t len = ROBJECT_NUMIV(obj); + VALUE *ptr = ROBJECT_IVPTR(obj); + + for (uint32_t i=0; i