diff src/cpu/x86/vm/graalGlobals_x86.hpp @ 14107:800057208a2c

enable C1 + Graal tiered
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Thu, 06 Mar 2014 17:11:39 -0800
parents d0aeaf72c7bd
children 7ad529321294
line wrap: on
line diff
--- a/src/cpu/x86/vm/graalGlobals_x86.hpp	Thu Mar 06 22:45:25 2014 -0800
+++ b/src/cpu/x86/vm/graalGlobals_x86.hpp	Thu Mar 06 17:11:39 2014 -0800
@@ -31,13 +31,13 @@
 // Sets the default values for platform dependent flags used by the Graal compiler.
 // (see graalGlobals.hpp)
 
-#if !defined(COMPILER1) && !defined(COMPILER2)
+#if !defined(COMPILER2)
 define_pd_global(bool, BackgroundCompilation,        true );
 define_pd_global(bool, UseTLAB,                      true );
 define_pd_global(bool, ResizeTLAB,                   true );
 define_pd_global(bool, InlineIntrinsics,             true );
 define_pd_global(bool, PreferInterpreterNativeStubs, false);
-define_pd_global(bool, TieredCompilation,            false);
+define_pd_global(bool, TieredCompilation,            true);
 define_pd_global(intx, BackEdgeThreshold,            100000);
 
 define_pd_global(intx, OnStackReplacePercentage,     933  );