--- old/src/hotspot/share/classfile/systemDictionary.hpp 2019-09-26 22:29:56.266116920 +0800 +++ new/src/hotspot/share/classfile/systemDictionary.hpp 2019-09-26 22:29:56.120111836 +0800 @@ -376,6 +376,9 @@ // System loader lock static oop system_loader_lock() { return _system_loader_lock_obj; } + // Protection Domain Table + static ProtectionDomainCacheTable* pd_cache_table() { return _pd_cache_table; } + public: // Sharing support. static void reorder_dictionary_for_sharing() NOT_CDS_RETURN; @@ -730,6 +733,11 @@ static oop _java_platform_loader; static bool _has_checkPackageAccess; + +public: + static TableStatistics placeholders_statistics(); + static TableStatistics loader_constraints_statistics(); + static TableStatistics protection_domain_cache_statistics(); }; #endif // SHARE_VM_CLASSFILE_SYSTEMDICTIONARY_HPP