Skip to content

Commit 5ebd419

Browse files
committedJun 7, 2021
8267972: Inline cache cleaning is not monotonic
Reviewed-by: vlivanov, kvn
1 parent 6d1f3ac commit 5ebd419

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/hotspot/share/code/compiledIC.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ void CompiledIC::compute_monomorphic_entry(const methodHandle& method,
515515
CompiledMethod* method_code = method->code();
516516

517517
address entry = NULL;
518-
if (method_code != NULL && method_code->is_in_use()) {
518+
if (method_code != NULL && method_code->is_in_use() && !method_code->is_unloading()) {
519519
assert(method_code->is_compiled(), "must be compiled");
520520
// Call to compiled code
521521
//
@@ -641,7 +641,7 @@ void CompiledStaticCall::set(const StaticCallInfo& info) {
641641
void CompiledStaticCall::compute_entry(const methodHandle& m, bool caller_is_nmethod, StaticCallInfo& info) {
642642
CompiledMethod* m_code = m->code();
643643
info._callee = m;
644-
if (m_code != NULL && m_code->is_in_use()) {
644+
if (m_code != NULL && m_code->is_in_use() && !m_code->is_unloading()) {
645645
info._to_interpreter = false;
646646
info._entry = m_code->verified_entry_point();
647647
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.