Skip to content

Commit 0800813

Browse files
committedNov 21, 2022
8293584: CodeCache::old_nmethods_do incorrectly filters is_unloading nmethods
Reviewed-by: eosterlund, kvn
1 parent 16ab754 commit 0800813

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
 

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

+4-5
Original file line numberDiff line numberDiff line change
@@ -1306,11 +1306,10 @@ void CodeCache::old_nmethods_do(MetadataClosure* f) {
13061306
if (old_compiled_method_table != NULL) {
13071307
length = old_compiled_method_table->length();
13081308
for (int i = 0; i < length; i++) {
1309-
CompiledMethod* cm = old_compiled_method_table->at(i);
1310-
// Only walk !is_unloading nmethods, the other ones will get removed by the GC.
1311-
if (!cm->is_unloading()) {
1312-
old_compiled_method_table->at(i)->metadata_do(f);
1313-
}
1309+
// Walk all methods saved on the last pass. Concurrent class unloading may
1310+
// also be looking at this method's metadata, so don't delete it yet if
1311+
// it is marked as unloaded.
1312+
old_compiled_method_table->at(i)->metadata_do(f);
13141313
}
13151314
}
13161315
log_debug(redefine, class, nmethod)("Walked %d nmethods for mark_on_stack", length);

0 commit comments

Comments
 (0)
Please sign in to comment.