--- old/src/share/vm/runtime/java.cpp 2016-11-03 14:16:51.000000000 -0700 +++ new/src/share/vm/runtime/java.cpp 2016-11-03 14:16:51.000000000 -0700 @@ -23,6 +23,7 @@ */ #include "precompiled.hpp" +#include "aot/aotLoader.hpp" #include "classfile/classLoader.hpp" #include "classfile/stringTable.hpp" #include "classfile/systemDictionary.hpp" @@ -280,6 +281,10 @@ #endif #endif + if (PrintAOTStatistics) { + AOTLoader::print_statistics(); + } + if (PrintNMethodStatistics) { nmethod::print_statistics(); }