diff options
Diffstat (limited to 'yjit/bindgen/src')
| -rw-r--r-- | yjit/bindgen/src/main.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/yjit/bindgen/src/main.rs b/yjit/bindgen/src/main.rs index c3a18c9c6f..212013d70c 100644 --- a/yjit/bindgen/src/main.rs +++ b/yjit/bindgen/src/main.rs @@ -259,6 +259,7 @@ fn main() { .allowlist_function("rb_yjit_obj_written") .allowlist_function("rb_yjit_str_simple_append") .allowlist_function("rb_ENCODING_GET") + .allowlist_function("rb_yjit_exit_locations_dict") // from vm_sync.h .allowlist_function("rb_vm_barrier") @@ -293,6 +294,9 @@ fn main() { .allowlist_function("rb_class_allocate_instance") .allowlist_function("rb_obj_info") + // From include/ruby/debug.h + .allowlist_function("rb_profile_frames") + // We define VALUE manually, don't import it .blocklist_type("VALUE") |
