author | neliasso |
Thu, 25 Feb 2016 10:44:19 +0100 | |
changeset 36322 | 218528915a61 |
parent 35825 | 7c7652ee137b |
child 37289 | 9989add27bf4 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
2 |
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4750
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4750
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4750
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_RUNTIME_VM_OPERATIONS_HPP |
26 |
#define SHARE_VM_RUNTIME_VM_OPERATIONS_HPP |
|
27 |
||
28 |
#include "classfile/javaClasses.hpp" |
|
29 |
#include "memory/allocation.hpp" |
|
30 |
#include "oops/oop.hpp" |
|
31 |
#include "runtime/thread.hpp" |
|
32 |
#include "utilities/top.hpp" |
|
35086
bbf32241d851
8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents:
33160
diff
changeset
|
33 |
#include "code/codeCache.hpp" |
7397 | 34 |
|
1 | 35 |
// The following classes are used for operations |
36 |
// initiated by a Java thread but that must |
|
37 |
// take place in the VMThread. |
|
38 |
||
39 |
#define VM_OP_ENUM(type) VMOp_##type, |
|
40 |
||
41 |
// Note: When new VM_XXX comes up, add 'XXX' to the template table. |
|
42 |
#define VM_OPS_DO(template) \ |
|
43 |
template(Dummy) \ |
|
44 |
template(ThreadStop) \ |
|
45 |
template(ThreadDump) \ |
|
46 |
template(PrintThreads) \ |
|
47 |
template(FindDeadlocks) \ |
|
35086
bbf32241d851
8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents:
33160
diff
changeset
|
48 |
template(ClearICs) \ |
1 | 49 |
template(ForceSafepoint) \ |
50 |
template(ForceAsyncSafepoint) \ |
|
51 |
template(Deoptimize) \ |
|
52 |
template(DeoptimizeFrame) \ |
|
53 |
template(DeoptimizeAll) \ |
|
54 |
template(ZombieAll) \ |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
55 |
template(UnlinkSymbols) \ |
1 | 56 |
template(Verify) \ |
57 |
template(PrintJNI) \ |
|
58 |
template(HeapDumper) \ |
|
59 |
template(DeoptimizeTheWorld) \ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
60 |
template(CollectForMetadataAllocation) \ |
1 | 61 |
template(GC_HeapInspection) \ |
62 |
template(GenCollectFull) \ |
|
63 |
template(GenCollectFullConcurrent) \ |
|
64 |
template(GenCollectForAllocation) \ |
|
65 |
template(ParallelGCFailedAllocation) \ |
|
66 |
template(ParallelGCSystemGC) \ |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
386
diff
changeset
|
67 |
template(CGC_Operation) \ |
1 | 68 |
template(CMS_Initial_Mark) \ |
69 |
template(CMS_Final_Remark) \ |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
386
diff
changeset
|
70 |
template(G1CollectFull) \ |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
386
diff
changeset
|
71 |
template(G1CollectForAllocation) \ |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
386
diff
changeset
|
72 |
template(G1IncCollectionPause) \ |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
26587
diff
changeset
|
73 |
template(DestroyAllocationContext) \ |
1 | 74 |
template(EnableBiasedLocking) \ |
75 |
template(RevokeBias) \ |
|
76 |
template(BulkRevokeBias) \ |
|
77 |
template(PopulateDumpSharedSpace) \ |
|
78 |
template(JNIFunctionTableCopier) \ |
|
79 |
template(RedefineClasses) \ |
|
23180
e87156376bed
6471769: Error: assert(_cur_stack_depth == count_frames(),"cur_stack_depth out of sync")
sspitsyn
parents:
22551
diff
changeset
|
80 |
template(UpdateForPopTopFrame) \ |
e87156376bed
6471769: Error: assert(_cur_stack_depth == count_frames(),"cur_stack_depth out of sync")
sspitsyn
parents:
22551
diff
changeset
|
81 |
template(SetFramePop) \ |
1 | 82 |
template(GetOwnedMonitorInfo) \ |
83 |
template(GetObjectMonitorUsage) \ |
|
84 |
template(GetCurrentContendedMonitor) \ |
|
85 |
template(GetStackTrace) \ |
|
86 |
template(GetMultipleStackTraces) \ |
|
87 |
template(GetAllStackTraces) \ |
|
88 |
template(GetThreadListStackTraces) \ |
|
89 |
template(GetFrameCount) \ |
|
90 |
template(GetFrameLocation) \ |
|
91 |
template(ChangeBreakpoints) \ |
|
92 |
template(GetOrSetLocal) \ |
|
93 |
template(GetCurrentLocation) \ |
|
94 |
template(EnterInterpOnlyMode) \ |
|
95 |
template(ChangeSingleStep) \ |
|
96 |
template(HeapWalkOperation) \ |
|
97 |
template(HeapIterateOperation) \ |
|
98 |
template(ReportJavaOutOfMemory) \ |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8921
diff
changeset
|
99 |
template(JFRCheckpoint) \ |
1 | 100 |
template(Exit) \ |
15926
8e87d545195f
7107135: Stack guard pages are no more protected after loading a shared library with executable stack
iklam
parents:
13728
diff
changeset
|
101 |
template(LinuxDllLoad) \ |
23517 | 102 |
template(RotateGCLog) \ |
23848 | 103 |
template(WhiteBoxOperation) \ |
25051
8110ec6e7340
8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents:
23848
diff
changeset
|
104 |
template(ClassLoaderStatsOperation) \ |
28363
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27696
diff
changeset
|
105 |
template(DumpHashtable) \ |
31790 | 106 |
template(DumpTouchedMethods) \ |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
26837
diff
changeset
|
107 |
template(MarkActiveNMethods) \ |
36322 | 108 |
template(PrintCompileQueue) \ |
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
109 |
template(PrintClassHierarchy) \ |
1 | 110 |
|
13195 | 111 |
class VM_Operation: public CHeapObj<mtInternal> { |
1 | 112 |
public: |
113 |
enum Mode { |
|
114 |
_safepoint, // blocking, safepoint, vm_op C-heap allocated |
|
115 |
_no_safepoint, // blocking, no safepoint, vm_op C-Heap allocated |
|
116 |
_concurrent, // non-blocking, no safepoint, vm_op C-Heap allocated |
|
117 |
_async_safepoint // non-blocking, safepoint, vm_op C-Heap allocated |
|
118 |
}; |
|
119 |
||
120 |
enum VMOp_Type { |
|
121 |
VM_OPS_DO(VM_OP_ENUM) |
|
122 |
VMOp_Terminating |
|
123 |
}; |
|
124 |
||
125 |
private: |
|
126 |
Thread* _calling_thread; |
|
127 |
ThreadPriority _priority; |
|
128 |
long _timestamp; |
|
129 |
VM_Operation* _next; |
|
130 |
VM_Operation* _prev; |
|
131 |
||
132 |
// The VM operation name array |
|
133 |
static const char* _names[]; |
|
134 |
||
135 |
public: |
|
136 |
VM_Operation() { _calling_thread = NULL; _next = NULL; _prev = NULL; } |
|
137 |
virtual ~VM_Operation() {} |
|
138 |
||
139 |
// VM operation support (used by VM thread) |
|
140 |
Thread* calling_thread() const { return _calling_thread; } |
|
141 |
ThreadPriority priority() { return _priority; } |
|
142 |
void set_calling_thread(Thread* thread, ThreadPriority priority); |
|
143 |
||
144 |
long timestamp() const { return _timestamp; } |
|
145 |
void set_timestamp(long timestamp) { _timestamp = timestamp; } |
|
146 |
||
147 |
// Called by VM thread - does in turn invoke doit(). Do not override this |
|
148 |
void evaluate(); |
|
149 |
||
150 |
// evaluate() is called by the VMThread and in turn calls doit(). |
|
151 |
// If the thread invoking VMThread::execute((VM_Operation*) is a JavaThread, |
|
152 |
// doit_prologue() is called in that thread before transferring control to |
|
153 |
// the VMThread. |
|
154 |
// If doit_prologue() returns true the VM operation will proceed, and |
|
155 |
// doit_epilogue() will be called by the JavaThread once the VM operation |
|
156 |
// completes. If doit_prologue() returns false the VM operation is cancelled. |
|
157 |
virtual void doit() = 0; |
|
158 |
virtual bool doit_prologue() { return true; }; |
|
159 |
virtual void doit_epilogue() {}; // Note: Not called if mode is: _concurrent |
|
160 |
||
161 |
// Type test |
|
162 |
virtual bool is_methodCompiler() const { return false; } |
|
163 |
||
164 |
// Linking |
|
165 |
VM_Operation *next() const { return _next; } |
|
166 |
VM_Operation *prev() const { return _prev; } |
|
167 |
void set_next(VM_Operation *next) { _next = next; } |
|
168 |
void set_prev(VM_Operation *prev) { _prev = prev; } |
|
169 |
||
22551 | 170 |
// Configuration. Override these appropriately in subclasses. |
1 | 171 |
virtual VMOp_Type type() const = 0; |
172 |
virtual Mode evaluation_mode() const { return _safepoint; } |
|
173 |
virtual bool allow_nested_vm_operations() const { return false; } |
|
174 |
virtual bool is_cheap_allocated() const { return false; } |
|
175 |
virtual void oops_do(OopClosure* f) { /* do nothing */ }; |
|
176 |
||
177 |
// CAUTION: <don't hang yourself with following rope> |
|
178 |
// If you override these methods, make sure that the evaluation |
|
179 |
// of these methods is race-free and non-blocking, since these |
|
180 |
// methods may be evaluated either by the mutators or by the |
|
181 |
// vm thread, either concurrently with mutators or with the mutators |
|
182 |
// stopped. In other words, taking locks is verboten, and if there |
|
183 |
// are any races in evaluating the conditions, they'd better be benign. |
|
184 |
virtual bool evaluate_at_safepoint() const { |
|
185 |
return evaluation_mode() == _safepoint || |
|
186 |
evaluation_mode() == _async_safepoint; |
|
187 |
} |
|
188 |
virtual bool evaluate_concurrently() const { |
|
189 |
return evaluation_mode() == _concurrent || |
|
190 |
evaluation_mode() == _async_safepoint; |
|
191 |
} |
|
192 |
||
18025 | 193 |
static const char* mode_to_string(Mode mode); |
194 |
||
1 | 195 |
// Debugging |
31234
48000028382c
8081219: hs_err improvement: Add event logging for class redefinition to the hs_err file
coleenp
parents:
29071
diff
changeset
|
196 |
virtual void print_on_error(outputStream* st) const; |
1 | 197 |
const char* name() const { return _names[type()]; } |
198 |
static const char* name(int type) { |
|
199 |
assert(type >= 0 && type < VMOp_Terminating, "invalid VM operation type"); |
|
200 |
return _names[type]; |
|
201 |
} |
|
202 |
#ifndef PRODUCT |
|
203 |
void print_on(outputStream* st) const { print_on_error(st); } |
|
204 |
#endif |
|
205 |
}; |
|
206 |
||
207 |
class VM_ThreadStop: public VM_Operation { |
|
208 |
private: |
|
209 |
oop _thread; // The Thread that the Throwable is thrown against |
|
210 |
oop _throwable; // The Throwable thrown at the target Thread |
|
211 |
public: |
|
212 |
// All oops are passed as JNI handles, since there is no guarantee that a GC might happen before the |
|
213 |
// VM operation is executed. |
|
214 |
VM_ThreadStop(oop thread, oop throwable) { |
|
215 |
_thread = thread; |
|
216 |
_throwable = throwable; |
|
217 |
} |
|
218 |
VMOp_Type type() const { return VMOp_ThreadStop; } |
|
219 |
oop target_thread() const { return _thread; } |
|
220 |
oop throwable() const { return _throwable;} |
|
221 |
void doit(); |
|
222 |
// We deoptimize if top-most frame is compiled - this might require a C2I adapter to be generated |
|
223 |
bool allow_nested_vm_operations() const { return true; } |
|
224 |
Mode evaluation_mode() const { return _async_safepoint; } |
|
225 |
bool is_cheap_allocated() const { return true; } |
|
226 |
||
227 |
// GC support |
|
228 |
void oops_do(OopClosure* f) { |
|
229 |
f->do_oop(&_thread); f->do_oop(&_throwable); |
|
230 |
} |
|
231 |
}; |
|
232 |
||
35086
bbf32241d851
8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents:
33160
diff
changeset
|
233 |
class VM_ClearICs: public VM_Operation { |
bbf32241d851
8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents:
33160
diff
changeset
|
234 |
public: |
bbf32241d851
8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents:
33160
diff
changeset
|
235 |
VM_ClearICs() {} |
bbf32241d851
8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents:
33160
diff
changeset
|
236 |
void doit() { CodeCache::clear_inline_caches(); } |
bbf32241d851
8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents:
33160
diff
changeset
|
237 |
VMOp_Type type() const { return VMOp_ClearICs; } |
bbf32241d851
8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents:
33160
diff
changeset
|
238 |
}; |
bbf32241d851
8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents:
33160
diff
changeset
|
239 |
|
1 | 240 |
// dummy vm op, evaluated just to force a safepoint |
241 |
class VM_ForceSafepoint: public VM_Operation { |
|
242 |
public: |
|
243 |
VM_ForceSafepoint() {} |
|
244 |
void doit() {} |
|
245 |
VMOp_Type type() const { return VMOp_ForceSafepoint; } |
|
246 |
}; |
|
247 |
||
248 |
// dummy vm op, evaluated just to force a safepoint |
|
249 |
class VM_ForceAsyncSafepoint: public VM_Operation { |
|
250 |
public: |
|
251 |
VM_ForceAsyncSafepoint() {} |
|
252 |
void doit() {} |
|
253 |
VMOp_Type type() const { return VMOp_ForceAsyncSafepoint; } |
|
254 |
Mode evaluation_mode() const { return _async_safepoint; } |
|
255 |
bool is_cheap_allocated() const { return true; } |
|
256 |
}; |
|
257 |
||
258 |
class VM_Deoptimize: public VM_Operation { |
|
259 |
public: |
|
260 |
VM_Deoptimize() {} |
|
261 |
VMOp_Type type() const { return VMOp_Deoptimize; } |
|
262 |
void doit(); |
|
263 |
bool allow_nested_vm_operations() const { return true; } |
|
264 |
}; |
|
265 |
||
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
26837
diff
changeset
|
266 |
class VM_MarkActiveNMethods: public VM_Operation { |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
26837
diff
changeset
|
267 |
public: |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
26837
diff
changeset
|
268 |
VM_MarkActiveNMethods() {} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
26837
diff
changeset
|
269 |
VMOp_Type type() const { return VMOp_MarkActiveNMethods; } |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
26837
diff
changeset
|
270 |
void doit(); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
26837
diff
changeset
|
271 |
bool allow_nested_vm_operations() const { return true; } |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
26837
diff
changeset
|
272 |
}; |
7106
867c9d296c6b
6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents:
5547
diff
changeset
|
273 |
|
867c9d296c6b
6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents:
5547
diff
changeset
|
274 |
// Deopt helper that can deoptimize frames in threads other than the |
867c9d296c6b
6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents:
5547
diff
changeset
|
275 |
// current thread. Only used through Deoptimization::deoptimize_frame. |
1 | 276 |
class VM_DeoptimizeFrame: public VM_Operation { |
7106
867c9d296c6b
6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents:
5547
diff
changeset
|
277 |
friend class Deoptimization; |
867c9d296c6b
6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents:
5547
diff
changeset
|
278 |
|
1 | 279 |
private: |
280 |
JavaThread* _thread; |
|
281 |
intptr_t* _id; |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31790
diff
changeset
|
282 |
int _reason; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31790
diff
changeset
|
283 |
VM_DeoptimizeFrame(JavaThread* thread, intptr_t* id, int reason); |
7106
867c9d296c6b
6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents:
5547
diff
changeset
|
284 |
|
1 | 285 |
public: |
286 |
VMOp_Type type() const { return VMOp_DeoptimizeFrame; } |
|
287 |
void doit(); |
|
288 |
bool allow_nested_vm_operations() const { return true; } |
|
289 |
}; |
|
290 |
||
291 |
#ifndef PRODUCT |
|
292 |
class VM_DeoptimizeAll: public VM_Operation { |
|
293 |
private: |
|
294 |
KlassHandle _dependee; |
|
295 |
public: |
|
296 |
VM_DeoptimizeAll() {} |
|
297 |
VMOp_Type type() const { return VMOp_DeoptimizeAll; } |
|
298 |
void doit(); |
|
299 |
bool allow_nested_vm_operations() const { return true; } |
|
300 |
}; |
|
301 |
||
302 |
||
303 |
class VM_ZombieAll: public VM_Operation { |
|
304 |
public: |
|
305 |
VM_ZombieAll() {} |
|
306 |
VMOp_Type type() const { return VMOp_ZombieAll; } |
|
307 |
void doit(); |
|
308 |
bool allow_nested_vm_operations() const { return true; } |
|
309 |
}; |
|
310 |
#endif // PRODUCT |
|
311 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
312 |
class VM_UnlinkSymbols: public VM_Operation { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
313 |
public: |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
314 |
VM_UnlinkSymbols() {} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
315 |
VMOp_Type type() const { return VMOp_UnlinkSymbols; } |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
316 |
void doit(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
317 |
bool allow_nested_vm_operations() const { return true; } |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
318 |
}; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
319 |
|
1 | 320 |
class VM_Verify: public VM_Operation { |
321 |
public: |
|
322 |
VMOp_Type type() const { return VMOp_Verify; } |
|
323 |
void doit(); |
|
324 |
}; |
|
325 |
||
326 |
||
327 |
class VM_PrintThreads: public VM_Operation { |
|
328 |
private: |
|
329 |
outputStream* _out; |
|
330 |
bool _print_concurrent_locks; |
|
331 |
public: |
|
332 |
VM_PrintThreads() { _out = tty; _print_concurrent_locks = PrintConcurrentLocks; } |
|
333 |
VM_PrintThreads(outputStream* out, bool print_concurrent_locks) { _out = out; _print_concurrent_locks = print_concurrent_locks; } |
|
334 |
VMOp_Type type() const { return VMOp_PrintThreads; } |
|
335 |
void doit(); |
|
336 |
bool doit_prologue(); |
|
337 |
void doit_epilogue(); |
|
338 |
}; |
|
339 |
||
340 |
class VM_PrintJNI: public VM_Operation { |
|
341 |
private: |
|
342 |
outputStream* _out; |
|
343 |
public: |
|
344 |
VM_PrintJNI() { _out = tty; } |
|
345 |
VM_PrintJNI(outputStream* out) { _out = out; } |
|
346 |
VMOp_Type type() const { return VMOp_PrintJNI; } |
|
347 |
void doit(); |
|
348 |
}; |
|
349 |
||
350 |
class DeadlockCycle; |
|
351 |
class VM_FindDeadlocks: public VM_Operation { |
|
352 |
private: |
|
353 |
bool _concurrent_locks; |
|
354 |
DeadlockCycle* _deadlocks; |
|
355 |
outputStream* _out; |
|
356 |
||
357 |
public: |
|
358 |
VM_FindDeadlocks(bool concurrent_locks) : _concurrent_locks(concurrent_locks), _out(NULL), _deadlocks(NULL) {}; |
|
359 |
VM_FindDeadlocks(outputStream* st) : _concurrent_locks(true), _out(st), _deadlocks(NULL) {}; |
|
360 |
~VM_FindDeadlocks(); |
|
361 |
||
362 |
DeadlockCycle* result() { return _deadlocks; }; |
|
363 |
VMOp_Type type() const { return VMOp_FindDeadlocks; } |
|
364 |
void doit(); |
|
365 |
bool doit_prologue(); |
|
366 |
}; |
|
367 |
||
368 |
class ThreadDumpResult; |
|
369 |
class ThreadSnapshot; |
|
370 |
class ThreadConcurrentLocks; |
|
371 |
||
372 |
class VM_ThreadDump : public VM_Operation { |
|
373 |
private: |
|
374 |
ThreadDumpResult* _result; |
|
375 |
int _num_threads; |
|
376 |
GrowableArray<instanceHandle>* _threads; |
|
377 |
int _max_depth; |
|
378 |
bool _with_locked_monitors; |
|
379 |
bool _with_locked_synchronizers; |
|
380 |
||
381 |
ThreadSnapshot* snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl); |
|
382 |
||
383 |
public: |
|
384 |
VM_ThreadDump(ThreadDumpResult* result, |
|
385 |
int max_depth, // -1 indicates entire stack |
|
386 |
bool with_locked_monitors, |
|
387 |
bool with_locked_synchronizers); |
|
388 |
||
389 |
VM_ThreadDump(ThreadDumpResult* result, |
|
390 |
GrowableArray<instanceHandle>* threads, |
|
391 |
int num_threads, // -1 indicates entire stack |
|
392 |
int max_depth, |
|
393 |
bool with_locked_monitors, |
|
394 |
bool with_locked_synchronizers); |
|
395 |
||
396 |
VMOp_Type type() const { return VMOp_ThreadDump; } |
|
397 |
void doit(); |
|
398 |
bool doit_prologue(); |
|
399 |
void doit_epilogue(); |
|
400 |
}; |
|
401 |
||
402 |
||
403 |
class VM_Exit: public VM_Operation { |
|
404 |
private: |
|
405 |
int _exit_code; |
|
406 |
static volatile bool _vm_exited; |
|
407 |
static Thread * _shutdown_thread; |
|
408 |
static void wait_if_vm_exited(); |
|
409 |
public: |
|
410 |
VM_Exit(int exit_code) { |
|
411 |
_exit_code = exit_code; |
|
412 |
} |
|
413 |
static int wait_for_threads_in_native_to_block(); |
|
414 |
static int set_vm_exited(); |
|
415 |
static bool vm_exited() { return _vm_exited; } |
|
416 |
static void block_if_vm_exited() { |
|
417 |
if (_vm_exited) { |
|
418 |
wait_if_vm_exited(); |
|
419 |
} |
|
420 |
} |
|
421 |
VMOp_Type type() const { return VMOp_Exit; } |
|
422 |
void doit(); |
|
423 |
}; |
|
7397 | 424 |
|
36322 | 425 |
class VM_PrintCompileQueue: public VM_Operation { |
426 |
private: |
|
427 |
outputStream* _out; |
|
428 |
||
429 |
public: |
|
430 |
VM_PrintCompileQueue(outputStream* st) : _out(st) {} |
|
431 |
VMOp_Type type() const { return VMOp_PrintCompileQueue; } |
|
432 |
Mode evaluation_mode() const { return _safepoint; } |
|
433 |
void doit(); |
|
434 |
}; |
|
435 |
||
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
436 |
#if INCLUDE_SERVICES |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
437 |
class VM_PrintClassHierarchy: public VM_Operation { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
438 |
private: |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
439 |
outputStream* _out; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
440 |
bool _print_interfaces; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
441 |
bool _print_subclasses; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
442 |
char* _classname; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
443 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
444 |
public: |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
445 |
VM_PrintClassHierarchy(outputStream* st, bool print_interfaces, bool print_subclasses, char* classname) : |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
446 |
_out(st), _print_interfaces(print_interfaces), _print_subclasses(print_subclasses), |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
447 |
_classname(classname) {} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
448 |
VMOp_Type type() const { return VMOp_PrintClassHierarchy; } |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
449 |
void doit(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
450 |
}; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
28363
diff
changeset
|
451 |
#endif // INCLUDE_SERVICES |
26587 | 452 |
|
7397 | 453 |
#endif // SHARE_VM_RUNTIME_VM_OPERATIONS_HPP |