# HG changeset patch # User Lukas Stadler # Date 1333388833 -7200 # Node ID d5cf399e66374717d9bda8680c31b174a9867d30 # Parent e1e681a5558e24dd2005e9f1522bfa7f46578d47 disable PriorityQueue and CacheGraphs diff -r e1e681a5558e -r d5cf399e6637 graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalOptions.java --- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalOptions.java Mon Apr 02 19:46:48 2012 +0200 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalOptions.java Mon Apr 02 19:47:13 2012 +0200 @@ -85,13 +85,13 @@ // 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 = ____; // graph caching - public static boolean CacheGraphs = true; + public static boolean CacheGraphs = ____; public static int GraphCacheSize = 1000; public static boolean PrintGraphCache = ____; diff -r e1e681a5558e -r d5cf399e6637 src/share/vm/runtime/globals.hpp --- a/src/share/vm/runtime/globals.hpp Mon Apr 02 19:46:48 2012 +0200 +++ b/src/share/vm/runtime/globals.hpp Mon Apr 02 19:47:13 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, \