comparison graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2697:bd4c3be86fb7

Backend clean up.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 18 May 2011 15:14:55 +0200
parents 6ab73784566a
children efbdb3ea95c9
comparison
equal deleted inserted replaced
2696:c4201554beeb 2697:bd4c3be86fb7
87 } 87 }
88 88
89 private void buildGraph() { 89 private void buildGraph() {
90 // Graph builder must set the startBlock and the osrEntryBlock 90 // Graph builder must set the startBlock and the osrEntryBlock
91 new GraphBuilder(compilation, this, compilation.graph).build(); 91 new GraphBuilder(compilation, this, compilation.graph).build();
92 assert startBlock != null;
93 verifyAndPrint("After graph building"); 92 verifyAndPrint("After graph building");
94 93
95 if (C1XOptions.PrintCompilation) { 94 if (C1XOptions.PrintCompilation) {
96 TTY.print(String.format("%3d blocks | ", this.numberOfBlocks())); 95 TTY.print(String.format("%3d blocks | ", this.numberOfBlocks()));
97 } 96 }