comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/BreakpointNode.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 30ba345cffeb
comparison
equal deleted inserted replaced
19525:35481bcb5882 19526:8fc336a04d77
46 * inspect in the native debugger when the breakpoint is hit. 46 * inspect in the native debugger when the breakpoint is hit.
47 */ 47 */
48 @NodeInfo 48 @NodeInfo
49 public final class BreakpointNode extends FixedWithNextNode implements LIRLowerable { 49 public final class BreakpointNode extends FixedWithNextNode implements LIRLowerable {
50 50
51 public static final NodeClass<BreakpointNode> TYPE = NodeClass.get(BreakpointNode.class); 51 public static final NodeClass<BreakpointNode> TYPE = NodeClass.create(BreakpointNode.class);
52 @Input NodeInputList<ValueNode> arguments; 52 @Input NodeInputList<ValueNode> arguments;
53 53
54 public BreakpointNode(ValueNode[] arguments) { 54 public BreakpointNode(ValueNode[] arguments) {
55 super(TYPE, StampFactory.forVoid()); 55 super(TYPE, StampFactory.forVoid());
56 this.arguments = new NodeInputList<>(this, arguments); 56 this.arguments = new NodeInputList<>(this, arguments);