mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +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
|
@ -703,8 +703,8 @@ class Klass : public Metadata {
|
|||
virtual const char* internal_name() const = 0;
|
||||
|
||||
// Verification
|
||||
virtual void verify_on(outputStream* st);
|
||||
void verify() { verify_on(tty); }
|
||||
virtual void verify_on(outputStream* st, bool check_dictionary);
|
||||
void verify(bool check_dictionary = true) { verify_on(tty, check_dictionary); }
|
||||
|
||||
#ifndef PRODUCT
|
||||
void verify_vtable_index(int index);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue