# HG changeset patch # User Bernhard Urban # Date 1375377354 -7200 # Node ID dae97549a94d2ac18f3b1ff4a3a602f2b0a660c8 # Parent 32a48a01e411662080afd194b44977af3c10e983 Scheduling: enable new memory aware scheduling per default (GRAAL-159) diff -r 32a48a01e411 -r dae97549a94d graal/com.oracle.graal.phases/src/com/oracle/graal/phases/GraalOptions.java --- a/graal/com.oracle.graal.phases/src/com/oracle/graal/phases/GraalOptions.java Thu Aug 01 19:15:17 2013 +0200 +++ b/graal/com.oracle.graal.phases/src/com/oracle/graal/phases/GraalOptions.java Thu Aug 01 19:15:54 2013 +0200 @@ -232,9 +232,9 @@ public static final OptionValue CanOmitFrame = new OptionValue<>(true); @Option(help = "") - public static final OptionValue MemoryAwareScheduling = new OptionValue<>(true); + public static final OptionValue MemoryAwareScheduling = new OptionValue<>(false); @Option(help = "") - public static final OptionValue NewMemoryAwareScheduling = new OptionValue<>(false); + public static final OptionValue NewMemoryAwareScheduling = new OptionValue<>(true); // Translating tableswitch instructions @Option(help = "")