92 template(ShenandoahInitUpdateRefs) \
93 template(ShenandoahFinalUpdateRefs) \
94 template(ShenandoahFinalVerify) \
95 template(ShenandoahDegeneratedGC) \
96 template(Exit) \
97 template(LinuxDllLoad) \
98 template(WhiteBoxOperation) \
99 template(ClassLoaderStatsOperation) \
100 template(ClassLoaderHierarchyOperation) \
101 template(DumpHashtable) \
102 template(CleanClassLoaderDataMetaspaces) \
103 template(RehashStringTable) \
104 template(RehashSymbolTable) \
105 template(PrintCompileQueue) \
106 template(PrintClassHierarchy) \
107 template(PrintClasses) \
108 template(PrintMetadata) \
109 template(GTestExecuteAtSafepoint) \
110 template(GTestStopSafepoint) \
111 template(JFROldObject) \
112 template(RendezvousGCThreads) \
113 template(JFRInitializeCPUTimeSampler) \
114 template(JFRTerminateCPUTimeSampler) \
115
116 class Thread;
117 class outputStream;
118
119 class VM_Operation : public StackObj {
120 public:
121 enum VMOp_Type {
122 VM_OPS_DO(VM_OP_ENUM)
123 VMOp_Terminating
124 };
125
126 private:
127 Thread* _calling_thread;
128
129 // The VM operation name array
130 static const char* _names[];
131
|
92 template(ShenandoahInitUpdateRefs) \
93 template(ShenandoahFinalUpdateRefs) \
94 template(ShenandoahFinalVerify) \
95 template(ShenandoahDegeneratedGC) \
96 template(Exit) \
97 template(LinuxDllLoad) \
98 template(WhiteBoxOperation) \
99 template(ClassLoaderStatsOperation) \
100 template(ClassLoaderHierarchyOperation) \
101 template(DumpHashtable) \
102 template(CleanClassLoaderDataMetaspaces) \
103 template(RehashStringTable) \
104 template(RehashSymbolTable) \
105 template(PrintCompileQueue) \
106 template(PrintClassHierarchy) \
107 template(PrintClasses) \
108 template(PrintMetadata) \
109 template(GTestExecuteAtSafepoint) \
110 template(GTestStopSafepoint) \
111 template(JFROldObject) \
112 template(ClassPrintLayout) \
113 template(RendezvousGCThreads) \
114 template(JFRInitializeCPUTimeSampler) \
115 template(JFRTerminateCPUTimeSampler) \
116
117 class Thread;
118 class outputStream;
119
120 class VM_Operation : public StackObj {
121 public:
122 enum VMOp_Type {
123 VM_OPS_DO(VM_OP_ENUM)
124 VMOp_Terminating
125 };
126
127 private:
128 Thread* _calling_thread;
129
130 // The VM operation name array
131 static const char* _names[];
132
|