diff options
author | Alan Wu <[email protected]> | 2024-04-19 12:47:25 -0400 |
---|---|---|
committer | <[email protected]> | 2024-04-19 16:47:25 +0000 |
commit | c8783441952217c18e523749c821f82cd7e5d222 () | |
tree | ae668b335308723830fecaa6f0cf3ee159741b21 /yjit.h | |
parent | 2e80ceb6ff5be3ccb710006aa87e27f2f564fdd0 (diff) |
Revert "YJIT: Optimize local variables when EP == BP" (#10584)
This reverts commit 4cc58ea0b865f2fd20f1e881ddbd4c4fab0b072c. Since the change landed call-threshold=1 CI runs have been timing out. There has also been `verify-ctx` violations. Revert for now while we debug.
-rw-r--r-- | yjit.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -48,7 +48,6 @@ void rb_yjit_tracing_invalidate_all(void); void rb_yjit_show_usage(int help, int highlight, unsigned int width, int columns); void rb_yjit_lazy_push_frame(const VALUE *pc); void rb_yjit_invalidate_no_singleton_class(VALUE klass); -void rb_yjit_invalidate_ep_is_bp(const rb_iseq_t *iseq); #else // !USE_YJIT @@ -72,7 +71,6 @@ static inline void rb_yjit_constant_ic_update(const rb_iseq_t *const iseq, IC ic static inline void rb_yjit_tracing_invalidate_all(void) {} static inline void rb_yjit_lazy_push_frame(const VALUE *pc) {} static inline void rb_yjit_invalidate_no_singleton_class(VALUE klass) {} -static inline void rb_yjit_invalidate_ep_is_bp(const rb_iseq_t *iseq) {} #endif // #if USE_YJIT |