# HG changeset patch # User Lukas Stadler # Date 1333040647 -7200 # Node ID 6ab0cd9909b1747cb217596b7664f1ee77d697d8 # Parent 5dc9d5c75ab2f54f11a49b13023b46a5f89e1347 turn off experimental options (graph caching, compilation queue changes) diff -r 5dc9d5c75ab2 -r 6ab0cd9909b1 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 Thu Mar 29 19:03:29 2012 +0200 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalOptions.java Thu Mar 29 19:04:07 2012 +0200 @@ -84,13 +84,13 @@ public static int MatureExecutionsTypeProfile = 1; // comilation queue - public static boolean PriorityCompileQueue = true; + public static boolean PriorityCompileQueue = ____; public static int SlowQueueCutoff = 100000; public static boolean SlowCompileThreads = ____; - public static boolean DynamicCompilePriority = true; + 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 5dc9d5c75ab2 -r 6ab0cd9909b1 src/share/vm/runtime/globals.hpp --- a/src/share/vm/runtime/globals.hpp Thu Mar 29 19:03:29 2012 +0200 +++ b/src/share/vm/runtime/globals.hpp Thu Mar 29 19:04:07 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, \