src/share/vm/memory/universe.hpp

changeset 5247
7ee0d5c53c78
parent 5242
b295e132102d
parent 5018
b06ac540229e
child 5249
ce9ecec70f99
equal deleted inserted replaced
5246:4b52137b07c9 5247:7ee0d5c53c78
447 // For sharing -- fill in a list of known vtable pointers. 447 // For sharing -- fill in a list of known vtable pointers.
448 static void init_self_patching_vtbl_list(void** list, int count); 448 static void init_self_patching_vtbl_list(void** list, int count);
449 449
450 // Debugging 450 // Debugging
451 static bool verify_in_progress() { return _verify_in_progress; } 451 static bool verify_in_progress() { return _verify_in_progress; }
452 static void verify(bool silent, VerifyOption option); 452 static void verify(VerifyOption option, const char* prefix, bool silent = VerifySilently);
453 static void verify(bool silent) { 453 static void verify(const char* prefix, bool silent = VerifySilently) {
454 verify(silent, VerifyOption_Default /* option */); 454 verify(VerifyOption_Default, prefix, silent);
455 } 455 }
456 static void verify() { 456 static void verify(bool silent = VerifySilently) {
457 verify(false /* silent */); 457 verify("", silent);
458 } 458 }
459 459
460 static int verify_count() { return _verify_count; } 460 static int verify_count() { return _verify_count; }
461 // The default behavior is to call print_on() on gclog_or_tty. 461 // The default behavior is to call print_on() on gclog_or_tty.
462 static void print(); 462 static void print();

mercurial