src/share/vm/opto/loopopts.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/opto/loopopts.cpp

src/share/vm/opto/loopopts.cpp

Print this page
rev 7259 : [mq]: max_node_limit.8u40

*** 734,744 **** // Bail out if the region and its phis have too many users. int weight = 0; for (DUIterator_Fast imax, i = region->fast_outs(imax); i < imax; i++) { weight += region->fast_out(i)->outcnt(); } ! int nodes_left = MaxNodeLimit - C->live_nodes(); if (weight * 8 > nodes_left) { #ifndef PRODUCT if (PrintOpto) tty->print_cr("*** Split-if bails out: %d nodes, region weight %d", C->unique(), weight); #endif --- 734,744 ---- // Bail out if the region and its phis have too many users. int weight = 0; for (DUIterator_Fast imax, i = region->fast_outs(imax); i < imax; i++) { weight += region->fast_out(i)->outcnt(); } ! int nodes_left = C->max_node_limit() - C->live_nodes(); if (weight * 8 > nodes_left) { #ifndef PRODUCT if (PrintOpto) tty->print_cr("*** Split-if bails out: %d nodes, region weight %d", C->unique(), weight); #endif
src/share/vm/opto/loopopts.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File