src/share/vm/runtime/java.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/runtime/java.cpp

src/share/vm/runtime/java.cpp

Print this page

        

*** 85,94 **** --- 85,95 ---- #include "compiler/methodLiveness.hpp" #include "opto/compile.hpp" #include "opto/indexSet.hpp" #include "opto/runtime.hpp" #endif + #include "aot/aotLoader.hpp" GrowableArray<Method*>* collected_profiled_methods; int compare_methods(Method** a, Method** b) { // %%% there can be 32-bit overflow here
*** 278,287 **** --- 279,292 ---- } #endif #endif #endif + if (PrintAOTStatistics) { + AOTLoader::print_statistics(); + } + if (PrintNMethodStatistics) { nmethod::print_statistics(); } if (CountCompiledCalls) { print_method_invocation_histogram();
src/share/vm/runtime/java.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File