hotspot/src/share/vm/code/nmethod.cpp
changeset 32582 56619bb8bcaa
parent 32466 915d0c3d25aa
child 33160 c59f1676d27e
child 33105 294e48b4f704
equal deleted inserted replaced
32581:632402f18fe6 32582:56619bb8bcaa
   846 // Print out more verbose output usually for a newly created nmethod.
   846 // Print out more verbose output usually for a newly created nmethod.
   847 void nmethod::print_on(outputStream* st, const char* msg) const {
   847 void nmethod::print_on(outputStream* st, const char* msg) const {
   848   if (st != NULL) {
   848   if (st != NULL) {
   849     ttyLocker ttyl;
   849     ttyLocker ttyl;
   850     if (WizardMode) {
   850     if (WizardMode) {
   851       CompileTask::print_compilation(st, this, msg, /*short_form:*/ true);
   851       CompileTask::print(st, this, msg, /*short_form:*/ true);
   852       st->print_cr(" (" INTPTR_FORMAT ")", this);
   852       st->print_cr(" (" INTPTR_FORMAT ")", this);
   853     } else {
   853     } else {
   854       CompileTask::print_compilation(st, this, msg, /*short_form:*/ false);
   854       CompileTask::print(st, this, msg, /*short_form:*/ false);
   855     }
   855     }
   856   }
   856   }
   857 }
   857 }
   858 
   858 
   859 
   859