--- old/src/hotspot/share/code/compiledIC.cpp 2018-03-23 16:35:55.583004231 +0000 +++ new/src/hotspot/share/code/compiledIC.cpp 2018-03-23 16:35:54.983063552 +0000 @@ -691,7 +691,9 @@ } void CompiledIC::print_compiled_ic() { - tty->print("Inline cache at " INTPTR_FORMAT ", calling %s " INTPTR_FORMAT " cached_value " INTPTR_FORMAT, + const char *opt = is_optimized() ? "opt " : ""; + tty->print("%sInline cache at " INTPTR_FORMAT ", calling %s " INTPTR_FORMAT " cached_value " INTPTR_FORMAT, + opt, p2i(instruction_address()), is_call_to_interpreted() ? "interpreted " : "", p2i(ic_destination()), p2i(is_optimized() ? NULL : cached_value())); }