comparison graal/GraalCompiler/src/com/sun/c1x/ir/Phi.java @ 2847:caf55daa41dc

Fixed/FLoating Node
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Tue, 31 May 2011 15:19:08 +0200
parents bd17ac598c6e
children 7474789a8120
comparison
equal deleted inserted replaced
2832:775c31be565c 2847:caf55daa41dc
28 28
29 /** 29 /**
30 * The {@code Phi} instruction represents the merging of dataflow 30 * The {@code Phi} instruction represents the merging of dataflow
31 * in the instruction graph. It refers to a join block and a variable. 31 * in the instruction graph. It refers to a join block and a variable.
32 */ 32 */
33 public final class Phi extends Value { 33 public final class Phi extends FixedNode {
34 34
35 private static final int DEFAULT_MAX_VALUES = 2; 35 private static final int DEFAULT_MAX_VALUES = 2;
36 36
37 private static final int INPUT_COUNT = 1; 37 private static final int INPUT_COUNT = 1;
38 private static final int INPUT_BLOCK = 0; 38 private static final int INPUT_BLOCK = 0;