mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8241244: CDS dynamic dump asserts in ArchivePtrBitmapCleaner::do_bit
Reviewed-by: minqi, coleenp
This commit is contained in:
parent
f0ba0dc6dc
commit
81353a56f9
1 changed files with 4 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue