comparison src/share/vm/memory/universe.hpp @ 11015:7ee0d5c53c78

Merge
author chegar
date Wed, 08 May 2013 15:25:08 +0100
parents b295e132102d b06ac540229e
children ce9ecec70f99
comparison
equal deleted inserted replaced
11014:4b52137b07c9 11015: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();