Searched refs:header_block (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.hpp354 BlockBegin* header_block(BlockBegin* entry, BlockBegin::Flag f, ValueStack* state);
H A Dc1_LinearScan.hpp839 void reorder_short_loop(BlockList* code, BlockBegin* header_block, int header_idx);
H A Dc1_LinearScan.cpp6062 void ControlFlowOptimizer::reorder_short_loop(BlockList* code, BlockBegin* header_block, int header_idx) {
6065 while (i < max_end && code->at(i)->loop_depth() >= header_block->loop_depth()) {
6069 if (i == code->length() || code->at(i)->loop_depth() < header_block->loop_depth()) {
6073 if (end_block->number_of_sux() == 1 && end_block->sux_at(0) == header_block) {
6075 // the header_block is the last block instead of the first block of the loop
6078 header_block->block_id(), end_block->block_id()));
6083 code->at_put(end_idx, header_block);
H A Dc1_GraphBuilder.cpp2830 BlockBegin* GraphBuilder::header_block(BlockBegin* entry, BlockBegin::Flag f, ValueStack* state) { function in class:GraphBuilder
2863 new_header_block = header_block(std_entry, BlockBegin::std_entry_flag, state);

Completed in 76 milliseconds