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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp682 assert(cur->loop_depth() == 0, "cannot set loop-depth twice");
684 int loop_depth = 0; local
688 loop_depth++;
692 cur->set_loop_depth(loop_depth);
745 int weight = (cur->loop_depth() & 0x7FFF) << 16;
963 tty->print_cr(" -> loop_index: %2d, loop_depth: %2d", cur->loop_index(), cur->loop_depth());
971 tty->print("%4d: B%2d loop: %2d depth: %2d", cur->linear_scan_number(), cur->block_id(), cur->loop_index(), cur->loop_depth());
1038 if (cur->loop_depth() == sux->loop_depth()) {
[all...]
H A Dc1_CFGPrinter.cpp324 print("loop_depth %d", block->loop_depth());
H A Dc1_LinearScan.cpp359 int def_loop_depth = block_of_op_with_id(interval->spill_definition_pos())->loop_depth();
360 int spill_loop_depth = block_of_op_with_id(spill_pos)->loop_depth();
3136 tty->print("B%d [%d, %d, %d, %d] ", block->block_id(), block->first_lir_instruction_id(), block->last_lir_instruction_id(), block->loop_index(), block->loop_depth());
5018 int min_loop_depth = max_block->loop_depth();
5022 if (cur->loop_depth() < min_loop_depth) {
5024 min_loop_depth = cur->loop_depth();
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()) {
[all...]
H A Dc1_Instruction.hpp1616 int loop_depth() const { return _loop_depth; }

Completed in 56 milliseconds