comparison graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2516:a384fac3fd34

Removed anything OSR-related.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 15:49:27 +0200
parents 4fdef1464592
children 268b8eb84b6e
comparison
equal deleted inserted replaced
2515:4fdef1464592 2516:a384fac3fd34
96 C1XTimers.HIR_OPTIMIZE.stop(); 96 C1XTimers.HIR_OPTIMIZE.stop();
97 } 97 }
98 } 98 }
99 99
100 private void buildGraph() { 100 private void buildGraph() {
101 topScope = new IRScope(null, null, compilation.method, compilation.osrBCI); 101 topScope = new IRScope(null, null, compilation.method, -1);
102 102
103 // Graph builder must set the startBlock and the osrEntryBlock 103 // Graph builder must set the startBlock and the osrEntryBlock
104 new GraphBuilder(compilation, this).build(topScope); 104 new GraphBuilder(compilation, this).build(topScope);
105 assert startBlock != null; 105 assert startBlock != null;
106 verifyAndPrint("After graph building"); 106 verifyAndPrint("After graph building");