comparison src/share/vm/oops/method.cpp @ 20470: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 631667807de7
children 966205f0e717
comparison
equal deleted inserted replaced
20469:dd89808e49ba 20470:bc4ce33c0985
729 } 729 }
730 tty->cr(); 730 tty->cr();
731 } 731 }
732 if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) { 732 if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) {
733 ttyLocker ttyl; 733 ttyLocker ttyl;
734 xtty->begin_elem("make_not_%scompilable thread='" UINTX_FORMAT "'", 734 xtty->begin_elem("make_not_compilable thread='" UINTX_FORMAT "' osr='%d' level='%d'",
735 is_osr ? "osr_" : "", os::current_thread_id()); 735 os::current_thread_id(), is_osr, comp_level);
736 if (reason != NULL) { 736 if (reason != NULL) {
737 xtty->print(" reason=\'%s\'", reason); 737 xtty->print(" reason=\'%s\'", reason);
738 } 738 }
739 xtty->method(this); 739 xtty->method(this);
740 xtty->stamp(); 740 xtty->stamp();