mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8016325: JVM hangs verifying system dictionary
Minimize redundant verifications of Klasses. Reviewed-by: hseigel, jmasa
This commit is contained in:
parent
196c8abc3d
commit
39a1c1d6c2
24 changed files with 30 additions and 68 deletions
|
@ -655,8 +655,8 @@ inline Metadata* Dependencies::DepStream::recorded_metadata_at(int i) {
|
|||
} else {
|
||||
o = _deps->oop_recorder()->metadata_at(i);
|
||||
}
|
||||
assert(o == NULL || o->is_metadata(),
|
||||
err_msg("Should be perm " PTR_FORMAT, o));
|
||||
assert(o == NULL || o->is_metaspace_object(),
|
||||
err_msg("Should be metadata " PTR_FORMAT, o));
|
||||
return o;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue