[前][次][番号順一覧][スレッド一覧]

ruby-changes:69339

From: Koichi <ko1@a...>
Date: Sat, 23 Oct 2021 01:33:05 +0900 (JST)
Subject: [ruby-changes:69339] a7776077be (master): add vm_ivar_of_class_set

https://git.ruby-lang.org/ruby.git/commit/?id=a7776077be

From a7776077be7b1754b4306f00694a8f4d42009159 Mon Sep 17 00:00:00 2001
From: Koichi Sasada <ko1@a...>
Date: Fri, 22 Oct 2021 18:06:36 +0900
Subject: add vm_ivar_of_class_set

benchmark for a class's ivar setter
---
 benchmark/vm_ivar_of_class_set.yml | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 benchmark/vm_ivar_of_class_set.yml

diff --git a/benchmark/vm_ivar_of_class_set.yml b/benchmark/vm_ivar_of_class_set.yml
new file mode 100644
index 0000000000..2ea5199423
--- /dev/null
+++ b/benchmark/vm_ivar_of_class_set.yml
@@ -0,0 +1,11 @@ https://github.com/ruby/ruby/blob/trunk/benchmark/vm_ivar_of_class_set.yml#L1
+prelude: |
+  class C
+    @a = 1
+    def self.a o
+      @a = o; @a = o; @a = o; @a = o; @a = o; @a = o;
+    end
+  end
+benchmark:
+  vm_ivar_of_class_set: |
+    a = C.a(nil)
+loop_count: 30000000
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]