1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

YJIT: Show side_exit count in stats as well (#6666)

This commit is contained in:
Takashi Kokubun 2022-11-03 10:42:29 -07:00 committed by GitHub
parent ea77aa2fd0
commit 01d7e15757
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
Notes: git 2022-11-03 17:42:50 +00:00
Merged-By: maximecb <maximecb@ruby-lang.org>

View file

@ -231,6 +231,7 @@ module RubyVM::YJIT
$stderr.puts "code_gc_count: " + ("%10d" % stats[:code_gc_count])
$stderr.puts "num_gc_obj_refs: " + ("%10d" % stats[:num_gc_obj_refs])
$stderr.puts "side_exit_count: " + ("%10d" % side_exits)
$stderr.puts "total_exit_count: " + ("%10d" % total_exits)
$stderr.puts "total_insns_count: " + ("%10d" % total_insns_count)
$stderr.puts "vm_insns_count: " + ("%10d" % stats[:vm_insns_count])