comparison graal/GraalCompiler/src/com/sun/c1x/value/FrameState.java @ 2582:768d77a1c7af

new node layout: Instruction
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 05 May 2011 13:47:14 +0200
parents 4a36a0bd6d18
children 01c5c0443158
comparison
equal deleted inserted replaced
2581:4a36a0bd6d18 2582:768d77a1c7af
361 Value y = other.values[i]; 361 Value y = other.values[i];
362 if (x != null && x != y) { 362 if (x != null && x != y) {
363 if (x instanceof Phi) { 363 if (x instanceof Phi) {
364 Phi phi = (Phi) x; 364 Phi phi = (Phi) x;
365 if (phi.block() == block) { 365 if (phi.block() == block) {
366 for (int j = 0; j < phi.inputCount(); j++) { 366 for (int j = 0; j < phi.phiInputCount(); j++) {
367 if (phi.inputIn(other) == null) { 367 if (phi.inputIn(other) == null) {
368 throw new CiBailout("phi " + phi + " has null operand at new predecessor"); 368 throw new CiBailout("phi " + phi + " has null operand at new predecessor");
369 } 369 }
370 } 370 }
371 continue; 371 continue;