comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/CurrentJavaThreadNode.java @ 18998:ec0733b5a90a

Allow final modifier on node subclasses and start adding the modifier to leaf classes.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 28 Jan 2015 02:34:14 +0100
parents f57d86eb036f
children 7e2c87dae93e
comparison
equal deleted inserted replaced
18997:2ccaaf5a6be4 18998:ec0733b5a90a
36 36
37 /** 37 /**
38 * Gets the address of the C++ JavaThread object for the current thread. 38 * Gets the address of the C++ JavaThread object for the current thread.
39 */ 39 */
40 @NodeInfo 40 @NodeInfo
41 public class CurrentJavaThreadNode extends FloatingNode implements LIRLowerable { 41 public final class CurrentJavaThreadNode extends FloatingNode implements LIRLowerable {
42 42
43 protected LIRKind wordKind; 43 protected LIRKind wordKind;
44 44
45 public CurrentJavaThreadNode(Kind kind) { 45 public CurrentJavaThreadNode(Kind kind) {
46 super(StampFactory.forKind(kind)); 46 super(StampFactory.forKind(kind));