summaryrefslogtreecommitdiff
path: root/benchmark/vm2_poly_singleton.yml
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-08 17:19:57 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-08 17:19:57 +0000
commit71f8406f6ca52a9301ec64b8d9ef64618051eef0 (patch)
tree7d90e3a1127f831c4cda77c8105f38ea2fc9a265 /benchmark/vm2_poly_singleton.yml
parent12068aa4e980ab32a0438408a519030e65dabf5e (diff)
benchmark/vm2_*.yml: fix ugly conversion errors
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark/vm2_poly_singleton.yml')
-rw-r--r--benchmark/vm2_poly_singleton.yml27
1 files changed, 16 insertions, 11 deletions
diff --git a/benchmark/vm2_poly_singleton.yml b/benchmark/vm2_poly_singleton.yml
index a22c3c3e9a..e58d7bfb37 100644
--- a/benchmark/vm2_poly_singleton.yml
+++ b/benchmark/vm2_poly_singleton.yml
@@ -1,13 +1,18 @@
-prelude: |
- class C1
- def m; 1; end
- end
-
- o1 = C1.new
- o2 = C1.new
- o2.singleton_class
+# loop_count is not utilized since `i` is involved in the script
benchmark:
vm2_poly_singleton: |
- o = (i % 2 == 0) ? o1 : o2
- o.m; o.m; o.m; o.m; o.m; o.m; o.m; o.m
-loop_count: 6000000
+ class C1
+ def m; 1; end
+ end
+
+ o1 = C1.new
+ o2 = C1.new
+ o2.singleton_class
+
+ i = 0
+ while i<6_000_000 # benchmark loop 2
+ o = (i % 2 == 0) ? o1 : o2
+ o.m; o.m; o.m; o.m; o.m; o.m; o.m; o.m
+ i += 1
+ end
+loop_count: 1