# HG changeset patch # User Tom Rodriguez # Date 1450201560 28800 # Node ID 1dc87d090f967c21042d01659f8c51a052597a9c # Parent cbdce7fb409113752256e4995f24c8e71482a2c5 Add pc to deoptimized LogCompilation message diff -r cbdce7fb4091 -r 1dc87d090f96 src/share/vm/runtime/deoptimization.cpp --- a/src/share/vm/runtime/deoptimization.cpp Tue Dec 15 09:44:47 2015 -0800 +++ b/src/share/vm/runtime/deoptimization.cpp Tue Dec 15 09:46:00 2015 -0800 @@ -1313,7 +1313,7 @@ assert(nm != NULL, "only nmethods can deopt"); ttyLocker ttyl; - xtty->begin_head("deoptimized thread='" UINTX_FORMAT "'", thread->osthread()->thread_id()); + xtty->begin_head("deoptimized thread='" UINTX_FORMAT "' pc='" UINTX_FORMAT "'", thread->osthread()->thread_id(), fr.pc()); nm->log_identity(xtty); xtty->end_head(); for (ScopeDesc* sd = nm->scope_desc_at(fr.pc()); ; sd = sd->sender()) {