comparison graal/GraalCompiler/src/com/sun/c1x/ir/Convert.java @ 2816:5526d82388be

Made more nodes floating (including the allocation nodes NewInstance, NewArray, and NewMultiArray).
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Mon, 30 May 2011 15:28:38 +0200
parents c3f64b66fc78
children bd17ac598c6e
comparison
equal deleted inserted replaced
2813:32fd5ea3a6cc 2816:5526d82388be
29 import com.sun.cri.ci.*; 29 import com.sun.cri.ci.*;
30 30
31 /** 31 /**
32 * The {@code Convert} class represents a conversion between primitive types. 32 * The {@code Convert} class represents a conversion between primitive types.
33 */ 33 */
34 public final class Convert extends Instruction { 34 public final class Convert extends Value {
35 35
36 private static final int INPUT_COUNT = 1; 36 private static final int INPUT_COUNT = 1;
37 private static final int INPUT_VALUE = 0; 37 private static final int INPUT_VALUE = 0;
38 38
39 private static final int SUCCESSOR_COUNT = 0; 39 private static final int SUCCESSOR_COUNT = 0;