comparison graal/GraalCompiler/src/com/sun/c1x/value/FrameState.java @ 2570:46586c77b129

Cleaned some remaining references to scope/inlining
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Tue, 03 May 2011 10:19:11 +0200
parents cc1f1d396288
children 4a36a0bd6d18
comparison
equal deleted inserted replaced
2569:7aa67f5f3884 2570:46586c77b129
526 public static interface ValueProcedure { 526 public static interface ValueProcedure {
527 void doValue(Value value); 527 void doValue(Value value);
528 } 528 }
529 529
530 /** 530 /**
531 * Traverses all {@linkplain Value#isLive() live values} of this frame state and it's callers. 531 * Traverses all {@linkplain Value#isLive() live values} of this frame state.
532 * 532 *
533 * @param proc the call back called to process each live value traversed 533 * @param proc the call back called to process each live value traversed
534 */ 534 */
535 public final void forEachLiveStateValue(ValueProcedure proc) { 535 public final void forEachLiveStateValue(ValueProcedure proc) {
536 final int max = this.valuesSize(); 536 final int max = this.valuesSize();