changeset 5334:ecc2b68344de

turn off priority compilation queue
author Lukas Stadler <lukas.stadler@jku.at>
date Wed, 02 May 2012 12:59:59 +0200
parents b1de7c9ab0e0
children 439ca5ecc7dc f536a459c2d3
files graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalOptions.java src/share/vm/runtime/globals.hpp
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalOptions.java	Wed May 02 11:31:53 2012 +0200
+++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalOptions.java	Wed May 02 12:59:59 2012 +0200
@@ -85,7 +85,7 @@
 
     // comilation queue
     public static int     TimedBootstrap                     = -1;
-    public static boolean PriorityCompileQueue               = true;
+    public static boolean PriorityCompileQueue               = ____;
     public static int     SlowQueueCutoff                    = 100000;
     public static boolean SlowCompileThreads                 = ____;
     public static boolean DynamicCompilePriority             = ____;
--- a/src/share/vm/runtime/globals.hpp	Wed May 02 11:31:53 2012 +0200
+++ b/src/share/vm/runtime/globals.hpp	Wed May 02 12:59:59 2012 +0200
@@ -2507,7 +2507,7 @@
   product(intx, CICompilerCount, CI_COMPILER_COUNT,                         \
           "Number of compiler threads to run")                              \
                                                                             \
-  product(intx, CompilationPolicyChoice, NOT_GRAAL(0) GRAAL_ONLY(4),        \
+  product(intx, CompilationPolicyChoice, NOT_GRAAL(0) GRAAL_ONLY(0),        \
           "which compilation policy (0/1)")                                 \
                                                                             \
   develop(bool, UseStackBanging, true,                                      \