hotspot/src/share/vm/memory/universe.hpp
changeset 17112 e49af4ba7755
parent 15463 8693f5fb0828
child 17370 59a0620561fa
child 18061 cd92ca4c1331
equal deleted inserted replaced
17111:77f553b98e63 17112:e49af4ba7755
   443   // For sharing -- fill in a list of known vtable pointers.
   443   // For sharing -- fill in a list of known vtable pointers.
   444   static void init_self_patching_vtbl_list(void** list, int count);
   444   static void init_self_patching_vtbl_list(void** list, int count);
   445 
   445 
   446   // Debugging
   446   // Debugging
   447   static bool verify_in_progress() { return _verify_in_progress; }
   447   static bool verify_in_progress() { return _verify_in_progress; }
   448   static void verify(bool silent, VerifyOption option);
   448   static void verify(VerifyOption option, const char* prefix, bool silent = VerifySilently);
   449   static void verify(bool silent) {
   449   static void verify(const char* prefix, bool silent = VerifySilently) {
   450     verify(silent, VerifyOption_Default /* option */);
   450     verify(VerifyOption_Default, prefix, silent);
   451   }
   451   }
   452   static void verify() {
   452   static void verify(bool silent = VerifySilently) {
   453     verify(false /* silent */);
   453     verify("", silent);
   454   }
   454   }
   455 
   455 
   456   static int  verify_count()       { return _verify_count; }
   456   static int  verify_count()       { return _verify_count; }
   457   // The default behavior is to call print_on() on gclog_or_tty.
   457   // The default behavior is to call print_on() on gclog_or_tty.
   458   static void print();
   458   static void print();