comparison src/share/vm/memory/universe.hpp @ 10186:b06ac540229e

8013132: Add a flag to turn off the output of the verbose verification code Reviewed-by: johnc, brutisso
author stefank
date Wed, 24 Apr 2013 20:13:37 +0200
parents 10d5f25a7c67
children 92ef81e2f571 7ee0d5c53c78
comparison
equal deleted inserted replaced
10185:d50cc62e94ff 10186:b06ac540229e
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();