comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/WriteBarrier.java @ 19526:8fc336a04d77

Create TYPE fields for LIRInstruction and CompositeValue. Renaming NodeClass#get to NodeClass#create.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 20 Feb 2015 22:22:55 +0100
parents 880717e44675
children a858c5f56d8a
comparison
equal deleted inserted replaced
19525:35481bcb5882 19526:8fc336a04d77
30 import com.oracle.graal.nodes.spi.*; 30 import com.oracle.graal.nodes.spi.*;
31 31
32 @NodeInfo 32 @NodeInfo
33 public abstract class WriteBarrier extends FixedWithNextNode implements Lowerable { 33 public abstract class WriteBarrier extends FixedWithNextNode implements Lowerable {
34 34
35 public static final NodeClass<WriteBarrier> TYPE = NodeClass.get(WriteBarrier.class); 35 public static final NodeClass<WriteBarrier> TYPE = NodeClass.create(WriteBarrier.class);
36 @Input protected ValueNode object; 36 @Input protected ValueNode object;
37 @OptionalInput protected ValueNode value; 37 @OptionalInput protected ValueNode value;
38 @OptionalInput(InputType.Association) protected LocationNode location; 38 @OptionalInput(InputType.Association) protected LocationNode location;
39 protected final boolean precise; 39 protected final boolean precise;
40 40