comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/LoadHubNode.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 3362ba500371
comparison
equal deleted inserted replaced
19525:35481bcb5882 19526:8fc336a04d77
34 * Loads an object's hub. The object is not null-checked by this operation. 34 * Loads an object's hub. The object is not null-checked by this operation.
35 */ 35 */
36 @NodeInfo 36 @NodeInfo
37 public final class LoadHubNode extends FloatingGuardedNode implements Lowerable, Canonicalizable, Virtualizable { 37 public final class LoadHubNode extends FloatingGuardedNode implements Lowerable, Canonicalizable, Virtualizable {
38 38
39 public static final NodeClass<LoadHubNode> TYPE = NodeClass.get(LoadHubNode.class); 39 public static final NodeClass<LoadHubNode> TYPE = NodeClass.create(LoadHubNode.class);
40 @Input ValueNode value; 40 @Input ValueNode value;
41 41
42 public ValueNode getValue() { 42 public ValueNode getValue() {
43 return value; 43 return value;
44 } 44 }