--- old/src/hotspot/share/opto/bytecodeInfo.cpp 2017-11-21 16:10:12.545897621 -0800 +++ new/src/hotspot/share/opto/bytecodeInfo.cpp 2017-11-21 16:10:12.203882302 -0800 @@ -480,6 +480,7 @@ if ( callee->is_abstract()) return "abstract method"; if (!callee->has_balanced_monitors()) return "not compilable (unbalanced monitors)"; if ( callee->get_flow_analysis()->failing()) return "not compilable (flow analysis failed)"; + if (!callee->can_be_parsed()) return "cannot be parsed"; return NULL; }