summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRafael Mendonça França <rafael@franca.dev>2023-08-23 12:54:07 -0400
committerJean Boussier <jean.boussier@gmail.com>2023-08-23 19:20:55 +0200
commit774845284fafd231be2208576da6669383f25998 (patch)
treeaeaf64355a3a57c1688bfe6fe3f4ce6a5f273158 /doc
parentc837e1adfbcdf4d4df65f62d63c51c1111114b5f (diff)
Change yjit stats list to be a unordered list
Without using a list, this show as a single paragraph with all stats descriptions being in one single line
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/8268
Diffstat (limited to 'doc')
-rw-r--r--doc/yjit/yjit.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/yjit/yjit.md b/doc/yjit/yjit.md
index a55b04c132..8aac4ec555 100644
--- a/doc/yjit/yjit.md
+++ b/doc/yjit/yjit.md
@@ -224,17 +224,17 @@ irb(main):001:0> RubyVM::YJIT.runtime_stats
Some of the counters include:
-: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
-:vm_insns_count - number of instructions executed by the Ruby interpreter
-:compiled_iseq_count - number of bytecode sequences compiled
-:inline_code_size - size in bytes of compiled YJIT blocks
-:outline_code_size - size in bytes of YJIT error-handling compiled code
-:side_exit_count - number of side exits taken at runtime
-:total_exit_count - number of exits, including side exits, taken at runtime
-:avg_len_in_yjit - avg. number of instructions in compiled blocks before exiting to interpreter
+* :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
+* :vm_insns_count - number of instructions executed by the Ruby interpreter
+* :compiled_iseq_count - number of bytecode sequences compiled
+* :inline_code_size - size in bytes of compiled YJIT blocks
+* :outline_code_size - size in bytes of YJIT error-handling compiled code
+* :side_exit_count - number of side exits taken at runtime
+* :total_exit_count - number of exits, including side exits, taken at runtime
+* :avg_len_in_yjit - avg. number of instructions in compiled blocks before exiting to interpreter
Counters starting with "exit_" show reasons for YJIT code taking a side exit (return to the interpreter.) See yjit_hacking.md for more details.