hotspot/src/share/vm/code/nmethod.cpp
changeset 6454 c1604edff2b8
parent 6453 970dc585ab63
child 6771 3f9a5f169070
equal deleted inserted replaced
6453:970dc585ab63 6454:c1604edff2b8
   969 void nmethod::print_on(outputStream* st, const char* title) const {
   969 void nmethod::print_on(outputStream* st, const char* title) const {
   970   if (st != NULL) {
   970   if (st != NULL) {
   971     ttyLocker ttyl;
   971     ttyLocker ttyl;
   972     print_compilation(st, /*method_name*/NULL, title,
   972     print_compilation(st, /*method_name*/NULL, title,
   973                       method(), /*is_blocking*/false,
   973                       method(), /*is_blocking*/false,
   974                       compile_id(), osr_entry_bci(), comp_level());
   974                       compile_id(),
       
   975                       is_osr_method() ? osr_entry_bci() : InvocationEntryBci,
       
   976                       comp_level());
   975     if (WizardMode) st->print(" (" INTPTR_FORMAT ")", this);
   977     if (WizardMode) st->print(" (" INTPTR_FORMAT ")", this);
   976   }
   978   }
   977 }
   979 }
   978 
   980 
   979 
   981