--- old/src/share/vm/opto/parse1.cpp 2016-06-16 10:15:01.543027647 -0400 +++ new/src/share/vm/opto/parse1.cpp 2016-06-16 10:15:01.436027081 -0400 @@ -425,7 +425,7 @@ _iter.reset_to_method(method()); _flow = method()->get_flow_analysis(); if (_flow->failing()) { - C->record_method_not_compilable_all_tiers(_flow->failure_reason()); + C->record_method_not_compilable(_flow->failure_reason()); } #ifndef PRODUCT @@ -1118,7 +1118,7 @@ // Check for really stupid bail-out cases. uint len = TypeFunc::Parms + method()->max_locals() + method()->max_stack(); if (len >= 32760) { - C->record_method_not_compilable_all_tiers("too many local variables"); + C->record_method_not_compilable("too many local variables"); return NULL; }