changeset 5178:5715abb8e29a

benchmark: graal compilation policy + priority queue + dynamic comp thread priority
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 29 Mar 2012 19:02:57 +0200
parents a26b6248d398
children 5dc9d5c75ab2
files graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalOptions.java src/share/vm/runtime/globals.hpp
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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                    = ____;
 
--- 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,                                      \