diff 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 d86b226e331a
line wrap: on
line diff
--- a/src/share/vm/runtime/frame.cpp	Wed May 27 13:43:27 2015 +0200
+++ b/src/share/vm/runtime/frame.cpp	Thu May 28 15:36:48 2015 +0200
@@ -734,10 +734,10 @@
                   nm->compile_id(), (nm->is_osr_method() ? "%" : ""),
                   ((nm->compiler() != NULL) ? nm->compiler()->name() : ""),
                   buf, m->code_size(), _pc, _cb->code_begin(), _pc - _cb->code_begin());
-#ifdef GRAAL
-        char* graalName = nm->graal_installed_code_name(buf, buflen);
-        if (graalName != NULL) {
-          st->print(" (%s)", graalName);
+#ifdef JVMCI
+        char* jvmciName = nm->jvmci_installed_code_name(buf, buflen);
+        if (jvmciName != NULL) {
+          st->print(" (%s)", jvmciName);
         }
 #endif
       } else {