comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/PrefetchAllocateNode.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 61d3cb8e1280
children a858c5f56d8a
comparison
equal deleted inserted replaced
19525:35481bcb5882 19526:8fc336a04d77
32 import com.oracle.graal.word.*; 32 import com.oracle.graal.word.*;
33 33
34 @NodeInfo 34 @NodeInfo
35 public final class PrefetchAllocateNode extends FixedWithNextNode implements LIRLowerable { 35 public final class PrefetchAllocateNode extends FixedWithNextNode implements LIRLowerable {
36 36
37 public static final NodeClass<PrefetchAllocateNode> TYPE = NodeClass.get(PrefetchAllocateNode.class); 37 public static final NodeClass<PrefetchAllocateNode> TYPE = NodeClass.create(PrefetchAllocateNode.class);
38 @Input ValueNode distance; 38 @Input ValueNode distance;
39 @Input ValueNode address; 39 @Input ValueNode address;
40 40
41 public PrefetchAllocateNode(ValueNode address, ValueNode distance) { 41 public PrefetchAllocateNode(ValueNode address, ValueNode distance) {
42 super(TYPE, StampFactory.forVoid()); 42 super(TYPE, StampFactory.forVoid());