1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/-ext-
Jemma Issroff d594a5a8bd
This commit implements the Object Shapes technique in CRuby.
Object Shapes is used for accessing instance variables and representing the
"frozenness" of objects.  Object instances have a "shape" and the shape
represents some attributes of the object (currently which instance variables are
set and the "frozenness").  Shapes form a tree data structure, and when a new
instance variable is set on an object, that object "transitions" to a new shape
in the shape tree.  Each shape has an ID that is used for caching. The shape
structure is independent of class, so objects of different types can have the
same shape.

For example:

```ruby
class Foo
  def initialize
    # Starts with shape id 0
    @a = 1 # transitions to shape id 1
    @b = 1 # transitions to shape id 2
  end
end

class Bar
  def initialize
    # Starts with shape id 0
    @a = 1 # transitions to shape id 1
    @b = 1 # transitions to shape id 2
  end
end

foo = Foo.new # `foo` has shape id 2
bar = Bar.new # `bar` has shape id 2
```

Both `foo` and `bar` instances have the same shape because they both set
instance variables of the same name in the same order.

This technique can help to improve inline cache hits as well as generate more
efficient machine code in JIT compilers.

This commit also adds some methods for debugging shapes on objects.  See
`RubyVM::Shape` for more details.

For more context on Object Shapes, see [Feature: #18776]

Co-Authored-By: Aaron Patterson <tenderlove@ruby-lang.org>
Co-Authored-By: Eileen M. Uchitelle <eileencodes@gmail.com>
Co-Authored-By: John Hawthorn <john@hawthorn.email>
2022-09-28 08:26:21 -07:00
..
arith_seq Fix Array#[] with ArithmeticSequence with negative steps (#5739) 2022-08-11 19:16:49 +09:00
array
bignum
bug_reporter Match +YJIT in Ruby desc when testing segv (#6141) 2022-07-20 10:48:58 -04:00
class
debug Fix rb_profile_frames output includes dummy main thread frame 2022-07-26 10:43:44 +09:00
econv [Bug #18964] Add test for rb_econv_append 2022-08-20 16:25:30 +09:00
eval test/-ext-/eval/test_eval.rb: Prevent "assigned but unused variable" 2022-08-24 10:36:17 +09:00
exception
file
float
funcall
gvl
hash
integer
iseq_load
iter
load
marshal This commit implements the Object Shapes technique in CRuby. 2022-09-28 08:26:21 -07:00
method
num2int
path_to_class
popen_deadlock
postponed_job
proc
rational
st
string
struct
symbol [Bug #18905] Check symbol name types more strictly 2022-07-20 00:23:38 +09:00
thread GVL Instrumentation: remove the EXITED count assertion 2022-07-13 19:39:31 +02:00
thread_fd
time
tracepoint
typeddata
vm
wait
win32
test_abi.rb Stop defining RUBY_ABI_VERSION if released versions 2022-08-12 15:57:25 +09:00
test_bug-3571.rb
test_bug-5832.rb
test_bug-14834.rb
test_enumerator_kw.rb
test_notimplement.rb
test_printf.rb
test_random.rb
test_recursion.rb
test_scan_args.rb