--- old/src/share/vm/runtime/java.cpp 2013-10-21 18:17:56.070718593 +0200 +++ new/src/share/vm/runtime/java.cpp 2013-10-21 18:17:55.644964847 +0200 @@ -193,6 +193,11 @@ m->print_invocation_count(); tty->print_cr(" mdo size: %d bytes", m->method_data()->size_in_bytes()); tty->cr(); + // Dump data on parameters if any + if (m->method_data() != NULL && m->method_data()->parameters_type_data() != NULL) { + tty->fill_to(2); + m->method_data()->parameters_type_data()->print_data_on(tty); + } m->print_codes(); total_size += m->method_data()->size_in_bytes(); }