src/hotspot/share/runtime/frame.cpp
changeset 54669 ad45b3802d4e
parent 54631 3a3e4e473622
child 57811 947252a54b98
child 58678 9cf78a70fa4f
equal deleted inserted replaced
54668:0bda2308eded 54669:ad45b3802d4e
   627         st->print(" (%d bytes) @ " PTR_FORMAT " [" PTR_FORMAT "+" INTPTR_FORMAT "]",
   627         st->print(" (%d bytes) @ " PTR_FORMAT " [" PTR_FORMAT "+" INTPTR_FORMAT "]",
   628                   m->code_size(), p2i(_pc), p2i(_cb->code_begin()), _pc - _cb->code_begin());
   628                   m->code_size(), p2i(_pc), p2i(_cb->code_begin()), _pc - _cb->code_begin());
   629 #if INCLUDE_JVMCI
   629 #if INCLUDE_JVMCI
   630         if (cm->is_nmethod()) {
   630         if (cm->is_nmethod()) {
   631           nmethod* nm = cm->as_nmethod();
   631           nmethod* nm = cm->as_nmethod();
   632           char* jvmciName = nm->jvmci_installed_code_name(buf, buflen);
   632           const char* jvmciName = nm->jvmci_name();
   633           if (jvmciName != NULL) {
   633           if (jvmciName != NULL) {
   634             st->print(" (%s)", jvmciName);
   634             st->print(" (%s)", jvmciName);
   635           }
   635           }
   636         }
   636         }
   637 #endif
   637 #endif