# HG changeset patch # User Josef Eisl # Date 1422628233 -3600 # Node ID 3dd21f7125e99c388d95ebdbd9d97ef3f4808f1f # Parent 76dd59e530b23641da3b258601a29adf025f9985 LSStackSlotAllocator: fix typos. diff -r 76dd59e530b2 -r 3dd21f7125e9 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 Fri Jan 30 15:23:32 2015 +0100 +++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/stackslotalloc/LSStackSlotAllocator.java Fri Jan 30 15:30:33 2015 +0100 @@ -93,7 +93,6 @@ long currentFrameSize = Debug.isMeterEnabled() ? frameMapBuilder.getFrameMap().currentFrameSize() : 0; // build intervals - // buildIntervals(); try (Scope s = Debug.scope("StackSlotAllocationBuildIntervals"); Indent indent = Debug.logAndIndent("BuildIntervals")) { buildIntervalsSlow(); } @@ -240,7 +239,6 @@ // kills op.visitEachTemp(this::defConsumer); op.visitEachOutput(this::defConsumer); - // forEachDestroyedCallerSavedRegister(op, this::defConsumer); // gen - values that are considered alive for this state op.visitEachAlive(this::useConsumer); @@ -395,7 +393,7 @@ StackSlotAllocator.virtualFramesize.add(frameMapBuilder.getFrameMap().spillSlotRangeSize(slotRange.getSlots())); StackSlotAllocator.allocatedSlots.increment(); } else { - assert virtualSlot instanceof SimpleVirtualStackSlot : "Unexpexted VirtualStackSlot type: " + virtualSlot; + assert virtualSlot instanceof SimpleVirtualStackSlot : "Unexpected VirtualStackSlot type: " + virtualSlot; StackSlot slot = findFreeSlot((SimpleVirtualStackSlot) virtualSlot); if (slot != null) { /* @@ -473,7 +471,7 @@ for (int id = next.from(); activePeekId() < id;) { finished(active.pollFirst()); } - Debug.log("activte %s", next); + Debug.log("active %s", next); insertSortedByTo(next); return next; }