# HG changeset patch # User Josef Eisl # Date 1422700358 -3600 # Node ID cdff121aeedf6a482379c8a68ba311fb6440334f # Parent 8e1c9c73ce24538ab4d52d422df450bb8cea2b3f LSStackSlotAllocator: rename SlowIntervalBuilder to FixPointIntervalBuilder. diff -r 8e1c9c73ce24 -r cdff121aeedf graal/com.oracle.graal.lir/src/com/oracle/graal/lir/stackslotalloc/LSStackSlotAllocator.java --- a/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/stackslotalloc/LSStackSlotAllocator.java Sat Jan 31 11:30:44 2015 +0100 +++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/stackslotalloc/LSStackSlotAllocator.java Sat Jan 31 11:32:38 2015 +0100 @@ -95,7 +95,7 @@ long currentFrameSize = Debug.isMeterEnabled() ? frameMapBuilder.getFrameMap().currentFrameSize() : 0; // build intervals try (Scope s = Debug.scope("StackSlotAllocationBuildIntervals"); Indent indent = Debug.logAndIndent("BuildIntervals")) { - buildIntervalsSlow(); + buildIntervals(); } if (Debug.isEnabled()) { verifyIntervals(); @@ -115,21 +115,21 @@ StackSlotAllocator.allocatedFramesize.add(frameMapBuilder.getFrameMap().currentFrameSize() - currentFrameSize); } - private void buildIntervalsSlow() { - new SlowIntervalBuilder(lir, stackSlotMap, maxOpId()).build(); + private void buildIntervals() { + new FixPointIntervalBuilder(lir, stackSlotMap, maxOpId()).build(); } /** * Calculates the stack intervals using a worklist-based backwards data-flow analysis. */ - private static final class SlowIntervalBuilder { + private static final class FixPointIntervalBuilder { private final BlockMap liveInMap; private final BlockMap liveOutMap; private final LIR lir; private final int maxOpId; private final StackInterval[] stackSlotMap; - private SlowIntervalBuilder(LIR lir, StackInterval[] stackSlotMap, int maxOpId) { + private FixPointIntervalBuilder(LIR lir, StackInterval[] stackSlotMap, int maxOpId) { this.lir = lir; this.stackSlotMap = stackSlotMap; this.maxOpId = maxOpId;