aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/vm1_lvar_init.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_lvar_init.yml
parent62e956383890ac268037f2d5544207d7aa6bcc55 (diff)
downloadruby-95a187e0404cc161b3d5690d48ea4ff2a40ceb91.tar.gz
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_lvar_init.yml')
-rw-r--r--benchmark/vm1_lvar_init.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/benchmark/vm1_lvar_init.yml b/benchmark/vm1_lvar_init.yml
new file mode 100644
index 0000000000..468bd24919
--- /dev/null
+++ b/benchmark/vm1_lvar_init.yml
@@ -0,0 +1,20 @@
+benchmark:
+ vm1_lvar_init: |
+ def m v
+ unless v
+ # unreachable code
+ v1 = v2 = v3 = v4 = v5 = v6 = v7 = v8 = v9 = v10 =
+ v11 = v12 = v13 = v14 = v15 = v16 = v17 = v18 = v19 = v20 =
+ v21 = v22 = v23 = v24 = v25 = v26 = v27 = v28 = v29 = v30 =
+ v31 = v32 = v33 = v34 = v35 = v36 = v37 = v38 = v39 = v40 =
+ v41 = v42 = v43 = v44 = v45 = v46 = v47 = v48 = v49 = v50 = 1
+ end
+ end
+
+ i = 0
+
+ while i<30_000_000 # while loop 1
+ i += 1
+ m i
+ end
+loop_count: 1