--- old/src/share/vm/runtime/java.cpp 2017-03-08 11:11:28.124988109 -0500 +++ new/src/share/vm/runtime/java.cpp 2017-03-08 11:11:27.830209193 -0500 @@ -112,7 +112,7 @@ ResourceMark rm; HandleMark hm; collected_profiled_methods = new GrowableArray(1024); - ClassLoaderDataGraph::methods_do(collect_profiled_methods); + SystemDictionary::methods_do(collect_profiled_methods); collected_profiled_methods->sort(&compare_methods); int count = collected_profiled_methods->length(); @@ -163,7 +163,7 @@ collected_invoked_methods->sort(&compare_methods); // tty->cr(); - tty->print_cr("Histogram Over MethodOop Invocation Counters (cutoff = " INTX_FORMAT "):", MethodHistogramCutoff); + tty->print_cr("Histogram Over Method Invocation Counters (cutoff = " INTX_FORMAT "):", MethodHistogramCutoff); tty->cr(); tty->print_cr("____Count_(I+C)____Method________________________Module_________________"); unsigned total = 0, int_total = 0, comp_total = 0, static_total = 0, final_total = 0,