changeset 5180:6ab0cd9909b1

turn off experimental options (graph caching, compilation queue changes)
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 29 Mar 2012 19:04:07 +0200
parents 5dc9d5c75ab2
children b97ef124c3ea
files graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalOptions.java src/share/vm/runtime/globals.hpp
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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                    = ____;
 
--- 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,                                      \