# HG changeset patch # User Lukas Stadler # Date 1389189005 -3600 # Node ID e64bc21493963ba91057ea9896dd3d8428391c7d # Parent f8e8f3c499c130b8ab7345adffba84e2a7d5438a small parameter renaming in HotSpotDebugInfoBuilder diff -r f8e8f3c499c1 -r e64bc2149396 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotDebugInfoBuilder.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotDebugInfoBuilder.java Wed Jan 08 14:49:32 2014 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotDebugInfoBuilder.java Wed Jan 08 14:50:05 2014 +0100 @@ -48,13 +48,13 @@ } @Override - protected Value computeLockValue(FrameState state, int i) { - int lockDepth = i; + protected Value computeLockValue(FrameState state, int lockIndex) { + int lockDepth = lockIndex; if (state.outerFrameState() != null) { lockDepth += state.outerFrameState().nestedLockDepth(); } StackSlot slot = lockStack.makeLockSlot(lockDepth); - ValueNode lock = state.lockAt(i); + ValueNode lock = state.lockAt(lockIndex); Value object = toValue(lock); boolean eliminated = lock instanceof VirtualObjectNode; return new HotSpotMonitorValue(object, slot, eliminated);