comparison graal/GraalCompiler/src/com/sun/c1x/target/amd64/AMD64LIRGenerator.java @ 2866:7f14e6b48a9c

added dead code elimination added ValueAnchor (temp workaround) more inlining logic (now uses DCE) IdealGraphPrinter: print even if Scheduler fails added inlining and DCE tracing options to C1XOptions
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 07 Jun 2011 16:27:08 +0200
parents e1dad0edd57a
children 5c545fef2c81
comparison
equal deleted inserted replaced
2845:e55543ff91fd 2866:7f14e6b48a9c
545 545
546 moveToPhi(); 546 moveToPhi();
547 lir.jump(getLIRBlock(x.loopBegin())); 547 lir.jump(getLIRBlock(x.loopBegin()));
548 } 548 }
549 549
550 @Override
551 public void visitValueAnchor(ValueAnchor valueAnchor) {
552 // nothing to do for ValueAnchors
553 }
554
550 } 555 }