summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-07-20 12:54:59 -0700
committerGitHub <noreply@github.com>2023-07-20 15:54:59 -0400
commitc4ef3d767bc901d410cbaaf91f9eba02556552a7 (patch)
tree0370abdcf6376499865d33628812590d0aef5a44 /doc
parentb71f79dd1782cf3af2462b879bcc4bc55f0bcd34 (diff)
YJIT: Rename exec_instruction to yjit_insns_count (#8102)
Notes
Notes: Merged-By: maximecb <maximecb@ruby-lang.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/yjit/yjit.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/yjit/yjit.md b/doc/yjit/yjit.md
index 0ed0bdd055..501a539d2c 100644
--- a/doc/yjit/yjit.md
+++ b/doc/yjit/yjit.md
@@ -216,7 +216,7 @@ irb(main):001:0> RubyVM::YJIT.runtime_stats
{:inline_code_size=>340745,
:outlined_code_size=>297664,
:all_stats=>true,
- :exec_instruction=>1547816,
+ :yjit_insns_count=>1547816,
:send_callsite_not_simple=>7267,
:send_kw_splat=>7,
:send_ivar_set_method=>72,
@@ -225,7 +225,7 @@ irb(main):001:0> RubyVM::YJIT.runtime_stats
Some of the counters include:
-:exec_instruction - how many Ruby bytecode instructions have been executed
+:yjit_insns_count - how many Ruby bytecode instructions have been executed
:binding_allocations - number of bindings allocated
:binding_set - number of variables set via a binding
:code_gc_count - number of garbage collections of compiled code since process start