src/share/vm/runtime/java.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/runtime/java.cpp

src/share/vm/runtime/java.cpp

Print this page
rev 5771 : 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
Summary: support for speculative traps that keep track of the root of the compilation in which a trap occurs.
Reviewed-by:

*** 195,205 **** 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(); } tty->print_cr("------------------------------------------------------------------------"); --- 195,205 ---- 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, (const char*)NULL); } m->print_codes(); total_size += m->method_data()->size_in_bytes(); } tty->print_cr("------------------------------------------------------------------------");
src/share/vm/runtime/java.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File