hotspot/src/share/vm/runtime/frame.cpp
changeset 36329 06727ae6971e
parent 33198 b37ad9fbf681
child 36508 5f9eee6b383b
equal deleted inserted replaced
36328:f627026bc04a 36329:06727ae6971e
   660       if (m != NULL) {
   660       if (m != NULL) {
   661         m->name_and_sig_as_C_string(buf, buflen);
   661         m->name_and_sig_as_C_string(buf, buflen);
   662         st->print("J %d%s %s ",
   662         st->print("J %d%s %s ",
   663                   nm->compile_id(), (nm->is_osr_method() ? "%" : ""),
   663                   nm->compile_id(), (nm->is_osr_method() ? "%" : ""),
   664                   ((nm->compiler() != NULL) ? nm->compiler()->name() : ""));
   664                   ((nm->compiler() != NULL) ? nm->compiler()->name() : ""));
       
   665         st->print("%s (%d bytes) @ " PTR_FORMAT " [" PTR_FORMAT "+" INTPTR_FORMAT "]",
       
   666                   buf, m->code_size(), p2i(_pc), p2i(_cb->code_begin()), _pc - _cb->code_begin());
   665 #if INCLUDE_JVMCI
   667 #if INCLUDE_JVMCI
   666         char* jvmciName = nm->jvmci_installed_code_name(buf, buflen);
   668         char* jvmciName = nm->jvmci_installed_code_name(buf, buflen);
   667         if (jvmciName != NULL) {
   669         if (jvmciName != NULL) {
   668           st->print(" (%s)", jvmciName);
   670           st->print(" (%s)", jvmciName);
   669         }
   671         }
   670 #endif
   672 #endif
   671         st->print("%s (%d bytes) @ " PTR_FORMAT " [" PTR_FORMAT "+" INTPTR_FORMAT "]",
       
   672                   buf, m->code_size(), p2i(_pc), p2i(_cb->code_begin()), _pc - _cb->code_begin());
       
   673       } else {
   673       } else {
   674         st->print("J  " PTR_FORMAT, p2i(pc()));
   674         st->print("J  " PTR_FORMAT, p2i(pc()));
   675       }
   675       }
   676     } else if (_cb->is_runtime_stub()) {
   676     } else if (_cb->is_runtime_stub()) {
   677       st->print("v  ~RuntimeStub::%s", ((RuntimeStub *)_cb)->name());
   677       st->print("v  ~RuntimeStub::%s", ((RuntimeStub *)_cb)->name());