< prev index next >

src/hotspot/share/code/compiledIC.cpp

Print this page

        

*** 285,295 **** } } if (TraceICs) { ResourceMark rm; ! assert(!call_info->selected_method().is_null(), "Unexpected null selected method"); tty->print_cr ("IC@" INTPTR_FORMAT ": to megamorphic %s entry: " INTPTR_FORMAT, p2i(instruction_address()), call_info->selected_method()->print_value_string(), p2i(entry)); } // We can't check this anymore. With lazy deopt we could have already --- 285,295 ---- } } if (TraceICs) { ResourceMark rm; ! assert(call_info->selected_method() != NULL, "Unexpected null selected method"); tty->print_cr ("IC@" INTPTR_FORMAT ": to megamorphic %s entry: " INTPTR_FORMAT, p2i(instruction_address()), call_info->selected_method()->print_value_string(), p2i(entry)); } // We can't check this anymore. With lazy deopt we could have already
< prev index next >