diff options
author | Takashi Kokubun <[email protected]> | 2024-02-09 09:12:45 -0800 |
---|---|---|
committer | <[email protected]> | 2024-02-09 12:12:45 -0500 |
commit | 717adb564b4dd4a7e34b7b4b734795d7eb272c89 () | |
tree | 0d81c6068f39332957ed8e5d2603b7c0fa111091 /yjit.rb | |
parent | 80490acfb601557497d5c10841fc5493e691e6da (diff) |
YJIT: Fallback megamorphic opt_case_dis (#9894)
-rw-r--r-- | yjit.rb | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -323,8 +323,9 @@ module RubyVM::YJIT out.puts "num_send_x86_rel32: " + format_number(13, stats[:num_send_x86_rel32]) out.puts "num_send_x86_reg: " + format_number(13, stats[:num_send_x86_reg]) end - out.puts "num_getivar_megamorphic: " + format_number(13, stats[:num_getivar_megamorphic]) - out.puts "num_setivar_megamorphic: " + format_number(13, stats[:num_setivar_megamorphic]) out.puts "num_throw: " + format_number(13, stats[:num_throw]) out.puts "num_throw_break: " + format_number_pct(13, stats[:num_throw_break], stats[:num_throw]) out.puts "num_throw_retry: " + format_number_pct(13, stats[:num_throw_retry], stats[:num_throw]) |