comparison graal/GraalCompiler/src/com/sun/c1x/ir/InstanceOf.java @ 2834:bfce42cd9c07

Graph duplication now passes all tests
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 31 May 2011 13:34:52 +0200
parents bd17ac598c6e
children 14708c03abba
comparison
equal deleted inserted replaced
2829:27c00b180416 2834:bfce42cd9c07
39 39
40 /** 40 /**
41 * Constructs a new InstanceOf instruction. 41 * Constructs a new InstanceOf instruction.
42 * @param targetClass the target class of the instanceof check 42 * @param targetClass the target class of the instanceof check
43 * @param object the instruction producing the object input to this instruction 43 * @param object the instruction producing the object input to this instruction
44 * @param stateBefore the state before this instruction
45 * @param graph 44 * @param graph
46 */ 45 */
47 public InstanceOf(RiType targetClass, Value targetClassInstruction, Value object, Graph graph) { 46 public InstanceOf(RiType targetClass, Value targetClassInstruction, Value object, Graph graph) {
48 super(targetClass, targetClassInstruction, object, CiKind.Int, INPUT_COUNT, SUCCESSOR_COUNT, graph); 47 super(targetClass, targetClassInstruction, object, CiKind.Int, INPUT_COUNT, SUCCESSOR_COUNT, graph);
49 } 48 }