< prev index next >

src/share/vm/runtime/java.cpp

Print this page

        

*** 78,89 **** #include "opto/compile.hpp" #include "opto/indexSet.hpp" #include "opto/runtime.hpp" #endif - PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC - GrowableArray<Method*>* collected_profiled_methods; int compare_methods(Method** a, Method** b) { // %%% there can be 32-bit overflow here return ((*b)->invocation_count() + (*b)->compiled_invocation_count()) --- 78,87 ----
*** 157,167 **** collected_invoked_methods = new GrowableArray<Method*>(1024); SystemDictionary::methods_do(collect_invoked_methods); collected_invoked_methods->sort(&compare_methods); // tty->cr(); ! tty->print_cr("Histogram Over MethodOop Invocation Counters (cutoff = %d):", 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, synch_total = 0, nativ_total = 0, acces_total = 0; for (int index = 0; index < collected_invoked_methods->length(); index++) { --- 155,165 ---- collected_invoked_methods = new GrowableArray<Method*>(1024); SystemDictionary::methods_do(collect_invoked_methods); collected_invoked_methods->sort(&compare_methods); // tty->cr(); ! tty->print_cr("Histogram Over MethodOop 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, synch_total = 0, nativ_total = 0, acces_total = 0; for (int index = 0; index < collected_invoked_methods->length(); index++) {
*** 332,342 **** } #ifdef ENABLE_ZAP_DEAD_LOCALS #ifdef COMPILER2 if (ZapDeadCompiledLocals) { ! tty->print_cr("Compile::CompiledZap_count = %d", Compile::CompiledZap_count); tty->print_cr("OptoRuntime::ZapDeadCompiledLocals_count = %d", OptoRuntime::ZapDeadCompiledLocals_count); } #endif // COMPILER2 #endif // ENABLE_ZAP_DEAD_LOCALS // Native memory tracking data --- 330,340 ---- } #ifdef ENABLE_ZAP_DEAD_LOCALS #ifdef COMPILER2 if (ZapDeadCompiledLocals) { ! tty->print_cr("Compile::CompiledZap_count = %d", Compile::CompiledZap_count()); tty->print_cr("OptoRuntime::ZapDeadCompiledLocals_count = %d", OptoRuntime::ZapDeadCompiledLocals_count); } #endif // COMPILER2 #endif // ENABLE_ZAP_DEAD_LOCALS // Native memory tracking data
< prev index next >