src/hotspot/share/classfile/verifier.cpp
changeset 51697 49e1b21d9878
parent 51444 3e5d28e6de32
child 51997 9ce37fa2e179
equal deleted inserted replaced
51696:f912267934e0 51697:49e1b21d9878
   128     st->print_cr("Verification for %s failed", klassName);
   128     st->print_cr("Verification for %s failed", klassName);
   129   }
   129   }
   130   st->print_cr("End class verification for: %s", klassName);
   130   st->print_cr("End class verification for: %s", klassName);
   131 }
   131 }
   132 
   132 
   133 bool Verifier::verify(InstanceKlass* klass, Verifier::Mode mode, bool should_verify_class, TRAPS) {
   133 bool Verifier::verify(InstanceKlass* klass, bool should_verify_class, TRAPS) {
   134   HandleMark hm(THREAD);
   134   HandleMark hm(THREAD);
   135   ResourceMark rm(THREAD);
   135   ResourceMark rm(THREAD);
   136 
   136 
   137   // Eagerly allocate the identity hash code for a klass. This is a fallout
   137   // Eagerly allocate the identity hash code for a klass. This is a fallout
   138   // from 6320749 and 8059924: hash code generator is not supposed to be called
   138   // from 6320749 and 8059924: hash code generator is not supposed to be called