comparison src/share/vm/runtime/frame.cpp @ 21559:be896a1983c0

recast all Graal native code as JVMCI code (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Thu, 28 May 2015 15:36:48 +0200
parents 1621af5cb444
children
comparison
equal deleted inserted replaced
21558:d563baeca9df 21559:be896a1983c0
732 m->name_and_sig_as_C_string(buf, buflen); 732 m->name_and_sig_as_C_string(buf, buflen);
733 st->print("J %d%s %s %s (%d bytes) @ " PTR_FORMAT " [" PTR_FORMAT "+0x%x]", 733 st->print("J %d%s %s %s (%d bytes) @ " PTR_FORMAT " [" PTR_FORMAT "+0x%x]",
734 nm->compile_id(), (nm->is_osr_method() ? "%" : ""), 734 nm->compile_id(), (nm->is_osr_method() ? "%" : ""),
735 ((nm->compiler() != NULL) ? nm->compiler()->name() : ""), 735 ((nm->compiler() != NULL) ? nm->compiler()->name() : ""),
736 buf, m->code_size(), _pc, _cb->code_begin(), _pc - _cb->code_begin()); 736 buf, m->code_size(), _pc, _cb->code_begin(), _pc - _cb->code_begin());
737 #ifdef GRAAL 737 #ifdef JVMCI
738 char* graalName = nm->graal_installed_code_name(buf, buflen); 738 char* jvmciName = nm->jvmci_installed_code_name(buf, buflen);
739 if (graalName != NULL) { 739 if (jvmciName != NULL) {
740 st->print(" (%s)", graalName); 740 st->print(" (%s)", jvmciName);
741 } 741 }
742 #endif 742 #endif
743 } else { 743 } else {
744 st->print("J " PTR_FORMAT, pc()); 744 st->print("J " PTR_FORMAT, pc());
745 } 745 }