From 0d63600e4f9d45e9814191e5ca7aecf9ef28a9df Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Mon, 28 Jun 2021 15:00:35 -0700 Subject: Partial revert of ceebc7fc98d I'm looking through the places where YJIT needs notifications. It looks like these changes to gc.c and vm_callinfo.h have become unnecessary since 84ab77ba592. This commit just makes the diff against upstream smaller, but otherwise shouldn't change any behavior. --- vm_callinfo.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'vm_callinfo.h') diff --git a/vm_callinfo.h b/vm_callinfo.h index 11c23e02cc..d5f4388fa8 100644 --- a/vm_callinfo.h +++ b/vm_callinfo.h @@ -409,7 +409,16 @@ vm_cc_method_missing_reason_set(const struct rb_callcache *cc, enum method_missi *(enum method_missing_reason *)&cc->aux_.method_missing_reason = reason; } -void rb_vm_cc_invalidate(const struct rb_callcache *cc); +static inline void +vm_cc_invalidate(const struct rb_callcache *cc) +{ + VM_ASSERT(IMEMO_TYPE_P(cc, imemo_callcache)); + VM_ASSERT(cc != vm_cc_empty()); + VM_ASSERT(cc->klass != 0); // should be enable + + *(VALUE *)&cc->klass = 0; + RB_DEBUG_COUNTER_INC(cc_ent_invalidate); +} /* calldata */ -- cgit v1.2.1