blob: 00a454ba7265ea63ea4aeb4924c2dd95d81626b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
prelude: |
class C
attr_accessor :foo
end
long_lived = C.new
if RUBY_VERSION >= "2.2.0"
3.times{ GC.start(full_mark: false, immediate_mark: true, immediate_sweep: true) }
elsif
GC.start
end
short_lived = ''
benchmark:
vm_gc_wb_obj_promoted: |
long_lived.foo = short_lived # write barrier
loop_count: 30000000
|