< prev index next >

src/share/vm/code/nmethod.cpp

Print this page

        

*** 1132,1143 **** log_identity(xtty); xtty->stamp(); xtty->end_elem(); } } if (PrintCompilation && _state != unloaded) { ! print_on(tty, _state == zombie ? "made zombie" : "made not entrant"); } } /** * Common functionality for both make_not_entrant and make_zombie --- 1132,1146 ---- log_identity(xtty); xtty->stamp(); xtty->end_elem(); } } + + const char *state_msg = _state == zombie ? "made zombie" : "made not entrant"; + CompileTask::print_ul(this, state_msg); if (PrintCompilation && _state != unloaded) { ! print_on(tty, state_msg); } } /** * Common functionality for both make_not_entrant and make_zombie
< prev index next >