src/hotspot/share/runtime/frame.cpp
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File open Cdiff src/hotspot/share/runtime/frame.cpp

src/hotspot/share/runtime/frame.cpp

Print this page

        

*** 679,689 **** st->print(" (%d bytes) @ " PTR_FORMAT " [" PTR_FORMAT "+" INTPTR_FORMAT "]", m->code_size(), p2i(_pc), p2i(_cb->code_begin()), _pc - _cb->code_begin()); #if INCLUDE_JVMCI if (cm->is_nmethod()) { nmethod* nm = cm->as_nmethod(); ! char* jvmciName = nm->jvmci_installed_code_name(buf, buflen); if (jvmciName != NULL) { st->print(" (%s)", jvmciName); } } #endif --- 679,689 ---- st->print(" (%d bytes) @ " PTR_FORMAT " [" PTR_FORMAT "+" INTPTR_FORMAT "]", m->code_size(), p2i(_pc), p2i(_cb->code_begin()), _pc - _cb->code_begin()); #if INCLUDE_JVMCI if (cm->is_nmethod()) { nmethod* nm = cm->as_nmethod(); ! const char* jvmciName = nm->jvmci_name(); if (jvmciName != NULL) { st->print(" (%s)", jvmciName); } } #endif
src/hotspot/share/runtime/frame.cpp
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File