comparison graal/GraalCompiler/src/com/sun/c1x/ir/TypeCheck.java @ 2852:c6bdec623ef9

Move TypeCHeck to floating nodes, rename Nodes to aboid using an *Op suffix
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Tue, 07 Jun 2011 12:10:27 +0200
parents f9f40748442f
children
comparison
equal deleted inserted replaced
2851:14708c03abba 2852:c6bdec623ef9
27 import com.sun.cri.ri.*; 27 import com.sun.cri.ri.*;
28 28
29 /** 29 /**
30 * The {@code TypeCheck} instruction is the base class of casts and instanceof tests. 30 * The {@code TypeCheck} instruction is the base class of casts and instanceof tests.
31 */ 31 */
32 public abstract class TypeCheck extends Value { 32 public abstract class TypeCheck extends FloatingNode {
33 33
34 private static final int INPUT_COUNT = 2; 34 private static final int INPUT_COUNT = 2;
35 private static final int INPUT_OBJECT = 0; 35 private static final int INPUT_OBJECT = 0;
36 private static final int INPUT_TARGET_CLASS_INSTRUCTION = 1; 36 private static final int INPUT_TARGET_CLASS_INSTRUCTION = 1;
37 37