comparison src/share/vm/oops/method.cpp @ 6843:c3e799c37717

7177003: C1: LogCompilation support Summary: add LogCompilation support in C1 - both client and tiered mode. Reviewed-by: twisti, kvn
author vlivanov
date Fri, 05 Oct 2012 18:57:10 -0700
parents 9191895df19d
children d804e148cff8
comparison
equal deleted inserted replaced
6830:81e878c53615 6843:c3e799c37717
710 tty->print(" (%d bytes)", size); 710 tty->print(" (%d bytes)", size);
711 tty->cr(); 711 tty->cr();
712 } 712 }
713 if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) { 713 if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) {
714 ttyLocker ttyl; 714 ttyLocker ttyl;
715 xtty->begin_elem("make_not_%scompilable thread='%d'", is_osr ? "osr_" : "", (int) os::current_thread_id()); 715 xtty->begin_elem("make_not_%scompilable thread='" UINTX_FORMAT "'",
716 is_osr ? "osr_" : "", os::current_thread_id());
716 xtty->method(this); 717 xtty->method(this);
717 xtty->stamp(); 718 xtty->stamp();
718 xtty->end_elem(); 719 xtty->end_elem();
719 } 720 }
720 } 721 }