# HG changeset patch # User Lukas Stadler # Date 1333040577 -7200 # Node ID 5715abb8e29a67640f13a3e92e33fe096e65d141 # Parent a26b6248d39819c042d07ed550e08b83714d025b benchmark: graal compilation policy + priority queue + dynamic comp thread priority diff -r a26b6248d398 -r 5715abb8e29a 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 18:55:45 2012 +0200 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalOptions.java Thu Mar 29 19:02:57 2012 +0200 @@ -86,11 +86,11 @@ // comilation queue public static boolean PriorityCompileQueue = true; public static int SlowQueueCutoff = 100000; - public static boolean SlowCompileThreads = false; + public static boolean SlowCompileThreads = ____; public static boolean DynamicCompilePriority = true; // graph caching - public static boolean CacheGraphs = true; + public static boolean CacheGraphs = ____; public static int GraphCacheSize = 1000; public static boolean PrintGraphCache = ____; diff -r a26b6248d398 -r 5715abb8e29a src/share/vm/runtime/globals.hpp --- a/src/share/vm/runtime/globals.hpp Thu Mar 29 18:55:45 2012 +0200 +++ b/src/share/vm/runtime/globals.hpp Thu Mar 29 19:02:57 2012 +0200 @@ -2507,7 +2507,7 @@ product(intx, CICompilerCount, CI_COMPILER_COUNT, \ "Number of compiler threads to run") \ \ - product(intx, CompilationPolicyChoice, 0, \ + product(intx, CompilationPolicyChoice, NOT_GRAAL(0) GRAAL_ONLY(4), \ "which compilation policy (0/1)") \ \ develop(bool, UseStackBanging, true, \