diff -r 4b7462e3b552 -r 6199dfaf72da src/hotspot/share/c1/c1_GraphBuilder.cpp --- a/src/hotspot/share/c1/c1_GraphBuilder.cpp Wed Nov 22 16:08:39 2017 -0800 +++ b/src/hotspot/share/c1/c1_GraphBuilder.cpp Wed Nov 22 09:27:06 2017 -0800 @@ -3441,6 +3441,7 @@ if ( callee->is_native()) return "native method"; if ( callee->is_abstract()) return "abstract method"; if (!callee->can_be_compiled()) return "not compilable (disabled)"; + if (!callee->can_be_parsed()) return "cannot be parsed"; return NULL; }