summaryrefslogtreecommitdiff
path: root/benchmark/vm2_case_lit.yml
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-08 15:35:22 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-08 15:35:22 +0000
commit9e62c93d0d7433faf7b2976fe89d5c708271823c (patch)
treeadd2beee72d179c8988abccadd383f6794447c56 /benchmark/vm2_case_lit.yml
parent95a187e0404cc161b3d5690d48ea4ff2a40ceb91 (diff)
benchmark: convert bm_vm2_*.rb to vm2_*.yml
This YAML transformation is needed to support whileloop2 time substituion by benchmark_driver.gem later. This commmit changes no benchmark behavior. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63892 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark/vm2_case_lit.yml')
-rw-r--r--benchmark/vm2_case_lit.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/benchmark/vm2_case_lit.yml b/benchmark/vm2_case_lit.yml
new file mode 100644
index 0000000000..ced0f10475
--- /dev/null
+++ b/benchmark/vm2_case_lit.yml
@@ -0,0 +1,22 @@
+benchmark:
+ vm2_case_lit: |
+ i = 0
+ @ret = [ "foo", true, false, :sym, 6, nil, 0.1, 0xffffffffffffffff ]
+ def foo(i)
+ @ret[i % @ret.size]
+ end
+
+ while i<6_000_000 # while loop 2
+ case foo(i)
+ when "foo" then :foo
+ when true then true
+ when false then false
+ when :sym then :sym
+ when 6 then :fix
+ when nil then nil
+ when 0.1 then :float
+ when 0xffffffffffffffff then :big
+ end
+ i += 1
+ end
+loop_count: 1