mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00

This patch contains several ideas: (1) Disposable inline method cache (IMC) for race-free inline method cache * Making call-cache (CC) as a RVALUE (GC target object) and allocate new CC on cache miss. * This technique allows race-free access from parallel processing elements like RCU. (2) Introduce per-Class method cache (pCMC) * Instead of fixed-size global method cache (GMC), pCMC allows flexible cache size. * Caching CCs reduces CC allocation and allow sharing CC's fast-path between same call-info (CI) call-sites. (3) Invalidate an inline method cache by invalidating corresponding method entries (MEs) * Instead of using class serials, we set "invalidated" flag for method entry itself to represent cache invalidation. * Compare with using class serials, the impact of method modification (add/overwrite/delete) is small. * Updating class serials invalidate all method caches of the class and sub-classes. * Proposed approach only invalidate the method cache of only one ME. See [Feature #16614] for more details.
64 lines
908 B
Ruby
64 lines
908 B
Ruby
# -*- coding: us-ascii -*-
|
|
# frozen_string_literal: true
|
|
|
|
require 'test/unit'
|
|
|
|
class TestMethod < Test::Unit::TestCase
|
|
def test_alias
|
|
m0 = Module.new do
|
|
def foo; :M0 end
|
|
end
|
|
m1 = Module.new do
|
|
include m0
|
|
end
|
|
c = Class.new do
|
|
include m1
|
|
alias bar foo
|
|
end
|
|
d = Class.new(c) do
|
|
end
|
|
|
|
test = -> do
|
|
d.new.bar
|
|
end
|
|
|
|
assert_equal :M0, test[]
|
|
|
|
c.class_eval do
|
|
def bar
|
|
:C
|
|
end
|
|
end
|
|
|
|
assert_equal :C, test[]
|
|
end
|
|
|
|
def test_zsuper
|
|
assert_separately [], <<-EOS
|
|
class C
|
|
private def foo
|
|
:C
|
|
end
|
|
end
|
|
|
|
class D < C
|
|
public :foo
|
|
end
|
|
|
|
class E < D; end
|
|
class F < E; end
|
|
|
|
test = -> do
|
|
F.new().foo
|
|
end
|
|
|
|
assert_equal :C, test[]
|
|
|
|
class E
|
|
def foo; :E; end
|
|
end
|
|
|
|
assert_equal :E, test[]
|
|
EOS
|
|
end
|
|
end
|