# HG changeset patch # User Bernhard Urban # Date 1374862722 -7200 # Node ID 0aba970c89f9ebc4e3eccc66616027d0e73f5f3e # Parent af441d477a408dae4a65791096ad7ebc36331a20 mx/ctw: disable new memory aware scheduling diff -r af441d477a40 -r 0aba970c89f9 mx/sanitycheck.py --- 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)