diff src/os_cpu/bsd_x86/vm/thread_bsd_x86.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 359f7e70ae7f
children
line wrap: on
line diff
--- a/src/os_cpu/bsd_x86/vm/thread_bsd_x86.cpp	Wed May 27 13:43:27 2015 +0200
+++ b/src/os_cpu/bsd_x86/vm/thread_bsd_x86.cpp	Thu May 28 15:36:48 2015 +0200
@@ -66,8 +66,8 @@
 
     frame ret_frame(ret_sp, ret_fp, addr.pc());
     if (!ret_frame.safe_for_sender(jt)) {
-#if defined(COMPILER2) || defined(GRAAL)
-      // C2 and Graal use ebp as a general register see if NULL fp helps
+#if defined(COMPILER2) || defined(JVMCI)
+      // C2 and JVMCI use ebp as a general register see if NULL fp helps
       frame ret_frame2(ret_sp, NULL, addr.pc());
       if (!ret_frame2.safe_for_sender(jt)) {
         // nothing else to try if the frame isn't good
@@ -77,7 +77,7 @@
 #else
       // nothing else to try if the frame isn't good
       return false;
-#endif /* COMPILER2 || GRAAL*/
+#endif /* COMPILER2 || JVMCI*/
     }
     *fr_addr = ret_frame;
     return true;