# HG changeset patch # User Josef Eisl # Date 1439453344 -7200 # Node ID af6739c6fea519a498f40dcdfec5f1b4a3689d35 # Parent 06d082407489fa86991f0dacefb47acf1a0def0b Interval: make spillSlot and setSpillSlot visible. diff -r 06d082407489 -r af6739c6fea5 graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/lsra/Interval.java --- a/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/lsra/Interval.java Tue Aug 11 17:47:05 2015 +0200 +++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/lsra/Interval.java Thu Aug 13 10:09:04 2015 +0200 @@ -616,11 +616,11 @@ /** * Gets the canonical spill slot for this interval. */ - StackSlotValue spillSlot() { + public StackSlotValue spillSlot() { return splitParent().spillSlot; } - void setSpillSlot(StackSlotValue slot) { + public void setSpillSlot(StackSlotValue slot) { assert splitParent().spillSlot == null || (isVirtualStackSlot(splitParent().spillSlot) && isStackSlot(slot)) : "connot overwrite existing spill slot"; splitParent().spillSlot = slot; }