summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_gc_wb_ary_promoted.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm1_gc_wb_ary_promoted.rb')
-rw-r--r--benchmark/bm_vm1_gc_wb_ary_promoted.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/benchmark/bm_vm1_gc_wb_ary_promoted.rb b/benchmark/bm_vm1_gc_wb_ary_promoted.rb
new file mode 100644
index 0000000000..612ec9f888
--- /dev/null
+++ b/benchmark/bm_vm1_gc_wb_ary_promoted.rb
@@ -0,0 +1,14 @@
+long_lived = []
+
+if RUBY_VERSION > "2.2.0"
+ 3.times{ GC.start(immediate_mark: false, lazy_sweep: false) }
+elsif
+ GC.start
+end
+
+i = 0
+short_lived = ''
+while i<30_000_000 # while loop 1
+ long_lived[0] = short_lived # write barrier
+ i+=1
+end