changeset 10895:0aba970c89f9

mx/ctw: disable new memory aware scheduling
author Bernhard Urban <bernhard.urban@jku.at>
date Fri, 26 Jul 2013 20:18:42 +0200
parents af441d477a40
children 8106edbdeac9
files mx/sanitycheck.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mx/sanitycheck.py	Fri Jul 26 20:18:42 2013 +0200
+++ b/mx/sanitycheck.py	Fri Jul 26 20:18:42 2013 +0200
@@ -244,7 +244,7 @@
             args.append('-G:-Inline')
     if mode >= CTWMode.NoComplex:
         if commands.isGraalEnabled(vm):
-            args += ['-G:-OptLoopTransform', '-G:-OptTailDuplication', '-G:-FullUnroll', '-G:-MemoryAwareScheduling', '-G:-PartialEscapeAnalysis']
+            args += ['-G:-OptLoopTransform', '-G:-OptTailDuplication', '-G:-FullUnroll', '-G:-MemoryAwareScheduling', '-G:-NewMemoryAwareScheduling', '-G:-PartialEscapeAnalysis']
         
     return Test("CompileTheWorld", args, successREs=[time], scoreMatchers=[scoreMatcher], benchmarkCompilationRate=False)