diff options
author | Takashi Kokubun <[email protected]> | 2023-03-14 15:38:58 -0700 |
---|---|---|
committer | <[email protected]> | 2023-03-14 15:38:58 -0700 |
commit | 70ba3102129dbaf6c943d1ed042103e0238842f4 () | |
tree | e0337226448cc96979a9cd382b7f22997c36d387 /yjit/bindgen/src/main.rs | |
parent | 868f03cce1a2d7a4df9b03b8338e3af4c69041d0 (diff) |
YJIT: Introduce no_gc attribute (#7511)
Notes: Merged-By: k0kubun <[email protected]>
-rw-r--r-- | yjit/bindgen/src/main.rs | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -286,6 +286,7 @@ fn main() { .allowlist_var("VM_ENV_DATA_INDEX_FLAGS") .allowlist_var("VM_ENV_DATA_SIZE") .allowlist_function("rb_iseq_path") // From yjit.c .allowlist_function("rb_iseq_(get|set)_yjit_payload") @@ -296,8 +297,8 @@ fn main() { .allowlist_function("rb_yjit_mark_executable") .allowlist_function("rb_yjit_mark_unused") .allowlist_function("rb_yjit_get_page_size") - .allowlist_function("rb_leaf_invokebuiltin_iseq_p") - .allowlist_function("rb_leaf_builtin_function") .allowlist_function("rb_set_cfp_(pc|sp)") .allowlist_function("rb_cfp_get_iseq") .allowlist_function("rb_yjit_multi_ractor_p") |