aboutsummaryrefslogtreecommitdiffstats
path: root/yjit/bindgen/src/main.rs
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2024-02-09 14:12:24 -0800
committerGitHub <noreply@github.com>2024-02-09 22:12:24 +0000
commite7b0a01002323d9ed8eed9abca2a4979ebe9ae32 (patch)
tree2e66274fb4d260e38a368717a92d283e9d4ee7c4 /yjit/bindgen/src/main.rs
parentf7467e70e1803a230f9a0bf013c8134c1dde2c94 (diff)
downloadruby-e7b0a01002323d9ed8eed9abca2a4979ebe9ae32.tar.gz
YJIT: Add top ISEQ call counts to --yjit-stats (#9906)
Diffstat (limited to 'yjit/bindgen/src/main.rs')
-rw-r--r--yjit/bindgen/src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/yjit/bindgen/src/main.rs b/yjit/bindgen/src/main.rs
index a09ab068cb..899298dd2e 100644
--- a/yjit/bindgen/src/main.rs
+++ b/yjit/bindgen/src/main.rs
@@ -308,6 +308,7 @@ fn main() {
.allowlist_function("rb_yjit_mark_unused")
.allowlist_function("rb_yjit_get_page_size")
.allowlist_function("rb_yjit_iseq_builtin_attrs")
+ .allowlist_function("rb_yjit_iseq_inspect")
.allowlist_function("rb_yjit_builtin_function")
.allowlist_function("rb_set_cfp_(pc|sp)")
.allowlist_function("rb_yjit_multi_ractor_p")
@@ -377,6 +378,7 @@ fn main() {
// From gc.h and internal/gc.h
.allowlist_function("rb_class_allocate_instance")
.allowlist_function("rb_obj_info")
+ .allowlist_function("ruby_xfree")
// From include/ruby/debug.h
.allowlist_function("rb_profile_frames")