comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/ProxyNode.java @ 16822:5d468add216f

added @NodeInfo annotations to all Node classes
author Doug Simon <doug.simon@oracle.com>
date Wed, 13 Aug 2014 18:25:45 +0200
parents a039ae7e0e50
children cbd42807a31f
comparison
equal deleted inserted replaced
16821:216ac26009a2 16822:5d468add216f
30 30
31 /** 31 /**
32 * A proxy is inserted at loop exits for any value that is created inside the loop (i.e. was not 32 * A proxy is inserted at loop exits for any value that is created inside the loop (i.e. was not
33 * live on entry to the loop) and is (potentially) used after the loop. 33 * live on entry to the loop) and is (potentially) used after the loop.
34 */ 34 */
35 @NodeInfo
35 public abstract class ProxyNode extends FloatingNode implements IterableNodeType, ValueNumberable { 36 public abstract class ProxyNode extends FloatingNode implements IterableNodeType, ValueNumberable {
36 37
37 @Input(InputType.Association) private BeginNode proxyPoint; 38 @Input(InputType.Association) private BeginNode proxyPoint;
38 39
39 public ProxyNode(Stamp stamp, BeginNode proxyPoint) { 40 public ProxyNode(Stamp stamp, BeginNode proxyPoint) {