src/share/vm/utilities/vmError.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8035074.01 Cdiff src/share/vm/utilities/vmError.cpp

src/share/vm/utilities/vmError.cpp

Print this page

        

*** 712,721 **** --- 712,739 ---- if (_verbose) { print_owned_locks_on_error(st); st->cr(); } + STEP(182, "(printing number of OutOfMemoryError and StackOverflow exceptions)") + + if (_verbose && Exceptions::has_exception_counts()) { + st->print_cr("OutOfMemory and StackOverflow Exception counts:"); + Exceptions::print_exception_counts_on_error(st); + st->cr(); + } + + STEP(185, "(printing compressed oops mode") + + if (_verbose && UseCompressedOops) { + Universe::print_compressed_oops_mode(st); + if (UseCompressedClassPointers) { + Metaspace::print_compressed_class_space(st); + } + st->cr(); + } + STEP(190, "(printing heap information)" ) if (_verbose && Universe::is_fully_initialized()) { Universe::heap()->print_on_error(st); st->cr();
*** 817,827 **** } STEP(280, "(printing date and time)" ) if (_verbose) { ! os::print_date_and_time(st); st->cr(); } #ifndef PRODUCT // print a defined marker to show that error handling finished correctly. --- 835,845 ---- } STEP(280, "(printing date and time)" ) if (_verbose) { ! os::print_date_and_time(st, buf, sizeof(buf)); st->cr(); } #ifndef PRODUCT // print a defined marker to show that error handling finished correctly.
src/share/vm/utilities/vmError.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File