changeset 14556:24cd779e5d94

complevel: use COMPILERGRAAL flag (fixes hosted-mode with ClientVM)
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 17 Mar 2014 11:31:51 +0100
parents 2e672570021a
children 498b81be6cda
files src/share/vm/utilities/globalDefinitions.hpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/utilities/globalDefinitions.hpp	Mon Mar 17 09:37:41 2014 +0100
+++ b/src/share/vm/utilities/globalDefinitions.hpp	Mon Mar 17 11:31:51 2014 +0100
@@ -834,7 +834,7 @@
   CompLevel_full_profile      = 3,         // C1, invocation & backedge counters + mdo
   CompLevel_full_optimization = 4,         // C2, Shark or Graal
 
-#if defined(COMPILER2) || defined(SHARK) || defined(GRAAL)
+#if defined(COMPILER2) || defined(SHARK) || defined(COMPILERGRAAL)
   CompLevel_highest_tier      = CompLevel_full_optimization,  // pure C2 and tiered or Graal and tiered
 #elif defined(COMPILER1)
   CompLevel_highest_tier      = CompLevel_simple,             // pure C1 or Graal
@@ -844,7 +844,7 @@
 
 #if defined(TIERED)
   CompLevel_initial_compile   = CompLevel_full_profile        // tiered
-#elif defined(COMPILER1) || defined(GRAAL)
+#elif defined(COMPILER1) || defined(COMPILERGRAAL)
   CompLevel_initial_compile   = CompLevel_simple              // pure C1 or Graal
 #elif defined(COMPILER2) || defined(SHARK)
   CompLevel_initial_compile   = CompLevel_full_optimization   // pure C2