diff src/share/vm/compiler/compileBroker.cpp @ 21527:07b088d61d5d

added HotSpotJVMCIRuntime* classes, replaced references to HotSpotGraalRuntime in VM with HotSpotJVMCIRuntime (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Fri, 22 May 2015 23:26:20 +0200
parents 7848fc12602b
children be896a1983c0
line wrap: on
line diff
--- a/src/share/vm/compiler/compileBroker.cpp	Tue May 19 23:16:07 2015 +0200
+++ b/src/share/vm/compiler/compileBroker.cpp	Fri May 22 23:26:20 2015 +0200
@@ -1340,9 +1340,9 @@
         }
       }
 
-      // Don't allow blocking compilation requests to Graal
-      // if Graal itself is not yet initialized
-      if (!GraalRuntime::is_HotSpotGraalRuntime_initialized() && compiler(comp_level)->is_graal()) {
+      // Don't allow blocking compilation requests to JVMCI
+      // if JVMCI itself is not yet initialized
+      if (!GraalRuntime::is_HotSpotJVMCIRuntime_initialized() && compiler(comp_level)->is_graal()) {
         blocking = false;
       }