comparison src/share/vm/oops/klass.hpp @ 11034:e0c9a1d29eb4

8016325: JVM hangs verifying system dictionary Summary: Minimize redundant verifications of Klasses. Reviewed-by: hseigel, jmasa
author coleenp
date Mon, 24 Jun 2013 18:55:46 -0400
parents 6bd680e9ea35
children 71180a6e5080
comparison
equal deleted inserted replaced
11033:d9eed26d638a 11034:e0c9a1d29eb4
701 virtual void oop_print_on (oop obj, outputStream* st); 701 virtual void oop_print_on (oop obj, outputStream* st);
702 702
703 virtual const char* internal_name() const = 0; 703 virtual const char* internal_name() const = 0;
704 704
705 // Verification 705 // Verification
706 virtual void verify_on(outputStream* st); 706 virtual void verify_on(outputStream* st, bool check_dictionary);
707 void verify() { verify_on(tty); } 707 void verify(bool check_dictionary = true) { verify_on(tty, check_dictionary); }
708 708
709 #ifndef PRODUCT 709 #ifndef PRODUCT
710 void verify_vtable_index(int index); 710 void verify_vtable_index(int index);
711 #endif 711 #endif
712 712