annotate src/share/vm/runtime/vm_operations.cpp @ 4155:394404b2d9bd

Removed strict requirement for GRAAL environment variable. It only needs to be set now if the graal directory is not in the directory hierarchy of GraalVM JDK.
author Doug Simon <doug.simon@oracle.com>
date Wed, 21 Dec 2011 11:25:27 +0100
parents f08d439fab8c
children 0ebca2e35ca5 f34d701e952e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2177
diff changeset
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1202
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1202
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1202
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
25 #include "precompiled.hpp"
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
26 #include "classfile/symbolTable.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
27 #include "classfile/vmSymbols.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
28 #include "compiler/compileBroker.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
29 #include "compiler/compilerOracle.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
30 #include "gc_implementation/shared/isGCActiveMark.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
31 #include "memory/resourceArea.hpp"
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
32 #include "oops/symbol.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
33 #include "runtime/arguments.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
34 #include "runtime/deoptimization.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
35 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
36 #include "runtime/sweeper.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
37 #include "runtime/vm_operations.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
38 #include "services/threadService.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
39 #ifdef TARGET_OS_FAMILY_linux
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
40 # include "thread_linux.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
41 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
42 #ifdef TARGET_OS_FAMILY_solaris
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
43 # include "thread_solaris.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
44 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
45 #ifdef TARGET_OS_FAMILY_windows
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
46 # include "thread_windows.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1905
diff changeset
47 #endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 2426
diff changeset
48 #ifdef TARGET_OS_FAMILY_bsd
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 2426
diff changeset
49 # include "thread_bsd.inline.hpp"
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 2426
diff changeset
50 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 #define VM_OP_NAME_INITIALIZE(name) #name,
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 const char* VM_Operation::_names[VM_Operation::VMOp_Terminating] = \
a61af66fc99e Initial load
duke
parents:
diff changeset
55 { VM_OPS_DO(VM_OP_NAME_INITIALIZE) };
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 void VM_Operation::set_calling_thread(Thread* thread, ThreadPriority priority) {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 _calling_thread = thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 assert(MinPriority <= priority && priority <= MaxPriority, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _priority = priority;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 void VM_Operation::evaluate() {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 if (TraceVMOperation) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 tty->print("[");
a61af66fc99e Initial load
duke
parents:
diff changeset
68 NOT_PRODUCT(print();)
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 doit();
a61af66fc99e Initial load
duke
parents:
diff changeset
71 if (TraceVMOperation) {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 tty->print_cr("]");
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // Called by fatal error handler.
a61af66fc99e Initial load
duke
parents:
diff changeset
77 void VM_Operation::print_on_error(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 st->print("VM_Operation (" PTR_FORMAT "): ", this);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 st->print("%s", name());
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 const char* mode;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 switch(evaluation_mode()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 case _safepoint : mode = "safepoint"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 case _no_safepoint : mode = "no safepoint"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 case _concurrent : mode = "concurrent"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 case _async_safepoint: mode = "async safepoint"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 default : mode = "unknown"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 st->print(", mode: %s", mode);
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 if (calling_thread()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 st->print(", requested by thread " PTR_FORMAT, calling_thread());
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 void VM_ThreadStop::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
98 JavaThread* target = java_lang_Thread::thread(target_thread());
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // Note that this now allows multiple ThreadDeath exceptions to be
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // thrown at a thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
101 if (target != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // the thread has run and is not already in the process of exiting
a61af66fc99e Initial load
duke
parents:
diff changeset
103 target->send_thread_stop(throwable());
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void VM_Deoptimize::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // We do not want any GCs to happen while we are in the middle of this VM operation
a61af66fc99e Initial load
duke
parents:
diff changeset
109 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 DeoptimizationMarker dm;
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Deoptimize all activations depending on marked nmethods
a61af66fc99e Initial load
duke
parents:
diff changeset
113 Deoptimization::deoptimize_dependents();
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Make the dependent methods zombies
a61af66fc99e Initial load
duke
parents:
diff changeset
116 CodeCache::make_marked_nmethods_zombies();
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 VM_DeoptimizeFrame::VM_DeoptimizeFrame(JavaThread* thread, intptr_t* id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 _thread = thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 _id = id;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 void VM_DeoptimizeFrame::doit() {
1905
ce6848d0666d 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 1552
diff changeset
127 Deoptimization::deoptimize_frame_internal(_thread, _id);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 void VM_DeoptimizeAll::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 DeoptimizationMarker dm;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // deoptimize all java threads in the system
a61af66fc99e Initial load
duke
parents:
diff changeset
136 if (DeoptimizeALot) {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 for (JavaThread* thread = Threads::first(); thread != NULL; thread = thread->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 if (thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 thread->deoptimize();
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 } else if (DeoptimizeRandom) {
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // Deoptimize some selected threads and frames
a61af66fc99e Initial load
duke
parents:
diff changeset
145 int tnum = os::random() & 0x3;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 int fnum = os::random() & 0x3;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 int tcount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 for (JavaThread* thread = Threads::first(); thread != NULL; thread = thread->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 if (thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 if (tcount++ == tnum) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 tcount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 int fcount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // Deoptimize some selected frames.
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // Biased llocking wants a updated register map
a61af66fc99e Initial load
duke
parents:
diff changeset
155 for(StackFrameStream fst(thread, UseBiasedLocking); !fst.is_done(); fst.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 if (fst.current()->can_be_deoptimized()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 if (fcount++ == fnum) {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 fcount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 Deoptimization::deoptimize(thread, *fst.current(), fst.register_map());
a61af66fc99e Initial load
duke
parents:
diff changeset
160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 void VM_ZombieAll::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 JavaThread *thread = (JavaThread *)calling_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
172 assert(thread->is_Java_thread(), "must be a Java thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
173 thread->make_zombies();
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
177
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
178 void VM_UnlinkSymbols::doit() {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
179 JavaThread *thread = (JavaThread *)calling_thread();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
180 assert(thread->is_Java_thread(), "must be a Java thread");
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
181 SymbolTable::unlink();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
182 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
183
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
184 void VM_HandleFullCodeCache::doit() {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
185 NMethodSweeper::speculative_disconnect_nmethods(_is_full);
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
186 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
187
0
a61af66fc99e Initial load
duke
parents:
diff changeset
188 void VM_Verify::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 Universe::verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 bool VM_PrintThreads::doit_prologue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 assert(Thread::current()->is_Java_thread(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // Make sure AbstractOwnableSynchronizer is loaded
a61af66fc99e Initial load
duke
parents:
diff changeset
196 if (JDK_Version::is_gte_jdk16x_version()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(JavaThread::current());
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // Get Heap_lock if concurrent locks will be dumped
a61af66fc99e Initial load
duke
parents:
diff changeset
201 if (_print_concurrent_locks) {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 Heap_lock->lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
204 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 void VM_PrintThreads::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 Threads::print_on(_out, true, false, _print_concurrent_locks);
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 void VM_PrintThreads::doit_epilogue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
212 if (_print_concurrent_locks) {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // Release Heap_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
214 Heap_lock->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 void VM_PrintJNI::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 JNIHandles::print_on(_out);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 VM_FindDeadlocks::~VM_FindDeadlocks() {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 if (_deadlocks != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 DeadlockCycle* cycle = _deadlocks;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 while (cycle != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
226 DeadlockCycle* d = cycle;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 cycle = cycle->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
228 delete d;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
230 }
a61af66fc99e Initial load
duke
parents:
diff changeset
231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 bool VM_FindDeadlocks::doit_prologue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
234 assert(Thread::current()->is_Java_thread(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // Load AbstractOwnableSynchronizer class
a61af66fc99e Initial load
duke
parents:
diff changeset
237 if (_concurrent_locks && JDK_Version::is_gte_jdk16x_version()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
238 java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(JavaThread::current());
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 }
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 void VM_FindDeadlocks::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
245 _deadlocks = ThreadService::find_deadlocks_at_safepoint(_concurrent_locks);
a61af66fc99e Initial load
duke
parents:
diff changeset
246 if (_out != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
247 int num_deadlocks = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
248 for (DeadlockCycle* cycle = _deadlocks; cycle != NULL; cycle = cycle->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 num_deadlocks++;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 cycle->print_on(_out);
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 if (num_deadlocks == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 _out->print_cr("\nFound 1 deadlock.\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
255 _out->flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
256 } else if (num_deadlocks > 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 _out->print_cr("\nFound %d deadlocks.\n", num_deadlocks);
a61af66fc99e Initial load
duke
parents:
diff changeset
258 _out->flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263 VM_ThreadDump::VM_ThreadDump(ThreadDumpResult* result,
a61af66fc99e Initial load
duke
parents:
diff changeset
264 int max_depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
265 bool with_locked_monitors,
a61af66fc99e Initial load
duke
parents:
diff changeset
266 bool with_locked_synchronizers) {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 _result = result;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 _num_threads = 0; // 0 indicates all threads
a61af66fc99e Initial load
duke
parents:
diff changeset
269 _threads = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
270 _result = result;
a61af66fc99e Initial load
duke
parents:
diff changeset
271 _max_depth = max_depth;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 _with_locked_monitors = with_locked_monitors;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 _with_locked_synchronizers = with_locked_synchronizers;
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276 VM_ThreadDump::VM_ThreadDump(ThreadDumpResult* result,
a61af66fc99e Initial load
duke
parents:
diff changeset
277 GrowableArray<instanceHandle>* threads,
a61af66fc99e Initial load
duke
parents:
diff changeset
278 int num_threads,
a61af66fc99e Initial load
duke
parents:
diff changeset
279 int max_depth,
a61af66fc99e Initial load
duke
parents:
diff changeset
280 bool with_locked_monitors,
a61af66fc99e Initial load
duke
parents:
diff changeset
281 bool with_locked_synchronizers) {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 _result = result;
a61af66fc99e Initial load
duke
parents:
diff changeset
283 _num_threads = num_threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
284 _threads = threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
285 _result = result;
a61af66fc99e Initial load
duke
parents:
diff changeset
286 _max_depth = max_depth;
a61af66fc99e Initial load
duke
parents:
diff changeset
287 _with_locked_monitors = with_locked_monitors;
a61af66fc99e Initial load
duke
parents:
diff changeset
288 _with_locked_synchronizers = with_locked_synchronizers;
a61af66fc99e Initial load
duke
parents:
diff changeset
289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291 bool VM_ThreadDump::doit_prologue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 assert(Thread::current()->is_Java_thread(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
293
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // Load AbstractOwnableSynchronizer class before taking thread snapshots
a61af66fc99e Initial load
duke
parents:
diff changeset
295 if (JDK_Version::is_gte_jdk16x_version()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
296 java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(JavaThread::current());
a61af66fc99e Initial load
duke
parents:
diff changeset
297 }
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 if (_with_locked_synchronizers) {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // Acquire Heap_lock to dump concurrent locks
a61af66fc99e Initial load
duke
parents:
diff changeset
301 Heap_lock->lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
305 }
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 void VM_ThreadDump::doit_epilogue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
308 if (_with_locked_synchronizers) {
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // Release Heap_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
310 Heap_lock->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
311 }
a61af66fc99e Initial load
duke
parents:
diff changeset
312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
313
a61af66fc99e Initial load
duke
parents:
diff changeset
314 void VM_ThreadDump::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
315 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
316
a61af66fc99e Initial load
duke
parents:
diff changeset
317 ConcurrentLocksDump concurrent_locks(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
318 if (_with_locked_synchronizers) {
a61af66fc99e Initial load
duke
parents:
diff changeset
319 concurrent_locks.dump_at_safepoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
320 }
a61af66fc99e Initial load
duke
parents:
diff changeset
321
a61af66fc99e Initial load
duke
parents:
diff changeset
322 if (_num_threads == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // Snapshot all live threads
a61af66fc99e Initial load
duke
parents:
diff changeset
324 for (JavaThread* jt = Threads::first(); jt != NULL; jt = jt->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
325 if (jt->is_exiting() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
326 jt->is_hidden_from_external_view()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // skip terminating threads and hidden threads
a61af66fc99e Initial load
duke
parents:
diff changeset
328 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
329 }
a61af66fc99e Initial load
duke
parents:
diff changeset
330 ThreadConcurrentLocks* tcl = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
331 if (_with_locked_synchronizers) {
a61af66fc99e Initial load
duke
parents:
diff changeset
332 tcl = concurrent_locks.thread_concurrent_locks(jt);
a61af66fc99e Initial load
duke
parents:
diff changeset
333 }
a61af66fc99e Initial load
duke
parents:
diff changeset
334 ThreadSnapshot* ts = snapshot_thread(jt, tcl);
a61af66fc99e Initial load
duke
parents:
diff changeset
335 _result->add_thread_snapshot(ts);
a61af66fc99e Initial load
duke
parents:
diff changeset
336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
337 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
338 // Snapshot threads in the given _threads array
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // A dummy snapshot is created if a thread doesn't exist
a61af66fc99e Initial load
duke
parents:
diff changeset
340 for (int i = 0; i < _num_threads; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
341 instanceHandle th = _threads->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
342 if (th() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // skip if the thread doesn't exist
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // Add a dummy snapshot
a61af66fc99e Initial load
duke
parents:
diff changeset
345 _result->add_thread_snapshot(new ThreadSnapshot());
a61af66fc99e Initial load
duke
parents:
diff changeset
346 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
347 }
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 // Dump thread stack only if the thread is alive and not exiting
a61af66fc99e Initial load
duke
parents:
diff changeset
350 // and not VM internal thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
351 JavaThread* jt = java_lang_Thread::thread(th());
a61af66fc99e Initial load
duke
parents:
diff changeset
352 if (jt == NULL || /* thread not alive */
a61af66fc99e Initial load
duke
parents:
diff changeset
353 jt->is_exiting() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
354 jt->is_hidden_from_external_view()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // add a NULL snapshot if skipped
a61af66fc99e Initial load
duke
parents:
diff changeset
356 _result->add_thread_snapshot(new ThreadSnapshot());
a61af66fc99e Initial load
duke
parents:
diff changeset
357 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
358 }
a61af66fc99e Initial load
duke
parents:
diff changeset
359 ThreadConcurrentLocks* tcl = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
360 if (_with_locked_synchronizers) {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 tcl = concurrent_locks.thread_concurrent_locks(jt);
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363 ThreadSnapshot* ts = snapshot_thread(jt, tcl);
a61af66fc99e Initial load
duke
parents:
diff changeset
364 _result->add_thread_snapshot(ts);
a61af66fc99e Initial load
duke
parents:
diff changeset
365 }
a61af66fc99e Initial load
duke
parents:
diff changeset
366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
367 }
a61af66fc99e Initial load
duke
parents:
diff changeset
368
a61af66fc99e Initial load
duke
parents:
diff changeset
369 ThreadSnapshot* VM_ThreadDump::snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl) {
a61af66fc99e Initial load
duke
parents:
diff changeset
370 ThreadSnapshot* snapshot = new ThreadSnapshot(java_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
371 snapshot->dump_stack_at_safepoint(_max_depth, _with_locked_monitors);
a61af66fc99e Initial load
duke
parents:
diff changeset
372 snapshot->set_concurrent_locks(tcl);
a61af66fc99e Initial load
duke
parents:
diff changeset
373 return snapshot;
a61af66fc99e Initial load
duke
parents:
diff changeset
374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
375
a61af66fc99e Initial load
duke
parents:
diff changeset
376 volatile bool VM_Exit::_vm_exited = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
377 Thread * VM_Exit::_shutdown_thread = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
378
a61af66fc99e Initial load
duke
parents:
diff changeset
379 int VM_Exit::set_vm_exited() {
a61af66fc99e Initial load
duke
parents:
diff changeset
380 Thread * thr_cur = ThreadLocalStorage::get_thread_slow();
a61af66fc99e Initial load
duke
parents:
diff changeset
381
a61af66fc99e Initial load
duke
parents:
diff changeset
382 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint already");
a61af66fc99e Initial load
duke
parents:
diff changeset
383
a61af66fc99e Initial load
duke
parents:
diff changeset
384 int num_active = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
385
a61af66fc99e Initial load
duke
parents:
diff changeset
386 _shutdown_thread = thr_cur;
a61af66fc99e Initial load
duke
parents:
diff changeset
387 _vm_exited = true; // global flag
a61af66fc99e Initial load
duke
parents:
diff changeset
388 for(JavaThread *thr = Threads::first(); thr != NULL; thr = thr->next())
a61af66fc99e Initial load
duke
parents:
diff changeset
389 if (thr!=thr_cur && thr->thread_state() == _thread_in_native) {
a61af66fc99e Initial load
duke
parents:
diff changeset
390 ++num_active;
a61af66fc99e Initial load
duke
parents:
diff changeset
391 thr->set_terminated(JavaThread::_vm_exited); // per-thread flag
a61af66fc99e Initial load
duke
parents:
diff changeset
392 }
a61af66fc99e Initial load
duke
parents:
diff changeset
393
a61af66fc99e Initial load
duke
parents:
diff changeset
394 return num_active;
a61af66fc99e Initial load
duke
parents:
diff changeset
395 }
a61af66fc99e Initial load
duke
parents:
diff changeset
396
a61af66fc99e Initial load
duke
parents:
diff changeset
397 int VM_Exit::wait_for_threads_in_native_to_block() {
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // VM exits at safepoint. This function must be called at the final safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
399 // to wait for threads in _thread_in_native state to be quiescent.
a61af66fc99e Initial load
duke
parents:
diff changeset
400 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint already");
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 Thread * thr_cur = ThreadLocalStorage::get_thread_slow();
a61af66fc99e Initial load
duke
parents:
diff changeset
403 Monitor timer(Mutex::leaf, "VM_Exit timer", true);
a61af66fc99e Initial load
duke
parents:
diff changeset
404
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // Compiler threads need longer wait because they can access VM data directly
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // while in native. If they are active and some structures being used are
a61af66fc99e Initial load
duke
parents:
diff changeset
407 // deleted by the shutdown sequence, they will crash. On the other hand, user
a61af66fc99e Initial load
duke
parents:
diff changeset
408 // threads must go through native=>Java/VM transitions first to access VM
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // data, and they will be stopped during state transition. In theory, we
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // don't have to wait for user threads to be quiescent, but it's always
a61af66fc99e Initial load
duke
parents:
diff changeset
411 // better to terminate VM when current thread is the only active thread, so
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // wait for user threads too. Numbers are in 10 milliseconds.
a61af66fc99e Initial load
duke
parents:
diff changeset
413 int max_wait_user_thread = 30; // at least 300 milliseconds
a61af66fc99e Initial load
duke
parents:
diff changeset
414 int max_wait_compiler_thread = 1000; // at least 10 seconds
a61af66fc99e Initial load
duke
parents:
diff changeset
415
a61af66fc99e Initial load
duke
parents:
diff changeset
416 int max_wait = max_wait_compiler_thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418 int attempts = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
419 while (true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
420 int num_active = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
421 int num_active_compiler_thread = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
422
a61af66fc99e Initial load
duke
parents:
diff changeset
423 for(JavaThread *thr = Threads::first(); thr != NULL; thr = thr->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
424 if (thr!=thr_cur && thr->thread_state() == _thread_in_native) {
a61af66fc99e Initial load
duke
parents:
diff changeset
425 num_active++;
a61af66fc99e Initial load
duke
parents:
diff changeset
426 if (thr->is_Compiler_thread()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
427 num_active_compiler_thread++;
a61af66fc99e Initial load
duke
parents:
diff changeset
428 }
a61af66fc99e Initial load
duke
parents:
diff changeset
429 }
a61af66fc99e Initial load
duke
parents:
diff changeset
430 }
a61af66fc99e Initial load
duke
parents:
diff changeset
431
a61af66fc99e Initial load
duke
parents:
diff changeset
432 if (num_active == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
433 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
434 } else if (attempts > max_wait) {
a61af66fc99e Initial load
duke
parents:
diff changeset
435 return num_active;
a61af66fc99e Initial load
duke
parents:
diff changeset
436 } else if (num_active_compiler_thread == 0 && attempts > max_wait_user_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
437 return num_active;
a61af66fc99e Initial load
duke
parents:
diff changeset
438 }
a61af66fc99e Initial load
duke
parents:
diff changeset
439
a61af66fc99e Initial load
duke
parents:
diff changeset
440 attempts++;
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442 MutexLockerEx ml(&timer, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
443 timer.wait(Mutex::_no_safepoint_check_flag, 10);
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
445 }
a61af66fc99e Initial load
duke
parents:
diff changeset
446
a61af66fc99e Initial load
duke
parents:
diff changeset
447 void VM_Exit::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
448 CompileBroker::set_should_block();
a61af66fc99e Initial load
duke
parents:
diff changeset
449
a61af66fc99e Initial load
duke
parents:
diff changeset
450 // Wait for a short period for threads in native to block. Any thread
a61af66fc99e Initial load
duke
parents:
diff changeset
451 // still executing native code after the wait will be stopped at
a61af66fc99e Initial load
duke
parents:
diff changeset
452 // native==>Java/VM barriers.
a61af66fc99e Initial load
duke
parents:
diff changeset
453 // Among 16276 JCK tests, 94% of them come here without any threads still
a61af66fc99e Initial load
duke
parents:
diff changeset
454 // running in native; the other 6% are quiescent within 250ms (Ultra 80).
a61af66fc99e Initial load
duke
parents:
diff changeset
455 wait_for_threads_in_native_to_block();
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 set_vm_exited();
a61af66fc99e Initial load
duke
parents:
diff changeset
458
a61af66fc99e Initial load
duke
parents:
diff changeset
459 // cleanup globals resources before exiting. exit_globals() currently
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // cleans up outputStream resources and PerfMemory resources.
a61af66fc99e Initial load
duke
parents:
diff changeset
461 exit_globals();
a61af66fc99e Initial load
duke
parents:
diff changeset
462
a61af66fc99e Initial load
duke
parents:
diff changeset
463 // Check for exit hook
a61af66fc99e Initial load
duke
parents:
diff changeset
464 exit_hook_t exit_hook = Arguments::exit_hook();
a61af66fc99e Initial load
duke
parents:
diff changeset
465 if (exit_hook != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // exit hook should exit.
a61af66fc99e Initial load
duke
parents:
diff changeset
467 exit_hook(_exit_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
468 // ... but if it didn't, we must do it here
a61af66fc99e Initial load
duke
parents:
diff changeset
469 vm_direct_exit(_exit_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
470 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
471 vm_direct_exit(_exit_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
473 }
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 void VM_Exit::wait_if_vm_exited() {
a61af66fc99e Initial load
duke
parents:
diff changeset
477 if (_vm_exited &&
a61af66fc99e Initial load
duke
parents:
diff changeset
478 ThreadLocalStorage::get_thread_slow() != _shutdown_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
479 // _vm_exited is set at safepoint, and the Threads_lock is never released
a61af66fc99e Initial load
duke
parents:
diff changeset
480 // we will block here until the process dies
a61af66fc99e Initial load
duke
parents:
diff changeset
481 Threads_lock->lock_without_safepoint_check();
a61af66fc99e Initial load
duke
parents:
diff changeset
482 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
483 }
a61af66fc99e Initial load
duke
parents:
diff changeset
484 }