src/hotspot/share/services/diagnosticCommand.cpp
changeset 50443 8e56de95ce10
parent 49980 57dd7b4ba338
child 50785 d1b24f2ceca5
equal deleted inserted replaced
50442:ab967988f850 50443:8e56de95ce10
    22  *
    22  *
    23  */
    23  */
    24 
    24 
    25 #include "precompiled.hpp"
    25 #include "precompiled.hpp"
    26 #include "jvm.h"
    26 #include "jvm.h"
       
    27 #include "classfile/classLoaderHierarchyDCmd.hpp"
    27 #include "classfile/classLoaderStats.hpp"
    28 #include "classfile/classLoaderStats.hpp"
    28 #include "classfile/compactHashtable.hpp"
    29 #include "classfile/compactHashtable.hpp"
    29 #include "compiler/compileBroker.hpp"
    30 #include "compiler/compileBroker.hpp"
    30 #include "compiler/directivesParser.hpp"
    31 #include "compiler/directivesParser.hpp"
    31 #include "gc/shared/vmGCOperations.hpp"
    32 #include "gc/shared/vmGCOperations.hpp"
    99 #if INCLUDE_JVMTI
   100 #if INCLUDE_JVMTI
   100   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<JVMTIDataDumpDCmd>(full_export, true, false));
   101   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<JVMTIDataDumpDCmd>(full_export, true, false));
   101 #endif // INCLUDE_JVMTI
   102 #endif // INCLUDE_JVMTI
   102   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<ThreadDumpDCmd>(full_export, true, false));
   103   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<ThreadDumpDCmd>(full_export, true, false));
   103   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<ClassLoaderStatsDCmd>(full_export, true, false));
   104   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<ClassLoaderStatsDCmd>(full_export, true, false));
       
   105   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<ClassLoaderHierarchyDCmd>(full_export, true, false));
   104   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<CompileQueueDCmd>(full_export, true, false));
   106   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<CompileQueueDCmd>(full_export, true, false));
   105   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<CodeListDCmd>(full_export, true, false));
   107   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<CodeListDCmd>(full_export, true, false));
   106   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<CodeCacheDCmd>(full_export, true, false));
   108   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<CodeCacheDCmd>(full_export, true, false));
   107   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<TouchedMethodsDCmd>(full_export, true, false));
   109   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<TouchedMethodsDCmd>(full_export, true, false));
   108   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<CodeHeapAnalyticsDCmd>(full_export, true, false));
   110   DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<CodeHeapAnalyticsDCmd>(full_export, true, false));