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