comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/PrefetchAllocateNode.java @ 18845:f57d86eb036f

removed Node factory methods
author Doug Simon <doug.simon@oracle.com>
date Mon, 12 Jan 2015 20:39:04 +0100
parents 45b45f902bed
children 7e2c87dae93e
comparison
equal deleted inserted replaced
18843:f2261069ba99 18845:f57d86eb036f
34 public class PrefetchAllocateNode extends FixedWithNextNode implements LIRLowerable { 34 public class PrefetchAllocateNode extends FixedWithNextNode implements LIRLowerable {
35 35
36 @Input ValueNode distance; 36 @Input ValueNode distance;
37 @Input ValueNode address; 37 @Input ValueNode address;
38 38
39 public static PrefetchAllocateNode create(ValueNode address, ValueNode distance) { 39 public PrefetchAllocateNode(ValueNode address, ValueNode distance) {
40 return new PrefetchAllocateNode(address, distance);
41 }
42
43 protected PrefetchAllocateNode(ValueNode address, ValueNode distance) {
44 super(StampFactory.forVoid()); 40 super(StampFactory.forVoid());
45 this.address = address; 41 this.address = address;
46 this.distance = distance; 42 this.distance = distance;
47 } 43 }
48 44