# HG changeset patch # User Gilles Duboscq # Date 1381417563 -7200 # Node ID a8819fceb5b5cecb7508b680469be52a4670ebeb # Parent 3cce976666d940f96ff75c8063cced2f41740f4e Disable TieredCompilation if Graal is enabled diff -r 3cce976666d9 -r a8819fceb5b5 src/cpu/sparc/vm/c2_globals_sparc.hpp --- a/src/cpu/sparc/vm/c2_globals_sparc.hpp Thu Oct 10 14:20:04 2013 +0200 +++ b/src/cpu/sparc/vm/c2_globals_sparc.hpp Thu Oct 10 17:06:03 2013 +0200 @@ -44,7 +44,11 @@ #else define_pd_global(bool, ProfileInterpreter, true); #endif // CC_INTERP +#ifdef GRAAL +define_pd_global(bool, TieredCompilation, false); +#else define_pd_global(bool, TieredCompilation, trueInTiered); +#endif define_pd_global(intx, CompileThreshold, 10000); define_pd_global(intx, BackEdgeThreshold, 140000); diff -r 3cce976666d9 -r a8819fceb5b5 src/cpu/x86/vm/c2_globals_x86.hpp --- a/src/cpu/x86/vm/c2_globals_x86.hpp Thu Oct 10 14:20:04 2013 +0200 +++ b/src/cpu/x86/vm/c2_globals_x86.hpp Thu Oct 10 17:06:03 2013 +0200 @@ -46,7 +46,11 @@ #else define_pd_global(bool, ProfileInterpreter, true); #endif // CC_INTERP +#ifdef GRAAL +define_pd_global(bool, TieredCompilation, false); +#else define_pd_global(bool, TieredCompilation, trueInTiered); +#endif define_pd_global(intx, CompileThreshold, 10000); define_pd_global(intx, BackEdgeThreshold, 100000);