summaryrefslogtreecommitdiff
path: root/benchmark/vm1_gc_short_with_complex_long.yml
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-08 15:12:24 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-08 15:12:24 +0000
commit95a187e0404cc161b3d5690d48ea4ff2a40ceb91 (patch)
tree05fecceef1b49122d9b219ab49a7bb1aa2e3f33c /benchmark/vm1_gc_short_with_complex_long.yml
parent62e956383890ac268037f2d5544207d7aa6bcc55 (diff)
benchmark: convert bm_vm1_*.rb to vm1_*.yml
This YAML transformation is needed to support whileloop time substituion by benchmark_driver.gem later. This commmit changes no benchmark behavior. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63891 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark/vm1_gc_short_with_complex_long.yml')
-rw-r--r--benchmark/vm1_gc_short_with_complex_long.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/benchmark/vm1_gc_short_with_complex_long.yml b/benchmark/vm1_gc_short_with_complex_long.yml
new file mode 100644
index 0000000000..2a3ba2f0c8
--- /dev/null
+++ b/benchmark/vm1_gc_short_with_complex_long.yml
@@ -0,0 +1,29 @@
+benchmark:
+ vm1_gc_short_with_complex_long: |
+ def nested_hash h, n
+ if n == 0
+ ''
+ else
+ 10.times{
+ h[Object.new] = nested_hash(h, n-1)
+ }
+ end
+ end
+
+ long_lived = Hash.new
+ nested_hash long_lived, 6
+
+ GC.start
+ GC.start
+
+ i = 0
+ while i<30_000_000 # while loop 1
+ a = '' # short-lived String
+ b = ''
+ c = ''
+ d = ''
+ e = ''
+ f = ''
+ i+=1
+ end
+loop_count: 1