changeset 7162:bc4ce33c0985

8049529: LogCompilation: annotate make_not_compilable with compilation level Reviewed-by: roland, iveresov
author vlivanov
date Mon, 14 Jul 2014 03:27:21 -0700
parents dd89808e49ba
children 945284eb609f
files src/share/vm/oops/method.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/oops/method.cpp	Mon Jul 14 03:26:52 2014 -0700
+++ b/src/share/vm/oops/method.cpp	Mon Jul 14 03:27:21 2014 -0700
@@ -731,8 +731,8 @@
   }
   if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) {
     ttyLocker ttyl;
-    xtty->begin_elem("make_not_%scompilable thread='" UINTX_FORMAT "'",
-                     is_osr ? "osr_" : "", os::current_thread_id());
+    xtty->begin_elem("make_not_compilable thread='" UINTX_FORMAT "' osr='%d' level='%d'",
+                     os::current_thread_id(), is_osr, comp_level);
     if (reason != NULL) {
       xtty->print(" reason=\'%s\'", reason);
     }