aboutsummaryrefslogtreecommitdiffstats
path: root/yjit/src/stats.rs
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com>2023-02-10 16:05:16 -0500
committerGitHub <noreply@github.com>2023-02-10 16:05:16 -0500
commita7e8eabeed54392588c7f01afe8be2e72d3c526d (patch)
tree1e25a83a5a33b21234853fc4b0666ea8ba56d9a4 /yjit/src/stats.rs
parent7ece23bf745306479f5a05d16ec64eb4460af2ba (diff)
downloadruby-a7e8eabeed54392588c7f01afe8be2e72d3c526d.tar.gz
YJIT: add counters for polymorphic send and send with known class (#7288)
Diffstat (limited to 'yjit/src/stats.rs')
-rw-r--r--yjit/src/stats.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/yjit/src/stats.rs b/yjit/src/stats.rs
index 9fff7f0e27..91b253ecfb 100644
--- a/yjit/src/stats.rs
+++ b/yjit/src/stats.rs
@@ -318,8 +318,11 @@ make_counters! {
num_gc_obj_refs,
- x86_call_rel32,
- x86_call_reg,
+ num_send,
+ num_send_known_class,
+ num_send_polymorphic,
+ num_send_x86_rel32,
+ num_send_x86_reg,
}
//===========================================================================