src/share/vm/runtime/java.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/runtime/java.cpp	Mon Oct 31 17:47:07 2016
--- new/src/share/vm/runtime/java.cpp	Mon Oct 31 17:47:07 2016

*** 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