comparison graal/GraalCompiler/src/com/sun/c1x/lir/LIRList.java @ 2703:42450f536d24

More cleanup towards separation of graphbuilding<>graph<>lirgeneration
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 18 May 2011 17:04:47 +0200
parents d06cff53b77e
children 4272b7af2d17
comparison
equal deleted inserted replaced
2702:618f545fcac5 2703:42450f536d24
395 395
396 // print flags 396 // print flags
397 if (x.checkBlockFlag(BlockBegin.BlockFlag.ExceptionEntry)) { 397 if (x.checkBlockFlag(BlockBegin.BlockFlag.ExceptionEntry)) {
398 TTY.print("ex "); 398 TTY.print("ex ");
399 } 399 }
400 if (x.checkBlockFlag(BlockBegin.BlockFlag.BackwardBranchTarget)) { 400 if (x.isLinearScanLoopHeader()) {
401 TTY.print("bb ");
402 }
403 if (x.checkBlockFlag(BlockBegin.BlockFlag.LinearScanLoopHeader)) {
404 TTY.print("lh "); 401 TTY.print("lh ");
405 } 402 }
406 if (x.checkBlockFlag(BlockBegin.BlockFlag.LinearScanLoopEnd)) { 403 if (x.isLinearScanLoopEnd()) {
407 TTY.print("le "); 404 TTY.print("le ");
408 } 405 }
409 406
410 // print block bci range 407 // print block bci range
411 TTY.print("[%d, %d] ", x.bci(), (end == null ? -1 : end.bci())); 408 TTY.print("[%d, %d] ", x.bci(), (end == null ? -1 : end.bci()));