summaryrefslogtreecommitdiff
path: root/yjit/src/stats.rs
diff options
context:
space:
mode:
Diffstat (limited to 'yjit/src/stats.rs')
-rw-r--r--yjit/src/stats.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/yjit/src/stats.rs b/yjit/src/stats.rs
index e129cc2811..6bad8db7e7 100644
--- a/yjit/src/stats.rs
+++ b/yjit/src/stats.rs
@@ -141,7 +141,7 @@ macro_rules! incr_counter {
($counter_name:ident) => {
#[allow(unused_unsafe)]
{
- unsafe { COUNTERS.$counter_name += 1 }
+ unsafe { $crate::stats::COUNTERS.$counter_name += 1 }
}
};
}
@@ -244,6 +244,10 @@ make_counters! {
gbpp_block_param_modified,
gbpp_block_handler_not_iseq,
+
+ // Currently, it's out of the ordinary (might be impossible) for YJIT to leave gaps in
+ // executable memory, so this should be 0.
+ exec_mem_non_bump_alloc,
}
//===========================================================================