changeset 12040:a8819fceb5b5

Disable TieredCompilation if Graal is enabled
author Gilles Duboscq <duboscq@ssw.jku.at>
date Thu, 10 Oct 2013 17:06:03 +0200
parents 3cce976666d9
children 7e5cf369559f
files src/cpu/sparc/vm/c2_globals_sparc.hpp src/cpu/x86/vm/c2_globals_x86.hpp
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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);
 
--- 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);