src/share/vm/runtime/thread.cpp

Tue, 03 Aug 2010 08:13:38 -0400

author
bobv
date
Tue, 03 Aug 2010 08:13:38 -0400
changeset 2036
126ea7725993
parent 1963
2389669474a6
child 2044
f4f596978298
child 2049
ab3fd720516c
permissions
-rw-r--r--

6953477: Increase portability and flexibility of building Hotspot
Summary: A collection of portability improvements including shared code support for PPC, ARM platforms, software floating point, cross compilation support and improvements in error crash detail.
Reviewed-by: phh, never, coleenp, dholmes

duke@435 1 /*
trims@1907 2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 # include "incls/_precompiled.incl"
duke@435 26 # include "incls/_thread.cpp.incl"
duke@435 27
duke@435 28 #ifdef DTRACE_ENABLED
duke@435 29
duke@435 30 // Only bother with this argument setup if dtrace is available
duke@435 31
duke@435 32 HS_DTRACE_PROBE_DECL(hotspot, vm__init__begin);
duke@435 33 HS_DTRACE_PROBE_DECL(hotspot, vm__init__end);
duke@435 34 HS_DTRACE_PROBE_DECL5(hotspot, thread__start, char*, intptr_t,
duke@435 35 intptr_t, intptr_t, bool);
duke@435 36 HS_DTRACE_PROBE_DECL5(hotspot, thread__stop, char*, intptr_t,
duke@435 37 intptr_t, intptr_t, bool);
duke@435 38
duke@435 39 #define DTRACE_THREAD_PROBE(probe, javathread) \
duke@435 40 { \
duke@435 41 ResourceMark rm(this); \
duke@435 42 int len = 0; \
duke@435 43 const char* name = (javathread)->get_thread_name(); \
duke@435 44 len = strlen(name); \
duke@435 45 HS_DTRACE_PROBE5(hotspot, thread__##probe, \
duke@435 46 name, len, \
duke@435 47 java_lang_Thread::thread_id((javathread)->threadObj()), \
duke@435 48 (javathread)->osthread()->thread_id(), \
duke@435 49 java_lang_Thread::is_daemon((javathread)->threadObj())); \
duke@435 50 }
duke@435 51
duke@435 52 #else // ndef DTRACE_ENABLED
duke@435 53
duke@435 54 #define DTRACE_THREAD_PROBE(probe, javathread)
duke@435 55
duke@435 56 #endif // ndef DTRACE_ENABLED
duke@435 57
duke@435 58 // Class hierarchy
duke@435 59 // - Thread
duke@435 60 // - VMThread
duke@435 61 // - WatcherThread
duke@435 62 // - ConcurrentMarkSweepThread
duke@435 63 // - JavaThread
duke@435 64 // - CompilerThread
duke@435 65
duke@435 66 // ======= Thread ========
duke@435 67
duke@435 68 // Support for forcing alignment of thread objects for biased locking
duke@435 69 void* Thread::operator new(size_t size) {
duke@435 70 if (UseBiasedLocking) {
duke@435 71 const int alignment = markOopDesc::biased_lock_alignment;
duke@435 72 size_t aligned_size = size + (alignment - sizeof(intptr_t));
duke@435 73 void* real_malloc_addr = CHeapObj::operator new(aligned_size);
duke@435 74 void* aligned_addr = (void*) align_size_up((intptr_t) real_malloc_addr, alignment);
duke@435 75 assert(((uintptr_t) aligned_addr + (uintptr_t) size) <=
duke@435 76 ((uintptr_t) real_malloc_addr + (uintptr_t) aligned_size),
duke@435 77 "JavaThread alignment code overflowed allocated storage");
duke@435 78 if (TraceBiasedLocking) {
duke@435 79 if (aligned_addr != real_malloc_addr)
duke@435 80 tty->print_cr("Aligned thread " INTPTR_FORMAT " to " INTPTR_FORMAT,
duke@435 81 real_malloc_addr, aligned_addr);
duke@435 82 }
duke@435 83 ((Thread*) aligned_addr)->_real_malloc_address = real_malloc_addr;
duke@435 84 return aligned_addr;
duke@435 85 } else {
duke@435 86 return CHeapObj::operator new(size);
duke@435 87 }
duke@435 88 }
duke@435 89
duke@435 90 void Thread::operator delete(void* p) {
duke@435 91 if (UseBiasedLocking) {
duke@435 92 void* real_malloc_addr = ((Thread*) p)->_real_malloc_address;
duke@435 93 CHeapObj::operator delete(real_malloc_addr);
duke@435 94 } else {
duke@435 95 CHeapObj::operator delete(p);
duke@435 96 }
duke@435 97 }
duke@435 98
duke@435 99
duke@435 100 // Base class for all threads: VMThread, WatcherThread, ConcurrentMarkSweepThread,
duke@435 101 // JavaThread
duke@435 102
duke@435 103
duke@435 104 Thread::Thread() {
duke@435 105 // stack
duke@435 106 _stack_base = NULL;
duke@435 107 _stack_size = 0;
duke@435 108 _self_raw_id = 0;
duke@435 109 _lgrp_id = -1;
duke@435 110 _osthread = NULL;
duke@435 111
duke@435 112 // allocated data structures
duke@435 113 set_resource_area(new ResourceArea());
duke@435 114 set_handle_area(new HandleArea(NULL));
duke@435 115 set_active_handles(NULL);
duke@435 116 set_free_handle_block(NULL);
duke@435 117 set_last_handle_mark(NULL);
duke@435 118 set_osthread(NULL);
duke@435 119
duke@435 120 // This initial value ==> never claimed.
duke@435 121 _oops_do_parity = 0;
duke@435 122
duke@435 123 // the handle mark links itself to last_handle_mark
duke@435 124 new HandleMark(this);
duke@435 125
duke@435 126 // plain initialization
duke@435 127 debug_only(_owned_locks = NULL;)
duke@435 128 debug_only(_allow_allocation_count = 0;)
duke@435 129 NOT_PRODUCT(_allow_safepoint_count = 0;)
ysr@1241 130 NOT_PRODUCT(_skip_gcalot = false;)
duke@435 131 CHECK_UNHANDLED_OOPS_ONLY(_gc_locked_out_count = 0;)
duke@435 132 _jvmti_env_iteration_count = 0;
duke@435 133 _vm_operation_started_count = 0;
duke@435 134 _vm_operation_completed_count = 0;
duke@435 135 _current_pending_monitor = NULL;
duke@435 136 _current_pending_monitor_is_from_java = true;
duke@435 137 _current_waiting_monitor = NULL;
duke@435 138 _num_nested_signal = 0;
duke@435 139 omFreeList = NULL ;
duke@435 140 omFreeCount = 0 ;
duke@435 141 omFreeProvision = 32 ;
acorn@1942 142 omInUseList = NULL ;
acorn@1942 143 omInUseCount = 0 ;
duke@435 144
duke@435 145 _SR_lock = new Monitor(Mutex::suspend_resume, "SR_lock", true);
duke@435 146 _suspend_flags = 0;
duke@435 147
duke@435 148 // thread-specific hashCode stream generator state - Marsaglia shift-xor form
duke@435 149 _hashStateX = os::random() ;
duke@435 150 _hashStateY = 842502087 ;
duke@435 151 _hashStateZ = 0x8767 ; // (int)(3579807591LL & 0xffff) ;
duke@435 152 _hashStateW = 273326509 ;
duke@435 153
duke@435 154 _OnTrap = 0 ;
duke@435 155 _schedctl = NULL ;
duke@435 156 _Stalled = 0 ;
duke@435 157 _TypeTag = 0x2BAD ;
duke@435 158
duke@435 159 // Many of the following fields are effectively final - immutable
duke@435 160 // Note that nascent threads can't use the Native Monitor-Mutex
duke@435 161 // construct until the _MutexEvent is initialized ...
duke@435 162 // CONSIDER: instead of using a fixed set of purpose-dedicated ParkEvents
duke@435 163 // we might instead use a stack of ParkEvents that we could provision on-demand.
duke@435 164 // The stack would act as a cache to avoid calls to ParkEvent::Allocate()
duke@435 165 // and ::Release()
duke@435 166 _ParkEvent = ParkEvent::Allocate (this) ;
duke@435 167 _SleepEvent = ParkEvent::Allocate (this) ;
duke@435 168 _MutexEvent = ParkEvent::Allocate (this) ;
duke@435 169 _MuxEvent = ParkEvent::Allocate (this) ;
duke@435 170
duke@435 171 #ifdef CHECK_UNHANDLED_OOPS
duke@435 172 if (CheckUnhandledOops) {
duke@435 173 _unhandled_oops = new UnhandledOops(this);
duke@435 174 }
duke@435 175 #endif // CHECK_UNHANDLED_OOPS
duke@435 176 #ifdef ASSERT
duke@435 177 if (UseBiasedLocking) {
duke@435 178 assert((((uintptr_t) this) & (markOopDesc::biased_lock_alignment - 1)) == 0, "forced alignment of thread object failed");
duke@435 179 assert(this == _real_malloc_address ||
duke@435 180 this == (void*) align_size_up((intptr_t) _real_malloc_address, markOopDesc::biased_lock_alignment),
duke@435 181 "bug in forced alignment of thread objects");
duke@435 182 }
duke@435 183 #endif /* ASSERT */
duke@435 184 }
duke@435 185
duke@435 186 void Thread::initialize_thread_local_storage() {
duke@435 187 // Note: Make sure this method only calls
duke@435 188 // non-blocking operations. Otherwise, it might not work
duke@435 189 // with the thread-startup/safepoint interaction.
duke@435 190
duke@435 191 // During Java thread startup, safepoint code should allow this
duke@435 192 // method to complete because it may need to allocate memory to
duke@435 193 // store information for the new thread.
duke@435 194
duke@435 195 // initialize structure dependent on thread local storage
duke@435 196 ThreadLocalStorage::set_thread(this);
duke@435 197
duke@435 198 // set up any platform-specific state.
duke@435 199 os::initialize_thread();
duke@435 200
duke@435 201 }
duke@435 202
duke@435 203 void Thread::record_stack_base_and_size() {
duke@435 204 set_stack_base(os::current_stack_base());
duke@435 205 set_stack_size(os::current_stack_size());
duke@435 206 }
duke@435 207
duke@435 208
duke@435 209 Thread::~Thread() {
duke@435 210 // Reclaim the objectmonitors from the omFreeList of the moribund thread.
duke@435 211 ObjectSynchronizer::omFlush (this) ;
duke@435 212
duke@435 213 // deallocate data structures
duke@435 214 delete resource_area();
duke@435 215 // since the handle marks are using the handle area, we have to deallocated the root
duke@435 216 // handle mark before deallocating the thread's handle area,
duke@435 217 assert(last_handle_mark() != NULL, "check we have an element");
duke@435 218 delete last_handle_mark();
duke@435 219 assert(last_handle_mark() == NULL, "check we have reached the end");
duke@435 220
duke@435 221 // It's possible we can encounter a null _ParkEvent, etc., in stillborn threads.
duke@435 222 // We NULL out the fields for good hygiene.
duke@435 223 ParkEvent::Release (_ParkEvent) ; _ParkEvent = NULL ;
duke@435 224 ParkEvent::Release (_SleepEvent) ; _SleepEvent = NULL ;
duke@435 225 ParkEvent::Release (_MutexEvent) ; _MutexEvent = NULL ;
duke@435 226 ParkEvent::Release (_MuxEvent) ; _MuxEvent = NULL ;
duke@435 227
duke@435 228 delete handle_area();
duke@435 229
duke@435 230 // osthread() can be NULL, if creation of thread failed.
duke@435 231 if (osthread() != NULL) os::free_thread(osthread());
duke@435 232
duke@435 233 delete _SR_lock;
duke@435 234
duke@435 235 // clear thread local storage if the Thread is deleting itself
duke@435 236 if (this == Thread::current()) {
duke@435 237 ThreadLocalStorage::set_thread(NULL);
duke@435 238 } else {
duke@435 239 // In the case where we're not the current thread, invalidate all the
duke@435 240 // caches in case some code tries to get the current thread or the
duke@435 241 // thread that was destroyed, and gets stale information.
duke@435 242 ThreadLocalStorage::invalidate_all();
duke@435 243 }
duke@435 244 CHECK_UNHANDLED_OOPS_ONLY(if (CheckUnhandledOops) delete unhandled_oops();)
duke@435 245 }
duke@435 246
duke@435 247 // NOTE: dummy function for assertion purpose.
duke@435 248 void Thread::run() {
duke@435 249 ShouldNotReachHere();
duke@435 250 }
duke@435 251
duke@435 252 #ifdef ASSERT
duke@435 253 // Private method to check for dangling thread pointer
duke@435 254 void check_for_dangling_thread_pointer(Thread *thread) {
duke@435 255 assert(!thread->is_Java_thread() || Thread::current() == thread || Threads_lock->owned_by_self(),
duke@435 256 "possibility of dangling Thread pointer");
duke@435 257 }
duke@435 258 #endif
duke@435 259
duke@435 260
duke@435 261 #ifndef PRODUCT
duke@435 262 // Tracing method for basic thread operations
duke@435 263 void Thread::trace(const char* msg, const Thread* const thread) {
duke@435 264 if (!TraceThreadEvents) return;
duke@435 265 ResourceMark rm;
duke@435 266 ThreadCritical tc;
duke@435 267 const char *name = "non-Java thread";
duke@435 268 int prio = -1;
duke@435 269 if (thread->is_Java_thread()
duke@435 270 && !thread->is_Compiler_thread()) {
duke@435 271 // The Threads_lock must be held to get information about
duke@435 272 // this thread but may not be in some situations when
duke@435 273 // tracing thread events.
duke@435 274 bool release_Threads_lock = false;
duke@435 275 if (!Threads_lock->owned_by_self()) {
duke@435 276 Threads_lock->lock();
duke@435 277 release_Threads_lock = true;
duke@435 278 }
duke@435 279 JavaThread* jt = (JavaThread *)thread;
duke@435 280 name = (char *)jt->get_thread_name();
duke@435 281 oop thread_oop = jt->threadObj();
duke@435 282 if (thread_oop != NULL) {
duke@435 283 prio = java_lang_Thread::priority(thread_oop);
duke@435 284 }
duke@435 285 if (release_Threads_lock) {
duke@435 286 Threads_lock->unlock();
duke@435 287 }
duke@435 288 }
duke@435 289 tty->print_cr("Thread::%s " INTPTR_FORMAT " [%lx] %s (prio: %d)", msg, thread, thread->osthread()->thread_id(), name, prio);
duke@435 290 }
duke@435 291 #endif
duke@435 292
duke@435 293
duke@435 294 ThreadPriority Thread::get_priority(const Thread* const thread) {
duke@435 295 trace("get priority", thread);
duke@435 296 ThreadPriority priority;
duke@435 297 // Can return an error!
duke@435 298 (void)os::get_priority(thread, priority);
duke@435 299 assert(MinPriority <= priority && priority <= MaxPriority, "non-Java priority found");
duke@435 300 return priority;
duke@435 301 }
duke@435 302
duke@435 303 void Thread::set_priority(Thread* thread, ThreadPriority priority) {
duke@435 304 trace("set priority", thread);
duke@435 305 debug_only(check_for_dangling_thread_pointer(thread);)
duke@435 306 // Can return an error!
duke@435 307 (void)os::set_priority(thread, priority);
duke@435 308 }
duke@435 309
duke@435 310
duke@435 311 void Thread::start(Thread* thread) {
duke@435 312 trace("start", thread);
duke@435 313 // Start is different from resume in that its safety is guaranteed by context or
duke@435 314 // being called from a Java method synchronized on the Thread object.
duke@435 315 if (!DisableStartThread) {
duke@435 316 if (thread->is_Java_thread()) {
duke@435 317 // Initialize the thread state to RUNNABLE before starting this thread.
duke@435 318 // Can not set it after the thread started because we do not know the
duke@435 319 // exact thread state at that time. It could be in MONITOR_WAIT or
duke@435 320 // in SLEEPING or some other state.
duke@435 321 java_lang_Thread::set_thread_status(((JavaThread*)thread)->threadObj(),
duke@435 322 java_lang_Thread::RUNNABLE);
duke@435 323 }
duke@435 324 os::start_thread(thread);
duke@435 325 }
duke@435 326 }
duke@435 327
duke@435 328 // Enqueue a VM_Operation to do the job for us - sometime later
duke@435 329 void Thread::send_async_exception(oop java_thread, oop java_throwable) {
duke@435 330 VM_ThreadStop* vm_stop = new VM_ThreadStop(java_thread, java_throwable);
duke@435 331 VMThread::execute(vm_stop);
duke@435 332 }
duke@435 333
duke@435 334
duke@435 335 //
duke@435 336 // Check if an external suspend request has completed (or has been
duke@435 337 // cancelled). Returns true if the thread is externally suspended and
duke@435 338 // false otherwise.
duke@435 339 //
duke@435 340 // The bits parameter returns information about the code path through
duke@435 341 // the routine. Useful for debugging:
duke@435 342 //
duke@435 343 // set in is_ext_suspend_completed():
duke@435 344 // 0x00000001 - routine was entered
duke@435 345 // 0x00000010 - routine return false at end
duke@435 346 // 0x00000100 - thread exited (return false)
duke@435 347 // 0x00000200 - suspend request cancelled (return false)
duke@435 348 // 0x00000400 - thread suspended (return true)
duke@435 349 // 0x00001000 - thread is in a suspend equivalent state (return true)
duke@435 350 // 0x00002000 - thread is native and walkable (return true)
duke@435 351 // 0x00004000 - thread is native_trans and walkable (needed retry)
duke@435 352 //
duke@435 353 // set in wait_for_ext_suspend_completion():
duke@435 354 // 0x00010000 - routine was entered
duke@435 355 // 0x00020000 - suspend request cancelled before loop (return false)
duke@435 356 // 0x00040000 - thread suspended before loop (return true)
duke@435 357 // 0x00080000 - suspend request cancelled in loop (return false)
duke@435 358 // 0x00100000 - thread suspended in loop (return true)
duke@435 359 // 0x00200000 - suspend not completed during retry loop (return false)
duke@435 360 //
duke@435 361
duke@435 362 // Helper class for tracing suspend wait debug bits.
duke@435 363 //
duke@435 364 // 0x00000100 indicates that the target thread exited before it could
duke@435 365 // self-suspend which is not a wait failure. 0x00000200, 0x00020000 and
duke@435 366 // 0x00080000 each indicate a cancelled suspend request so they don't
duke@435 367 // count as wait failures either.
duke@435 368 #define DEBUG_FALSE_BITS (0x00000010 | 0x00200000)
duke@435 369
duke@435 370 class TraceSuspendDebugBits : public StackObj {
duke@435 371 private:
duke@435 372 JavaThread * jt;
duke@435 373 bool is_wait;
duke@435 374 bool called_by_wait; // meaningful when !is_wait
duke@435 375 uint32_t * bits;
duke@435 376
duke@435 377 public:
duke@435 378 TraceSuspendDebugBits(JavaThread *_jt, bool _is_wait, bool _called_by_wait,
duke@435 379 uint32_t *_bits) {
duke@435 380 jt = _jt;
duke@435 381 is_wait = _is_wait;
duke@435 382 called_by_wait = _called_by_wait;
duke@435 383 bits = _bits;
duke@435 384 }
duke@435 385
duke@435 386 ~TraceSuspendDebugBits() {
duke@435 387 if (!is_wait) {
duke@435 388 #if 1
duke@435 389 // By default, don't trace bits for is_ext_suspend_completed() calls.
duke@435 390 // That trace is very chatty.
duke@435 391 return;
duke@435 392 #else
duke@435 393 if (!called_by_wait) {
duke@435 394 // If tracing for is_ext_suspend_completed() is enabled, then only
duke@435 395 // trace calls to it from wait_for_ext_suspend_completion()
duke@435 396 return;
duke@435 397 }
duke@435 398 #endif
duke@435 399 }
duke@435 400
duke@435 401 if (AssertOnSuspendWaitFailure || TraceSuspendWaitFailures) {
duke@435 402 if (bits != NULL && (*bits & DEBUG_FALSE_BITS) != 0) {
duke@435 403 MutexLocker ml(Threads_lock); // needed for get_thread_name()
duke@435 404 ResourceMark rm;
duke@435 405
duke@435 406 tty->print_cr(
duke@435 407 "Failed wait_for_ext_suspend_completion(thread=%s, debug_bits=%x)",
duke@435 408 jt->get_thread_name(), *bits);
duke@435 409
duke@435 410 guarantee(!AssertOnSuspendWaitFailure, "external suspend wait failed");
duke@435 411 }
duke@435 412 }
duke@435 413 }
duke@435 414 };
duke@435 415 #undef DEBUG_FALSE_BITS
duke@435 416
duke@435 417
duke@435 418 bool JavaThread::is_ext_suspend_completed(bool called_by_wait, int delay, uint32_t *bits) {
duke@435 419 TraceSuspendDebugBits tsdb(this, false /* !is_wait */, called_by_wait, bits);
duke@435 420
duke@435 421 bool did_trans_retry = false; // only do thread_in_native_trans retry once
duke@435 422 bool do_trans_retry; // flag to force the retry
duke@435 423
duke@435 424 *bits |= 0x00000001;
duke@435 425
duke@435 426 do {
duke@435 427 do_trans_retry = false;
duke@435 428
duke@435 429 if (is_exiting()) {
duke@435 430 // Thread is in the process of exiting. This is always checked
duke@435 431 // first to reduce the risk of dereferencing a freed JavaThread.
duke@435 432 *bits |= 0x00000100;
duke@435 433 return false;
duke@435 434 }
duke@435 435
duke@435 436 if (!is_external_suspend()) {
duke@435 437 // Suspend request is cancelled. This is always checked before
duke@435 438 // is_ext_suspended() to reduce the risk of a rogue resume
duke@435 439 // confusing the thread that made the suspend request.
duke@435 440 *bits |= 0x00000200;
duke@435 441 return false;
duke@435 442 }
duke@435 443
duke@435 444 if (is_ext_suspended()) {
duke@435 445 // thread is suspended
duke@435 446 *bits |= 0x00000400;
duke@435 447 return true;
duke@435 448 }
duke@435 449
duke@435 450 // Now that we no longer do hard suspends of threads running
duke@435 451 // native code, the target thread can be changing thread state
duke@435 452 // while we are in this routine:
duke@435 453 //
duke@435 454 // _thread_in_native -> _thread_in_native_trans -> _thread_blocked
duke@435 455 //
duke@435 456 // We save a copy of the thread state as observed at this moment
duke@435 457 // and make our decision about suspend completeness based on the
duke@435 458 // copy. This closes the race where the thread state is seen as
duke@435 459 // _thread_in_native_trans in the if-thread_blocked check, but is
duke@435 460 // seen as _thread_blocked in if-thread_in_native_trans check.
duke@435 461 JavaThreadState save_state = thread_state();
duke@435 462
duke@435 463 if (save_state == _thread_blocked && is_suspend_equivalent()) {
duke@435 464 // If the thread's state is _thread_blocked and this blocking
duke@435 465 // condition is known to be equivalent to a suspend, then we can
duke@435 466 // consider the thread to be externally suspended. This means that
duke@435 467 // the code that sets _thread_blocked has been modified to do
duke@435 468 // self-suspension if the blocking condition releases. We also
duke@435 469 // used to check for CONDVAR_WAIT here, but that is now covered by
duke@435 470 // the _thread_blocked with self-suspension check.
duke@435 471 //
duke@435 472 // Return true since we wouldn't be here unless there was still an
duke@435 473 // external suspend request.
duke@435 474 *bits |= 0x00001000;
duke@435 475 return true;
duke@435 476 } else if (save_state == _thread_in_native && frame_anchor()->walkable()) {
duke@435 477 // Threads running native code will self-suspend on native==>VM/Java
duke@435 478 // transitions. If its stack is walkable (should always be the case
duke@435 479 // unless this function is called before the actual java_suspend()
duke@435 480 // call), then the wait is done.
duke@435 481 *bits |= 0x00002000;
duke@435 482 return true;
duke@435 483 } else if (!called_by_wait && !did_trans_retry &&
duke@435 484 save_state == _thread_in_native_trans &&
duke@435 485 frame_anchor()->walkable()) {
duke@435 486 // The thread is transitioning from thread_in_native to another
duke@435 487 // thread state. check_safepoint_and_suspend_for_native_trans()
duke@435 488 // will force the thread to self-suspend. If it hasn't gotten
duke@435 489 // there yet we may have caught the thread in-between the native
duke@435 490 // code check above and the self-suspend. Lucky us. If we were
duke@435 491 // called by wait_for_ext_suspend_completion(), then it
duke@435 492 // will be doing the retries so we don't have to.
duke@435 493 //
duke@435 494 // Since we use the saved thread state in the if-statement above,
duke@435 495 // there is a chance that the thread has already transitioned to
duke@435 496 // _thread_blocked by the time we get here. In that case, we will
duke@435 497 // make a single unnecessary pass through the logic below. This
duke@435 498 // doesn't hurt anything since we still do the trans retry.
duke@435 499
duke@435 500 *bits |= 0x00004000;
duke@435 501
duke@435 502 // Once the thread leaves thread_in_native_trans for another
duke@435 503 // thread state, we break out of this retry loop. We shouldn't
duke@435 504 // need this flag to prevent us from getting back here, but
duke@435 505 // sometimes paranoia is good.
duke@435 506 did_trans_retry = true;
duke@435 507
duke@435 508 // We wait for the thread to transition to a more usable state.
duke@435 509 for (int i = 1; i <= SuspendRetryCount; i++) {
duke@435 510 // We used to do an "os::yield_all(i)" call here with the intention
duke@435 511 // that yielding would increase on each retry. However, the parameter
duke@435 512 // is ignored on Linux which means the yield didn't scale up. Waiting
duke@435 513 // on the SR_lock below provides a much more predictable scale up for
duke@435 514 // the delay. It also provides a simple/direct point to check for any
duke@435 515 // safepoint requests from the VMThread
duke@435 516
duke@435 517 // temporarily drops SR_lock while doing wait with safepoint check
duke@435 518 // (if we're a JavaThread - the WatcherThread can also call this)
duke@435 519 // and increase delay with each retry
duke@435 520 SR_lock()->wait(!Thread::current()->is_Java_thread(), i * delay);
duke@435 521
duke@435 522 // check the actual thread state instead of what we saved above
duke@435 523 if (thread_state() != _thread_in_native_trans) {
duke@435 524 // the thread has transitioned to another thread state so
duke@435 525 // try all the checks (except this one) one more time.
duke@435 526 do_trans_retry = true;
duke@435 527 break;
duke@435 528 }
duke@435 529 } // end retry loop
duke@435 530
duke@435 531
duke@435 532 }
duke@435 533 } while (do_trans_retry);
duke@435 534
duke@435 535 *bits |= 0x00000010;
duke@435 536 return false;
duke@435 537 }
duke@435 538
duke@435 539 //
duke@435 540 // Wait for an external suspend request to complete (or be cancelled).
duke@435 541 // Returns true if the thread is externally suspended and false otherwise.
duke@435 542 //
duke@435 543 bool JavaThread::wait_for_ext_suspend_completion(int retries, int delay,
duke@435 544 uint32_t *bits) {
duke@435 545 TraceSuspendDebugBits tsdb(this, true /* is_wait */,
duke@435 546 false /* !called_by_wait */, bits);
duke@435 547
duke@435 548 // local flag copies to minimize SR_lock hold time
duke@435 549 bool is_suspended;
duke@435 550 bool pending;
duke@435 551 uint32_t reset_bits;
duke@435 552
duke@435 553 // set a marker so is_ext_suspend_completed() knows we are the caller
duke@435 554 *bits |= 0x00010000;
duke@435 555
duke@435 556 // We use reset_bits to reinitialize the bits value at the top of
duke@435 557 // each retry loop. This allows the caller to make use of any
duke@435 558 // unused bits for their own marking purposes.
duke@435 559 reset_bits = *bits;
duke@435 560
duke@435 561 {
duke@435 562 MutexLockerEx ml(SR_lock(), Mutex::_no_safepoint_check_flag);
duke@435 563 is_suspended = is_ext_suspend_completed(true /* called_by_wait */,
duke@435 564 delay, bits);
duke@435 565 pending = is_external_suspend();
duke@435 566 }
duke@435 567 // must release SR_lock to allow suspension to complete
duke@435 568
duke@435 569 if (!pending) {
duke@435 570 // A cancelled suspend request is the only false return from
duke@435 571 // is_ext_suspend_completed() that keeps us from entering the
duke@435 572 // retry loop.
duke@435 573 *bits |= 0x00020000;
duke@435 574 return false;
duke@435 575 }
duke@435 576
duke@435 577 if (is_suspended) {
duke@435 578 *bits |= 0x00040000;
duke@435 579 return true;
duke@435 580 }
duke@435 581
duke@435 582 for (int i = 1; i <= retries; i++) {
duke@435 583 *bits = reset_bits; // reinit to only track last retry
duke@435 584
duke@435 585 // We used to do an "os::yield_all(i)" call here with the intention
duke@435 586 // that yielding would increase on each retry. However, the parameter
duke@435 587 // is ignored on Linux which means the yield didn't scale up. Waiting
duke@435 588 // on the SR_lock below provides a much more predictable scale up for
duke@435 589 // the delay. It also provides a simple/direct point to check for any
duke@435 590 // safepoint requests from the VMThread
duke@435 591
duke@435 592 {
duke@435 593 MutexLocker ml(SR_lock());
duke@435 594 // wait with safepoint check (if we're a JavaThread - the WatcherThread
duke@435 595 // can also call this) and increase delay with each retry
duke@435 596 SR_lock()->wait(!Thread::current()->is_Java_thread(), i * delay);
duke@435 597
duke@435 598 is_suspended = is_ext_suspend_completed(true /* called_by_wait */,
duke@435 599 delay, bits);
duke@435 600
duke@435 601 // It is possible for the external suspend request to be cancelled
duke@435 602 // (by a resume) before the actual suspend operation is completed.
duke@435 603 // Refresh our local copy to see if we still need to wait.
duke@435 604 pending = is_external_suspend();
duke@435 605 }
duke@435 606
duke@435 607 if (!pending) {
duke@435 608 // A cancelled suspend request is the only false return from
duke@435 609 // is_ext_suspend_completed() that keeps us from staying in the
duke@435 610 // retry loop.
duke@435 611 *bits |= 0x00080000;
duke@435 612 return false;
duke@435 613 }
duke@435 614
duke@435 615 if (is_suspended) {
duke@435 616 *bits |= 0x00100000;
duke@435 617 return true;
duke@435 618 }
duke@435 619 } // end retry loop
duke@435 620
duke@435 621 // thread did not suspend after all our retries
duke@435 622 *bits |= 0x00200000;
duke@435 623 return false;
duke@435 624 }
duke@435 625
duke@435 626 #ifndef PRODUCT
duke@435 627 void JavaThread::record_jump(address target, address instr, const char* file, int line) {
duke@435 628
duke@435 629 // This should not need to be atomic as the only way for simultaneous
duke@435 630 // updates is via interrupts. Even then this should be rare or non-existant
duke@435 631 // and we don't care that much anyway.
duke@435 632
duke@435 633 int index = _jmp_ring_index;
duke@435 634 _jmp_ring_index = (index + 1 ) & (jump_ring_buffer_size - 1);
duke@435 635 _jmp_ring[index]._target = (intptr_t) target;
duke@435 636 _jmp_ring[index]._instruction = (intptr_t) instr;
duke@435 637 _jmp_ring[index]._file = file;
duke@435 638 _jmp_ring[index]._line = line;
duke@435 639 }
duke@435 640 #endif /* PRODUCT */
duke@435 641
duke@435 642 // Called by flat profiler
duke@435 643 // Callers have already called wait_for_ext_suspend_completion
duke@435 644 // The assertion for that is currently too complex to put here:
duke@435 645 bool JavaThread::profile_last_Java_frame(frame* _fr) {
duke@435 646 bool gotframe = false;
duke@435 647 // self suspension saves needed state.
duke@435 648 if (has_last_Java_frame() && _anchor.walkable()) {
duke@435 649 *_fr = pd_last_frame();
duke@435 650 gotframe = true;
duke@435 651 }
duke@435 652 return gotframe;
duke@435 653 }
duke@435 654
duke@435 655 void Thread::interrupt(Thread* thread) {
duke@435 656 trace("interrupt", thread);
duke@435 657 debug_only(check_for_dangling_thread_pointer(thread);)
duke@435 658 os::interrupt(thread);
duke@435 659 }
duke@435 660
duke@435 661 bool Thread::is_interrupted(Thread* thread, bool clear_interrupted) {
duke@435 662 trace("is_interrupted", thread);
duke@435 663 debug_only(check_for_dangling_thread_pointer(thread);)
duke@435 664 // Note: If clear_interrupted==false, this simply fetches and
duke@435 665 // returns the value of the field osthread()->interrupted().
duke@435 666 return os::is_interrupted(thread, clear_interrupted);
duke@435 667 }
duke@435 668
duke@435 669
duke@435 670 // GC Support
duke@435 671 bool Thread::claim_oops_do_par_case(int strong_roots_parity) {
duke@435 672 jint thread_parity = _oops_do_parity;
duke@435 673 if (thread_parity != strong_roots_parity) {
duke@435 674 jint res = Atomic::cmpxchg(strong_roots_parity, &_oops_do_parity, thread_parity);
duke@435 675 if (res == thread_parity) return true;
duke@435 676 else {
duke@435 677 guarantee(res == strong_roots_parity, "Or else what?");
duke@435 678 assert(SharedHeap::heap()->n_par_threads() > 0,
duke@435 679 "Should only fail when parallel.");
duke@435 680 return false;
duke@435 681 }
duke@435 682 }
duke@435 683 assert(SharedHeap::heap()->n_par_threads() > 0,
duke@435 684 "Should only fail when parallel.");
duke@435 685 return false;
duke@435 686 }
duke@435 687
jrose@1424 688 void Thread::oops_do(OopClosure* f, CodeBlobClosure* cf) {
duke@435 689 active_handles()->oops_do(f);
duke@435 690 // Do oop for ThreadShadow
duke@435 691 f->do_oop((oop*)&_pending_exception);
duke@435 692 handle_area()->oops_do(f);
duke@435 693 }
duke@435 694
jrose@1424 695 void Thread::nmethods_do(CodeBlobClosure* cf) {
jrose@1424 696 // no nmethods in a generic thread...
duke@435 697 }
duke@435 698
duke@435 699 void Thread::print_on(outputStream* st) const {
duke@435 700 // get_priority assumes osthread initialized
duke@435 701 if (osthread() != NULL) {
duke@435 702 st->print("prio=%d tid=" INTPTR_FORMAT " ", get_priority(this), this);
duke@435 703 osthread()->print_on(st);
duke@435 704 }
duke@435 705 debug_only(if (WizardMode) print_owned_locks_on(st);)
duke@435 706 }
duke@435 707
duke@435 708 // Thread::print_on_error() is called by fatal error handler. Don't use
duke@435 709 // any lock or allocate memory.
duke@435 710 void Thread::print_on_error(outputStream* st, char* buf, int buflen) const {
duke@435 711 if (is_VM_thread()) st->print("VMThread");
duke@435 712 else if (is_Compiler_thread()) st->print("CompilerThread");
duke@435 713 else if (is_Java_thread()) st->print("JavaThread");
duke@435 714 else if (is_GC_task_thread()) st->print("GCTaskThread");
duke@435 715 else if (is_Watcher_thread()) st->print("WatcherThread");
duke@435 716 else if (is_ConcurrentGC_thread()) st->print("ConcurrentGCThread");
duke@435 717 else st->print("Thread");
duke@435 718
duke@435 719 st->print(" [stack: " PTR_FORMAT "," PTR_FORMAT "]",
duke@435 720 _stack_base - _stack_size, _stack_base);
duke@435 721
duke@435 722 if (osthread()) {
duke@435 723 st->print(" [id=%d]", osthread()->thread_id());
duke@435 724 }
duke@435 725 }
duke@435 726
duke@435 727 #ifdef ASSERT
duke@435 728 void Thread::print_owned_locks_on(outputStream* st) const {
duke@435 729 Monitor *cur = _owned_locks;
duke@435 730 if (cur == NULL) {
duke@435 731 st->print(" (no locks) ");
duke@435 732 } else {
duke@435 733 st->print_cr(" Locks owned:");
duke@435 734 while(cur) {
duke@435 735 cur->print_on(st);
duke@435 736 cur = cur->next();
duke@435 737 }
duke@435 738 }
duke@435 739 }
duke@435 740
duke@435 741 static int ref_use_count = 0;
duke@435 742
duke@435 743 bool Thread::owns_locks_but_compiled_lock() const {
duke@435 744 for(Monitor *cur = _owned_locks; cur; cur = cur->next()) {
duke@435 745 if (cur != Compile_lock) return true;
duke@435 746 }
duke@435 747 return false;
duke@435 748 }
duke@435 749
duke@435 750
duke@435 751 #endif
duke@435 752
duke@435 753 #ifndef PRODUCT
duke@435 754
duke@435 755 // The flag: potential_vm_operation notifies if this particular safepoint state could potential
duke@435 756 // invoke the vm-thread (i.e., and oop allocation). In that case, we also have to make sure that
duke@435 757 // no threads which allow_vm_block's are held
duke@435 758 void Thread::check_for_valid_safepoint_state(bool potential_vm_operation) {
duke@435 759 // Check if current thread is allowed to block at a safepoint
duke@435 760 if (!(_allow_safepoint_count == 0))
duke@435 761 fatal("Possible safepoint reached by thread that does not allow it");
duke@435 762 if (is_Java_thread() && ((JavaThread*)this)->thread_state() != _thread_in_vm) {
duke@435 763 fatal("LEAF method calling lock?");
duke@435 764 }
duke@435 765
duke@435 766 #ifdef ASSERT
duke@435 767 if (potential_vm_operation && is_Java_thread()
duke@435 768 && !Universe::is_bootstrapping()) {
duke@435 769 // Make sure we do not hold any locks that the VM thread also uses.
duke@435 770 // This could potentially lead to deadlocks
duke@435 771 for(Monitor *cur = _owned_locks; cur; cur = cur->next()) {
duke@435 772 // Threads_lock is special, since the safepoint synchronization will not start before this is
duke@435 773 // acquired. Hence, a JavaThread cannot be holding it at a safepoint. So is VMOperationRequest_lock,
duke@435 774 // since it is used to transfer control between JavaThreads and the VMThread
duke@435 775 // Do not *exclude* any locks unless you are absolutly sure it is correct. Ask someone else first!
duke@435 776 if ( (cur->allow_vm_block() &&
duke@435 777 cur != Threads_lock &&
duke@435 778 cur != Compile_lock && // Temporary: should not be necessary when we get spearate compilation
duke@435 779 cur != VMOperationRequest_lock &&
duke@435 780 cur != VMOperationQueue_lock) ||
duke@435 781 cur->rank() == Mutex::special) {
duke@435 782 warning("Thread holding lock at safepoint that vm can block on: %s", cur->name());
duke@435 783 }
duke@435 784 }
duke@435 785 }
duke@435 786
duke@435 787 if (GCALotAtAllSafepoints) {
duke@435 788 // We could enter a safepoint here and thus have a gc
duke@435 789 InterfaceSupport::check_gc_alot();
duke@435 790 }
duke@435 791 #endif
duke@435 792 }
duke@435 793 #endif
duke@435 794
duke@435 795 bool Thread::is_in_stack(address adr) const {
duke@435 796 assert(Thread::current() == this, "is_in_stack can only be called from current thread");
duke@435 797 address end = os::current_stack_pointer();
duke@435 798 if (stack_base() >= adr && adr >= end) return true;
duke@435 799
duke@435 800 return false;
duke@435 801 }
duke@435 802
duke@435 803
duke@435 804 // We had to move these methods here, because vm threads get into ObjectSynchronizer::enter
duke@435 805 // However, there is a note in JavaThread::is_lock_owned() about the VM threads not being
duke@435 806 // used for compilation in the future. If that change is made, the need for these methods
duke@435 807 // should be revisited, and they should be removed if possible.
duke@435 808
duke@435 809 bool Thread::is_lock_owned(address adr) const {
xlu@1137 810 return (_stack_base >= adr && adr >= (_stack_base - _stack_size));
duke@435 811 }
duke@435 812
duke@435 813 bool Thread::set_as_starting_thread() {
duke@435 814 // NOTE: this must be called inside the main thread.
duke@435 815 return os::create_main_thread((JavaThread*)this);
duke@435 816 }
duke@435 817
duke@435 818 static void initialize_class(symbolHandle class_name, TRAPS) {
duke@435 819 klassOop klass = SystemDictionary::resolve_or_fail(class_name, true, CHECK);
duke@435 820 instanceKlass::cast(klass)->initialize(CHECK);
duke@435 821 }
duke@435 822
duke@435 823
duke@435 824 // Creates the initial ThreadGroup
duke@435 825 static Handle create_initial_thread_group(TRAPS) {
duke@435 826 klassOop k = SystemDictionary::resolve_or_fail(vmSymbolHandles::java_lang_ThreadGroup(), true, CHECK_NH);
duke@435 827 instanceKlassHandle klass (THREAD, k);
duke@435 828
duke@435 829 Handle system_instance = klass->allocate_instance_handle(CHECK_NH);
duke@435 830 {
duke@435 831 JavaValue result(T_VOID);
duke@435 832 JavaCalls::call_special(&result,
duke@435 833 system_instance,
duke@435 834 klass,
duke@435 835 vmSymbolHandles::object_initializer_name(),
duke@435 836 vmSymbolHandles::void_method_signature(),
duke@435 837 CHECK_NH);
duke@435 838 }
duke@435 839 Universe::set_system_thread_group(system_instance());
duke@435 840
duke@435 841 Handle main_instance = klass->allocate_instance_handle(CHECK_NH);
duke@435 842 {
duke@435 843 JavaValue result(T_VOID);
duke@435 844 Handle string = java_lang_String::create_from_str("main", CHECK_NH);
duke@435 845 JavaCalls::call_special(&result,
duke@435 846 main_instance,
duke@435 847 klass,
duke@435 848 vmSymbolHandles::object_initializer_name(),
duke@435 849 vmSymbolHandles::threadgroup_string_void_signature(),
duke@435 850 system_instance,
duke@435 851 string,
duke@435 852 CHECK_NH);
duke@435 853 }
duke@435 854 return main_instance;
duke@435 855 }
duke@435 856
duke@435 857 // Creates the initial Thread
duke@435 858 static oop create_initial_thread(Handle thread_group, JavaThread* thread, TRAPS) {
duke@435 859 klassOop k = SystemDictionary::resolve_or_fail(vmSymbolHandles::java_lang_Thread(), true, CHECK_NULL);
duke@435 860 instanceKlassHandle klass (THREAD, k);
duke@435 861 instanceHandle thread_oop = klass->allocate_instance_handle(CHECK_NULL);
duke@435 862
duke@435 863 java_lang_Thread::set_thread(thread_oop(), thread);
duke@435 864 java_lang_Thread::set_priority(thread_oop(), NormPriority);
duke@435 865 thread->set_threadObj(thread_oop());
duke@435 866
duke@435 867 Handle string = java_lang_String::create_from_str("main", CHECK_NULL);
duke@435 868
duke@435 869 JavaValue result(T_VOID);
duke@435 870 JavaCalls::call_special(&result, thread_oop,
duke@435 871 klass,
duke@435 872 vmSymbolHandles::object_initializer_name(),
duke@435 873 vmSymbolHandles::threadgroup_string_void_signature(),
duke@435 874 thread_group,
duke@435 875 string,
duke@435 876 CHECK_NULL);
duke@435 877 return thread_oop();
duke@435 878 }
duke@435 879
duke@435 880 static void call_initializeSystemClass(TRAPS) {
duke@435 881 klassOop k = SystemDictionary::resolve_or_fail(vmSymbolHandles::java_lang_System(), true, CHECK);
duke@435 882 instanceKlassHandle klass (THREAD, k);
duke@435 883
duke@435 884 JavaValue result(T_VOID);
duke@435 885 JavaCalls::call_static(&result, klass, vmSymbolHandles::initializeSystemClass_name(),
duke@435 886 vmSymbolHandles::void_method_signature(), CHECK);
duke@435 887 }
duke@435 888
mchung@1550 889 #ifdef KERNEL
mchung@1550 890 static void set_jkernel_boot_classloader_hook(TRAPS) {
mchung@1550 891 klassOop k = SystemDictionary::sun_jkernel_DownloadManager_klass();
mchung@1550 892 instanceKlassHandle klass (THREAD, k);
mchung@1550 893
mchung@1550 894 if (k == NULL) {
mchung@1550 895 // sun.jkernel.DownloadManager may not present in the JDK; just return
mchung@1550 896 return;
mchung@1550 897 }
mchung@1550 898
mchung@1550 899 JavaValue result(T_VOID);
mchung@1550 900 JavaCalls::call_static(&result, klass, vmSymbolHandles::setBootClassLoaderHook_name(),
mchung@1550 901 vmSymbolHandles::void_method_signature(), CHECK);
mchung@1550 902 }
mchung@1550 903 #endif // KERNEL
mchung@1550 904
duke@435 905 static void reset_vm_info_property(TRAPS) {
duke@435 906 // the vm info string
duke@435 907 ResourceMark rm(THREAD);
duke@435 908 const char *vm_info = VM_Version::vm_info_string();
duke@435 909
duke@435 910 // java.lang.System class
duke@435 911 klassOop k = SystemDictionary::resolve_or_fail(vmSymbolHandles::java_lang_System(), true, CHECK);
duke@435 912 instanceKlassHandle klass (THREAD, k);
duke@435 913
duke@435 914 // setProperty arguments
duke@435 915 Handle key_str = java_lang_String::create_from_str("java.vm.info", CHECK);
duke@435 916 Handle value_str = java_lang_String::create_from_str(vm_info, CHECK);
duke@435 917
duke@435 918 // return value
duke@435 919 JavaValue r(T_OBJECT);
duke@435 920
duke@435 921 // public static String setProperty(String key, String value);
duke@435 922 JavaCalls::call_static(&r,
duke@435 923 klass,
duke@435 924 vmSymbolHandles::setProperty_name(),
duke@435 925 vmSymbolHandles::string_string_string_signature(),
duke@435 926 key_str,
duke@435 927 value_str,
duke@435 928 CHECK);
duke@435 929 }
duke@435 930
duke@435 931
duke@435 932 void JavaThread::allocate_threadObj(Handle thread_group, char* thread_name, bool daemon, TRAPS) {
duke@435 933 assert(thread_group.not_null(), "thread group should be specified");
duke@435 934 assert(threadObj() == NULL, "should only create Java thread object once");
duke@435 935
duke@435 936 klassOop k = SystemDictionary::resolve_or_fail(vmSymbolHandles::java_lang_Thread(), true, CHECK);
duke@435 937 instanceKlassHandle klass (THREAD, k);
duke@435 938 instanceHandle thread_oop = klass->allocate_instance_handle(CHECK);
duke@435 939
duke@435 940 java_lang_Thread::set_thread(thread_oop(), this);
duke@435 941 java_lang_Thread::set_priority(thread_oop(), NormPriority);
duke@435 942 set_threadObj(thread_oop());
duke@435 943
duke@435 944 JavaValue result(T_VOID);
duke@435 945 if (thread_name != NULL) {
duke@435 946 Handle name = java_lang_String::create_from_str(thread_name, CHECK);
duke@435 947 // Thread gets assigned specified name and null target
duke@435 948 JavaCalls::call_special(&result,
duke@435 949 thread_oop,
duke@435 950 klass,
duke@435 951 vmSymbolHandles::object_initializer_name(),
duke@435 952 vmSymbolHandles::threadgroup_string_void_signature(),
duke@435 953 thread_group, // Argument 1
duke@435 954 name, // Argument 2
duke@435 955 THREAD);
duke@435 956 } else {
duke@435 957 // Thread gets assigned name "Thread-nnn" and null target
duke@435 958 // (java.lang.Thread doesn't have a constructor taking only a ThreadGroup argument)
duke@435 959 JavaCalls::call_special(&result,
duke@435 960 thread_oop,
duke@435 961 klass,
duke@435 962 vmSymbolHandles::object_initializer_name(),
duke@435 963 vmSymbolHandles::threadgroup_runnable_void_signature(),
duke@435 964 thread_group, // Argument 1
duke@435 965 Handle(), // Argument 2
duke@435 966 THREAD);
duke@435 967 }
duke@435 968
duke@435 969
duke@435 970 if (daemon) {
duke@435 971 java_lang_Thread::set_daemon(thread_oop());
duke@435 972 }
duke@435 973
duke@435 974 if (HAS_PENDING_EXCEPTION) {
duke@435 975 return;
duke@435 976 }
duke@435 977
never@1577 978 KlassHandle group(this, SystemDictionary::ThreadGroup_klass());
duke@435 979 Handle threadObj(this, this->threadObj());
duke@435 980
duke@435 981 JavaCalls::call_special(&result,
duke@435 982 thread_group,
duke@435 983 group,
duke@435 984 vmSymbolHandles::add_method_name(),
duke@435 985 vmSymbolHandles::thread_void_signature(),
duke@435 986 threadObj, // Arg 1
duke@435 987 THREAD);
duke@435 988
duke@435 989
duke@435 990 }
duke@435 991
duke@435 992 // NamedThread -- non-JavaThread subclasses with multiple
duke@435 993 // uniquely named instances should derive from this.
duke@435 994 NamedThread::NamedThread() : Thread() {
duke@435 995 _name = NULL;
minqi@1554 996 _processed_thread = NULL;
duke@435 997 }
duke@435 998
duke@435 999 NamedThread::~NamedThread() {
duke@435 1000 if (_name != NULL) {
duke@435 1001 FREE_C_HEAP_ARRAY(char, _name);
duke@435 1002 _name = NULL;
duke@435 1003 }
duke@435 1004 }
duke@435 1005
duke@435 1006 void NamedThread::set_name(const char* format, ...) {
duke@435 1007 guarantee(_name == NULL, "Only get to set name once.");
duke@435 1008 _name = NEW_C_HEAP_ARRAY(char, max_name_len);
duke@435 1009 guarantee(_name != NULL, "alloc failure");
duke@435 1010 va_list ap;
duke@435 1011 va_start(ap, format);
duke@435 1012 jio_vsnprintf(_name, max_name_len, format, ap);
duke@435 1013 va_end(ap);
duke@435 1014 }
duke@435 1015
duke@435 1016 // ======= WatcherThread ========
duke@435 1017
duke@435 1018 // The watcher thread exists to simulate timer interrupts. It should
duke@435 1019 // be replaced by an abstraction over whatever native support for
duke@435 1020 // timer interrupts exists on the platform.
duke@435 1021
duke@435 1022 WatcherThread* WatcherThread::_watcher_thread = NULL;
bobv@2036 1023 volatile bool WatcherThread::_should_terminate = false;
duke@435 1024
duke@435 1025 WatcherThread::WatcherThread() : Thread() {
duke@435 1026 assert(watcher_thread() == NULL, "we can only allocate one WatcherThread");
duke@435 1027 if (os::create_thread(this, os::watcher_thread)) {
duke@435 1028 _watcher_thread = this;
duke@435 1029
duke@435 1030 // Set the watcher thread to the highest OS priority which should not be
duke@435 1031 // used, unless a Java thread with priority java.lang.Thread.MAX_PRIORITY
duke@435 1032 // is created. The only normal thread using this priority is the reference
duke@435 1033 // handler thread, which runs for very short intervals only.
duke@435 1034 // If the VMThread's priority is not lower than the WatcherThread profiling
duke@435 1035 // will be inaccurate.
duke@435 1036 os::set_priority(this, MaxPriority);
duke@435 1037 if (!DisableStartThread) {
duke@435 1038 os::start_thread(this);
duke@435 1039 }
duke@435 1040 }
duke@435 1041 }
duke@435 1042
duke@435 1043 void WatcherThread::run() {
duke@435 1044 assert(this == watcher_thread(), "just checking");
duke@435 1045
duke@435 1046 this->record_stack_base_and_size();
duke@435 1047 this->initialize_thread_local_storage();
duke@435 1048 this->set_active_handles(JNIHandleBlock::allocate_block());
duke@435 1049 while(!_should_terminate) {
duke@435 1050 assert(watcher_thread() == Thread::current(), "thread consistency check");
duke@435 1051 assert(watcher_thread() == this, "thread consistency check");
duke@435 1052
duke@435 1053 // Calculate how long it'll be until the next PeriodicTask work
duke@435 1054 // should be done, and sleep that amount of time.
bobv@2036 1055 size_t time_to_wait = PeriodicTask::time_to_wait();
bobv@2036 1056
bobv@2036 1057 // we expect this to timeout - we only ever get unparked when
bobv@2036 1058 // we should terminate
bobv@2036 1059 {
bobv@2036 1060 OSThreadWaitState osts(this->osthread(), false /* not Object.wait() */);
bobv@2036 1061
bobv@2036 1062 jlong prev_time = os::javaTimeNanos();
bobv@2036 1063 for (;;) {
bobv@2036 1064 int res= _SleepEvent->park(time_to_wait);
bobv@2036 1065 if (res == OS_TIMEOUT || _should_terminate)
bobv@2036 1066 break;
bobv@2036 1067 // spurious wakeup of some kind
bobv@2036 1068 jlong now = os::javaTimeNanos();
bobv@2036 1069 time_to_wait -= (now - prev_time) / 1000000;
bobv@2036 1070 if (time_to_wait <= 0)
bobv@2036 1071 break;
bobv@2036 1072 prev_time = now;
bobv@2036 1073 }
bobv@2036 1074 }
duke@435 1075
duke@435 1076 if (is_error_reported()) {
duke@435 1077 // A fatal error has happened, the error handler(VMError::report_and_die)
duke@435 1078 // should abort JVM after creating an error log file. However in some
duke@435 1079 // rare cases, the error handler itself might deadlock. Here we try to
duke@435 1080 // kill JVM if the fatal error handler fails to abort in 2 minutes.
duke@435 1081 //
duke@435 1082 // This code is in WatcherThread because WatcherThread wakes up
duke@435 1083 // periodically so the fatal error handler doesn't need to do anything;
duke@435 1084 // also because the WatcherThread is less likely to crash than other
duke@435 1085 // threads.
duke@435 1086
duke@435 1087 for (;;) {
duke@435 1088 if (!ShowMessageBoxOnError
duke@435 1089 && (OnError == NULL || OnError[0] == '\0')
duke@435 1090 && Arguments::abort_hook() == NULL) {
duke@435 1091 os::sleep(this, 2 * 60 * 1000, false);
duke@435 1092 fdStream err(defaultStream::output_fd());
duke@435 1093 err.print_raw_cr("# [ timer expired, abort... ]");
duke@435 1094 // skip atexit/vm_exit/vm_abort hooks
duke@435 1095 os::die();
duke@435 1096 }
duke@435 1097
duke@435 1098 // Wake up 5 seconds later, the fatal handler may reset OnError or
duke@435 1099 // ShowMessageBoxOnError when it is ready to abort.
duke@435 1100 os::sleep(this, 5 * 1000, false);
duke@435 1101 }
duke@435 1102 }
duke@435 1103
duke@435 1104 PeriodicTask::real_time_tick(time_to_wait);
duke@435 1105
duke@435 1106 // If we have no more tasks left due to dynamic disenrollment,
duke@435 1107 // shut down the thread since we don't currently support dynamic enrollment
duke@435 1108 if (PeriodicTask::num_tasks() == 0) {
duke@435 1109 _should_terminate = true;
duke@435 1110 }
duke@435 1111 }
duke@435 1112
duke@435 1113 // Signal that it is terminated
duke@435 1114 {
duke@435 1115 MutexLockerEx mu(Terminator_lock, Mutex::_no_safepoint_check_flag);
duke@435 1116 _watcher_thread = NULL;
duke@435 1117 Terminator_lock->notify();
duke@435 1118 }
duke@435 1119
duke@435 1120 // Thread destructor usually does this..
duke@435 1121 ThreadLocalStorage::set_thread(NULL);
duke@435 1122 }
duke@435 1123
duke@435 1124 void WatcherThread::start() {
duke@435 1125 if (watcher_thread() == NULL) {
duke@435 1126 _should_terminate = false;
duke@435 1127 // Create the single instance of WatcherThread
duke@435 1128 new WatcherThread();
duke@435 1129 }
duke@435 1130 }
duke@435 1131
duke@435 1132 void WatcherThread::stop() {
duke@435 1133 // it is ok to take late safepoints here, if needed
duke@435 1134 MutexLocker mu(Terminator_lock);
duke@435 1135 _should_terminate = true;
bobv@2036 1136 OrderAccess::fence(); // ensure WatcherThread sees update in main loop
bobv@2036 1137
bobv@2036 1138 Thread* watcher = watcher_thread();
bobv@2036 1139 if (watcher != NULL)
bobv@2036 1140 watcher->_SleepEvent->unpark();
bobv@2036 1141
duke@435 1142 while(watcher_thread() != NULL) {
duke@435 1143 // This wait should make safepoint checks, wait without a timeout,
duke@435 1144 // and wait as a suspend-equivalent condition.
duke@435 1145 //
duke@435 1146 // Note: If the FlatProfiler is running, then this thread is waiting
duke@435 1147 // for the WatcherThread to terminate and the WatcherThread, via the
duke@435 1148 // FlatProfiler task, is waiting for the external suspend request on
duke@435 1149 // this thread to complete. wait_for_ext_suspend_completion() will
duke@435 1150 // eventually timeout, but that takes time. Making this wait a
duke@435 1151 // suspend-equivalent condition solves that timeout problem.
duke@435 1152 //
duke@435 1153 Terminator_lock->wait(!Mutex::_no_safepoint_check_flag, 0,
duke@435 1154 Mutex::_as_suspend_equivalent_flag);
duke@435 1155 }
duke@435 1156 }
duke@435 1157
duke@435 1158 void WatcherThread::print_on(outputStream* st) const {
duke@435 1159 st->print("\"%s\" ", name());
duke@435 1160 Thread::print_on(st);
duke@435 1161 st->cr();
duke@435 1162 }
duke@435 1163
duke@435 1164 // ======= JavaThread ========
duke@435 1165
duke@435 1166 // A JavaThread is a normal Java thread
duke@435 1167
duke@435 1168 void JavaThread::initialize() {
duke@435 1169 // Initialize fields
ysr@777 1170
ysr@777 1171 // Set the claimed par_id to -1 (ie not claiming any par_ids)
ysr@777 1172 set_claimed_par_id(-1);
ysr@777 1173
duke@435 1174 set_saved_exception_pc(NULL);
duke@435 1175 set_threadObj(NULL);
duke@435 1176 _anchor.clear();
duke@435 1177 set_entry_point(NULL);
duke@435 1178 set_jni_functions(jni_functions());
duke@435 1179 set_callee_target(NULL);
duke@435 1180 set_vm_result(NULL);
duke@435 1181 set_vm_result_2(NULL);
duke@435 1182 set_vframe_array_head(NULL);
duke@435 1183 set_vframe_array_last(NULL);
duke@435 1184 set_deferred_locals(NULL);
duke@435 1185 set_deopt_mark(NULL);
duke@435 1186 clear_must_deopt_id();
duke@435 1187 set_monitor_chunks(NULL);
duke@435 1188 set_next(NULL);
duke@435 1189 set_thread_state(_thread_new);
duke@435 1190 _terminated = _not_terminated;
duke@435 1191 _privileged_stack_top = NULL;
duke@435 1192 _array_for_gc = NULL;
duke@435 1193 _suspend_equivalent = false;
duke@435 1194 _in_deopt_handler = 0;
duke@435 1195 _doing_unsafe_access = false;
duke@435 1196 _stack_guard_state = stack_guard_unused;
duke@435 1197 _exception_oop = NULL;
duke@435 1198 _exception_pc = 0;
duke@435 1199 _exception_handler_pc = 0;
duke@435 1200 _exception_stack_size = 0;
duke@435 1201 _jvmti_thread_state= NULL;
dcubed@1648 1202 _should_post_on_exceptions_flag = JNI_FALSE;
duke@435 1203 _jvmti_get_loaded_classes_closure = NULL;
duke@435 1204 _interp_only_mode = 0;
duke@435 1205 _special_runtime_exit_condition = _no_async_condition;
duke@435 1206 _pending_async_exception = NULL;
duke@435 1207 _is_compiling = false;
duke@435 1208 _thread_stat = NULL;
duke@435 1209 _thread_stat = new ThreadStatistics();
duke@435 1210 _blocked_on_compilation = false;
duke@435 1211 _jni_active_critical = 0;
duke@435 1212 _do_not_unlock_if_synchronized = false;
duke@435 1213 _cached_monitor_info = NULL;
duke@435 1214 _parker = Parker::Allocate(this) ;
duke@435 1215
duke@435 1216 #ifndef PRODUCT
duke@435 1217 _jmp_ring_index = 0;
duke@435 1218 for (int ji = 0 ; ji < jump_ring_buffer_size ; ji++ ) {
duke@435 1219 record_jump(NULL, NULL, NULL, 0);
duke@435 1220 }
duke@435 1221 #endif /* PRODUCT */
duke@435 1222
duke@435 1223 set_thread_profiler(NULL);
duke@435 1224 if (FlatProfiler::is_active()) {
duke@435 1225 // This is where we would decide to either give each thread it's own profiler
duke@435 1226 // or use one global one from FlatProfiler,
duke@435 1227 // or up to some count of the number of profiled threads, etc.
duke@435 1228 ThreadProfiler* pp = new ThreadProfiler();
duke@435 1229 pp->engage();
duke@435 1230 set_thread_profiler(pp);
duke@435 1231 }
duke@435 1232
duke@435 1233 // Setup safepoint state info for this thread
duke@435 1234 ThreadSafepointState::create(this);
duke@435 1235
duke@435 1236 debug_only(_java_call_counter = 0);
duke@435 1237
duke@435 1238 // JVMTI PopFrame support
duke@435 1239 _popframe_condition = popframe_inactive;
duke@435 1240 _popframe_preserved_args = NULL;
duke@435 1241 _popframe_preserved_args_size = 0;
duke@435 1242
duke@435 1243 pd_initialize();
duke@435 1244 }
duke@435 1245
ysr@777 1246 #ifndef SERIALGC
ysr@777 1247 SATBMarkQueueSet JavaThread::_satb_mark_queue_set;
ysr@777 1248 DirtyCardQueueSet JavaThread::_dirty_card_queue_set;
ysr@777 1249 #endif // !SERIALGC
ysr@777 1250
ysr@777 1251 JavaThread::JavaThread(bool is_attaching) :
ysr@777 1252 Thread()
ysr@777 1253 #ifndef SERIALGC
ysr@777 1254 , _satb_mark_queue(&_satb_mark_queue_set),
ysr@777 1255 _dirty_card_queue(&_dirty_card_queue_set)
ysr@777 1256 #endif // !SERIALGC
ysr@777 1257 {
duke@435 1258 initialize();
duke@435 1259 _is_attaching = is_attaching;
ysr@1462 1260 assert(_deferred_card_mark.is_empty(), "Default MemRegion ctor");
duke@435 1261 }
duke@435 1262
duke@435 1263 bool JavaThread::reguard_stack(address cur_sp) {
duke@435 1264 if (_stack_guard_state != stack_guard_yellow_disabled) {
duke@435 1265 return true; // Stack already guarded or guard pages not needed.
duke@435 1266 }
duke@435 1267
duke@435 1268 if (register_stack_overflow()) {
duke@435 1269 // For those architectures which have separate register and
duke@435 1270 // memory stacks, we must check the register stack to see if
duke@435 1271 // it has overflowed.
duke@435 1272 return false;
duke@435 1273 }
duke@435 1274
duke@435 1275 // Java code never executes within the yellow zone: the latter is only
duke@435 1276 // there to provoke an exception during stack banging. If java code
duke@435 1277 // is executing there, either StackShadowPages should be larger, or
duke@435 1278 // some exception code in c1, c2 or the interpreter isn't unwinding
duke@435 1279 // when it should.
duke@435 1280 guarantee(cur_sp > stack_yellow_zone_base(), "not enough space to reguard - increase StackShadowPages");
duke@435 1281
duke@435 1282 enable_stack_yellow_zone();
duke@435 1283 return true;
duke@435 1284 }
duke@435 1285
duke@435 1286 bool JavaThread::reguard_stack(void) {
duke@435 1287 return reguard_stack(os::current_stack_pointer());
duke@435 1288 }
duke@435 1289
duke@435 1290
duke@435 1291 void JavaThread::block_if_vm_exited() {
duke@435 1292 if (_terminated == _vm_exited) {
duke@435 1293 // _vm_exited is set at safepoint, and Threads_lock is never released
duke@435 1294 // we will block here forever
duke@435 1295 Threads_lock->lock_without_safepoint_check();
duke@435 1296 ShouldNotReachHere();
duke@435 1297 }
duke@435 1298 }
duke@435 1299
duke@435 1300
duke@435 1301 // Remove this ifdef when C1 is ported to the compiler interface.
duke@435 1302 static void compiler_thread_entry(JavaThread* thread, TRAPS);
duke@435 1303
ysr@777 1304 JavaThread::JavaThread(ThreadFunction entry_point, size_t stack_sz) :
ysr@777 1305 Thread()
ysr@777 1306 #ifndef SERIALGC
ysr@777 1307 , _satb_mark_queue(&_satb_mark_queue_set),
ysr@777 1308 _dirty_card_queue(&_dirty_card_queue_set)
ysr@777 1309 #endif // !SERIALGC
ysr@777 1310 {
duke@435 1311 if (TraceThreadEvents) {
duke@435 1312 tty->print_cr("creating thread %p", this);
duke@435 1313 }
duke@435 1314 initialize();
duke@435 1315 _is_attaching = false;
duke@435 1316 set_entry_point(entry_point);
duke@435 1317 // Create the native thread itself.
duke@435 1318 // %note runtime_23
duke@435 1319 os::ThreadType thr_type = os::java_thread;
duke@435 1320 thr_type = entry_point == &compiler_thread_entry ? os::compiler_thread :
duke@435 1321 os::java_thread;
duke@435 1322 os::create_thread(this, thr_type, stack_sz);
duke@435 1323
duke@435 1324 // The _osthread may be NULL here because we ran out of memory (too many threads active).
duke@435 1325 // We need to throw and OutOfMemoryError - however we cannot do this here because the caller
duke@435 1326 // may hold a lock and all locks must be unlocked before throwing the exception (throwing
duke@435 1327 // the exception consists of creating the exception object & initializing it, initialization
duke@435 1328 // will leave the VM via a JavaCall and then all locks must be unlocked).
duke@435 1329 //
duke@435 1330 // The thread is still suspended when we reach here. Thread must be explicit started
duke@435 1331 // by creator! Furthermore, the thread must also explicitly be added to the Threads list
duke@435 1332 // by calling Threads:add. The reason why this is not done here, is because the thread
duke@435 1333 // object must be fully initialized (take a look at JVM_Start)
duke@435 1334 }
duke@435 1335
duke@435 1336 JavaThread::~JavaThread() {
duke@435 1337 if (TraceThreadEvents) {
duke@435 1338 tty->print_cr("terminate thread %p", this);
duke@435 1339 }
duke@435 1340
duke@435 1341 // JSR166 -- return the parker to the free list
duke@435 1342 Parker::Release(_parker);
duke@435 1343 _parker = NULL ;
duke@435 1344
duke@435 1345 // Free any remaining previous UnrollBlock
duke@435 1346 vframeArray* old_array = vframe_array_last();
duke@435 1347
duke@435 1348 if (old_array != NULL) {
duke@435 1349 Deoptimization::UnrollBlock* old_info = old_array->unroll_block();
duke@435 1350 old_array->set_unroll_block(NULL);
duke@435 1351 delete old_info;
duke@435 1352 delete old_array;
duke@435 1353 }
duke@435 1354
duke@435 1355 GrowableArray<jvmtiDeferredLocalVariableSet*>* deferred = deferred_locals();
duke@435 1356 if (deferred != NULL) {
duke@435 1357 // This can only happen if thread is destroyed before deoptimization occurs.
duke@435 1358 assert(deferred->length() != 0, "empty array!");
duke@435 1359 do {
duke@435 1360 jvmtiDeferredLocalVariableSet* dlv = deferred->at(0);
duke@435 1361 deferred->remove_at(0);
duke@435 1362 // individual jvmtiDeferredLocalVariableSet are CHeapObj's
duke@435 1363 delete dlv;
duke@435 1364 } while (deferred->length() != 0);
duke@435 1365 delete deferred;
duke@435 1366 }
duke@435 1367
duke@435 1368 // All Java related clean up happens in exit
duke@435 1369 ThreadSafepointState::destroy(this);
duke@435 1370 if (_thread_profiler != NULL) delete _thread_profiler;
duke@435 1371 if (_thread_stat != NULL) delete _thread_stat;
duke@435 1372 }
duke@435 1373
duke@435 1374
duke@435 1375 // The first routine called by a new Java thread
duke@435 1376 void JavaThread::run() {
duke@435 1377 // initialize thread-local alloc buffer related fields
duke@435 1378 this->initialize_tlab();
duke@435 1379
duke@435 1380 // used to test validitity of stack trace backs
duke@435 1381 this->record_base_of_stack_pointer();
duke@435 1382
duke@435 1383 // Record real stack base and size.
duke@435 1384 this->record_stack_base_and_size();
duke@435 1385
duke@435 1386 // Initialize thread local storage; set before calling MutexLocker
duke@435 1387 this->initialize_thread_local_storage();
duke@435 1388
duke@435 1389 this->create_stack_guard_pages();
duke@435 1390
bobv@2036 1391 this->cache_global_variables();
bobv@2036 1392
duke@435 1393 // Thread is now sufficient initialized to be handled by the safepoint code as being
duke@435 1394 // in the VM. Change thread state from _thread_new to _thread_in_vm
duke@435 1395 ThreadStateTransition::transition_and_fence(this, _thread_new, _thread_in_vm);
duke@435 1396
duke@435 1397 assert(JavaThread::current() == this, "sanity check");
duke@435 1398 assert(!Thread::current()->owns_locks(), "sanity check");
duke@435 1399
duke@435 1400 DTRACE_THREAD_PROBE(start, this);
duke@435 1401
duke@435 1402 // This operation might block. We call that after all safepoint checks for a new thread has
duke@435 1403 // been completed.
duke@435 1404 this->set_active_handles(JNIHandleBlock::allocate_block());
duke@435 1405
duke@435 1406 if (JvmtiExport::should_post_thread_life()) {
duke@435 1407 JvmtiExport::post_thread_start(this);
duke@435 1408 }
duke@435 1409
duke@435 1410 // We call another function to do the rest so we are sure that the stack addresses used
duke@435 1411 // from there will be lower than the stack base just computed
duke@435 1412 thread_main_inner();
duke@435 1413
duke@435 1414 // Note, thread is no longer valid at this point!
duke@435 1415 }
duke@435 1416
duke@435 1417
duke@435 1418 void JavaThread::thread_main_inner() {
duke@435 1419 assert(JavaThread::current() == this, "sanity check");
duke@435 1420 assert(this->threadObj() != NULL, "just checking");
duke@435 1421
duke@435 1422 // Execute thread entry point. If this thread is being asked to restart,
duke@435 1423 // or has been stopped before starting, do not reexecute entry point.
duke@435 1424 // Note: Due to JVM_StopThread we can have pending exceptions already!
duke@435 1425 if (!this->has_pending_exception() && !java_lang_Thread::is_stillborn(this->threadObj())) {
duke@435 1426 // enter the thread's entry point only if we have no pending exceptions
duke@435 1427 HandleMark hm(this);
duke@435 1428 this->entry_point()(this, this);
duke@435 1429 }
duke@435 1430
duke@435 1431 DTRACE_THREAD_PROBE(stop, this);
duke@435 1432
duke@435 1433 this->exit(false);
duke@435 1434 delete this;
duke@435 1435 }
duke@435 1436
duke@435 1437
duke@435 1438 static void ensure_join(JavaThread* thread) {
duke@435 1439 // We do not need to grap the Threads_lock, since we are operating on ourself.
duke@435 1440 Handle threadObj(thread, thread->threadObj());
duke@435 1441 assert(threadObj.not_null(), "java thread object must exist");
duke@435 1442 ObjectLocker lock(threadObj, thread);
duke@435 1443 // Ignore pending exception (ThreadDeath), since we are exiting anyway
duke@435 1444 thread->clear_pending_exception();
duke@435 1445 // It is of profound importance that we set the stillborn bit and reset the thread object,
duke@435 1446 // before we do the notify. Since, changing these two variable will make JVM_IsAlive return
duke@435 1447 // false. So in case another thread is doing a join on this thread , it will detect that the thread
duke@435 1448 // is dead when it gets notified.
duke@435 1449 java_lang_Thread::set_stillborn(threadObj());
duke@435 1450 // Thread is exiting. So set thread_status field in java.lang.Thread class to TERMINATED.
duke@435 1451 java_lang_Thread::set_thread_status(threadObj(), java_lang_Thread::TERMINATED);
duke@435 1452 java_lang_Thread::set_thread(threadObj(), NULL);
duke@435 1453 lock.notify_all(thread);
duke@435 1454 // Ignore pending exception (ThreadDeath), since we are exiting anyway
duke@435 1455 thread->clear_pending_exception();
duke@435 1456 }
duke@435 1457
iveresov@876 1458
duke@435 1459 // For any new cleanup additions, please check to see if they need to be applied to
duke@435 1460 // cleanup_failed_attach_current_thread as well.
duke@435 1461 void JavaThread::exit(bool destroy_vm, ExitType exit_type) {
duke@435 1462 assert(this == JavaThread::current(), "thread consistency check");
duke@435 1463 if (!InitializeJavaLangSystem) return;
duke@435 1464
duke@435 1465 HandleMark hm(this);
duke@435 1466 Handle uncaught_exception(this, this->pending_exception());
duke@435 1467 this->clear_pending_exception();
duke@435 1468 Handle threadObj(this, this->threadObj());
duke@435 1469 assert(threadObj.not_null(), "Java thread object should be created");
duke@435 1470
duke@435 1471 if (get_thread_profiler() != NULL) {
duke@435 1472 get_thread_profiler()->disengage();
duke@435 1473 ResourceMark rm;
duke@435 1474 get_thread_profiler()->print(get_thread_name());
duke@435 1475 }
duke@435 1476
duke@435 1477
duke@435 1478 // FIXIT: This code should be moved into else part, when reliable 1.2/1.3 check is in place
duke@435 1479 {
duke@435 1480 EXCEPTION_MARK;
duke@435 1481
duke@435 1482 CLEAR_PENDING_EXCEPTION;
duke@435 1483 }
duke@435 1484 // FIXIT: The is_null check is only so it works better on JDK1.2 VM's. This
duke@435 1485 // has to be fixed by a runtime query method
duke@435 1486 if (!destroy_vm || JDK_Version::is_jdk12x_version()) {
duke@435 1487 // JSR-166: change call from from ThreadGroup.uncaughtException to
duke@435 1488 // java.lang.Thread.dispatchUncaughtException
duke@435 1489 if (uncaught_exception.not_null()) {
duke@435 1490 Handle group(this, java_lang_Thread::threadGroup(threadObj()));
duke@435 1491 Events::log("uncaught exception INTPTR_FORMAT " " INTPTR_FORMAT " " INTPTR_FORMAT",
duke@435 1492 (address)uncaught_exception(), (address)threadObj(), (address)group());
duke@435 1493 {
duke@435 1494 EXCEPTION_MARK;
duke@435 1495 // Check if the method Thread.dispatchUncaughtException() exists. If so
duke@435 1496 // call it. Otherwise we have an older library without the JSR-166 changes,
duke@435 1497 // so call ThreadGroup.uncaughtException()
duke@435 1498 KlassHandle recvrKlass(THREAD, threadObj->klass());
duke@435 1499 CallInfo callinfo;
never@1577 1500 KlassHandle thread_klass(THREAD, SystemDictionary::Thread_klass());
duke@435 1501 LinkResolver::resolve_virtual_call(callinfo, threadObj, recvrKlass, thread_klass,
duke@435 1502 vmSymbolHandles::dispatchUncaughtException_name(),
duke@435 1503 vmSymbolHandles::throwable_void_signature(),
duke@435 1504 KlassHandle(), false, false, THREAD);
duke@435 1505 CLEAR_PENDING_EXCEPTION;
duke@435 1506 methodHandle method = callinfo.selected_method();
duke@435 1507 if (method.not_null()) {
duke@435 1508 JavaValue result(T_VOID);
duke@435 1509 JavaCalls::call_virtual(&result,
duke@435 1510 threadObj, thread_klass,
duke@435 1511 vmSymbolHandles::dispatchUncaughtException_name(),
duke@435 1512 vmSymbolHandles::throwable_void_signature(),
duke@435 1513 uncaught_exception,
duke@435 1514 THREAD);
duke@435 1515 } else {
never@1577 1516 KlassHandle thread_group(THREAD, SystemDictionary::ThreadGroup_klass());
duke@435 1517 JavaValue result(T_VOID);
duke@435 1518 JavaCalls::call_virtual(&result,
duke@435 1519 group, thread_group,
duke@435 1520 vmSymbolHandles::uncaughtException_name(),
duke@435 1521 vmSymbolHandles::thread_throwable_void_signature(),
duke@435 1522 threadObj, // Arg 1
duke@435 1523 uncaught_exception, // Arg 2
duke@435 1524 THREAD);
duke@435 1525 }
duke@435 1526 CLEAR_PENDING_EXCEPTION;
duke@435 1527 }
duke@435 1528 }
duke@435 1529
duke@435 1530 // Call Thread.exit(). We try 3 times in case we got another Thread.stop during
duke@435 1531 // the execution of the method. If that is not enough, then we don't really care. Thread.stop
duke@435 1532 // is deprecated anyhow.
duke@435 1533 { int count = 3;
duke@435 1534 while (java_lang_Thread::threadGroup(threadObj()) != NULL && (count-- > 0)) {
duke@435 1535 EXCEPTION_MARK;
duke@435 1536 JavaValue result(T_VOID);
never@1577 1537 KlassHandle thread_klass(THREAD, SystemDictionary::Thread_klass());
duke@435 1538 JavaCalls::call_virtual(&result,
duke@435 1539 threadObj, thread_klass,
duke@435 1540 vmSymbolHandles::exit_method_name(),
duke@435 1541 vmSymbolHandles::void_method_signature(),
duke@435 1542 THREAD);
duke@435 1543 CLEAR_PENDING_EXCEPTION;
duke@435 1544 }
duke@435 1545 }
duke@435 1546
duke@435 1547 // notify JVMTI
duke@435 1548 if (JvmtiExport::should_post_thread_life()) {
duke@435 1549 JvmtiExport::post_thread_end(this);
duke@435 1550 }
duke@435 1551
duke@435 1552 // We have notified the agents that we are exiting, before we go on,
duke@435 1553 // we must check for a pending external suspend request and honor it
duke@435 1554 // in order to not surprise the thread that made the suspend request.
duke@435 1555 while (true) {
duke@435 1556 {
duke@435 1557 MutexLockerEx ml(SR_lock(), Mutex::_no_safepoint_check_flag);
duke@435 1558 if (!is_external_suspend()) {
duke@435 1559 set_terminated(_thread_exiting);
duke@435 1560 ThreadService::current_thread_exiting(this);
duke@435 1561 break;
duke@435 1562 }
duke@435 1563 // Implied else:
duke@435 1564 // Things get a little tricky here. We have a pending external
duke@435 1565 // suspend request, but we are holding the SR_lock so we
duke@435 1566 // can't just self-suspend. So we temporarily drop the lock
duke@435 1567 // and then self-suspend.
duke@435 1568 }
duke@435 1569
duke@435 1570 ThreadBlockInVM tbivm(this);
duke@435 1571 java_suspend_self();
duke@435 1572
duke@435 1573 // We're done with this suspend request, but we have to loop around
duke@435 1574 // and check again. Eventually we will get SR_lock without a pending
duke@435 1575 // external suspend request and will be able to mark ourselves as
duke@435 1576 // exiting.
duke@435 1577 }
duke@435 1578 // no more external suspends are allowed at this point
duke@435 1579 } else {
duke@435 1580 // before_exit() has already posted JVMTI THREAD_END events
duke@435 1581 }
duke@435 1582
duke@435 1583 // Notify waiters on thread object. This has to be done after exit() is called
duke@435 1584 // on the thread (if the thread is the last thread in a daemon ThreadGroup the
duke@435 1585 // group should have the destroyed bit set before waiters are notified).
duke@435 1586 ensure_join(this);
duke@435 1587 assert(!this->has_pending_exception(), "ensure_join should have cleared");
duke@435 1588
duke@435 1589 // 6282335 JNI DetachCurrentThread spec states that all Java monitors
duke@435 1590 // held by this thread must be released. A detach operation must only
duke@435 1591 // get here if there are no Java frames on the stack. Therefore, any
duke@435 1592 // owned monitors at this point MUST be JNI-acquired monitors which are
duke@435 1593 // pre-inflated and in the monitor cache.
duke@435 1594 //
duke@435 1595 // ensure_join() ignores IllegalThreadStateExceptions, and so does this.
duke@435 1596 if (exit_type == jni_detach && JNIDetachReleasesMonitors) {
duke@435 1597 assert(!this->has_last_Java_frame(), "detaching with Java frames?");
duke@435 1598 ObjectSynchronizer::release_monitors_owned_by_thread(this);
duke@435 1599 assert(!this->has_pending_exception(), "release_monitors should have cleared");
duke@435 1600 }
duke@435 1601
duke@435 1602 // These things needs to be done while we are still a Java Thread. Make sure that thread
duke@435 1603 // is in a consistent state, in case GC happens
duke@435 1604 assert(_privileged_stack_top == NULL, "must be NULL when we get here");
duke@435 1605
duke@435 1606 if (active_handles() != NULL) {
duke@435 1607 JNIHandleBlock* block = active_handles();
duke@435 1608 set_active_handles(NULL);
duke@435 1609 JNIHandleBlock::release_block(block);
duke@435 1610 }
duke@435 1611
duke@435 1612 if (free_handle_block() != NULL) {
duke@435 1613 JNIHandleBlock* block = free_handle_block();
duke@435 1614 set_free_handle_block(NULL);
duke@435 1615 JNIHandleBlock::release_block(block);
duke@435 1616 }
duke@435 1617
duke@435 1618 // These have to be removed while this is still a valid thread.
duke@435 1619 remove_stack_guard_pages();
duke@435 1620
duke@435 1621 if (UseTLAB) {
duke@435 1622 tlab().make_parsable(true); // retire TLAB
duke@435 1623 }
duke@435 1624
dcubed@484 1625 if (jvmti_thread_state() != NULL) {
dcubed@484 1626 JvmtiExport::cleanup_thread(this);
dcubed@484 1627 }
dcubed@484 1628
iveresov@876 1629 #ifndef SERIALGC
iveresov@876 1630 // We must flush G1-related buffers before removing a thread from
iveresov@876 1631 // the list of active threads.
iveresov@876 1632 if (UseG1GC) {
iveresov@876 1633 flush_barrier_queues();
iveresov@876 1634 }
iveresov@876 1635 #endif
iveresov@876 1636
duke@435 1637 // Remove from list of active threads list, and notify VM thread if we are the last non-daemon thread
duke@435 1638 Threads::remove(this);
duke@435 1639 }
duke@435 1640
iveresov@876 1641 #ifndef SERIALGC
iveresov@876 1642 // Flush G1-related queues.
iveresov@876 1643 void JavaThread::flush_barrier_queues() {
iveresov@876 1644 satb_mark_queue().flush();
iveresov@876 1645 dirty_card_queue().flush();
iveresov@876 1646 }
iveresov@876 1647 #endif
iveresov@876 1648
duke@435 1649 void JavaThread::cleanup_failed_attach_current_thread() {
iveresov@876 1650 if (get_thread_profiler() != NULL) {
iveresov@876 1651 get_thread_profiler()->disengage();
iveresov@876 1652 ResourceMark rm;
iveresov@876 1653 get_thread_profiler()->print(get_thread_name());
iveresov@876 1654 }
iveresov@876 1655
iveresov@876 1656 if (active_handles() != NULL) {
iveresov@876 1657 JNIHandleBlock* block = active_handles();
iveresov@876 1658 set_active_handles(NULL);
iveresov@876 1659 JNIHandleBlock::release_block(block);
iveresov@876 1660 }
iveresov@876 1661
iveresov@876 1662 if (free_handle_block() != NULL) {
iveresov@876 1663 JNIHandleBlock* block = free_handle_block();
iveresov@876 1664 set_free_handle_block(NULL);
iveresov@876 1665 JNIHandleBlock::release_block(block);
iveresov@876 1666 }
iveresov@876 1667
coleenp@1725 1668 // These have to be removed while this is still a valid thread.
coleenp@1725 1669 remove_stack_guard_pages();
coleenp@1725 1670
iveresov@876 1671 if (UseTLAB) {
iveresov@876 1672 tlab().make_parsable(true); // retire TLAB, if any
iveresov@876 1673 }
iveresov@876 1674
iveresov@876 1675 #ifndef SERIALGC
iveresov@876 1676 if (UseG1GC) {
iveresov@876 1677 flush_barrier_queues();
iveresov@876 1678 }
iveresov@876 1679 #endif
iveresov@876 1680
iveresov@876 1681 Threads::remove(this);
iveresov@876 1682 delete this;
duke@435 1683 }
duke@435 1684
duke@435 1685
iveresov@876 1686
iveresov@876 1687
duke@435 1688 JavaThread* JavaThread::active() {
duke@435 1689 Thread* thread = ThreadLocalStorage::thread();
duke@435 1690 assert(thread != NULL, "just checking");
duke@435 1691 if (thread->is_Java_thread()) {
duke@435 1692 return (JavaThread*) thread;
duke@435 1693 } else {
duke@435 1694 assert(thread->is_VM_thread(), "this must be a vm thread");
duke@435 1695 VM_Operation* op = ((VMThread*) thread)->vm_operation();
duke@435 1696 JavaThread *ret=op == NULL ? NULL : (JavaThread *)op->calling_thread();
duke@435 1697 assert(ret->is_Java_thread(), "must be a Java thread");
duke@435 1698 return ret;
duke@435 1699 }
duke@435 1700 }
duke@435 1701
duke@435 1702 bool JavaThread::is_lock_owned(address adr) const {
xlu@1137 1703 if (Thread::is_lock_owned(adr)) return true;
duke@435 1704
duke@435 1705 for (MonitorChunk* chunk = monitor_chunks(); chunk != NULL; chunk = chunk->next()) {
duke@435 1706 if (chunk->contains(adr)) return true;
duke@435 1707 }
duke@435 1708
duke@435 1709 return false;
duke@435 1710 }
duke@435 1711
duke@435 1712
duke@435 1713 void JavaThread::add_monitor_chunk(MonitorChunk* chunk) {
duke@435 1714 chunk->set_next(monitor_chunks());
duke@435 1715 set_monitor_chunks(chunk);
duke@435 1716 }
duke@435 1717
duke@435 1718 void JavaThread::remove_monitor_chunk(MonitorChunk* chunk) {
duke@435 1719 guarantee(monitor_chunks() != NULL, "must be non empty");
duke@435 1720 if (monitor_chunks() == chunk) {
duke@435 1721 set_monitor_chunks(chunk->next());
duke@435 1722 } else {
duke@435 1723 MonitorChunk* prev = monitor_chunks();
duke@435 1724 while (prev->next() != chunk) prev = prev->next();
duke@435 1725 prev->set_next(chunk->next());
duke@435 1726 }
duke@435 1727 }
duke@435 1728
duke@435 1729 // JVM support.
duke@435 1730
duke@435 1731 // Note: this function shouldn't block if it's called in
duke@435 1732 // _thread_in_native_trans state (such as from
duke@435 1733 // check_special_condition_for_native_trans()).
duke@435 1734 void JavaThread::check_and_handle_async_exceptions(bool check_unsafe_error) {
duke@435 1735
duke@435 1736 if (has_last_Java_frame() && has_async_condition()) {
duke@435 1737 // If we are at a polling page safepoint (not a poll return)
duke@435 1738 // then we must defer async exception because live registers
duke@435 1739 // will be clobbered by the exception path. Poll return is
duke@435 1740 // ok because the call we a returning from already collides
duke@435 1741 // with exception handling registers and so there is no issue.
duke@435 1742 // (The exception handling path kills call result registers but
duke@435 1743 // this is ok since the exception kills the result anyway).
duke@435 1744
duke@435 1745 if (is_at_poll_safepoint()) {
duke@435 1746 // if the code we are returning to has deoptimized we must defer
duke@435 1747 // the exception otherwise live registers get clobbered on the
duke@435 1748 // exception path before deoptimization is able to retrieve them.
duke@435 1749 //
duke@435 1750 RegisterMap map(this, false);
duke@435 1751 frame caller_fr = last_frame().sender(&map);
duke@435 1752 assert(caller_fr.is_compiled_frame(), "what?");
duke@435 1753 if (caller_fr.is_deoptimized_frame()) {
duke@435 1754 if (TraceExceptions) {
duke@435 1755 ResourceMark rm;
duke@435 1756 tty->print_cr("deferred async exception at compiled safepoint");
duke@435 1757 }
duke@435 1758 return;
duke@435 1759 }
duke@435 1760 }
duke@435 1761 }
duke@435 1762
duke@435 1763 JavaThread::AsyncRequests condition = clear_special_runtime_exit_condition();
duke@435 1764 if (condition == _no_async_condition) {
duke@435 1765 // Conditions have changed since has_special_runtime_exit_condition()
duke@435 1766 // was called:
duke@435 1767 // - if we were here only because of an external suspend request,
duke@435 1768 // then that was taken care of above (or cancelled) so we are done
duke@435 1769 // - if we were here because of another async request, then it has
duke@435 1770 // been cleared between the has_special_runtime_exit_condition()
duke@435 1771 // and now so again we are done
duke@435 1772 return;
duke@435 1773 }
duke@435 1774
duke@435 1775 // Check for pending async. exception
duke@435 1776 if (_pending_async_exception != NULL) {
duke@435 1777 // Only overwrite an already pending exception, if it is not a threadDeath.
never@1577 1778 if (!has_pending_exception() || !pending_exception()->is_a(SystemDictionary::ThreadDeath_klass())) {
duke@435 1779
duke@435 1780 // We cannot call Exceptions::_throw(...) here because we cannot block
duke@435 1781 set_pending_exception(_pending_async_exception, __FILE__, __LINE__);
duke@435 1782
duke@435 1783 if (TraceExceptions) {
duke@435 1784 ResourceMark rm;
duke@435 1785 tty->print("Async. exception installed at runtime exit (" INTPTR_FORMAT ")", this);
duke@435 1786 if (has_last_Java_frame() ) {
duke@435 1787 frame f = last_frame();
duke@435 1788 tty->print(" (pc: " INTPTR_FORMAT " sp: " INTPTR_FORMAT " )", f.pc(), f.sp());
duke@435 1789 }
duke@435 1790 tty->print_cr(" of type: %s", instanceKlass::cast(_pending_async_exception->klass())->external_name());
duke@435 1791 }
duke@435 1792 _pending_async_exception = NULL;
duke@435 1793 clear_has_async_exception();
duke@435 1794 }
duke@435 1795 }
duke@435 1796
duke@435 1797 if (check_unsafe_error &&
duke@435 1798 condition == _async_unsafe_access_error && !has_pending_exception()) {
duke@435 1799 condition = _no_async_condition; // done
duke@435 1800 switch (thread_state()) {
duke@435 1801 case _thread_in_vm:
duke@435 1802 {
duke@435 1803 JavaThread* THREAD = this;
duke@435 1804 THROW_MSG(vmSymbols::java_lang_InternalError(), "a fault occurred in an unsafe memory access operation");
duke@435 1805 }
duke@435 1806 case _thread_in_native:
duke@435 1807 {
duke@435 1808 ThreadInVMfromNative tiv(this);
duke@435 1809 JavaThread* THREAD = this;
duke@435 1810 THROW_MSG(vmSymbols::java_lang_InternalError(), "a fault occurred in an unsafe memory access operation");
duke@435 1811 }
duke@435 1812 case _thread_in_Java:
duke@435 1813 {
duke@435 1814 ThreadInVMfromJava tiv(this);
duke@435 1815 JavaThread* THREAD = this;
duke@435 1816 THROW_MSG(vmSymbols::java_lang_InternalError(), "a fault occurred in a recent unsafe memory access operation in compiled Java code");
duke@435 1817 }
duke@435 1818 default:
duke@435 1819 ShouldNotReachHere();
duke@435 1820 }
duke@435 1821 }
duke@435 1822
duke@435 1823 assert(condition == _no_async_condition || has_pending_exception() ||
duke@435 1824 (!check_unsafe_error && condition == _async_unsafe_access_error),
duke@435 1825 "must have handled the async condition, if no exception");
duke@435 1826 }
duke@435 1827
duke@435 1828 void JavaThread::handle_special_runtime_exit_condition(bool check_asyncs) {
duke@435 1829 //
duke@435 1830 // Check for pending external suspend. Internal suspend requests do
duke@435 1831 // not use handle_special_runtime_exit_condition().
duke@435 1832 // If JNIEnv proxies are allowed, don't self-suspend if the target
duke@435 1833 // thread is not the current thread. In older versions of jdbx, jdbx
duke@435 1834 // threads could call into the VM with another thread's JNIEnv so we
duke@435 1835 // can be here operating on behalf of a suspended thread (4432884).
duke@435 1836 bool do_self_suspend = is_external_suspend_with_lock();
duke@435 1837 if (do_self_suspend && (!AllowJNIEnvProxy || this == JavaThread::current())) {
duke@435 1838 //
duke@435 1839 // Because thread is external suspended the safepoint code will count
duke@435 1840 // thread as at a safepoint. This can be odd because we can be here
duke@435 1841 // as _thread_in_Java which would normally transition to _thread_blocked
duke@435 1842 // at a safepoint. We would like to mark the thread as _thread_blocked
duke@435 1843 // before calling java_suspend_self like all other callers of it but
duke@435 1844 // we must then observe proper safepoint protocol. (We can't leave
duke@435 1845 // _thread_blocked with a safepoint in progress). However we can be
duke@435 1846 // here as _thread_in_native_trans so we can't use a normal transition
duke@435 1847 // constructor/destructor pair because they assert on that type of
duke@435 1848 // transition. We could do something like:
duke@435 1849 //
duke@435 1850 // JavaThreadState state = thread_state();
duke@435 1851 // set_thread_state(_thread_in_vm);
duke@435 1852 // {
duke@435 1853 // ThreadBlockInVM tbivm(this);
duke@435 1854 // java_suspend_self()
duke@435 1855 // }
duke@435 1856 // set_thread_state(_thread_in_vm_trans);
duke@435 1857 // if (safepoint) block;
duke@435 1858 // set_thread_state(state);
duke@435 1859 //
duke@435 1860 // but that is pretty messy. Instead we just go with the way the
duke@435 1861 // code has worked before and note that this is the only path to
duke@435 1862 // java_suspend_self that doesn't put the thread in _thread_blocked
duke@435 1863 // mode.
duke@435 1864
duke@435 1865 frame_anchor()->make_walkable(this);
duke@435 1866 java_suspend_self();
duke@435 1867
duke@435 1868 // We might be here for reasons in addition to the self-suspend request
duke@435 1869 // so check for other async requests.
duke@435 1870 }
duke@435 1871
duke@435 1872 if (check_asyncs) {
duke@435 1873 check_and_handle_async_exceptions();
duke@435 1874 }
duke@435 1875 }
duke@435 1876
duke@435 1877 void JavaThread::send_thread_stop(oop java_throwable) {
duke@435 1878 assert(Thread::current()->is_VM_thread(), "should be in the vm thread");
duke@435 1879 assert(Threads_lock->is_locked(), "Threads_lock should be locked by safepoint code");
duke@435 1880 assert(SafepointSynchronize::is_at_safepoint(), "all threads are stopped");
duke@435 1881
duke@435 1882 // Do not throw asynchronous exceptions against the compiler thread
duke@435 1883 // (the compiler thread should not be a Java thread -- fix in 1.4.2)
duke@435 1884 if (is_Compiler_thread()) return;
duke@435 1885
duke@435 1886 // This is a change from JDK 1.1, but JDK 1.2 will also do it:
never@1577 1887 if (java_throwable->is_a(SystemDictionary::ThreadDeath_klass())) {
duke@435 1888 java_lang_Thread::set_stillborn(threadObj());
duke@435 1889 }
duke@435 1890
duke@435 1891 {
duke@435 1892 // Actually throw the Throwable against the target Thread - however
duke@435 1893 // only if there is no thread death exception installed already.
never@1577 1894 if (_pending_async_exception == NULL || !_pending_async_exception->is_a(SystemDictionary::ThreadDeath_klass())) {
duke@435 1895 // If the topmost frame is a runtime stub, then we are calling into
duke@435 1896 // OptoRuntime from compiled code. Some runtime stubs (new, monitor_exit..)
duke@435 1897 // must deoptimize the caller before continuing, as the compiled exception handler table
duke@435 1898 // may not be valid
duke@435 1899 if (has_last_Java_frame()) {
duke@435 1900 frame f = last_frame();
duke@435 1901 if (f.is_runtime_frame() || f.is_safepoint_blob_frame()) {
duke@435 1902 // BiasedLocking needs an updated RegisterMap for the revoke monitors pass
duke@435 1903 RegisterMap reg_map(this, UseBiasedLocking);
duke@435 1904 frame compiled_frame = f.sender(&reg_map);
duke@435 1905 if (compiled_frame.can_be_deoptimized()) {
duke@435 1906 Deoptimization::deoptimize(this, compiled_frame, &reg_map);
duke@435 1907 }
duke@435 1908 }
duke@435 1909 }
duke@435 1910
duke@435 1911 // Set async. pending exception in thread.
duke@435 1912 set_pending_async_exception(java_throwable);
duke@435 1913
duke@435 1914 if (TraceExceptions) {
duke@435 1915 ResourceMark rm;
duke@435 1916 tty->print_cr("Pending Async. exception installed of type: %s", instanceKlass::cast(_pending_async_exception->klass())->external_name());
duke@435 1917 }
duke@435 1918 // for AbortVMOnException flag
duke@435 1919 NOT_PRODUCT(Exceptions::debug_check_abort(instanceKlass::cast(_pending_async_exception->klass())->external_name()));
duke@435 1920 }
duke@435 1921 }
duke@435 1922
duke@435 1923
duke@435 1924 // Interrupt thread so it will wake up from a potential wait()
duke@435 1925 Thread::interrupt(this);
duke@435 1926 }
duke@435 1927
duke@435 1928 // External suspension mechanism.
duke@435 1929 //
duke@435 1930 // Tell the VM to suspend a thread when ever it knows that it does not hold on
duke@435 1931 // to any VM_locks and it is at a transition
duke@435 1932 // Self-suspension will happen on the transition out of the vm.
duke@435 1933 // Catch "this" coming in from JNIEnv pointers when the thread has been freed
duke@435 1934 //
duke@435 1935 // Guarantees on return:
duke@435 1936 // + Target thread will not execute any new bytecode (that's why we need to
duke@435 1937 // force a safepoint)
duke@435 1938 // + Target thread will not enter any new monitors
duke@435 1939 //
duke@435 1940 void JavaThread::java_suspend() {
duke@435 1941 { MutexLocker mu(Threads_lock);
duke@435 1942 if (!Threads::includes(this) || is_exiting() || this->threadObj() == NULL) {
duke@435 1943 return;
duke@435 1944 }
duke@435 1945 }
duke@435 1946
duke@435 1947 { MutexLockerEx ml(SR_lock(), Mutex::_no_safepoint_check_flag);
duke@435 1948 if (!is_external_suspend()) {
duke@435 1949 // a racing resume has cancelled us; bail out now
duke@435 1950 return;
duke@435 1951 }
duke@435 1952
duke@435 1953 // suspend is done
duke@435 1954 uint32_t debug_bits = 0;
duke@435 1955 // Warning: is_ext_suspend_completed() may temporarily drop the
duke@435 1956 // SR_lock to allow the thread to reach a stable thread state if
duke@435 1957 // it is currently in a transient thread state.
duke@435 1958 if (is_ext_suspend_completed(false /* !called_by_wait */,
duke@435 1959 SuspendRetryDelay, &debug_bits) ) {
duke@435 1960 return;
duke@435 1961 }
duke@435 1962 }
duke@435 1963
duke@435 1964 VM_ForceSafepoint vm_suspend;
duke@435 1965 VMThread::execute(&vm_suspend);
duke@435 1966 }
duke@435 1967
duke@435 1968 // Part II of external suspension.
duke@435 1969 // A JavaThread self suspends when it detects a pending external suspend
duke@435 1970 // request. This is usually on transitions. It is also done in places
duke@435 1971 // where continuing to the next transition would surprise the caller,
duke@435 1972 // e.g., monitor entry.
duke@435 1973 //
duke@435 1974 // Returns the number of times that the thread self-suspended.
duke@435 1975 //
duke@435 1976 // Note: DO NOT call java_suspend_self() when you just want to block current
duke@435 1977 // thread. java_suspend_self() is the second stage of cooperative
duke@435 1978 // suspension for external suspend requests and should only be used
duke@435 1979 // to complete an external suspend request.
duke@435 1980 //
duke@435 1981 int JavaThread::java_suspend_self() {
duke@435 1982 int ret = 0;
duke@435 1983
duke@435 1984 // we are in the process of exiting so don't suspend
duke@435 1985 if (is_exiting()) {
duke@435 1986 clear_external_suspend();
duke@435 1987 return ret;
duke@435 1988 }
duke@435 1989
duke@435 1990 assert(_anchor.walkable() ||
duke@435 1991 (is_Java_thread() && !((JavaThread*)this)->has_last_Java_frame()),
duke@435 1992 "must have walkable stack");
duke@435 1993
duke@435 1994 MutexLockerEx ml(SR_lock(), Mutex::_no_safepoint_check_flag);
duke@435 1995
dcubed@1414 1996 assert(!this->is_ext_suspended(),
duke@435 1997 "a thread trying to self-suspend should not already be suspended");
duke@435 1998
duke@435 1999 if (this->is_suspend_equivalent()) {
duke@435 2000 // If we are self-suspending as a result of the lifting of a
duke@435 2001 // suspend equivalent condition, then the suspend_equivalent
duke@435 2002 // flag is not cleared until we set the ext_suspended flag so
duke@435 2003 // that wait_for_ext_suspend_completion() returns consistent
duke@435 2004 // results.
duke@435 2005 this->clear_suspend_equivalent();
duke@435 2006 }
duke@435 2007
duke@435 2008 // A racing resume may have cancelled us before we grabbed SR_lock
duke@435 2009 // above. Or another external suspend request could be waiting for us
duke@435 2010 // by the time we return from SR_lock()->wait(). The thread
duke@435 2011 // that requested the suspension may already be trying to walk our
duke@435 2012 // stack and if we return now, we can change the stack out from under
duke@435 2013 // it. This would be a "bad thing (TM)" and cause the stack walker
duke@435 2014 // to crash. We stay self-suspended until there are no more pending
duke@435 2015 // external suspend requests.
duke@435 2016 while (is_external_suspend()) {
duke@435 2017 ret++;
duke@435 2018 this->set_ext_suspended();
duke@435 2019
duke@435 2020 // _ext_suspended flag is cleared by java_resume()
duke@435 2021 while (is_ext_suspended()) {
duke@435 2022 this->SR_lock()->wait(Mutex::_no_safepoint_check_flag);
duke@435 2023 }
duke@435 2024 }
duke@435 2025
duke@435 2026 return ret;
duke@435 2027 }
duke@435 2028
duke@435 2029 #ifdef ASSERT
duke@435 2030 // verify the JavaThread has not yet been published in the Threads::list, and
duke@435 2031 // hence doesn't need protection from concurrent access at this stage
duke@435 2032 void JavaThread::verify_not_published() {
duke@435 2033 if (!Threads_lock->owned_by_self()) {
duke@435 2034 MutexLockerEx ml(Threads_lock, Mutex::_no_safepoint_check_flag);
duke@435 2035 assert( !Threads::includes(this),
duke@435 2036 "java thread shouldn't have been published yet!");
duke@435 2037 }
duke@435 2038 else {
duke@435 2039 assert( !Threads::includes(this),
duke@435 2040 "java thread shouldn't have been published yet!");
duke@435 2041 }
duke@435 2042 }
duke@435 2043 #endif
duke@435 2044
duke@435 2045 // Slow path when the native==>VM/Java barriers detect a safepoint is in
duke@435 2046 // progress or when _suspend_flags is non-zero.
duke@435 2047 // Current thread needs to self-suspend if there is a suspend request and/or
duke@435 2048 // block if a safepoint is in progress.
duke@435 2049 // Async exception ISN'T checked.
duke@435 2050 // Note only the ThreadInVMfromNative transition can call this function
duke@435 2051 // directly and when thread state is _thread_in_native_trans
duke@435 2052 void JavaThread::check_safepoint_and_suspend_for_native_trans(JavaThread *thread) {
duke@435 2053 assert(thread->thread_state() == _thread_in_native_trans, "wrong state");
duke@435 2054
duke@435 2055 JavaThread *curJT = JavaThread::current();
duke@435 2056 bool do_self_suspend = thread->is_external_suspend();
duke@435 2057
duke@435 2058 assert(!curJT->has_last_Java_frame() || curJT->frame_anchor()->walkable(), "Unwalkable stack in native->vm transition");
duke@435 2059
duke@435 2060 // If JNIEnv proxies are allowed, don't self-suspend if the target
duke@435 2061 // thread is not the current thread. In older versions of jdbx, jdbx
duke@435 2062 // threads could call into the VM with another thread's JNIEnv so we
duke@435 2063 // can be here operating on behalf of a suspended thread (4432884).
duke@435 2064 if (do_self_suspend && (!AllowJNIEnvProxy || curJT == thread)) {
duke@435 2065 JavaThreadState state = thread->thread_state();
duke@435 2066
duke@435 2067 // We mark this thread_blocked state as a suspend-equivalent so
duke@435 2068 // that a caller to is_ext_suspend_completed() won't be confused.
duke@435 2069 // The suspend-equivalent state is cleared by java_suspend_self().
duke@435 2070 thread->set_suspend_equivalent();
duke@435 2071
duke@435 2072 // If the safepoint code sees the _thread_in_native_trans state, it will
duke@435 2073 // wait until the thread changes to other thread state. There is no
duke@435 2074 // guarantee on how soon we can obtain the SR_lock and complete the
duke@435 2075 // self-suspend request. It would be a bad idea to let safepoint wait for
duke@435 2076 // too long. Temporarily change the state to _thread_blocked to
duke@435 2077 // let the VM thread know that this thread is ready for GC. The problem
duke@435 2078 // of changing thread state is that safepoint could happen just after
duke@435 2079 // java_suspend_self() returns after being resumed, and VM thread will
duke@435 2080 // see the _thread_blocked state. We must check for safepoint
duke@435 2081 // after restoring the state and make sure we won't leave while a safepoint
duke@435 2082 // is in progress.
duke@435 2083 thread->set_thread_state(_thread_blocked);
duke@435 2084 thread->java_suspend_self();
duke@435 2085 thread->set_thread_state(state);
duke@435 2086 // Make sure new state is seen by VM thread
duke@435 2087 if (os::is_MP()) {
duke@435 2088 if (UseMembar) {
duke@435 2089 // Force a fence between the write above and read below
duke@435 2090 OrderAccess::fence();
duke@435 2091 } else {
duke@435 2092 // Must use this rather than serialization page in particular on Windows
duke@435 2093 InterfaceSupport::serialize_memory(thread);
duke@435 2094 }
duke@435 2095 }
duke@435 2096 }
duke@435 2097
duke@435 2098 if (SafepointSynchronize::do_call_back()) {
duke@435 2099 // If we are safepointing, then block the caller which may not be
duke@435 2100 // the same as the target thread (see above).
duke@435 2101 SafepointSynchronize::block(curJT);
duke@435 2102 }
duke@435 2103
duke@435 2104 if (thread->is_deopt_suspend()) {
duke@435 2105 thread->clear_deopt_suspend();
duke@435 2106 RegisterMap map(thread, false);
duke@435 2107 frame f = thread->last_frame();
duke@435 2108 while ( f.id() != thread->must_deopt_id() && ! f.is_first_frame()) {
duke@435 2109 f = f.sender(&map);
duke@435 2110 }
duke@435 2111 if (f.id() == thread->must_deopt_id()) {
duke@435 2112 thread->clear_must_deopt_id();
duke@435 2113 // Since we know we're safe to deopt the current state is a safe state
duke@435 2114 f.deoptimize(thread, true);
duke@435 2115 } else {
duke@435 2116 fatal("missed deoptimization!");
duke@435 2117 }
duke@435 2118 }
duke@435 2119 }
duke@435 2120
duke@435 2121 // Slow path when the native==>VM/Java barriers detect a safepoint is in
duke@435 2122 // progress or when _suspend_flags is non-zero.
duke@435 2123 // Current thread needs to self-suspend if there is a suspend request and/or
duke@435 2124 // block if a safepoint is in progress.
duke@435 2125 // Also check for pending async exception (not including unsafe access error).
duke@435 2126 // Note only the native==>VM/Java barriers can call this function and when
duke@435 2127 // thread state is _thread_in_native_trans.
duke@435 2128 void JavaThread::check_special_condition_for_native_trans(JavaThread *thread) {
duke@435 2129 check_safepoint_and_suspend_for_native_trans(thread);
duke@435 2130
duke@435 2131 if (thread->has_async_exception()) {
duke@435 2132 // We are in _thread_in_native_trans state, don't handle unsafe
duke@435 2133 // access error since that may block.
duke@435 2134 thread->check_and_handle_async_exceptions(false);
duke@435 2135 }
duke@435 2136 }
duke@435 2137
duke@435 2138 // We need to guarantee the Threads_lock here, since resumes are not
duke@435 2139 // allowed during safepoint synchronization
duke@435 2140 // Can only resume from an external suspension
duke@435 2141 void JavaThread::java_resume() {
duke@435 2142 assert_locked_or_safepoint(Threads_lock);
duke@435 2143
duke@435 2144 // Sanity check: thread is gone, has started exiting or the thread
duke@435 2145 // was not externally suspended.
duke@435 2146 if (!Threads::includes(this) || is_exiting() || !is_external_suspend()) {
duke@435 2147 return;
duke@435 2148 }
duke@435 2149
duke@435 2150 MutexLockerEx ml(SR_lock(), Mutex::_no_safepoint_check_flag);
duke@435 2151
duke@435 2152 clear_external_suspend();
duke@435 2153
duke@435 2154 if (is_ext_suspended()) {
duke@435 2155 clear_ext_suspended();
duke@435 2156 SR_lock()->notify_all();
duke@435 2157 }
duke@435 2158 }
duke@435 2159
duke@435 2160 void JavaThread::create_stack_guard_pages() {
duke@435 2161 if (! os::uses_stack_guard_pages() || _stack_guard_state != stack_guard_unused) return;
duke@435 2162 address low_addr = stack_base() - stack_size();
duke@435 2163 size_t len = (StackYellowPages + StackRedPages) * os::vm_page_size();
duke@435 2164
duke@435 2165 int allocate = os::allocate_stack_guard_pages();
duke@435 2166 // warning("Guarding at " PTR_FORMAT " for len " SIZE_FORMAT "\n", low_addr, len);
duke@435 2167
coleenp@1755 2168 if (allocate && !os::create_stack_guard_pages((char *) low_addr, len)) {
duke@435 2169 warning("Attempt to allocate stack guard pages failed.");
duke@435 2170 return;
duke@435 2171 }
duke@435 2172
duke@435 2173 if (os::guard_memory((char *) low_addr, len)) {
duke@435 2174 _stack_guard_state = stack_guard_enabled;
duke@435 2175 } else {
duke@435 2176 warning("Attempt to protect stack guard pages failed.");
duke@435 2177 if (os::uncommit_memory((char *) low_addr, len)) {
duke@435 2178 warning("Attempt to deallocate stack guard pages failed.");
duke@435 2179 }
duke@435 2180 }
duke@435 2181 }
duke@435 2182
duke@435 2183 void JavaThread::remove_stack_guard_pages() {
duke@435 2184 if (_stack_guard_state == stack_guard_unused) return;
duke@435 2185 address low_addr = stack_base() - stack_size();
duke@435 2186 size_t len = (StackYellowPages + StackRedPages) * os::vm_page_size();
duke@435 2187
duke@435 2188 if (os::allocate_stack_guard_pages()) {
coleenp@1755 2189 if (os::remove_stack_guard_pages((char *) low_addr, len)) {
duke@435 2190 _stack_guard_state = stack_guard_unused;
duke@435 2191 } else {
duke@435 2192 warning("Attempt to deallocate stack guard pages failed.");
duke@435 2193 }
duke@435 2194 } else {
duke@435 2195 if (_stack_guard_state == stack_guard_unused) return;
duke@435 2196 if (os::unguard_memory((char *) low_addr, len)) {
duke@435 2197 _stack_guard_state = stack_guard_unused;
duke@435 2198 } else {
duke@435 2199 warning("Attempt to unprotect stack guard pages failed.");
duke@435 2200 }
duke@435 2201 }
duke@435 2202 }
duke@435 2203
duke@435 2204 void JavaThread::enable_stack_yellow_zone() {
duke@435 2205 assert(_stack_guard_state != stack_guard_unused, "must be using guard pages.");
duke@435 2206 assert(_stack_guard_state != stack_guard_enabled, "already enabled");
duke@435 2207
duke@435 2208 // The base notation is from the stacks point of view, growing downward.
duke@435 2209 // We need to adjust it to work correctly with guard_memory()
duke@435 2210 address base = stack_yellow_zone_base() - stack_yellow_zone_size();
duke@435 2211
duke@435 2212 guarantee(base < stack_base(),"Error calculating stack yellow zone");
duke@435 2213 guarantee(base < os::current_stack_pointer(),"Error calculating stack yellow zone");
duke@435 2214
duke@435 2215 if (os::guard_memory((char *) base, stack_yellow_zone_size())) {
duke@435 2216 _stack_guard_state = stack_guard_enabled;
duke@435 2217 } else {
duke@435 2218 warning("Attempt to guard stack yellow zone failed.");
duke@435 2219 }
duke@435 2220 enable_register_stack_guard();
duke@435 2221 }
duke@435 2222
duke@435 2223 void JavaThread::disable_stack_yellow_zone() {
duke@435 2224 assert(_stack_guard_state != stack_guard_unused, "must be using guard pages.");
duke@435 2225 assert(_stack_guard_state != stack_guard_yellow_disabled, "already disabled");
duke@435 2226
duke@435 2227 // Simply return if called for a thread that does not use guard pages.
duke@435 2228 if (_stack_guard_state == stack_guard_unused) return;
duke@435 2229
duke@435 2230 // The base notation is from the stacks point of view, growing downward.
duke@435 2231 // We need to adjust it to work correctly with guard_memory()
duke@435 2232 address base = stack_yellow_zone_base() - stack_yellow_zone_size();
duke@435 2233
duke@435 2234 if (os::unguard_memory((char *)base, stack_yellow_zone_size())) {
duke@435 2235 _stack_guard_state = stack_guard_yellow_disabled;
duke@435 2236 } else {
duke@435 2237 warning("Attempt to unguard stack yellow zone failed.");
duke@435 2238 }
duke@435 2239 disable_register_stack_guard();
duke@435 2240 }
duke@435 2241
duke@435 2242 void JavaThread::enable_stack_red_zone() {
duke@435 2243 // The base notation is from the stacks point of view, growing downward.
duke@435 2244 // We need to adjust it to work correctly with guard_memory()
duke@435 2245 assert(_stack_guard_state != stack_guard_unused, "must be using guard pages.");
duke@435 2246 address base = stack_red_zone_base() - stack_red_zone_size();
duke@435 2247
duke@435 2248 guarantee(base < stack_base(),"Error calculating stack red zone");
duke@435 2249 guarantee(base < os::current_stack_pointer(),"Error calculating stack red zone");
duke@435 2250
duke@435 2251 if(!os::guard_memory((char *) base, stack_red_zone_size())) {
duke@435 2252 warning("Attempt to guard stack red zone failed.");
duke@435 2253 }
duke@435 2254 }
duke@435 2255
duke@435 2256 void JavaThread::disable_stack_red_zone() {
duke@435 2257 // The base notation is from the stacks point of view, growing downward.
duke@435 2258 // We need to adjust it to work correctly with guard_memory()
duke@435 2259 assert(_stack_guard_state != stack_guard_unused, "must be using guard pages.");
duke@435 2260 address base = stack_red_zone_base() - stack_red_zone_size();
duke@435 2261 if (!os::unguard_memory((char *)base, stack_red_zone_size())) {
duke@435 2262 warning("Attempt to unguard stack red zone failed.");
duke@435 2263 }
duke@435 2264 }
duke@435 2265
duke@435 2266 void JavaThread::frames_do(void f(frame*, const RegisterMap* map)) {
duke@435 2267 // ignore is there is no stack
duke@435 2268 if (!has_last_Java_frame()) return;
duke@435 2269 // traverse the stack frames. Starts from top frame.
duke@435 2270 for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
duke@435 2271 frame* fr = fst.current();
duke@435 2272 f(fr, fst.register_map());
duke@435 2273 }
duke@435 2274 }
duke@435 2275
duke@435 2276
duke@435 2277 #ifndef PRODUCT
duke@435 2278 // Deoptimization
duke@435 2279 // Function for testing deoptimization
duke@435 2280 void JavaThread::deoptimize() {
duke@435 2281 // BiasedLocking needs an updated RegisterMap for the revoke monitors pass
duke@435 2282 StackFrameStream fst(this, UseBiasedLocking);
duke@435 2283 bool deopt = false; // Dump stack only if a deopt actually happens.
duke@435 2284 bool only_at = strlen(DeoptimizeOnlyAt) > 0;
duke@435 2285 // Iterate over all frames in the thread and deoptimize
duke@435 2286 for(; !fst.is_done(); fst.next()) {
duke@435 2287 if(fst.current()->can_be_deoptimized()) {
duke@435 2288
duke@435 2289 if (only_at) {
duke@435 2290 // Deoptimize only at particular bcis. DeoptimizeOnlyAt
duke@435 2291 // consists of comma or carriage return separated numbers so
duke@435 2292 // search for the current bci in that string.
duke@435 2293 address pc = fst.current()->pc();
duke@435 2294 nmethod* nm = (nmethod*) fst.current()->cb();
duke@435 2295 ScopeDesc* sd = nm->scope_desc_at( pc);
duke@435 2296 char buffer[8];
duke@435 2297 jio_snprintf(buffer, sizeof(buffer), "%d", sd->bci());
duke@435 2298 size_t len = strlen(buffer);
duke@435 2299 const char * found = strstr(DeoptimizeOnlyAt, buffer);
duke@435 2300 while (found != NULL) {
duke@435 2301 if ((found[len] == ',' || found[len] == '\n' || found[len] == '\0') &&
duke@435 2302 (found == DeoptimizeOnlyAt || found[-1] == ',' || found[-1] == '\n')) {
duke@435 2303 // Check that the bci found is bracketed by terminators.
duke@435 2304 break;
duke@435 2305 }
duke@435 2306 found = strstr(found + 1, buffer);
duke@435 2307 }
duke@435 2308 if (!found) {
duke@435 2309 continue;
duke@435 2310 }
duke@435 2311 }
duke@435 2312
duke@435 2313 if (DebugDeoptimization && !deopt) {
duke@435 2314 deopt = true; // One-time only print before deopt
duke@435 2315 tty->print_cr("[BEFORE Deoptimization]");
duke@435 2316 trace_frames();
duke@435 2317 trace_stack();
duke@435 2318 }
duke@435 2319 Deoptimization::deoptimize(this, *fst.current(), fst.register_map());
duke@435 2320 }
duke@435 2321 }
duke@435 2322
duke@435 2323 if (DebugDeoptimization && deopt) {
duke@435 2324 tty->print_cr("[AFTER Deoptimization]");
duke@435 2325 trace_frames();
duke@435 2326 }
duke@435 2327 }
duke@435 2328
duke@435 2329
duke@435 2330 // Make zombies
duke@435 2331 void JavaThread::make_zombies() {
duke@435 2332 for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
duke@435 2333 if (fst.current()->can_be_deoptimized()) {
duke@435 2334 // it is a Java nmethod
duke@435 2335 nmethod* nm = CodeCache::find_nmethod(fst.current()->pc());
duke@435 2336 nm->make_not_entrant();
duke@435 2337 }
duke@435 2338 }
duke@435 2339 }
duke@435 2340 #endif // PRODUCT
duke@435 2341
duke@435 2342
duke@435 2343 void JavaThread::deoptimized_wrt_marked_nmethods() {
duke@435 2344 if (!has_last_Java_frame()) return;
duke@435 2345 // BiasedLocking needs an updated RegisterMap for the revoke monitors pass
duke@435 2346 StackFrameStream fst(this, UseBiasedLocking);
duke@435 2347 for(; !fst.is_done(); fst.next()) {
duke@435 2348 if (fst.current()->should_be_deoptimized()) {
duke@435 2349 Deoptimization::deoptimize(this, *fst.current(), fst.register_map());
duke@435 2350 }
duke@435 2351 }
duke@435 2352 }
duke@435 2353
duke@435 2354
duke@435 2355 // GC support
duke@435 2356 static void frame_gc_epilogue(frame* f, const RegisterMap* map) { f->gc_epilogue(); }
duke@435 2357
duke@435 2358 void JavaThread::gc_epilogue() {
duke@435 2359 frames_do(frame_gc_epilogue);
duke@435 2360 }
duke@435 2361
duke@435 2362
duke@435 2363 static void frame_gc_prologue(frame* f, const RegisterMap* map) { f->gc_prologue(); }
duke@435 2364
duke@435 2365 void JavaThread::gc_prologue() {
duke@435 2366 frames_do(frame_gc_prologue);
duke@435 2367 }
duke@435 2368
minqi@1554 2369 // If the caller is a NamedThread, then remember, in the current scope,
minqi@1554 2370 // the given JavaThread in its _processed_thread field.
minqi@1554 2371 class RememberProcessedThread: public StackObj {
minqi@1554 2372 NamedThread* _cur_thr;
minqi@1554 2373 public:
minqi@1554 2374 RememberProcessedThread(JavaThread* jthr) {
minqi@1554 2375 Thread* thread = Thread::current();
minqi@1554 2376 if (thread->is_Named_thread()) {
minqi@1554 2377 _cur_thr = (NamedThread *)thread;
minqi@1554 2378 _cur_thr->set_processed_thread(jthr);
minqi@1554 2379 } else {
minqi@1554 2380 _cur_thr = NULL;
minqi@1554 2381 }
minqi@1554 2382 }
minqi@1554 2383
minqi@1554 2384 ~RememberProcessedThread() {
minqi@1554 2385 if (_cur_thr) {
minqi@1554 2386 _cur_thr->set_processed_thread(NULL);
minqi@1554 2387 }
minqi@1554 2388 }
minqi@1554 2389 };
duke@435 2390
jrose@1424 2391 void JavaThread::oops_do(OopClosure* f, CodeBlobClosure* cf) {
ysr@1601 2392 // Verify that the deferred card marks have been flushed.
ysr@1601 2393 assert(deferred_card_mark().is_empty(), "Should be empty during GC");
ysr@1462 2394
duke@435 2395 // The ThreadProfiler oops_do is done from FlatProfiler::oops_do
duke@435 2396 // since there may be more than one thread using each ThreadProfiler.
duke@435 2397
duke@435 2398 // Traverse the GCHandles
jrose@1424 2399 Thread::oops_do(f, cf);
duke@435 2400
duke@435 2401 assert( (!has_last_Java_frame() && java_call_counter() == 0) ||
duke@435 2402 (has_last_Java_frame() && java_call_counter() > 0), "wrong java_sp info!");
duke@435 2403
duke@435 2404 if (has_last_Java_frame()) {
minqi@1554 2405 // Record JavaThread to GC thread
minqi@1554 2406 RememberProcessedThread rpt(this);
duke@435 2407
duke@435 2408 // Traverse the privileged stack
duke@435 2409 if (_privileged_stack_top != NULL) {
duke@435 2410 _privileged_stack_top->oops_do(f);
duke@435 2411 }
duke@435 2412
duke@435 2413 // traverse the registered growable array
duke@435 2414 if (_array_for_gc != NULL) {
duke@435 2415 for (int index = 0; index < _array_for_gc->length(); index++) {
duke@435 2416 f->do_oop(_array_for_gc->adr_at(index));
duke@435 2417 }
duke@435 2418 }
duke@435 2419
duke@435 2420 // Traverse the monitor chunks
duke@435 2421 for (MonitorChunk* chunk = monitor_chunks(); chunk != NULL; chunk = chunk->next()) {
duke@435 2422 chunk->oops_do(f);
duke@435 2423 }
duke@435 2424
duke@435 2425 // Traverse the execution stack
duke@435 2426 for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
jrose@1424 2427 fst.current()->oops_do(f, cf, fst.register_map());
duke@435 2428 }
duke@435 2429 }
duke@435 2430
duke@435 2431 // callee_target is never live across a gc point so NULL it here should
duke@435 2432 // it still contain a methdOop.
duke@435 2433
duke@435 2434 set_callee_target(NULL);
duke@435 2435
duke@435 2436 assert(vframe_array_head() == NULL, "deopt in progress at a safepoint!");
duke@435 2437 // If we have deferred set_locals there might be oops waiting to be
duke@435 2438 // written
duke@435 2439 GrowableArray<jvmtiDeferredLocalVariableSet*>* list = deferred_locals();
duke@435 2440 if (list != NULL) {
duke@435 2441 for (int i = 0; i < list->length(); i++) {
duke@435 2442 list->at(i)->oops_do(f);
duke@435 2443 }
duke@435 2444 }
duke@435 2445
duke@435 2446 // Traverse instance variables at the end since the GC may be moving things
duke@435 2447 // around using this function
duke@435 2448 f->do_oop((oop*) &_threadObj);
duke@435 2449 f->do_oop((oop*) &_vm_result);
duke@435 2450 f->do_oop((oop*) &_vm_result_2);
duke@435 2451 f->do_oop((oop*) &_exception_oop);
duke@435 2452 f->do_oop((oop*) &_pending_async_exception);
duke@435 2453
duke@435 2454 if (jvmti_thread_state() != NULL) {
duke@435 2455 jvmti_thread_state()->oops_do(f);
duke@435 2456 }
duke@435 2457 }
duke@435 2458
jrose@1424 2459 void JavaThread::nmethods_do(CodeBlobClosure* cf) {
jrose@1424 2460 Thread::nmethods_do(cf); // (super method is a no-op)
duke@435 2461
duke@435 2462 assert( (!has_last_Java_frame() && java_call_counter() == 0) ||
duke@435 2463 (has_last_Java_frame() && java_call_counter() > 0), "wrong java_sp info!");
duke@435 2464
duke@435 2465 if (has_last_Java_frame()) {
duke@435 2466 // Traverse the execution stack
duke@435 2467 for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
jrose@1424 2468 fst.current()->nmethods_do(cf);
duke@435 2469 }
duke@435 2470 }
duke@435 2471 }
duke@435 2472
duke@435 2473 // Printing
duke@435 2474 const char* _get_thread_state_name(JavaThreadState _thread_state) {
duke@435 2475 switch (_thread_state) {
duke@435 2476 case _thread_uninitialized: return "_thread_uninitialized";
duke@435 2477 case _thread_new: return "_thread_new";
duke@435 2478 case _thread_new_trans: return "_thread_new_trans";
duke@435 2479 case _thread_in_native: return "_thread_in_native";
duke@435 2480 case _thread_in_native_trans: return "_thread_in_native_trans";
duke@435 2481 case _thread_in_vm: return "_thread_in_vm";
duke@435 2482 case _thread_in_vm_trans: return "_thread_in_vm_trans";
duke@435 2483 case _thread_in_Java: return "_thread_in_Java";
duke@435 2484 case _thread_in_Java_trans: return "_thread_in_Java_trans";
duke@435 2485 case _thread_blocked: return "_thread_blocked";
duke@435 2486 case _thread_blocked_trans: return "_thread_blocked_trans";
duke@435 2487 default: return "unknown thread state";
duke@435 2488 }
duke@435 2489 }
duke@435 2490
duke@435 2491 #ifndef PRODUCT
duke@435 2492 void JavaThread::print_thread_state_on(outputStream *st) const {
duke@435 2493 st->print_cr(" JavaThread state: %s", _get_thread_state_name(_thread_state));
duke@435 2494 };
duke@435 2495 void JavaThread::print_thread_state() const {
duke@435 2496 print_thread_state_on(tty);
duke@435 2497 };
duke@435 2498 #endif // PRODUCT
duke@435 2499
duke@435 2500 // Called by Threads::print() for VM_PrintThreads operation
duke@435 2501 void JavaThread::print_on(outputStream *st) const {
duke@435 2502 st->print("\"%s\" ", get_thread_name());
duke@435 2503 oop thread_oop = threadObj();
duke@435 2504 if (thread_oop != NULL && java_lang_Thread::is_daemon(thread_oop)) st->print("daemon ");
duke@435 2505 Thread::print_on(st);
duke@435 2506 // print guess for valid stack memory region (assume 4K pages); helps lock debugging
xlu@1137 2507 st->print_cr("[" INTPTR_FORMAT "]", (intptr_t)last_Java_sp() & ~right_n_bits(12));
duke@435 2508 if (thread_oop != NULL && JDK_Version::is_gte_jdk15x_version()) {
duke@435 2509 st->print_cr(" java.lang.Thread.State: %s", java_lang_Thread::thread_status_name(thread_oop));
duke@435 2510 }
duke@435 2511 #ifndef PRODUCT
duke@435 2512 print_thread_state_on(st);
duke@435 2513 _safepoint_state->print_on(st);
duke@435 2514 #endif // PRODUCT
duke@435 2515 }
duke@435 2516
duke@435 2517 // Called by fatal error handler. The difference between this and
duke@435 2518 // JavaThread::print() is that we can't grab lock or allocate memory.
duke@435 2519 void JavaThread::print_on_error(outputStream* st, char *buf, int buflen) const {
duke@435 2520 st->print("JavaThread \"%s\"", get_thread_name_string(buf, buflen));
duke@435 2521 oop thread_obj = threadObj();
duke@435 2522 if (thread_obj != NULL) {
duke@435 2523 if (java_lang_Thread::is_daemon(thread_obj)) st->print(" daemon");
duke@435 2524 }
duke@435 2525 st->print(" [");
duke@435 2526 st->print("%s", _get_thread_state_name(_thread_state));
duke@435 2527 if (osthread()) {
duke@435 2528 st->print(", id=%d", osthread()->thread_id());
duke@435 2529 }
duke@435 2530 st->print(", stack(" PTR_FORMAT "," PTR_FORMAT ")",
duke@435 2531 _stack_base - _stack_size, _stack_base);
duke@435 2532 st->print("]");
duke@435 2533 return;
duke@435 2534 }
duke@435 2535
duke@435 2536 // Verification
duke@435 2537
duke@435 2538 static void frame_verify(frame* f, const RegisterMap *map) { f->verify(map); }
duke@435 2539
duke@435 2540 void JavaThread::verify() {
duke@435 2541 // Verify oops in the thread.
jrose@1424 2542 oops_do(&VerifyOopClosure::verify_oop, NULL);
duke@435 2543
duke@435 2544 // Verify the stack frames.
duke@435 2545 frames_do(frame_verify);
duke@435 2546 }
duke@435 2547
duke@435 2548 // CR 6300358 (sub-CR 2137150)
duke@435 2549 // Most callers of this method assume that it can't return NULL but a
duke@435 2550 // thread may not have a name whilst it is in the process of attaching to
duke@435 2551 // the VM - see CR 6412693, and there are places where a JavaThread can be
duke@435 2552 // seen prior to having it's threadObj set (eg JNI attaching threads and
duke@435 2553 // if vm exit occurs during initialization). These cases can all be accounted
duke@435 2554 // for such that this method never returns NULL.
duke@435 2555 const char* JavaThread::get_thread_name() const {
duke@435 2556 #ifdef ASSERT
duke@435 2557 // early safepoints can hit while current thread does not yet have TLS
duke@435 2558 if (!SafepointSynchronize::is_at_safepoint()) {
duke@435 2559 Thread *cur = Thread::current();
duke@435 2560 if (!(cur->is_Java_thread() && cur == this)) {
duke@435 2561 // Current JavaThreads are allowed to get their own name without
duke@435 2562 // the Threads_lock.
duke@435 2563 assert_locked_or_safepoint(Threads_lock);
duke@435 2564 }
duke@435 2565 }
duke@435 2566 #endif // ASSERT
duke@435 2567 return get_thread_name_string();
duke@435 2568 }
duke@435 2569
duke@435 2570 // Returns a non-NULL representation of this thread's name, or a suitable
duke@435 2571 // descriptive string if there is no set name
duke@435 2572 const char* JavaThread::get_thread_name_string(char* buf, int buflen) const {
duke@435 2573 const char* name_str;
duke@435 2574 oop thread_obj = threadObj();
duke@435 2575 if (thread_obj != NULL) {
duke@435 2576 typeArrayOop name = java_lang_Thread::name(thread_obj);
duke@435 2577 if (name != NULL) {
duke@435 2578 if (buf == NULL) {
duke@435 2579 name_str = UNICODE::as_utf8((jchar*) name->base(T_CHAR), name->length());
duke@435 2580 }
duke@435 2581 else {
duke@435 2582 name_str = UNICODE::as_utf8((jchar*) name->base(T_CHAR), name->length(), buf, buflen);
duke@435 2583 }
duke@435 2584 }
duke@435 2585 else if (is_attaching()) { // workaround for 6412693 - see 6404306
duke@435 2586 name_str = "<no-name - thread is attaching>";
duke@435 2587 }
duke@435 2588 else {
duke@435 2589 name_str = Thread::name();
duke@435 2590 }
duke@435 2591 }
duke@435 2592 else {
duke@435 2593 name_str = Thread::name();
duke@435 2594 }
duke@435 2595 assert(name_str != NULL, "unexpected NULL thread name");
duke@435 2596 return name_str;
duke@435 2597 }
duke@435 2598
duke@435 2599
duke@435 2600 const char* JavaThread::get_threadgroup_name() const {
duke@435 2601 debug_only(if (JavaThread::current() != this) assert_locked_or_safepoint(Threads_lock);)
duke@435 2602 oop thread_obj = threadObj();
duke@435 2603 if (thread_obj != NULL) {
duke@435 2604 oop thread_group = java_lang_Thread::threadGroup(thread_obj);
duke@435 2605 if (thread_group != NULL) {
duke@435 2606 typeArrayOop name = java_lang_ThreadGroup::name(thread_group);
duke@435 2607 // ThreadGroup.name can be null
duke@435 2608 if (name != NULL) {
duke@435 2609 const char* str = UNICODE::as_utf8((jchar*) name->base(T_CHAR), name->length());
duke@435 2610 return str;
duke@435 2611 }
duke@435 2612 }
duke@435 2613 }
duke@435 2614 return NULL;
duke@435 2615 }
duke@435 2616
duke@435 2617 const char* JavaThread::get_parent_name() const {
duke@435 2618 debug_only(if (JavaThread::current() != this) assert_locked_or_safepoint(Threads_lock);)
duke@435 2619 oop thread_obj = threadObj();
duke@435 2620 if (thread_obj != NULL) {
duke@435 2621 oop thread_group = java_lang_Thread::threadGroup(thread_obj);
duke@435 2622 if (thread_group != NULL) {
duke@435 2623 oop parent = java_lang_ThreadGroup::parent(thread_group);
duke@435 2624 if (parent != NULL) {
duke@435 2625 typeArrayOop name = java_lang_ThreadGroup::name(parent);
duke@435 2626 // ThreadGroup.name can be null
duke@435 2627 if (name != NULL) {
duke@435 2628 const char* str = UNICODE::as_utf8((jchar*) name->base(T_CHAR), name->length());
duke@435 2629 return str;
duke@435 2630 }
duke@435 2631 }
duke@435 2632 }
duke@435 2633 }
duke@435 2634 return NULL;
duke@435 2635 }
duke@435 2636
duke@435 2637 ThreadPriority JavaThread::java_priority() const {
duke@435 2638 oop thr_oop = threadObj();
duke@435 2639 if (thr_oop == NULL) return NormPriority; // Bootstrapping
duke@435 2640 ThreadPriority priority = java_lang_Thread::priority(thr_oop);
duke@435 2641 assert(MinPriority <= priority && priority <= MaxPriority, "sanity check");
duke@435 2642 return priority;
duke@435 2643 }
duke@435 2644
duke@435 2645 void JavaThread::prepare(jobject jni_thread, ThreadPriority prio) {
duke@435 2646
duke@435 2647 assert(Threads_lock->owner() == Thread::current(), "must have threads lock");
duke@435 2648 // Link Java Thread object <-> C++ Thread
duke@435 2649
duke@435 2650 // Get the C++ thread object (an oop) from the JNI handle (a jthread)
duke@435 2651 // and put it into a new Handle. The Handle "thread_oop" can then
duke@435 2652 // be used to pass the C++ thread object to other methods.
duke@435 2653
duke@435 2654 // Set the Java level thread object (jthread) field of the
duke@435 2655 // new thread (a JavaThread *) to C++ thread object using the
duke@435 2656 // "thread_oop" handle.
duke@435 2657
duke@435 2658 // Set the thread field (a JavaThread *) of the
duke@435 2659 // oop representing the java_lang_Thread to the new thread (a JavaThread *).
duke@435 2660
duke@435 2661 Handle thread_oop(Thread::current(),
duke@435 2662 JNIHandles::resolve_non_null(jni_thread));
duke@435 2663 assert(instanceKlass::cast(thread_oop->klass())->is_linked(),
duke@435 2664 "must be initialized");
duke@435 2665 set_threadObj(thread_oop());
duke@435 2666 java_lang_Thread::set_thread(thread_oop(), this);
duke@435 2667
duke@435 2668 if (prio == NoPriority) {
duke@435 2669 prio = java_lang_Thread::priority(thread_oop());
duke@435 2670 assert(prio != NoPriority, "A valid priority should be present");
duke@435 2671 }
duke@435 2672
duke@435 2673 // Push the Java priority down to the native thread; needs Threads_lock
duke@435 2674 Thread::set_priority(this, prio);
duke@435 2675
duke@435 2676 // Add the new thread to the Threads list and set it in motion.
duke@435 2677 // We must have threads lock in order to call Threads::add.
duke@435 2678 // It is crucial that we do not block before the thread is
duke@435 2679 // added to the Threads list for if a GC happens, then the java_thread oop
duke@435 2680 // will not be visited by GC.
duke@435 2681 Threads::add(this);
duke@435 2682 }
duke@435 2683
duke@435 2684 oop JavaThread::current_park_blocker() {
duke@435 2685 // Support for JSR-166 locks
duke@435 2686 oop thread_oop = threadObj();
kamg@677 2687 if (thread_oop != NULL &&
kamg@677 2688 JDK_Version::current().supports_thread_park_blocker()) {
duke@435 2689 return java_lang_Thread::park_blocker(thread_oop);
duke@435 2690 }
duke@435 2691 return NULL;
duke@435 2692 }
duke@435 2693
duke@435 2694
duke@435 2695 void JavaThread::print_stack_on(outputStream* st) {
duke@435 2696 if (!has_last_Java_frame()) return;
duke@435 2697 ResourceMark rm;
duke@435 2698 HandleMark hm;
duke@435 2699
duke@435 2700 RegisterMap reg_map(this);
duke@435 2701 vframe* start_vf = last_java_vframe(&reg_map);
duke@435 2702 int count = 0;
duke@435 2703 for (vframe* f = start_vf; f; f = f->sender() ) {
duke@435 2704 if (f->is_java_frame()) {
duke@435 2705 javaVFrame* jvf = javaVFrame::cast(f);
duke@435 2706 java_lang_Throwable::print_stack_element(st, jvf->method(), jvf->bci());
duke@435 2707
duke@435 2708 // Print out lock information
duke@435 2709 if (JavaMonitorsInStackTrace) {
duke@435 2710 jvf->print_lock_info_on(st, count);
duke@435 2711 }
duke@435 2712 } else {
duke@435 2713 // Ignore non-Java frames
duke@435 2714 }
duke@435 2715
duke@435 2716 // Bail-out case for too deep stacks
duke@435 2717 count++;
duke@435 2718 if (MaxJavaStackTraceDepth == count) return;
duke@435 2719 }
duke@435 2720 }
duke@435 2721
duke@435 2722
duke@435 2723 // JVMTI PopFrame support
duke@435 2724 void JavaThread::popframe_preserve_args(ByteSize size_in_bytes, void* start) {
duke@435 2725 assert(_popframe_preserved_args == NULL, "should not wipe out old PopFrame preserved arguments");
duke@435 2726 if (in_bytes(size_in_bytes) != 0) {
duke@435 2727 _popframe_preserved_args = NEW_C_HEAP_ARRAY(char, in_bytes(size_in_bytes));
duke@435 2728 _popframe_preserved_args_size = in_bytes(size_in_bytes);
kvn@1958 2729 Copy::conjoint_jbytes(start, _popframe_preserved_args, _popframe_preserved_args_size);
duke@435 2730 }
duke@435 2731 }
duke@435 2732
duke@435 2733 void* JavaThread::popframe_preserved_args() {
duke@435 2734 return _popframe_preserved_args;
duke@435 2735 }
duke@435 2736
duke@435 2737 ByteSize JavaThread::popframe_preserved_args_size() {
duke@435 2738 return in_ByteSize(_popframe_preserved_args_size);
duke@435 2739 }
duke@435 2740
duke@435 2741 WordSize JavaThread::popframe_preserved_args_size_in_words() {
duke@435 2742 int sz = in_bytes(popframe_preserved_args_size());
duke@435 2743 assert(sz % wordSize == 0, "argument size must be multiple of wordSize");
duke@435 2744 return in_WordSize(sz / wordSize);
duke@435 2745 }
duke@435 2746
duke@435 2747 void JavaThread::popframe_free_preserved_args() {
duke@435 2748 assert(_popframe_preserved_args != NULL, "should not free PopFrame preserved arguments twice");
duke@435 2749 FREE_C_HEAP_ARRAY(char, (char*) _popframe_preserved_args);
duke@435 2750 _popframe_preserved_args = NULL;
duke@435 2751 _popframe_preserved_args_size = 0;
duke@435 2752 }
duke@435 2753
duke@435 2754 #ifndef PRODUCT
duke@435 2755
duke@435 2756 void JavaThread::trace_frames() {
duke@435 2757 tty->print_cr("[Describe stack]");
duke@435 2758 int frame_no = 1;
duke@435 2759 for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
duke@435 2760 tty->print(" %d. ", frame_no++);
duke@435 2761 fst.current()->print_value_on(tty,this);
duke@435 2762 tty->cr();
duke@435 2763 }
duke@435 2764 }
duke@435 2765
duke@435 2766
duke@435 2767 void JavaThread::trace_stack_from(vframe* start_vf) {
duke@435 2768 ResourceMark rm;
duke@435 2769 int vframe_no = 1;
duke@435 2770 for (vframe* f = start_vf; f; f = f->sender() ) {
duke@435 2771 if (f->is_java_frame()) {
duke@435 2772 javaVFrame::cast(f)->print_activation(vframe_no++);
duke@435 2773 } else {
duke@435 2774 f->print();
duke@435 2775 }
duke@435 2776 if (vframe_no > StackPrintLimit) {
duke@435 2777 tty->print_cr("...<more frames>...");
duke@435 2778 return;
duke@435 2779 }
duke@435 2780 }
duke@435 2781 }
duke@435 2782
duke@435 2783
duke@435 2784 void JavaThread::trace_stack() {
duke@435 2785 if (!has_last_Java_frame()) return;
duke@435 2786 ResourceMark rm;
duke@435 2787 HandleMark hm;
duke@435 2788 RegisterMap reg_map(this);
duke@435 2789 trace_stack_from(last_java_vframe(&reg_map));
duke@435 2790 }
duke@435 2791
duke@435 2792
duke@435 2793 #endif // PRODUCT
duke@435 2794
duke@435 2795
duke@435 2796 javaVFrame* JavaThread::last_java_vframe(RegisterMap *reg_map) {
duke@435 2797 assert(reg_map != NULL, "a map must be given");
duke@435 2798 frame f = last_frame();
duke@435 2799 for (vframe* vf = vframe::new_vframe(&f, reg_map, this); vf; vf = vf->sender() ) {
duke@435 2800 if (vf->is_java_frame()) return javaVFrame::cast(vf);
duke@435 2801 }
duke@435 2802 return NULL;
duke@435 2803 }
duke@435 2804
duke@435 2805
duke@435 2806 klassOop JavaThread::security_get_caller_class(int depth) {
duke@435 2807 vframeStream vfst(this);
duke@435 2808 vfst.security_get_caller_frame(depth);
duke@435 2809 if (!vfst.at_end()) {
duke@435 2810 return vfst.method()->method_holder();
duke@435 2811 }
duke@435 2812 return NULL;
duke@435 2813 }
duke@435 2814
duke@435 2815 static void compiler_thread_entry(JavaThread* thread, TRAPS) {
duke@435 2816 assert(thread->is_Compiler_thread(), "must be compiler thread");
duke@435 2817 CompileBroker::compiler_thread_loop();
duke@435 2818 }
duke@435 2819
duke@435 2820 // Create a CompilerThread
duke@435 2821 CompilerThread::CompilerThread(CompileQueue* queue, CompilerCounters* counters)
duke@435 2822 : JavaThread(&compiler_thread_entry) {
duke@435 2823 _env = NULL;
duke@435 2824 _log = NULL;
duke@435 2825 _task = NULL;
duke@435 2826 _queue = queue;
duke@435 2827 _counters = counters;
iveresov@1939 2828 _buffer_blob = NULL;
duke@435 2829
duke@435 2830 #ifndef PRODUCT
duke@435 2831 _ideal_graph_printer = NULL;
duke@435 2832 #endif
duke@435 2833 }
duke@435 2834
duke@435 2835
duke@435 2836 // ======= Threads ========
duke@435 2837
duke@435 2838 // The Threads class links together all active threads, and provides
duke@435 2839 // operations over all threads. It is protected by its own Mutex
duke@435 2840 // lock, which is also used in other contexts to protect thread
duke@435 2841 // operations from having the thread being operated on from exiting
duke@435 2842 // and going away unexpectedly (e.g., safepoint synchronization)
duke@435 2843
duke@435 2844 JavaThread* Threads::_thread_list = NULL;
duke@435 2845 int Threads::_number_of_threads = 0;
duke@435 2846 int Threads::_number_of_non_daemon_threads = 0;
duke@435 2847 int Threads::_return_code = 0;
duke@435 2848 size_t JavaThread::_stack_size_at_create = 0;
duke@435 2849
duke@435 2850 // All JavaThreads
duke@435 2851 #define ALL_JAVA_THREADS(X) for (JavaThread* X = _thread_list; X; X = X->next())
duke@435 2852
duke@435 2853 void os_stream();
duke@435 2854
duke@435 2855 // All JavaThreads + all non-JavaThreads (i.e., every thread in the system)
duke@435 2856 void Threads::threads_do(ThreadClosure* tc) {
duke@435 2857 assert_locked_or_safepoint(Threads_lock);
duke@435 2858 // ALL_JAVA_THREADS iterates through all JavaThreads
duke@435 2859 ALL_JAVA_THREADS(p) {
duke@435 2860 tc->do_thread(p);
duke@435 2861 }
duke@435 2862 // Someday we could have a table or list of all non-JavaThreads.
duke@435 2863 // For now, just manually iterate through them.
duke@435 2864 tc->do_thread(VMThread::vm_thread());
duke@435 2865 Universe::heap()->gc_threads_do(tc);
xlu@758 2866 WatcherThread *wt = WatcherThread::watcher_thread();
xlu@758 2867 // Strictly speaking, the following NULL check isn't sufficient to make sure
xlu@758 2868 // the data for WatcherThread is still valid upon being examined. However,
xlu@758 2869 // considering that WatchThread terminates when the VM is on the way to
xlu@758 2870 // exit at safepoint, the chance of the above is extremely small. The right
xlu@758 2871 // way to prevent termination of WatcherThread would be to acquire
xlu@758 2872 // Terminator_lock, but we can't do that without violating the lock rank
xlu@758 2873 // checking in some cases.
xlu@758 2874 if (wt != NULL)
xlu@758 2875 tc->do_thread(wt);
xlu@758 2876
duke@435 2877 // If CompilerThreads ever become non-JavaThreads, add them here
duke@435 2878 }
duke@435 2879
duke@435 2880 jint Threads::create_vm(JavaVMInitArgs* args, bool* canTryAgain) {
duke@435 2881
kamg@677 2882 extern void JDK_Version_init();
kamg@677 2883
duke@435 2884 // Check version
duke@435 2885 if (!is_supported_jni_version(args->version)) return JNI_EVERSION;
duke@435 2886
duke@435 2887 // Initialize the output stream module
duke@435 2888 ostream_init();
duke@435 2889
duke@435 2890 // Process java launcher properties.
duke@435 2891 Arguments::process_sun_java_launcher_properties(args);
duke@435 2892
duke@435 2893 // Initialize the os module before using TLS
duke@435 2894 os::init();
duke@435 2895
duke@435 2896 // Initialize system properties.
duke@435 2897 Arguments::init_system_properties();
duke@435 2898
kamg@677 2899 // So that JDK version can be used as a discrimintor when parsing arguments
kamg@677 2900 JDK_Version_init();
kamg@677 2901
duke@435 2902 // Parse arguments
duke@435 2903 jint parse_result = Arguments::parse(args);
duke@435 2904 if (parse_result != JNI_OK) return parse_result;
duke@435 2905
duke@435 2906 if (PauseAtStartup) {
duke@435 2907 os::pause();
duke@435 2908 }
duke@435 2909
duke@435 2910 HS_DTRACE_PROBE(hotspot, vm__init__begin);
duke@435 2911
duke@435 2912 // Record VM creation timing statistics
duke@435 2913 TraceVmCreationTime create_vm_timer;
duke@435 2914 create_vm_timer.start();
duke@435 2915
duke@435 2916 // Timing (must come after argument parsing)
duke@435 2917 TraceTime timer("Create VM", TraceStartupTime);
duke@435 2918
duke@435 2919 // Initialize the os module after parsing the args
duke@435 2920 jint os_init_2_result = os::init_2();
duke@435 2921 if (os_init_2_result != JNI_OK) return os_init_2_result;
duke@435 2922
duke@435 2923 // Initialize output stream logging
duke@435 2924 ostream_init_log();
duke@435 2925
duke@435 2926 // Convert -Xrun to -agentlib: if there is no JVM_OnLoad
duke@435 2927 // Must be before create_vm_init_agents()
duke@435 2928 if (Arguments::init_libraries_at_startup()) {
duke@435 2929 convert_vm_init_libraries_to_agents();
duke@435 2930 }
duke@435 2931
duke@435 2932 // Launch -agentlib/-agentpath and converted -Xrun agents
duke@435 2933 if (Arguments::init_agents_at_startup()) {
duke@435 2934 create_vm_init_agents();
duke@435 2935 }
duke@435 2936
duke@435 2937 // Initialize Threads state
duke@435 2938 _thread_list = NULL;
duke@435 2939 _number_of_threads = 0;
duke@435 2940 _number_of_non_daemon_threads = 0;
duke@435 2941
duke@435 2942 // Initialize TLS
duke@435 2943 ThreadLocalStorage::init();
duke@435 2944
duke@435 2945 // Initialize global data structures and create system classes in heap
duke@435 2946 vm_init_globals();
duke@435 2947
duke@435 2948 // Attach the main thread to this os thread
duke@435 2949 JavaThread* main_thread = new JavaThread();
duke@435 2950 main_thread->set_thread_state(_thread_in_vm);
duke@435 2951 // must do this before set_active_handles and initialize_thread_local_storage
duke@435 2952 // Note: on solaris initialize_thread_local_storage() will (indirectly)
duke@435 2953 // change the stack size recorded here to one based on the java thread
duke@435 2954 // stacksize. This adjusted size is what is used to figure the placement
duke@435 2955 // of the guard pages.
duke@435 2956 main_thread->record_stack_base_and_size();
duke@435 2957 main_thread->initialize_thread_local_storage();
duke@435 2958
duke@435 2959 main_thread->set_active_handles(JNIHandleBlock::allocate_block());
duke@435 2960
duke@435 2961 if (!main_thread->set_as_starting_thread()) {
duke@435 2962 vm_shutdown_during_initialization(
duke@435 2963 "Failed necessary internal allocation. Out of swap space");
duke@435 2964 delete main_thread;
duke@435 2965 *canTryAgain = false; // don't let caller call JNI_CreateJavaVM again
duke@435 2966 return JNI_ENOMEM;
duke@435 2967 }
duke@435 2968
duke@435 2969 // Enable guard page *after* os::create_main_thread(), otherwise it would
duke@435 2970 // crash Linux VM, see notes in os_linux.cpp.
duke@435 2971 main_thread->create_stack_guard_pages();
duke@435 2972
duke@435 2973 // Initialize Java-Leve synchronization subsystem
duke@435 2974 ObjectSynchronizer::Initialize() ;
duke@435 2975
duke@435 2976 // Initialize global modules
duke@435 2977 jint status = init_globals();
duke@435 2978 if (status != JNI_OK) {
duke@435 2979 delete main_thread;
duke@435 2980 *canTryAgain = false; // don't let caller call JNI_CreateJavaVM again
duke@435 2981 return status;
duke@435 2982 }
duke@435 2983
bobv@2036 2984 // Should be done after the heap is fully created
bobv@2036 2985 main_thread->cache_global_variables();
bobv@2036 2986
duke@435 2987 HandleMark hm;
duke@435 2988
duke@435 2989 { MutexLocker mu(Threads_lock);
duke@435 2990 Threads::add(main_thread);
duke@435 2991 }
duke@435 2992
duke@435 2993 // Any JVMTI raw monitors entered in onload will transition into
duke@435 2994 // real raw monitor. VM is setup enough here for raw monitor enter.
duke@435 2995 JvmtiExport::transition_pending_onload_raw_monitors();
duke@435 2996
duke@435 2997 if (VerifyBeforeGC &&
duke@435 2998 Universe::heap()->total_collections() >= VerifyGCStartAt) {
duke@435 2999 Universe::heap()->prepare_for_verify();
duke@435 3000 Universe::verify(); // make sure we're starting with a clean slate
duke@435 3001 }
duke@435 3002
duke@435 3003 // Create the VMThread
duke@435 3004 { TraceTime timer("Start VMThread", TraceStartupTime);
duke@435 3005 VMThread::create();
duke@435 3006 Thread* vmthread = VMThread::vm_thread();
duke@435 3007
duke@435 3008 if (!os::create_thread(vmthread, os::vm_thread))
duke@435 3009 vm_exit_during_initialization("Cannot create VM thread. Out of system resources.");
duke@435 3010
duke@435 3011 // Wait for the VM thread to become ready, and VMThread::run to initialize
duke@435 3012 // Monitors can have spurious returns, must always check another state flag
duke@435 3013 {
duke@435 3014 MutexLocker ml(Notify_lock);
duke@435 3015 os::start_thread(vmthread);
duke@435 3016 while (vmthread->active_handles() == NULL) {
duke@435 3017 Notify_lock->wait();
duke@435 3018 }
duke@435 3019 }
duke@435 3020 }
duke@435 3021
duke@435 3022 assert (Universe::is_fully_initialized(), "not initialized");
duke@435 3023 EXCEPTION_MARK;
duke@435 3024
duke@435 3025 // At this point, the Universe is initialized, but we have not executed
duke@435 3026 // any byte code. Now is a good time (the only time) to dump out the
duke@435 3027 // internal state of the JVM for sharing.
duke@435 3028
duke@435 3029 if (DumpSharedSpaces) {
duke@435 3030 Universe::heap()->preload_and_dump(CHECK_0);
duke@435 3031 ShouldNotReachHere();
duke@435 3032 }
duke@435 3033
duke@435 3034 // Always call even when there are not JVMTI environments yet, since environments
duke@435 3035 // may be attached late and JVMTI must track phases of VM execution
duke@435 3036 JvmtiExport::enter_start_phase();
duke@435 3037
duke@435 3038 // Notify JVMTI agents that VM has started (JNI is up) - nop if no agents.
duke@435 3039 JvmtiExport::post_vm_start();
duke@435 3040
duke@435 3041 {
duke@435 3042 TraceTime timer("Initialize java.lang classes", TraceStartupTime);
duke@435 3043
duke@435 3044 if (EagerXrunInit && Arguments::init_libraries_at_startup()) {
duke@435 3045 create_vm_init_libraries();
duke@435 3046 }
duke@435 3047
duke@435 3048 if (InitializeJavaLangString) {
duke@435 3049 initialize_class(vmSymbolHandles::java_lang_String(), CHECK_0);
duke@435 3050 } else {
duke@435 3051 warning("java.lang.String not initialized");
duke@435 3052 }
duke@435 3053
phh@453 3054 if (AggressiveOpts) {
kvn@627 3055 {
kvn@627 3056 // Forcibly initialize java/util/HashMap and mutate the private
kvn@627 3057 // static final "frontCacheEnabled" field before we start creating instances
phh@453 3058 #ifdef ASSERT
kvn@627 3059 klassOop tmp_k = SystemDictionary::find(vmSymbolHandles::java_util_HashMap(), Handle(), Handle(), CHECK_0);
kvn@627 3060 assert(tmp_k == NULL, "java/util/HashMap should not be loaded yet");
phh@453 3061 #endif
kvn@627 3062 klassOop k_o = SystemDictionary::resolve_or_null(vmSymbolHandles::java_util_HashMap(), Handle(), Handle(), CHECK_0);
kvn@627 3063 KlassHandle k = KlassHandle(THREAD, k_o);
kvn@627 3064 guarantee(k.not_null(), "Must find java/util/HashMap");
kvn@627 3065 instanceKlassHandle ik = instanceKlassHandle(THREAD, k());
kvn@627 3066 ik->initialize(CHECK_0);
kvn@627 3067 fieldDescriptor fd;
kvn@627 3068 // Possible we might not find this field; if so, don't break
kvn@627 3069 if (ik->find_local_field(vmSymbols::frontCacheEnabled_name(), vmSymbols::bool_signature(), &fd)) {
kvn@627 3070 k()->bool_field_put(fd.offset(), true);
kvn@627 3071 }
kvn@627 3072 }
kvn@627 3073
kvn@627 3074 if (UseStringCache) {
phh@1104 3075 // Forcibly initialize java/lang/StringValue and mutate the private
kvn@627 3076 // static final "stringCacheEnabled" field before we start creating instances
phh@1104 3077 klassOop k_o = SystemDictionary::resolve_or_null(vmSymbolHandles::java_lang_StringValue(), Handle(), Handle(), CHECK_0);
phh@1104 3078 // Possible that StringValue isn't present: if so, silently don't break
phh@1104 3079 if (k_o != NULL) {
phh@1104 3080 KlassHandle k = KlassHandle(THREAD, k_o);
phh@1104 3081 instanceKlassHandle ik = instanceKlassHandle(THREAD, k());
phh@1104 3082 ik->initialize(CHECK_0);
phh@1104 3083 fieldDescriptor fd;
phh@1104 3084 // Possible we might not find this field: if so, silently don't break
phh@1104 3085 if (ik->find_local_field(vmSymbols::stringCacheEnabled_name(), vmSymbols::bool_signature(), &fd)) {
phh@1104 3086 k()->bool_field_put(fd.offset(), true);
phh@1104 3087 }
kvn@627 3088 }
phh@453 3089 }
phh@453 3090 }
phh@453 3091
duke@435 3092 // Initialize java_lang.System (needed before creating the thread)
duke@435 3093 if (InitializeJavaLangSystem) {
duke@435 3094 initialize_class(vmSymbolHandles::java_lang_System(), CHECK_0);
duke@435 3095 initialize_class(vmSymbolHandles::java_lang_ThreadGroup(), CHECK_0);
duke@435 3096 Handle thread_group = create_initial_thread_group(CHECK_0);
duke@435 3097 Universe::set_main_thread_group(thread_group());
duke@435 3098 initialize_class(vmSymbolHandles::java_lang_Thread(), CHECK_0);
duke@435 3099 oop thread_object = create_initial_thread(thread_group, main_thread, CHECK_0);
duke@435 3100 main_thread->set_threadObj(thread_object);
duke@435 3101 // Set thread status to running since main thread has
duke@435 3102 // been started and running.
duke@435 3103 java_lang_Thread::set_thread_status(thread_object,
duke@435 3104 java_lang_Thread::RUNNABLE);
duke@435 3105
duke@435 3106 // The VM preresolve methods to these classes. Make sure that get initialized
duke@435 3107 initialize_class(vmSymbolHandles::java_lang_reflect_Method(), CHECK_0);
duke@435 3108 initialize_class(vmSymbolHandles::java_lang_ref_Finalizer(), CHECK_0);
duke@435 3109 // The VM creates & returns objects of this class. Make sure it's initialized.
duke@435 3110 initialize_class(vmSymbolHandles::java_lang_Class(), CHECK_0);
duke@435 3111 call_initializeSystemClass(CHECK_0);
duke@435 3112 } else {
duke@435 3113 warning("java.lang.System not initialized");
duke@435 3114 }
duke@435 3115
duke@435 3116 // an instance of OutOfMemory exception has been allocated earlier
duke@435 3117 if (InitializeJavaLangExceptionsErrors) {
duke@435 3118 initialize_class(vmSymbolHandles::java_lang_OutOfMemoryError(), CHECK_0);
duke@435 3119 initialize_class(vmSymbolHandles::java_lang_NullPointerException(), CHECK_0);
duke@435 3120 initialize_class(vmSymbolHandles::java_lang_ClassCastException(), CHECK_0);
duke@435 3121 initialize_class(vmSymbolHandles::java_lang_ArrayStoreException(), CHECK_0);
duke@435 3122 initialize_class(vmSymbolHandles::java_lang_ArithmeticException(), CHECK_0);
duke@435 3123 initialize_class(vmSymbolHandles::java_lang_StackOverflowError(), CHECK_0);
duke@435 3124 initialize_class(vmSymbolHandles::java_lang_IllegalMonitorStateException(), CHECK_0);
duke@435 3125 } else {
duke@435 3126 warning("java.lang.OutOfMemoryError has not been initialized");
duke@435 3127 warning("java.lang.NullPointerException has not been initialized");
duke@435 3128 warning("java.lang.ClassCastException has not been initialized");
duke@435 3129 warning("java.lang.ArrayStoreException has not been initialized");
duke@435 3130 warning("java.lang.ArithmeticException has not been initialized");
duke@435 3131 warning("java.lang.StackOverflowError has not been initialized");
duke@435 3132 }
twisti@1570 3133
twisti@1570 3134 if (EnableInvokeDynamic) {
twisti@1570 3135 // JSR 292: An intialized java.dyn.InvokeDynamic is required in
twisti@1570 3136 // the compiler.
twisti@1570 3137 initialize_class(vmSymbolHandles::java_dyn_InvokeDynamic(), CHECK_0);
twisti@1570 3138 }
duke@435 3139 }
duke@435 3140
duke@435 3141 // See : bugid 4211085.
duke@435 3142 // Background : the static initializer of java.lang.Compiler tries to read
duke@435 3143 // property"java.compiler" and read & write property "java.vm.info".
duke@435 3144 // When a security manager is installed through the command line
duke@435 3145 // option "-Djava.security.manager", the above properties are not
duke@435 3146 // readable and the static initializer for java.lang.Compiler fails
duke@435 3147 // resulting in a NoClassDefFoundError. This can happen in any
duke@435 3148 // user code which calls methods in java.lang.Compiler.
duke@435 3149 // Hack : the hack is to pre-load and initialize this class, so that only
duke@435 3150 // system domains are on the stack when the properties are read.
duke@435 3151 // Currently even the AWT code has calls to methods in java.lang.Compiler.
duke@435 3152 // On the classic VM, java.lang.Compiler is loaded very early to load the JIT.
duke@435 3153 // Future Fix : the best fix is to grant everyone permissions to read "java.compiler" and
duke@435 3154 // read and write"java.vm.info" in the default policy file. See bugid 4211383
duke@435 3155 // Once that is done, we should remove this hack.
duke@435 3156 initialize_class(vmSymbolHandles::java_lang_Compiler(), CHECK_0);
duke@435 3157
duke@435 3158 // More hackery - the static initializer of java.lang.Compiler adds the string "nojit" to
duke@435 3159 // the java.vm.info property if no jit gets loaded through java.lang.Compiler (the hotspot
duke@435 3160 // compiler does not get loaded through java.lang.Compiler). "java -version" with the
duke@435 3161 // hotspot vm says "nojit" all the time which is confusing. So, we reset it here.
duke@435 3162 // This should also be taken out as soon as 4211383 gets fixed.
duke@435 3163 reset_vm_info_property(CHECK_0);
duke@435 3164
duke@435 3165 quicken_jni_functions();
duke@435 3166
duke@435 3167 // Set flag that basic initialization has completed. Used by exceptions and various
duke@435 3168 // debug stuff, that does not work until all basic classes have been initialized.
duke@435 3169 set_init_completed();
duke@435 3170
duke@435 3171 HS_DTRACE_PROBE(hotspot, vm__init__end);
duke@435 3172
duke@435 3173 // record VM initialization completion time
duke@435 3174 Management::record_vm_init_completed();
duke@435 3175
duke@435 3176 // Compute system loader. Note that this has to occur after set_init_completed, since
duke@435 3177 // valid exceptions may be thrown in the process.
duke@435 3178 // Note that we do not use CHECK_0 here since we are inside an EXCEPTION_MARK and
duke@435 3179 // set_init_completed has just been called, causing exceptions not to be shortcut
duke@435 3180 // anymore. We call vm_exit_during_initialization directly instead.
duke@435 3181 SystemDictionary::compute_java_system_loader(THREAD);
duke@435 3182 if (HAS_PENDING_EXCEPTION) {
duke@435 3183 vm_exit_during_initialization(Handle(THREAD, PENDING_EXCEPTION));
duke@435 3184 }
duke@435 3185
mchung@1550 3186 #ifdef KERNEL
mchung@1550 3187 if (JDK_Version::is_gte_jdk17x_version()) {
mchung@1550 3188 set_jkernel_boot_classloader_hook(THREAD);
mchung@1550 3189 }
mchung@1550 3190 #endif // KERNEL
mchung@1550 3191
duke@435 3192 #ifndef SERIALGC
duke@435 3193 // Support for ConcurrentMarkSweep. This should be cleaned up
ysr@777 3194 // and better encapsulated. The ugly nested if test would go away
ysr@777 3195 // once things are properly refactored. XXX YSR
ysr@777 3196 if (UseConcMarkSweepGC || UseG1GC) {
ysr@777 3197 if (UseConcMarkSweepGC) {
ysr@777 3198 ConcurrentMarkSweepThread::makeSurrogateLockerThread(THREAD);
ysr@777 3199 } else {
ysr@777 3200 ConcurrentMarkThread::makeSurrogateLockerThread(THREAD);
ysr@777 3201 }
duke@435 3202 if (HAS_PENDING_EXCEPTION) {
duke@435 3203 vm_exit_during_initialization(Handle(THREAD, PENDING_EXCEPTION));
duke@435 3204 }
duke@435 3205 }
duke@435 3206 #endif // SERIALGC
duke@435 3207
duke@435 3208 // Always call even when there are not JVMTI environments yet, since environments
duke@435 3209 // may be attached late and JVMTI must track phases of VM execution
duke@435 3210 JvmtiExport::enter_live_phase();
duke@435 3211
duke@435 3212 // Signal Dispatcher needs to be started before VMInit event is posted
duke@435 3213 os::signal_init();
duke@435 3214
duke@435 3215 // Start Attach Listener if +StartAttachListener or it can't be started lazily
duke@435 3216 if (!DisableAttachMechanism) {
duke@435 3217 if (StartAttachListener || AttachListener::init_at_startup()) {
duke@435 3218 AttachListener::init();
duke@435 3219 }
duke@435 3220 }
duke@435 3221
duke@435 3222 // Launch -Xrun agents
duke@435 3223 // Must be done in the JVMTI live phase so that for backward compatibility the JDWP
duke@435 3224 // back-end can launch with -Xdebug -Xrunjdwp.
duke@435 3225 if (!EagerXrunInit && Arguments::init_libraries_at_startup()) {
duke@435 3226 create_vm_init_libraries();
duke@435 3227 }
duke@435 3228
duke@435 3229 // Notify JVMTI agents that VM initialization is complete - nop if no agents.
duke@435 3230 JvmtiExport::post_vm_initialized();
duke@435 3231
duke@435 3232 Chunk::start_chunk_pool_cleaner_task();
duke@435 3233
duke@435 3234 // initialize compiler(s)
duke@435 3235 CompileBroker::compilation_init();
duke@435 3236
duke@435 3237 Management::initialize(THREAD);
duke@435 3238 if (HAS_PENDING_EXCEPTION) {
duke@435 3239 // management agent fails to start possibly due to
duke@435 3240 // configuration problem and is responsible for printing
duke@435 3241 // stack trace if appropriate. Simply exit VM.
duke@435 3242 vm_exit(1);
duke@435 3243 }
duke@435 3244
duke@435 3245 if (Arguments::has_profile()) FlatProfiler::engage(main_thread, true);
duke@435 3246 if (Arguments::has_alloc_profile()) AllocationProfiler::engage();
duke@435 3247 if (MemProfiling) MemProfiler::engage();
duke@435 3248 StatSampler::engage();
duke@435 3249 if (CheckJNICalls) JniPeriodicChecker::engage();
duke@435 3250
duke@435 3251 BiasedLocking::init();
duke@435 3252
duke@435 3253
duke@435 3254 // Start up the WatcherThread if there are any periodic tasks
duke@435 3255 // NOTE: All PeriodicTasks should be registered by now. If they
duke@435 3256 // aren't, late joiners might appear to start slowly (we might
duke@435 3257 // take a while to process their first tick).
duke@435 3258 if (PeriodicTask::num_tasks() > 0) {
duke@435 3259 WatcherThread::start();
duke@435 3260 }
duke@435 3261
bobv@2036 3262 // Give os specific code one last chance to start
bobv@2036 3263 os::init_3();
bobv@2036 3264
duke@435 3265 create_vm_timer.end();
duke@435 3266 return JNI_OK;
duke@435 3267 }
duke@435 3268
duke@435 3269 // type for the Agent_OnLoad and JVM_OnLoad entry points
duke@435 3270 extern "C" {
duke@435 3271 typedef jint (JNICALL *OnLoadEntry_t)(JavaVM *, char *, void *);
duke@435 3272 }
duke@435 3273 // Find a command line agent library and return its entry point for
duke@435 3274 // -agentlib: -agentpath: -Xrun
duke@435 3275 // num_symbol_entries must be passed-in since only the caller knows the number of symbols in the array.
duke@435 3276 static OnLoadEntry_t lookup_on_load(AgentLibrary* agent, const char *on_load_symbols[], size_t num_symbol_entries) {
duke@435 3277 OnLoadEntry_t on_load_entry = NULL;
duke@435 3278 void *library = agent->os_lib(); // check if we have looked it up before
duke@435 3279
duke@435 3280 if (library == NULL) {
duke@435 3281 char buffer[JVM_MAXPATHLEN];
duke@435 3282 char ebuf[1024];
duke@435 3283 const char *name = agent->name();
duke@435 3284
duke@435 3285 if (agent->is_absolute_path()) {
duke@435 3286 library = hpi::dll_load(name, ebuf, sizeof ebuf);
duke@435 3287 if (library == NULL) {
duke@435 3288 // If we can't find the agent, exit.
duke@435 3289 vm_exit_during_initialization("Could not find agent library in absolute path", name);
duke@435 3290 }
duke@435 3291 } else {
duke@435 3292 // Try to load the agent from the standard dll directory
duke@435 3293 hpi::dll_build_name(buffer, sizeof(buffer), Arguments::get_dll_dir(), name);
duke@435 3294 library = hpi::dll_load(buffer, ebuf, sizeof ebuf);
duke@435 3295 #ifdef KERNEL
duke@435 3296 // Download instrument dll
duke@435 3297 if (library == NULL && strcmp(name, "instrument") == 0) {
duke@435 3298 char *props = Arguments::get_kernel_properties();
duke@435 3299 char *home = Arguments::get_java_home();
duke@435 3300 const char *fmt = "%s/bin/java %s -Dkernel.background.download=false"
duke@435 3301 " sun.jkernel.DownloadManager -download client_jvm";
duke@435 3302 int length = strlen(props) + strlen(home) + strlen(fmt) + 1;
duke@435 3303 char *cmd = AllocateHeap(length);
duke@435 3304 jio_snprintf(cmd, length, fmt, home, props);
duke@435 3305 int status = os::fork_and_exec(cmd);
duke@435 3306 FreeHeap(props);
duke@435 3307 FreeHeap(cmd);
duke@435 3308 if (status == -1) {
duke@435 3309 warning(cmd);
duke@435 3310 vm_exit_during_initialization("fork_and_exec failed: %s",
duke@435 3311 strerror(errno));
duke@435 3312 }
duke@435 3313 // when this comes back the instrument.dll should be where it belongs.
duke@435 3314 library = hpi::dll_load(buffer, ebuf, sizeof ebuf);
duke@435 3315 }
duke@435 3316 #endif // KERNEL
duke@435 3317 if (library == NULL) { // Try the local directory
duke@435 3318 char ns[1] = {0};
duke@435 3319 hpi::dll_build_name(buffer, sizeof(buffer), ns, name);
duke@435 3320 library = hpi::dll_load(buffer, ebuf, sizeof ebuf);
duke@435 3321 if (library == NULL) {
duke@435 3322 // If we can't find the agent, exit.
duke@435 3323 vm_exit_during_initialization("Could not find agent library on the library path or in the local directory", name);
duke@435 3324 }
duke@435 3325 }
duke@435 3326 }
duke@435 3327 agent->set_os_lib(library);
duke@435 3328 }
duke@435 3329
duke@435 3330 // Find the OnLoad function.
duke@435 3331 for (size_t symbol_index = 0; symbol_index < num_symbol_entries; symbol_index++) {
duke@435 3332 on_load_entry = CAST_TO_FN_PTR(OnLoadEntry_t, hpi::dll_lookup(library, on_load_symbols[symbol_index]));
duke@435 3333 if (on_load_entry != NULL) break;
duke@435 3334 }
duke@435 3335 return on_load_entry;
duke@435 3336 }
duke@435 3337
duke@435 3338 // Find the JVM_OnLoad entry point
duke@435 3339 static OnLoadEntry_t lookup_jvm_on_load(AgentLibrary* agent) {
duke@435 3340 const char *on_load_symbols[] = JVM_ONLOAD_SYMBOLS;
duke@435 3341 return lookup_on_load(agent, on_load_symbols, sizeof(on_load_symbols) / sizeof(char*));
duke@435 3342 }
duke@435 3343
duke@435 3344 // Find the Agent_OnLoad entry point
duke@435 3345 static OnLoadEntry_t lookup_agent_on_load(AgentLibrary* agent) {
duke@435 3346 const char *on_load_symbols[] = AGENT_ONLOAD_SYMBOLS;
duke@435 3347 return lookup_on_load(agent, on_load_symbols, sizeof(on_load_symbols) / sizeof(char*));
duke@435 3348 }
duke@435 3349
duke@435 3350 // For backwards compatibility with -Xrun
duke@435 3351 // Convert libraries with no JVM_OnLoad, but which have Agent_OnLoad to be
duke@435 3352 // treated like -agentpath:
duke@435 3353 // Must be called before agent libraries are created
duke@435 3354 void Threads::convert_vm_init_libraries_to_agents() {
duke@435 3355 AgentLibrary* agent;
duke@435 3356 AgentLibrary* next;
duke@435 3357
duke@435 3358 for (agent = Arguments::libraries(); agent != NULL; agent = next) {
duke@435 3359 next = agent->next(); // cache the next agent now as this agent may get moved off this list
duke@435 3360 OnLoadEntry_t on_load_entry = lookup_jvm_on_load(agent);
duke@435 3361
duke@435 3362 // If there is an JVM_OnLoad function it will get called later,
duke@435 3363 // otherwise see if there is an Agent_OnLoad
duke@435 3364 if (on_load_entry == NULL) {
duke@435 3365 on_load_entry = lookup_agent_on_load(agent);
duke@435 3366 if (on_load_entry != NULL) {
duke@435 3367 // switch it to the agent list -- so that Agent_OnLoad will be called,
duke@435 3368 // JVM_OnLoad won't be attempted and Agent_OnUnload will
duke@435 3369 Arguments::convert_library_to_agent(agent);
duke@435 3370 } else {
duke@435 3371 vm_exit_during_initialization("Could not find JVM_OnLoad or Agent_OnLoad function in the library", agent->name());
duke@435 3372 }
duke@435 3373 }
duke@435 3374 }
duke@435 3375 }
duke@435 3376
duke@435 3377 // Create agents for -agentlib: -agentpath: and converted -Xrun
duke@435 3378 // Invokes Agent_OnLoad
duke@435 3379 // Called very early -- before JavaThreads exist
duke@435 3380 void Threads::create_vm_init_agents() {
duke@435 3381 extern struct JavaVM_ main_vm;
duke@435 3382 AgentLibrary* agent;
duke@435 3383
duke@435 3384 JvmtiExport::enter_onload_phase();
duke@435 3385 for (agent = Arguments::agents(); agent != NULL; agent = agent->next()) {
duke@435 3386 OnLoadEntry_t on_load_entry = lookup_agent_on_load(agent);
duke@435 3387
duke@435 3388 if (on_load_entry != NULL) {
duke@435 3389 // Invoke the Agent_OnLoad function
duke@435 3390 jint err = (*on_load_entry)(&main_vm, agent->options(), NULL);
duke@435 3391 if (err != JNI_OK) {
duke@435 3392 vm_exit_during_initialization("agent library failed to init", agent->name());
duke@435 3393 }
duke@435 3394 } else {
duke@435 3395 vm_exit_during_initialization("Could not find Agent_OnLoad function in the agent library", agent->name());
duke@435 3396 }
duke@435 3397 }
duke@435 3398 JvmtiExport::enter_primordial_phase();
duke@435 3399 }
duke@435 3400
duke@435 3401 extern "C" {
duke@435 3402 typedef void (JNICALL *Agent_OnUnload_t)(JavaVM *);
duke@435 3403 }
duke@435 3404
duke@435 3405 void Threads::shutdown_vm_agents() {
duke@435 3406 // Send any Agent_OnUnload notifications
duke@435 3407 const char *on_unload_symbols[] = AGENT_ONUNLOAD_SYMBOLS;
duke@435 3408 extern struct JavaVM_ main_vm;
duke@435 3409 for (AgentLibrary* agent = Arguments::agents(); agent != NULL; agent = agent->next()) {
duke@435 3410
duke@435 3411 // Find the Agent_OnUnload function.
duke@435 3412 for (uint symbol_index = 0; symbol_index < ARRAY_SIZE(on_unload_symbols); symbol_index++) {
duke@435 3413 Agent_OnUnload_t unload_entry = CAST_TO_FN_PTR(Agent_OnUnload_t,
duke@435 3414 hpi::dll_lookup(agent->os_lib(), on_unload_symbols[symbol_index]));
duke@435 3415
duke@435 3416 // Invoke the Agent_OnUnload function
duke@435 3417 if (unload_entry != NULL) {
duke@435 3418 JavaThread* thread = JavaThread::current();
duke@435 3419 ThreadToNativeFromVM ttn(thread);
duke@435 3420 HandleMark hm(thread);
duke@435 3421 (*unload_entry)(&main_vm);
duke@435 3422 break;
duke@435 3423 }
duke@435 3424 }
duke@435 3425 }
duke@435 3426 }
duke@435 3427
duke@435 3428 // Called for after the VM is initialized for -Xrun libraries which have not been converted to agent libraries
duke@435 3429 // Invokes JVM_OnLoad
duke@435 3430 void Threads::create_vm_init_libraries() {
duke@435 3431 extern struct JavaVM_ main_vm;
duke@435 3432 AgentLibrary* agent;
duke@435 3433
duke@435 3434 for (agent = Arguments::libraries(); agent != NULL; agent = agent->next()) {
duke@435 3435 OnLoadEntry_t on_load_entry = lookup_jvm_on_load(agent);
duke@435 3436
duke@435 3437 if (on_load_entry != NULL) {
duke@435 3438 // Invoke the JVM_OnLoad function
duke@435 3439 JavaThread* thread = JavaThread::current();
duke@435 3440 ThreadToNativeFromVM ttn(thread);
duke@435 3441 HandleMark hm(thread);
duke@435 3442 jint err = (*on_load_entry)(&main_vm, agent->options(), NULL);
duke@435 3443 if (err != JNI_OK) {
duke@435 3444 vm_exit_during_initialization("-Xrun library failed to init", agent->name());
duke@435 3445 }
duke@435 3446 } else {
duke@435 3447 vm_exit_during_initialization("Could not find JVM_OnLoad function in -Xrun library", agent->name());
duke@435 3448 }
duke@435 3449 }
duke@435 3450 }
duke@435 3451
duke@435 3452 // Last thread running calls java.lang.Shutdown.shutdown()
duke@435 3453 void JavaThread::invoke_shutdown_hooks() {
duke@435 3454 HandleMark hm(this);
duke@435 3455
duke@435 3456 // We could get here with a pending exception, if so clear it now.
duke@435 3457 if (this->has_pending_exception()) {
duke@435 3458 this->clear_pending_exception();
duke@435 3459 }
duke@435 3460
duke@435 3461 EXCEPTION_MARK;
duke@435 3462 klassOop k =
duke@435 3463 SystemDictionary::resolve_or_null(vmSymbolHandles::java_lang_Shutdown(),
duke@435 3464 THREAD);
duke@435 3465 if (k != NULL) {
duke@435 3466 // SystemDictionary::resolve_or_null will return null if there was
duke@435 3467 // an exception. If we cannot load the Shutdown class, just don't
duke@435 3468 // call Shutdown.shutdown() at all. This will mean the shutdown hooks
duke@435 3469 // and finalizers (if runFinalizersOnExit is set) won't be run.
duke@435 3470 // Note that if a shutdown hook was registered or runFinalizersOnExit
duke@435 3471 // was called, the Shutdown class would have already been loaded
duke@435 3472 // (Runtime.addShutdownHook and runFinalizersOnExit will load it).
duke@435 3473 instanceKlassHandle shutdown_klass (THREAD, k);
duke@435 3474 JavaValue result(T_VOID);
duke@435 3475 JavaCalls::call_static(&result,
duke@435 3476 shutdown_klass,
duke@435 3477 vmSymbolHandles::shutdown_method_name(),
duke@435 3478 vmSymbolHandles::void_method_signature(),
duke@435 3479 THREAD);
duke@435 3480 }
duke@435 3481 CLEAR_PENDING_EXCEPTION;
duke@435 3482 }
duke@435 3483
duke@435 3484 // Threads::destroy_vm() is normally called from jni_DestroyJavaVM() when
duke@435 3485 // the program falls off the end of main(). Another VM exit path is through
duke@435 3486 // vm_exit() when the program calls System.exit() to return a value or when
duke@435 3487 // there is a serious error in VM. The two shutdown paths are not exactly
duke@435 3488 // the same, but they share Shutdown.shutdown() at Java level and before_exit()
duke@435 3489 // and VM_Exit op at VM level.
duke@435 3490 //
duke@435 3491 // Shutdown sequence:
duke@435 3492 // + Wait until we are the last non-daemon thread to execute
duke@435 3493 // <-- every thing is still working at this moment -->
duke@435 3494 // + Call java.lang.Shutdown.shutdown(), which will invoke Java level
duke@435 3495 // shutdown hooks, run finalizers if finalization-on-exit
duke@435 3496 // + Call before_exit(), prepare for VM exit
duke@435 3497 // > run VM level shutdown hooks (they are registered through JVM_OnExit(),
duke@435 3498 // currently the only user of this mechanism is File.deleteOnExit())
duke@435 3499 // > stop flat profiler, StatSampler, watcher thread, CMS threads,
duke@435 3500 // post thread end and vm death events to JVMTI,
duke@435 3501 // stop signal thread
duke@435 3502 // + Call JavaThread::exit(), it will:
duke@435 3503 // > release JNI handle blocks, remove stack guard pages
duke@435 3504 // > remove this thread from Threads list
duke@435 3505 // <-- no more Java code from this thread after this point -->
duke@435 3506 // + Stop VM thread, it will bring the remaining VM to a safepoint and stop
duke@435 3507 // the compiler threads at safepoint
duke@435 3508 // <-- do not use anything that could get blocked by Safepoint -->
duke@435 3509 // + Disable tracing at JNI/JVM barriers
duke@435 3510 // + Set _vm_exited flag for threads that are still running native code
duke@435 3511 // + Delete this thread
duke@435 3512 // + Call exit_globals()
duke@435 3513 // > deletes tty
duke@435 3514 // > deletes PerfMemory resources
duke@435 3515 // + Return to caller
duke@435 3516
duke@435 3517 bool Threads::destroy_vm() {
duke@435 3518 JavaThread* thread = JavaThread::current();
duke@435 3519
duke@435 3520 // Wait until we are the last non-daemon thread to execute
duke@435 3521 { MutexLocker nu(Threads_lock);
duke@435 3522 while (Threads::number_of_non_daemon_threads() > 1 )
duke@435 3523 // This wait should make safepoint checks, wait without a timeout,
duke@435 3524 // and wait as a suspend-equivalent condition.
duke@435 3525 //
duke@435 3526 // Note: If the FlatProfiler is running and this thread is waiting
duke@435 3527 // for another non-daemon thread to finish, then the FlatProfiler
duke@435 3528 // is waiting for the external suspend request on this thread to
duke@435 3529 // complete. wait_for_ext_suspend_completion() will eventually
duke@435 3530 // timeout, but that takes time. Making this wait a suspend-
duke@435 3531 // equivalent condition solves that timeout problem.
duke@435 3532 //
duke@435 3533 Threads_lock->wait(!Mutex::_no_safepoint_check_flag, 0,
duke@435 3534 Mutex::_as_suspend_equivalent_flag);
duke@435 3535 }
duke@435 3536
duke@435 3537 // Hang forever on exit if we are reporting an error.
duke@435 3538 if (ShowMessageBoxOnError && is_error_reported()) {
duke@435 3539 os::infinite_sleep();
duke@435 3540 }
duke@435 3541
duke@435 3542 if (JDK_Version::is_jdk12x_version()) {
duke@435 3543 // We are the last thread running, so check if finalizers should be run.
duke@435 3544 // For 1.3 or later this is done in thread->invoke_shutdown_hooks()
duke@435 3545 HandleMark rm(thread);
duke@435 3546 Universe::run_finalizers_on_exit();
duke@435 3547 } else {
duke@435 3548 // run Java level shutdown hooks
duke@435 3549 thread->invoke_shutdown_hooks();
duke@435 3550 }
duke@435 3551
duke@435 3552 before_exit(thread);
duke@435 3553
duke@435 3554 thread->exit(true);
duke@435 3555
duke@435 3556 // Stop VM thread.
duke@435 3557 {
duke@435 3558 // 4945125 The vm thread comes to a safepoint during exit.
duke@435 3559 // GC vm_operations can get caught at the safepoint, and the
duke@435 3560 // heap is unparseable if they are caught. Grab the Heap_lock
duke@435 3561 // to prevent this. The GC vm_operations will not be able to
duke@435 3562 // queue until after the vm thread is dead.
duke@435 3563 MutexLocker ml(Heap_lock);
duke@435 3564
duke@435 3565 VMThread::wait_for_vm_thread_exit();
duke@435 3566 assert(SafepointSynchronize::is_at_safepoint(), "VM thread should exit at Safepoint");
duke@435 3567 VMThread::destroy();
duke@435 3568 }
duke@435 3569
duke@435 3570 // clean up ideal graph printers
duke@435 3571 #if defined(COMPILER2) && !defined(PRODUCT)
duke@435 3572 IdealGraphPrinter::clean_up();
duke@435 3573 #endif
duke@435 3574
duke@435 3575 // Now, all Java threads are gone except daemon threads. Daemon threads
duke@435 3576 // running Java code or in VM are stopped by the Safepoint. However,
duke@435 3577 // daemon threads executing native code are still running. But they
duke@435 3578 // will be stopped at native=>Java/VM barriers. Note that we can't
duke@435 3579 // simply kill or suspend them, as it is inherently deadlock-prone.
duke@435 3580
duke@435 3581 #ifndef PRODUCT
duke@435 3582 // disable function tracing at JNI/JVM barriers
duke@435 3583 TraceHPI = false;
duke@435 3584 TraceJNICalls = false;
duke@435 3585 TraceJVMCalls = false;
duke@435 3586 TraceRuntimeCalls = false;
duke@435 3587 #endif
duke@435 3588
duke@435 3589 VM_Exit::set_vm_exited();
duke@435 3590
duke@435 3591 notify_vm_shutdown();
duke@435 3592
duke@435 3593 delete thread;
duke@435 3594
duke@435 3595 // exit_globals() will delete tty
duke@435 3596 exit_globals();
duke@435 3597
duke@435 3598 return true;
duke@435 3599 }
duke@435 3600
duke@435 3601
duke@435 3602 jboolean Threads::is_supported_jni_version_including_1_1(jint version) {
duke@435 3603 if (version == JNI_VERSION_1_1) return JNI_TRUE;
duke@435 3604 return is_supported_jni_version(version);
duke@435 3605 }
duke@435 3606
duke@435 3607
duke@435 3608 jboolean Threads::is_supported_jni_version(jint version) {
duke@435 3609 if (version == JNI_VERSION_1_2) return JNI_TRUE;
duke@435 3610 if (version == JNI_VERSION_1_4) return JNI_TRUE;
duke@435 3611 if (version == JNI_VERSION_1_6) return JNI_TRUE;
duke@435 3612 return JNI_FALSE;
duke@435 3613 }
duke@435 3614
duke@435 3615
duke@435 3616 void Threads::add(JavaThread* p, bool force_daemon) {
duke@435 3617 // The threads lock must be owned at this point
duke@435 3618 assert_locked_or_safepoint(Threads_lock);
duke@435 3619 p->set_next(_thread_list);
duke@435 3620 _thread_list = p;
duke@435 3621 _number_of_threads++;
duke@435 3622 oop threadObj = p->threadObj();
duke@435 3623 bool daemon = true;
duke@435 3624 // Bootstrapping problem: threadObj can be null for initial
duke@435 3625 // JavaThread (or for threads attached via JNI)
duke@435 3626 if ((!force_daemon) && (threadObj == NULL || !java_lang_Thread::is_daemon(threadObj))) {
duke@435 3627 _number_of_non_daemon_threads++;
duke@435 3628 daemon = false;
duke@435 3629 }
duke@435 3630
duke@435 3631 ThreadService::add_thread(p, daemon);
duke@435 3632
duke@435 3633 // Possible GC point.
duke@435 3634 Events::log("Thread added: " INTPTR_FORMAT, p);
duke@435 3635 }
duke@435 3636
duke@435 3637 void Threads::remove(JavaThread* p) {
duke@435 3638 // Extra scope needed for Thread_lock, so we can check
duke@435 3639 // that we do not remove thread without safepoint code notice
duke@435 3640 { MutexLocker ml(Threads_lock);
duke@435 3641
duke@435 3642 assert(includes(p), "p must be present");
duke@435 3643
duke@435 3644 JavaThread* current = _thread_list;
duke@435 3645 JavaThread* prev = NULL;
duke@435 3646
duke@435 3647 while (current != p) {
duke@435 3648 prev = current;
duke@435 3649 current = current->next();
duke@435 3650 }
duke@435 3651
duke@435 3652 if (prev) {
duke@435 3653 prev->set_next(current->next());
duke@435 3654 } else {
duke@435 3655 _thread_list = p->next();
duke@435 3656 }
duke@435 3657 _number_of_threads--;
duke@435 3658 oop threadObj = p->threadObj();
duke@435 3659 bool daemon = true;
duke@435 3660 if (threadObj == NULL || !java_lang_Thread::is_daemon(threadObj)) {
duke@435 3661 _number_of_non_daemon_threads--;
duke@435 3662 daemon = false;
duke@435 3663
duke@435 3664 // Only one thread left, do a notify on the Threads_lock so a thread waiting
duke@435 3665 // on destroy_vm will wake up.
duke@435 3666 if (number_of_non_daemon_threads() == 1)
duke@435 3667 Threads_lock->notify_all();
duke@435 3668 }
duke@435 3669 ThreadService::remove_thread(p, daemon);
duke@435 3670
duke@435 3671 // Make sure that safepoint code disregard this thread. This is needed since
duke@435 3672 // the thread might mess around with locks after this point. This can cause it
duke@435 3673 // to do callbacks into the safepoint code. However, the safepoint code is not aware
duke@435 3674 // of this thread since it is removed from the queue.
duke@435 3675 p->set_terminated_value();
duke@435 3676 } // unlock Threads_lock
duke@435 3677
duke@435 3678 // Since Events::log uses a lock, we grab it outside the Threads_lock
duke@435 3679 Events::log("Thread exited: " INTPTR_FORMAT, p);
duke@435 3680 }
duke@435 3681
duke@435 3682 // Threads_lock must be held when this is called (or must be called during a safepoint)
duke@435 3683 bool Threads::includes(JavaThread* p) {
duke@435 3684 assert(Threads_lock->is_locked(), "sanity check");
duke@435 3685 ALL_JAVA_THREADS(q) {
duke@435 3686 if (q == p ) {
duke@435 3687 return true;
duke@435 3688 }
duke@435 3689 }
duke@435 3690 return false;
duke@435 3691 }
duke@435 3692
duke@435 3693 // Operations on the Threads list for GC. These are not explicitly locked,
duke@435 3694 // but the garbage collector must provide a safe context for them to run.
duke@435 3695 // In particular, these things should never be called when the Threads_lock
duke@435 3696 // is held by some other thread. (Note: the Safepoint abstraction also
duke@435 3697 // uses the Threads_lock to gurantee this property. It also makes sure that
duke@435 3698 // all threads gets blocked when exiting or starting).
duke@435 3699
jrose@1424 3700 void Threads::oops_do(OopClosure* f, CodeBlobClosure* cf) {
duke@435 3701 ALL_JAVA_THREADS(p) {
jrose@1424 3702 p->oops_do(f, cf);
duke@435 3703 }
jrose@1424 3704 VMThread::vm_thread()->oops_do(f, cf);
duke@435 3705 }
duke@435 3706
jrose@1424 3707 void Threads::possibly_parallel_oops_do(OopClosure* f, CodeBlobClosure* cf) {
duke@435 3708 // Introduce a mechanism allowing parallel threads to claim threads as
duke@435 3709 // root groups. Overhead should be small enough to use all the time,
duke@435 3710 // even in sequential code.
duke@435 3711 SharedHeap* sh = SharedHeap::heap();
duke@435 3712 bool is_par = (sh->n_par_threads() > 0);
duke@435 3713 int cp = SharedHeap::heap()->strong_roots_parity();
duke@435 3714 ALL_JAVA_THREADS(p) {
duke@435 3715 if (p->claim_oops_do(is_par, cp)) {
jrose@1424 3716 p->oops_do(f, cf);
duke@435 3717 }
duke@435 3718 }
duke@435 3719 VMThread* vmt = VMThread::vm_thread();
duke@435 3720 if (vmt->claim_oops_do(is_par, cp))
jrose@1424 3721 vmt->oops_do(f, cf);
duke@435 3722 }
duke@435 3723
duke@435 3724 #ifndef SERIALGC
duke@435 3725 // Used by ParallelScavenge
duke@435 3726 void Threads::create_thread_roots_tasks(GCTaskQueue* q) {
duke@435 3727 ALL_JAVA_THREADS(p) {
duke@435 3728 q->enqueue(new ThreadRootsTask(p));
duke@435 3729 }
duke@435 3730 q->enqueue(new ThreadRootsTask(VMThread::vm_thread()));
duke@435 3731 }
duke@435 3732
duke@435 3733 // Used by Parallel Old
duke@435 3734 void Threads::create_thread_roots_marking_tasks(GCTaskQueue* q) {
duke@435 3735 ALL_JAVA_THREADS(p) {
duke@435 3736 q->enqueue(new ThreadRootsMarkingTask(p));
duke@435 3737 }
duke@435 3738 q->enqueue(new ThreadRootsMarkingTask(VMThread::vm_thread()));
duke@435 3739 }
duke@435 3740 #endif // SERIALGC
duke@435 3741
jrose@1424 3742 void Threads::nmethods_do(CodeBlobClosure* cf) {
duke@435 3743 ALL_JAVA_THREADS(p) {
jrose@1424 3744 p->nmethods_do(cf);
duke@435 3745 }
jrose@1424 3746 VMThread::vm_thread()->nmethods_do(cf);
duke@435 3747 }
duke@435 3748
duke@435 3749 void Threads::gc_epilogue() {
duke@435 3750 ALL_JAVA_THREADS(p) {
duke@435 3751 p->gc_epilogue();
duke@435 3752 }
duke@435 3753 }
duke@435 3754
duke@435 3755 void Threads::gc_prologue() {
duke@435 3756 ALL_JAVA_THREADS(p) {
duke@435 3757 p->gc_prologue();
duke@435 3758 }
duke@435 3759 }
duke@435 3760
duke@435 3761 void Threads::deoptimized_wrt_marked_nmethods() {
duke@435 3762 ALL_JAVA_THREADS(p) {
duke@435 3763 p->deoptimized_wrt_marked_nmethods();
duke@435 3764 }
duke@435 3765 }
duke@435 3766
duke@435 3767
duke@435 3768 // Get count Java threads that are waiting to enter the specified monitor.
duke@435 3769 GrowableArray<JavaThread*>* Threads::get_pending_threads(int count,
duke@435 3770 address monitor, bool doLock) {
duke@435 3771 assert(doLock || SafepointSynchronize::is_at_safepoint(),
duke@435 3772 "must grab Threads_lock or be at safepoint");
duke@435 3773 GrowableArray<JavaThread*>* result = new GrowableArray<JavaThread*>(count);
duke@435 3774
duke@435 3775 int i = 0;
duke@435 3776 {
duke@435 3777 MutexLockerEx ml(doLock ? Threads_lock : NULL);
duke@435 3778 ALL_JAVA_THREADS(p) {
duke@435 3779 if (p->is_Compiler_thread()) continue;
duke@435 3780
duke@435 3781 address pending = (address)p->current_pending_monitor();
duke@435 3782 if (pending == monitor) { // found a match
duke@435 3783 if (i < count) result->append(p); // save the first count matches
duke@435 3784 i++;
duke@435 3785 }
duke@435 3786 }
duke@435 3787 }
duke@435 3788 return result;
duke@435 3789 }
duke@435 3790
duke@435 3791
duke@435 3792 JavaThread *Threads::owning_thread_from_monitor_owner(address owner, bool doLock) {
duke@435 3793 assert(doLock ||
duke@435 3794 Threads_lock->owned_by_self() ||
duke@435 3795 SafepointSynchronize::is_at_safepoint(),
duke@435 3796 "must grab Threads_lock or be at safepoint");
duke@435 3797
duke@435 3798 // NULL owner means not locked so we can skip the search
duke@435 3799 if (owner == NULL) return NULL;
duke@435 3800
duke@435 3801 {
duke@435 3802 MutexLockerEx ml(doLock ? Threads_lock : NULL);
duke@435 3803 ALL_JAVA_THREADS(p) {
duke@435 3804 // first, see if owner is the address of a Java thread
duke@435 3805 if (owner == (address)p) return p;
duke@435 3806 }
duke@435 3807 }
duke@435 3808 assert(UseHeavyMonitors == false, "Did not find owning Java thread with UseHeavyMonitors enabled");
duke@435 3809 if (UseHeavyMonitors) return NULL;
duke@435 3810
duke@435 3811 //
duke@435 3812 // If we didn't find a matching Java thread and we didn't force use of
duke@435 3813 // heavyweight monitors, then the owner is the stack address of the
duke@435 3814 // Lock Word in the owning Java thread's stack.
duke@435 3815 //
duke@435 3816 JavaThread* the_owner = NULL;
duke@435 3817 {
duke@435 3818 MutexLockerEx ml(doLock ? Threads_lock : NULL);
duke@435 3819 ALL_JAVA_THREADS(q) {
xlu@1137 3820 if (q->is_lock_owned(owner)) {
duke@435 3821 the_owner = q;
xlu@1137 3822 break;
duke@435 3823 }
duke@435 3824 }
duke@435 3825 }
duke@435 3826 assert(the_owner != NULL, "Did not find owning Java thread for lock word address");
duke@435 3827 return the_owner;
duke@435 3828 }
duke@435 3829
duke@435 3830 // Threads::print_on() is called at safepoint by VM_PrintThreads operation.
duke@435 3831 void Threads::print_on(outputStream* st, bool print_stacks, bool internal_format, bool print_concurrent_locks) {
duke@435 3832 char buf[32];
duke@435 3833 st->print_cr(os::local_time_string(buf, sizeof(buf)));
duke@435 3834
duke@435 3835 st->print_cr("Full thread dump %s (%s %s):",
duke@435 3836 Abstract_VM_Version::vm_name(),
duke@435 3837 Abstract_VM_Version::vm_release(),
duke@435 3838 Abstract_VM_Version::vm_info_string()
duke@435 3839 );
duke@435 3840 st->cr();
duke@435 3841
duke@435 3842 #ifndef SERIALGC
duke@435 3843 // Dump concurrent locks
duke@435 3844 ConcurrentLocksDump concurrent_locks;
duke@435 3845 if (print_concurrent_locks) {
duke@435 3846 concurrent_locks.dump_at_safepoint();
duke@435 3847 }
duke@435 3848 #endif // SERIALGC
duke@435 3849
duke@435 3850 ALL_JAVA_THREADS(p) {
duke@435 3851 ResourceMark rm;
duke@435 3852 p->print_on(st);
duke@435 3853 if (print_stacks) {
duke@435 3854 if (internal_format) {
duke@435 3855 p->trace_stack();
duke@435 3856 } else {
duke@435 3857 p->print_stack_on(st);
duke@435 3858 }
duke@435 3859 }
duke@435 3860 st->cr();
duke@435 3861 #ifndef SERIALGC
duke@435 3862 if (print_concurrent_locks) {
duke@435 3863 concurrent_locks.print_locks_on(p, st);
duke@435 3864 }
duke@435 3865 #endif // SERIALGC
duke@435 3866 }
duke@435 3867
duke@435 3868 VMThread::vm_thread()->print_on(st);
duke@435 3869 st->cr();
duke@435 3870 Universe::heap()->print_gc_threads_on(st);
duke@435 3871 WatcherThread* wt = WatcherThread::watcher_thread();
duke@435 3872 if (wt != NULL) wt->print_on(st);
duke@435 3873 st->cr();
duke@435 3874 CompileBroker::print_compiler_threads_on(st);
duke@435 3875 st->flush();
duke@435 3876 }
duke@435 3877
duke@435 3878 // Threads::print_on_error() is called by fatal error handler. It's possible
duke@435 3879 // that VM is not at safepoint and/or current thread is inside signal handler.
duke@435 3880 // Don't print stack trace, as the stack may not be walkable. Don't allocate
duke@435 3881 // memory (even in resource area), it might deadlock the error handler.
duke@435 3882 void Threads::print_on_error(outputStream* st, Thread* current, char* buf, int buflen) {
duke@435 3883 bool found_current = false;
duke@435 3884 st->print_cr("Java Threads: ( => current thread )");
duke@435 3885 ALL_JAVA_THREADS(thread) {
duke@435 3886 bool is_current = (current == thread);
duke@435 3887 found_current = found_current || is_current;
duke@435 3888
duke@435 3889 st->print("%s", is_current ? "=>" : " ");
duke@435 3890
duke@435 3891 st->print(PTR_FORMAT, thread);
duke@435 3892 st->print(" ");
duke@435 3893 thread->print_on_error(st, buf, buflen);
duke@435 3894 st->cr();
duke@435 3895 }
duke@435 3896 st->cr();
duke@435 3897
duke@435 3898 st->print_cr("Other Threads:");
duke@435 3899 if (VMThread::vm_thread()) {
duke@435 3900 bool is_current = (current == VMThread::vm_thread());
duke@435 3901 found_current = found_current || is_current;
duke@435 3902 st->print("%s", current == VMThread::vm_thread() ? "=>" : " ");
duke@435 3903
duke@435 3904 st->print(PTR_FORMAT, VMThread::vm_thread());
duke@435 3905 st->print(" ");
duke@435 3906 VMThread::vm_thread()->print_on_error(st, buf, buflen);
duke@435 3907 st->cr();
duke@435 3908 }
duke@435 3909 WatcherThread* wt = WatcherThread::watcher_thread();
duke@435 3910 if (wt != NULL) {
duke@435 3911 bool is_current = (current == wt);
duke@435 3912 found_current = found_current || is_current;
duke@435 3913 st->print("%s", is_current ? "=>" : " ");
duke@435 3914
duke@435 3915 st->print(PTR_FORMAT, wt);
duke@435 3916 st->print(" ");
duke@435 3917 wt->print_on_error(st, buf, buflen);
duke@435 3918 st->cr();
duke@435 3919 }
duke@435 3920 if (!found_current) {
duke@435 3921 st->cr();
duke@435 3922 st->print("=>" PTR_FORMAT " (exited) ", current);
duke@435 3923 current->print_on_error(st, buf, buflen);
duke@435 3924 st->cr();
duke@435 3925 }
duke@435 3926 }
duke@435 3927
duke@435 3928
duke@435 3929 // Lifecycle management for TSM ParkEvents.
duke@435 3930 // ParkEvents are type-stable (TSM).
duke@435 3931 // In our particular implementation they happen to be immortal.
duke@435 3932 //
duke@435 3933 // We manage concurrency on the FreeList with a CAS-based
duke@435 3934 // detach-modify-reattach idiom that avoids the ABA problems
duke@435 3935 // that would otherwise be present in a simple CAS-based
duke@435 3936 // push-pop implementation. (push-one and pop-all)
duke@435 3937 //
duke@435 3938 // Caveat: Allocate() and Release() may be called from threads
duke@435 3939 // other than the thread associated with the Event!
duke@435 3940 // If we need to call Allocate() when running as the thread in
duke@435 3941 // question then look for the PD calls to initialize native TLS.
duke@435 3942 // Native TLS (Win32/Linux/Solaris) can only be initialized or
duke@435 3943 // accessed by the associated thread.
duke@435 3944 // See also pd_initialize().
duke@435 3945 //
duke@435 3946 // Note that we could defer associating a ParkEvent with a thread
duke@435 3947 // until the 1st time the thread calls park(). unpark() calls to
duke@435 3948 // an unprovisioned thread would be ignored. The first park() call
duke@435 3949 // for a thread would allocate and associate a ParkEvent and return
duke@435 3950 // immediately.
duke@435 3951
duke@435 3952 volatile int ParkEvent::ListLock = 0 ;
duke@435 3953 ParkEvent * volatile ParkEvent::FreeList = NULL ;
duke@435 3954
duke@435 3955 ParkEvent * ParkEvent::Allocate (Thread * t) {
duke@435 3956 // In rare cases -- JVM_RawMonitor* operations -- we can find t == null.
duke@435 3957 ParkEvent * ev ;
duke@435 3958
duke@435 3959 // Start by trying to recycle an existing but unassociated
duke@435 3960 // ParkEvent from the global free list.
duke@435 3961 for (;;) {
duke@435 3962 ev = FreeList ;
duke@435 3963 if (ev == NULL) break ;
duke@435 3964 // 1: Detach - sequester or privatize the list
duke@435 3965 // Tantamount to ev = Swap (&FreeList, NULL)
duke@435 3966 if (Atomic::cmpxchg_ptr (NULL, &FreeList, ev) != ev) {
duke@435 3967 continue ;
duke@435 3968 }
duke@435 3969
duke@435 3970 // We've detached the list. The list in-hand is now
duke@435 3971 // local to this thread. This thread can operate on the
duke@435 3972 // list without risk of interference from other threads.
duke@435 3973 // 2: Extract -- pop the 1st element from the list.
duke@435 3974 ParkEvent * List = ev->FreeNext ;
duke@435 3975 if (List == NULL) break ;
duke@435 3976 for (;;) {
duke@435 3977 // 3: Try to reattach the residual list
duke@435 3978 guarantee (List != NULL, "invariant") ;
duke@435 3979 ParkEvent * Arv = (ParkEvent *) Atomic::cmpxchg_ptr (List, &FreeList, NULL) ;
duke@435 3980 if (Arv == NULL) break ;
duke@435 3981
duke@435 3982 // New nodes arrived. Try to detach the recent arrivals.
duke@435 3983 if (Atomic::cmpxchg_ptr (NULL, &FreeList, Arv) != Arv) {
duke@435 3984 continue ;
duke@435 3985 }
duke@435 3986 guarantee (Arv != NULL, "invariant") ;
duke@435 3987 // 4: Merge Arv into List
duke@435 3988 ParkEvent * Tail = List ;
duke@435 3989 while (Tail->FreeNext != NULL) Tail = Tail->FreeNext ;
duke@435 3990 Tail->FreeNext = Arv ;
duke@435 3991 }
duke@435 3992 break ;
duke@435 3993 }
duke@435 3994
duke@435 3995 if (ev != NULL) {
duke@435 3996 guarantee (ev->AssociatedWith == NULL, "invariant") ;
duke@435 3997 } else {
duke@435 3998 // Do this the hard way -- materialize a new ParkEvent.
duke@435 3999 // In rare cases an allocating thread might detach a long list --
duke@435 4000 // installing null into FreeList -- and then stall or be obstructed.
duke@435 4001 // A 2nd thread calling Allocate() would see FreeList == null.
duke@435 4002 // The list held privately by the 1st thread is unavailable to the 2nd thread.
duke@435 4003 // In that case the 2nd thread would have to materialize a new ParkEvent,
duke@435 4004 // even though free ParkEvents existed in the system. In this case we end up
duke@435 4005 // with more ParkEvents in circulation than we need, but the race is
duke@435 4006 // rare and the outcome is benign. Ideally, the # of extant ParkEvents
duke@435 4007 // is equal to the maximum # of threads that existed at any one time.
duke@435 4008 // Because of the race mentioned above, segments of the freelist
duke@435 4009 // can be transiently inaccessible. At worst we may end up with the
duke@435 4010 // # of ParkEvents in circulation slightly above the ideal.
duke@435 4011 // Note that if we didn't have the TSM/immortal constraint, then
duke@435 4012 // when reattaching, above, we could trim the list.
duke@435 4013 ev = new ParkEvent () ;
duke@435 4014 guarantee ((intptr_t(ev) & 0xFF) == 0, "invariant") ;
duke@435 4015 }
duke@435 4016 ev->reset() ; // courtesy to caller
duke@435 4017 ev->AssociatedWith = t ; // Associate ev with t
duke@435 4018 ev->FreeNext = NULL ;
duke@435 4019 return ev ;
duke@435 4020 }
duke@435 4021
duke@435 4022 void ParkEvent::Release (ParkEvent * ev) {
duke@435 4023 if (ev == NULL) return ;
duke@435 4024 guarantee (ev->FreeNext == NULL , "invariant") ;
duke@435 4025 ev->AssociatedWith = NULL ;
duke@435 4026 for (;;) {
duke@435 4027 // Push ev onto FreeList
duke@435 4028 // The mechanism is "half" lock-free.
duke@435 4029 ParkEvent * List = FreeList ;
duke@435 4030 ev->FreeNext = List ;
duke@435 4031 if (Atomic::cmpxchg_ptr (ev, &FreeList, List) == List) break ;
duke@435 4032 }
duke@435 4033 }
duke@435 4034
duke@435 4035 // Override operator new and delete so we can ensure that the
duke@435 4036 // least significant byte of ParkEvent addresses is 0.
duke@435 4037 // Beware that excessive address alignment is undesirable
duke@435 4038 // as it can result in D$ index usage imbalance as
duke@435 4039 // well as bank access imbalance on Niagara-like platforms,
duke@435 4040 // although Niagara's hash function should help.
duke@435 4041
duke@435 4042 void * ParkEvent::operator new (size_t sz) {
duke@435 4043 return (void *) ((intptr_t (CHeapObj::operator new (sz + 256)) + 256) & -256) ;
duke@435 4044 }
duke@435 4045
duke@435 4046 void ParkEvent::operator delete (void * a) {
duke@435 4047 // ParkEvents are type-stable and immortal ...
duke@435 4048 ShouldNotReachHere();
duke@435 4049 }
duke@435 4050
duke@435 4051
duke@435 4052 // 6399321 As a temporary measure we copied & modified the ParkEvent::
duke@435 4053 // allocate() and release() code for use by Parkers. The Parker:: forms
duke@435 4054 // will eventually be removed as we consolide and shift over to ParkEvents
duke@435 4055 // for both builtin synchronization and JSR166 operations.
duke@435 4056
duke@435 4057 volatile int Parker::ListLock = 0 ;
duke@435 4058 Parker * volatile Parker::FreeList = NULL ;
duke@435 4059
duke@435 4060 Parker * Parker::Allocate (JavaThread * t) {
duke@435 4061 guarantee (t != NULL, "invariant") ;
duke@435 4062 Parker * p ;
duke@435 4063
duke@435 4064 // Start by trying to recycle an existing but unassociated
duke@435 4065 // Parker from the global free list.
duke@435 4066 for (;;) {
duke@435 4067 p = FreeList ;
duke@435 4068 if (p == NULL) break ;
duke@435 4069 // 1: Detach
duke@435 4070 // Tantamount to p = Swap (&FreeList, NULL)
duke@435 4071 if (Atomic::cmpxchg_ptr (NULL, &FreeList, p) != p) {
duke@435 4072 continue ;
duke@435 4073 }
duke@435 4074
duke@435 4075 // We've detached the list. The list in-hand is now
duke@435 4076 // local to this thread. This thread can operate on the
duke@435 4077 // list without risk of interference from other threads.
duke@435 4078 // 2: Extract -- pop the 1st element from the list.
duke@435 4079 Parker * List = p->FreeNext ;
duke@435 4080 if (List == NULL) break ;
duke@435 4081 for (;;) {
duke@435 4082 // 3: Try to reattach the residual list
duke@435 4083 guarantee (List != NULL, "invariant") ;
duke@435 4084 Parker * Arv = (Parker *) Atomic::cmpxchg_ptr (List, &FreeList, NULL) ;
duke@435 4085 if (Arv == NULL) break ;
duke@435 4086
duke@435 4087 // New nodes arrived. Try to detach the recent arrivals.
duke@435 4088 if (Atomic::cmpxchg_ptr (NULL, &FreeList, Arv) != Arv) {
duke@435 4089 continue ;
duke@435 4090 }
duke@435 4091 guarantee (Arv != NULL, "invariant") ;
duke@435 4092 // 4: Merge Arv into List
duke@435 4093 Parker * Tail = List ;
duke@435 4094 while (Tail->FreeNext != NULL) Tail = Tail->FreeNext ;
duke@435 4095 Tail->FreeNext = Arv ;
duke@435 4096 }
duke@435 4097 break ;
duke@435 4098 }
duke@435 4099
duke@435 4100 if (p != NULL) {
duke@435 4101 guarantee (p->AssociatedWith == NULL, "invariant") ;
duke@435 4102 } else {
duke@435 4103 // Do this the hard way -- materialize a new Parker..
duke@435 4104 // In rare cases an allocating thread might detach
duke@435 4105 // a long list -- installing null into FreeList --and
duke@435 4106 // then stall. Another thread calling Allocate() would see
duke@435 4107 // FreeList == null and then invoke the ctor. In this case we
duke@435 4108 // end up with more Parkers in circulation than we need, but
duke@435 4109 // the race is rare and the outcome is benign.
duke@435 4110 // Ideally, the # of extant Parkers is equal to the
duke@435 4111 // maximum # of threads that existed at any one time.
duke@435 4112 // Because of the race mentioned above, segments of the
duke@435 4113 // freelist can be transiently inaccessible. At worst
duke@435 4114 // we may end up with the # of Parkers in circulation
duke@435 4115 // slightly above the ideal.
duke@435 4116 p = new Parker() ;
duke@435 4117 }
duke@435 4118 p->AssociatedWith = t ; // Associate p with t
duke@435 4119 p->FreeNext = NULL ;
duke@435 4120 return p ;
duke@435 4121 }
duke@435 4122
duke@435 4123
duke@435 4124 void Parker::Release (Parker * p) {
duke@435 4125 if (p == NULL) return ;
duke@435 4126 guarantee (p->AssociatedWith != NULL, "invariant") ;
duke@435 4127 guarantee (p->FreeNext == NULL , "invariant") ;
duke@435 4128 p->AssociatedWith = NULL ;
duke@435 4129 for (;;) {
duke@435 4130 // Push p onto FreeList
duke@435 4131 Parker * List = FreeList ;
duke@435 4132 p->FreeNext = List ;
duke@435 4133 if (Atomic::cmpxchg_ptr (p, &FreeList, List) == List) break ;
duke@435 4134 }
duke@435 4135 }
duke@435 4136
duke@435 4137 void Threads::verify() {
duke@435 4138 ALL_JAVA_THREADS(p) {
duke@435 4139 p->verify();
duke@435 4140 }
duke@435 4141 VMThread* thread = VMThread::vm_thread();
duke@435 4142 if (thread != NULL) thread->verify();
duke@435 4143 }

mercurial