summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-07-20 10:14:25 -0700
committerGitHub <noreply@github.com>2023-07-20 13:14:25 -0400
commitb41fc9b9a4ad2043a9fabce15814eade9b252569 (patch)
tree26413c23ab919cf6fced99886cc75507ac96d594 /doc
parentabce8583e253e96cf1268926ee7fd790f980ea96 (diff)
YJIT: Avoid undercounting retired_in_yjit (#8038)
* YJIT: Count the number of failed instructions * Rename yjit_insns_count to exec_instructions instead * Hoist out the exec_instruction counter
Notes
Notes: Merged-By: maximecb <maximecb@ruby-lang.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/yjit/yjit.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/yjit/yjit.md b/doc/yjit/yjit.md
index 850e8586cd..0ed0bdd055 100644
--- a/doc/yjit/yjit.md
+++ b/doc/yjit/yjit.md
@@ -226,7 +226,6 @@ 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 instruction have been executed in compiled code
: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