comparison graal/com.oracle.graal.word/src/com/oracle/graal/word/nodes/SnippetLocationNode.java @ 19529: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 3d0116ec99c5
comparison
equal deleted inserted replaced
19528:35481bcb5882 19529:8fc336a04d77
43 * nodes. Both scale and disp must eventually canonicalize to {@link ConstantNode constants} so that 43 * nodes. Both scale and disp must eventually canonicalize to {@link ConstantNode constants} so that
44 * this node can be canonicalized to a {@link IndexedLocationNode} or {@link ConstantLocationNode}. 44 * this node can be canonicalized to a {@link IndexedLocationNode} or {@link ConstantLocationNode}.
45 */ 45 */
46 @NodeInfo 46 @NodeInfo
47 public final class SnippetLocationNode extends LocationNode implements Canonicalizable { 47 public final class SnippetLocationNode extends LocationNode implements Canonicalizable {
48 public static final NodeClass<SnippetLocationNode> TYPE = NodeClass.get(SnippetLocationNode.class); 48 public static final NodeClass<SnippetLocationNode> TYPE = NodeClass.create(SnippetLocationNode.class);
49 49
50 protected final SnippetReflectionProvider snippetReflection; 50 protected final SnippetReflectionProvider snippetReflection;
51 51
52 @Input(InputType.Association) ValueNode locationIdentity; 52 @Input(InputType.Association) ValueNode locationIdentity;
53 @Input ValueNode displacement; 53 @Input ValueNode displacement;