File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -76,17 +76,16 @@ class << self
76
76
# Format and print out counters
77
77
def _print_stats
78
78
counters = runtime_stats
79
-
80
79
return unless counters
81
80
82
81
$stderr. puts ( "***YJIT: Printing runtime counters from yjit.rb***" )
83
-
84
- $stderr. puts "Number of bindings allocated: %d\n " % counters [ :binding_allocations ]
85
- $stderr. puts "Number of locals modified through binding: %d\n " % counters [ :binding_set ]
82
+ $stderr. puts ( "Number of bindings allocated: %d\n " % counters [ :binding_allocations ] )
83
+ $stderr. puts ( "Number of locals modified through binding: %d\n " % counters [ :binding_set ] )
86
84
87
85
print_counters ( counters , prefix : 'oswb_' , prompt : 'opt_send_without_block exit reasons: ' )
88
86
print_counters ( counters , prefix : 'leave_' , prompt : 'leave exit reasons: ' )
89
87
print_counters ( counters , prefix : 'getivar_' , prompt : 'getinstancevariable exit reasons:' )
88
+ print_counters ( counters , prefix : 'setivar_' , prompt : 'setinstancevariable exit reasons:' )
90
89
print_counters ( counters , prefix : 'oaref_' , prompt : 'opt_aref exit reasons: ' )
91
90
end
92
91
You can’t perform that action at this time.
0 commit comments