Lines Matching refs:depth
347 int depth;
353 depth++;
354 if (depth > max_recurse_depth) {
367 depth--;
371 depth = 0;
376 assert(depth == 0, "should have counted back down");
390 assert(depth == 0, "should have counted back down");
395 depth = 0;
668 TRACE_LINEAR_SCAN(3, "----- computing loop-depth and weight");
679 TRACE_LINEAR_SCAN(4, tty->print_cr("Computing loop depth for block B%d", cur->block_id()));
681 // compute loop-depth and loop-index for the block
682 assert(cur->loop_depth() == 0, "cannot set loop-depth twice");
744 // limit loop-depth to 15 bit (only for security reason, it will never be so big)
753 // the same loop depth, but a different loop index (can happen for endless loops
971 tty->print("%4d: B%2d loop: %2d depth: %2d", cur->linear_scan_number(), cur->block_id(), cur->loop_index(), cur->loop_depth());
1039 assert(cur->loop_index() == sux->loop_index() || sux->is_set(BlockBegin::linear_scan_loop_header_flag), "successing blocks with same loop depth must have same loop index");
1051 assert(cur->loop_index() == pred->loop_index() || cur->is_set(BlockBegin::linear_scan_loop_header_flag), "successing blocks with same loop depth must have same loop index");