comparison graal/com.oracle.graal.lir/src/com/oracle/graal/lir/phases/LowLevelMidTier.java @ 19267:c83c841222b0

Rename LSStackSlotAllocation option to LowLevelOptLSStackSlotAllocator.
author Josef Eisl <josef.eisl@jku.at>
date Tue, 10 Feb 2015 16:48:08 +0100
parents 5ff79efdd040
children
comparison
equal deleted inserted replaced
19266:c6ec49433b47 19267:c83c841222b0
29 public class LowLevelMidTier extends LowLevelPhaseSuite<LowLevelMidTierContext> { 29 public class LowLevelMidTier extends LowLevelPhaseSuite<LowLevelMidTierContext> {
30 public LowLevelMidTier() { 30 public LowLevelMidTier() {
31 appendPhase(new LinearScanPhase()); 31 appendPhase(new LinearScanPhase());
32 32
33 // build frame map 33 // build frame map
34 if (LSStackSlotAllocator.Options.LSStackSlotAllocation.getValue()) { 34 if (LSStackSlotAllocator.Options.LowLevelOptLSStackSlotAllocator.getValue()) {
35 appendPhase(new LSStackSlotAllocator()); 35 appendPhase(new LSStackSlotAllocator());
36 } else { 36 } else {
37 appendPhase(new SimpleStackSlotAllocator()); 37 appendPhase(new SimpleStackSlotAllocator());
38 } 38 }
39 // currently we mark locations only if we do register allocation 39 // currently we mark locations only if we do register allocation