diff options
author | Nobuyoshi Nakada <[email protected]> | 2025-02-13 15:59:16 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2025-02-13 18:01:03 +0900 |
commit | 4a67ef09ccd703047552b740431cfe15e32451f4 () | |
tree | 1092e15836655fde8935c7788eb0a411e8c9ca42 /vm_trace.c | |
parent | d35cc0cc772b48c5aaba354e7084278da68f44e4 (diff) |
[Feature #21116] Extract RJIT as a third-party gem
Notes: Merged: https://.com/ruby/ruby/pull/12740
-rw-r--r-- | vm_trace.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -30,7 +30,6 @@ #include "internal/symbol.h" #include "internal/thread.h" #include "iseq.h" -#include "rjit.h" #include "ruby/atomic.h" #include "ruby/debug.h" #include "vm_core.h" @@ -136,7 +135,6 @@ update_global_event_hook(rb_event_flag_t prev_events, rb_event_flag_t new_events // Do this after event flags updates so other ractors see updated vm events // when they wake up. rb_yjit_tracing_invalidate_all(); - rb_rjit_tracing_invalidate_all(new_iseq_events); } } @@ -1286,7 +1284,6 @@ rb_tracepoint_enable_for_target(VALUE tpval, VALUE target, VALUE target_line) } rb_yjit_tracing_invalidate_all(); - rb_rjit_tracing_invalidate_all(tp->events); ruby_vm_event_local_num++; |