Searched defs:new_block (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodBlocks.cpp55 ciBlock *new_block = new(_arena) ciBlock(_method, _num_blocks++, former_block->start_bci()); local
56 _blocks->append(new_block);
58 new_block->set_limit_bci(bci);
64 _bci_to_block[pos] = new_block;
77 new_block->set_exception_range(ex_start, ex_end);
120 ciBlock *new_block = block_containing(bci); local
121 if (new_block == NULL || new_block == cur_block) {
127 cur_block = new_block;
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.cpp300 BitBlock *new_block = alloc_block(); local
301 memcpy(new_block->words(), block->words(), sizeof(uint32) * words_per_block);
302 set_block(i, new_block);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp311 void StateSplit::substitute(BlockList& list, BlockBegin* old_block, BlockBegin* new_block) { argument
316 *b = new_block;
H A Dc1_GraphBuilder.cpp707 BlockBegin* new_block = new BlockBegin(block->bci()); local
711 block->block_id(), block->bci(), new_block->block_id());
715 new_block->set_depth_first_number(block->depth_first_number());
716 if (block->is_set(BlockBegin::parser_loop_header_flag)) new_block->set(BlockBegin::parser_loop_header_flag);
718 if (block->is_set(BlockBegin::subroutine_entry_flag)) new_block->set(BlockBegin::subroutine_entry_flag);
719 if (block->is_set(BlockBegin::exception_entry_flag)) new_block->set(BlockBegin::exception_entry_flag);
726 if (block->is_set(BlockBegin::was_visited_flag)) new_block->set(BlockBegin::was_visited_flag);
728 bci2block()->at_put(bci, new_block);
729 block = new_block;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp3473 const size_t new_block = beg_bit >> Log2BitsPerBlock; local
3474 if (new_block != cur_block) {
3475 cur_block = new_block;

Completed in 62 milliseconds