src/hotspot/share/code/compiledIC.cpp
changeset 59056 15936b142f86
parent 58505 c16f3a24a6fc
equal deleted inserted replaced
59055:57ad70bcf06c 59056:15936b142f86
   285     }
   285     }
   286   }
   286   }
   287 
   287 
   288   if (TraceICs) {
   288   if (TraceICs) {
   289     ResourceMark rm;
   289     ResourceMark rm;
   290     assert(!call_info->selected_method().is_null(), "Unexpected null selected method");
   290     assert(call_info->selected_method() != NULL, "Unexpected null selected method");
   291     tty->print_cr ("IC@" INTPTR_FORMAT ": to megamorphic %s entry: " INTPTR_FORMAT,
   291     tty->print_cr ("IC@" INTPTR_FORMAT ": to megamorphic %s entry: " INTPTR_FORMAT,
   292                    p2i(instruction_address()), call_info->selected_method()->print_value_string(), p2i(entry));
   292                    p2i(instruction_address()), call_info->selected_method()->print_value_string(), p2i(entry));
   293   }
   293   }
   294 
   294 
   295   // We can't check this anymore. With lazy deopt we could have already
   295   // We can't check this anymore. With lazy deopt we could have already