< 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 
119 class Thread;
120 class outputStream;
121 
122 class VM_Operation : public StackObj {
123  public:
124   enum VMOp_Type {
125     VM_OPS_DO(VM_OP_ENUM)
126     VMOp_Terminating
127   };
128 
129  private:
130   Thread*         _calling_thread;
131 
132   // The VM operation name array
133   static const char* _names[];
134 
135  public:

 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 
120 class Thread;
121 class outputStream;
122 
123 class VM_Operation : public StackObj {
124  public:
125   enum VMOp_Type {
126     VM_OPS_DO(VM_OP_ENUM)
127     VMOp_Terminating
128   };
129 
130  private:
131   Thread*         _calling_thread;
132 
133   // The VM operation name array
134   static const char* _names[];
135 
136  public:
< prev index next >