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

src/share/vm/ci/bcEscapeAnalyzer.cpp

Print this page

        

*** 1285,1298 **** tty->print_cr("method is native."); else if (!method()->holder()->is_initialized()) tty->print_cr("class of method is not initialized."); else if (_level > MaxBCEAEstimateLevel) tty->print_cr("level (%d) exceeds MaxBCEAEstimateLevel (%d).", ! _level, MaxBCEAEstimateLevel); else if (method()->code_size() > MaxBCEAEstimateSize) ! tty->print_cr("code size (%d) exceeds MaxBCEAEstimateSize.", ! method()->code_size(), MaxBCEAEstimateSize); else ShouldNotReachHere(); } clear_escape_info(); --- 1285,1298 ---- tty->print_cr("method is native."); else if (!method()->holder()->is_initialized()) tty->print_cr("class of method is not initialized."); else if (_level > MaxBCEAEstimateLevel) tty->print_cr("level (%d) exceeds MaxBCEAEstimateLevel (%d).", ! _level, (int) MaxBCEAEstimateLevel); else if (method()->code_size() > MaxBCEAEstimateSize) ! tty->print_cr("code size (%d) exceeds MaxBCEAEstimateSize (%d).", ! method()->code_size(), (int) MaxBCEAEstimateSize); else ShouldNotReachHere(); } clear_escape_info();
src/share/vm/ci/bcEscapeAnalyzer.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File