< prev index next >

src/hotspot/share/runtime/vmOperation.hpp

Print this page

 96   template(ShenandoahFinalUpdateRefs)             \
 97   template(ShenandoahFinalRoots)                  \
 98   template(ShenandoahDegeneratedGC)               \
 99   template(Exit)                                  \
100   template(LinuxDllLoad)                          \
101   template(WhiteBoxOperation)                     \
102   template(JVMCIResizeCounters)                   \
103   template(ClassLoaderStatsOperation)             \
104   template(ClassLoaderHierarchyOperation)         \
105   template(DumpHashtable)                         \
106   template(CleanClassLoaderDataMetaspaces)        \
107   template(RehashStringTable)                     \
108   template(RehashSymbolTable)                     \
109   template(PrintCompileQueue)                     \
110   template(PrintClassHierarchy)                   \
111   template(PrintClasses)                          \
112   template(PrintMetadata)                         \
113   template(GTestExecuteAtSafepoint)               \
114   template(GTestStopSafepoint)                    \
115   template(JFROldObject)                          \

116   template(JvmtiPostObjectFree)                   \
117   template(RendezvousGCThreads)                   \
118   template(JFRInitializeCPUTimeSampler)       \
119   template(JFRTerminateCPUTimeSampler)        \
120   template(ReinitializeMDO)
121 
122 class Thread;
123 class outputStream;
124 
125 class VM_Operation : public StackObj {
126  public:
127   enum VMOp_Type {
128     VM_OPS_DO(VM_OP_ENUM)
129     VMOp_Terminating
130   };
131 
132  private:
133   Thread*         _calling_thread;
134 
135   // The VM operation name array

 96   template(ShenandoahFinalUpdateRefs)             \
 97   template(ShenandoahFinalRoots)                  \
 98   template(ShenandoahDegeneratedGC)               \
 99   template(Exit)                                  \
100   template(LinuxDllLoad)                          \
101   template(WhiteBoxOperation)                     \
102   template(JVMCIResizeCounters)                   \
103   template(ClassLoaderStatsOperation)             \
104   template(ClassLoaderHierarchyOperation)         \
105   template(DumpHashtable)                         \
106   template(CleanClassLoaderDataMetaspaces)        \
107   template(RehashStringTable)                     \
108   template(RehashSymbolTable)                     \
109   template(PrintCompileQueue)                     \
110   template(PrintClassHierarchy)                   \
111   template(PrintClasses)                          \
112   template(PrintMetadata)                         \
113   template(GTestExecuteAtSafepoint)               \
114   template(GTestStopSafepoint)                    \
115   template(JFROldObject)                          \
116   template(ClassPrintLayout)                      \
117   template(JvmtiPostObjectFree)                   \
118   template(RendezvousGCThreads)                   \
119   template(JFRInitializeCPUTimeSampler)       \
120   template(JFRTerminateCPUTimeSampler)        \
121   template(ReinitializeMDO)
122 
123 class Thread;
124 class outputStream;
125 
126 class VM_Operation : public StackObj {
127  public:
128   enum VMOp_Type {
129     VM_OPS_DO(VM_OP_ENUM)
130     VMOp_Terminating
131   };
132 
133  private:
134   Thread*         _calling_thread;
135 
136   // The VM operation name array
< prev index next >