* class.c (rb_prepend_module): make T_ICLASS object shady because

this T_ICLASS object seems to share method table with other class
  objects. It was causes WB miss.
  TODO: need to know the data structure.
* test/ruby/test_module.rb: add a test for WB miss.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42534 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2013-08-12 06:19:15 +00:00
parent 7f0a26e271
commit 9af743fe0e
3 changed files with 26 additions and 0 deletions

View file

@ -1760,4 +1760,20 @@ class TestModule < Test::Unit::TestCase
self.#{method}
INPUT
end
def test_prepend_gc
assert_separately [], %{
module Foo
end
class Object
prepend Foo
end
GC.start # make created T_ICLASS old (or remembered shady)
class Object # add methods into T_ICLASS (need WB if it is old)
def foo; end
attr_reader :bar
end
1_000_000.times{''} # cause GC
}
end
end