comparison graal/GraalCompiler/src/com/sun/c1x/ir/MonitorAddress.java @ 2816:5526d82388be

Made more nodes floating (including the allocation nodes NewInstance, NewArray, and NewMultiArray).
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Mon, 30 May 2011 15:28:38 +0200
parents 0c6564c254af
children 015be60afcf3
comparison
equal deleted inserted replaced
2813:32fd5ea3a6cc 2816:5526d82388be
27 import com.sun.cri.ci.*; 27 import com.sun.cri.ci.*;
28 28
29 /** 29 /**
30 * Instruction that is used to refer to the address of an on-stack monitor. 30 * Instruction that is used to refer to the address of an on-stack monitor.
31 */ 31 */
32 public final class MonitorAddress extends Instruction { 32 public final class MonitorAddress extends Value {
33 33
34 private static final int INPUT_COUNT = 0; 34 private static final int INPUT_COUNT = 0;
35 private static final int SUCCESSOR_COUNT = 0; 35 private static final int SUCCESSOR_COUNT = 0;
36 36
37 private int monitor; 37 private int monitor;