comparison src/share/vm/c1/c1_LIRGenerator.cpp @ 1584:b812ff5abc73

6958292: C1: Enable parallel compilation Summary: Enable parallel compilation in C1 Reviewed-by: never, kvn
author iveresov
date Fri, 04 Jun 2010 11:18:04 -0700
parents e9ff18c4ace7
children 126ea7725993
comparison
equal deleted inserted replaced
1583:02e771df338e 1584:b812ff5abc73
302 block->set_lir(_lir); 302 block->set_lir(_lir);
303 303
304 __ branch_destination(block->label()); 304 __ branch_destination(block->label());
305 305
306 if (LIRTraceExecution && 306 if (LIRTraceExecution &&
307 Compilation::current_compilation()->hir()->start()->block_id() != block->block_id() && 307 Compilation::current()->hir()->start()->block_id() != block->block_id() &&
308 !block->is_set(BlockBegin::exception_entry_flag)) { 308 !block->is_set(BlockBegin::exception_entry_flag)) {
309 assert(block->lir()->instructions_list()->length() == 1, "should come right after br_dst"); 309 assert(block->lir()->instructions_list()->length() == 1, "should come right after br_dst");
310 trace_block_entry(block); 310 trace_block_entry(block);
311 } 311 }
312 } 312 }