comparison src/share/vm/opto/gcm.cpp @ 7196:2aff40cb4703

7092905: C2: Keep track of the number of dead nodes Summary: keep an (almost) accurate running count of the reachable (live) flow graph nodes. Reviewed-by: kvn, twisti, jrose, vlivanov
author bharadwaj
date Tue, 27 Nov 2012 17:24:15 -0800
parents b9a9ed0f8eeb
children 571076d3c79d
comparison
equal deleted inserted replaced
7195:2cd5e15048e6 7196:2aff40cb4703
1357 } 1357 }
1358 1358
1359 // If we inserted any instructions between a Call and his CatchNode, 1359 // If we inserted any instructions between a Call and his CatchNode,
1360 // clone the instructions on all paths below the Catch. 1360 // clone the instructions on all paths below the Catch.
1361 for( i=0; i < _num_blocks; i++ ) 1361 for( i=0; i < _num_blocks; i++ )
1362 _blocks[i]->call_catch_cleanup(_bbs); 1362 _blocks[i]->call_catch_cleanup(_bbs, C);
1363 1363
1364 #ifndef PRODUCT 1364 #ifndef PRODUCT
1365 if (trace_opto_pipelining()) { 1365 if (trace_opto_pipelining()) {
1366 tty->print("\n---- After GlobalCodeMotion ----\n"); 1366 tty->print("\n---- After GlobalCodeMotion ----\n");
1367 for (uint i = 0; i < _num_blocks; i++) { 1367 for (uint i = 0; i < _num_blocks; i++) {