mirror of
https://github.com/openjdk/jdk.git
synced 2026-04-23 21:30:26 +00:00
8241244: CDS dynamic dump asserts in ArchivePtrBitmapCleaner::do_bit
Reviewed-by: minqi, coleenp
This commit is contained in:
parent
f0ba0dc6dc
commit
81353a56f9
@ -1096,6 +1096,10 @@ bool SystemDictionaryShared::should_be_excluded(InstanceKlass* k) {
|
||||
warn_excluded(k, "In error state");
|
||||
return true;
|
||||
}
|
||||
if (k->has_been_redefined()) {
|
||||
warn_excluded(k, "Has been redefined");
|
||||
return true;
|
||||
}
|
||||
if (k->shared_classpath_index() < 0 && is_builtin(k)) {
|
||||
// These are classes loaded from unsupported locations (such as those loaded by JVMTI native
|
||||
// agent during dump time).
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user