comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/EntryMarkerNode.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 93c50cefb9e8
comparison
equal deleted inserted replaced
19525:35481bcb5882 19526:8fc336a04d77
32 * This node will be inserted at point specified by {@link StructuredGraph#getEntryBCI()}, usually 32 * This node will be inserted at point specified by {@link StructuredGraph#getEntryBCI()}, usually
33 * by the graph builder. 33 * by the graph builder.
34 */ 34 */
35 @NodeInfo(allowedUsageTypes = {InputType.Association}) 35 @NodeInfo(allowedUsageTypes = {InputType.Association})
36 public final class EntryMarkerNode extends BeginStateSplitNode implements IterableNodeType, Simplifiable, LIRLowerable { 36 public final class EntryMarkerNode extends BeginStateSplitNode implements IterableNodeType, Simplifiable, LIRLowerable {
37 public static final NodeClass<EntryMarkerNode> TYPE = NodeClass.get(EntryMarkerNode.class); 37 public static final NodeClass<EntryMarkerNode> TYPE = NodeClass.create(EntryMarkerNode.class);
38 38
39 public EntryMarkerNode() { 39 public EntryMarkerNode() {
40 super(TYPE); 40 super(TYPE);
41 } 41 }
42 42