thread.cpp revision 2842
0N/A/*
0N/A * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
873N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A * or visit www.oracle.com if you need additional information or have any
0N/A * questions.
0N/A *
0N/A */
0N/A
5037N/A#include "precompiled.hpp"
6131N/A#include "classfile/classLoader.hpp"
6238N/A#include "classfile/javaClasses.hpp"
0N/A#include "classfile/systemDictionary.hpp"
0N/A#include "classfile/vmSymbols.hpp"
6133N/A#include "code/scopeDesc.hpp"
6133N/A#include "compiler/compileBroker.hpp"
0N/A#include "interpreter/interpreter.hpp"
5422N/A#include "interpreter/linkResolver.hpp"
0N/A#include "interpreter/oopMapCache.hpp"
0N/A#include "jvmtifiles/jvmtiEnv.hpp"
0N/A#include "memory/oopFactory.hpp"
3012N/A#include "memory/universe.inline.hpp"
5040N/A#include "oops/instanceKlass.hpp"
3381N/A#include "oops/objArrayOop.hpp"
3349N/A#include "oops/oop.inline.hpp"
3349N/A#include "oops/symbol.hpp"
3012N/A#include "prims/jvm_misc.hpp"
1083N/A#include "prims/jvmtiExport.hpp"
1083N/A#include "prims/jvmtiThreadState.hpp"
1083N/A#include "prims/privilegedStack.hpp"
1083N/A#include "runtime/aprofiler.hpp"
4156N/A#include "runtime/arguments.hpp"
1083N/A#include "runtime/biasedLocking.hpp"
1083N/A#include "runtime/deoptimization.hpp"
1083N/A#include "runtime/fprofiler.hpp"
1083N/A#include "runtime/frame.inline.hpp"
3090N/A#include "runtime/init.hpp"
3090N/A#include "runtime/interfaceSupport.hpp"
3214N/A#include "runtime/java.hpp"
5481N/A#include "runtime/javaCalls.hpp"
1083N/A#include "runtime/jniPeriodicChecker.hpp"
1083N/A#include "runtime/memprofiler.hpp"
1083N/A#include "runtime/mutexLocker.hpp"
1083N/A#include "runtime/objectMonitor.hpp"
6133N/A#include "runtime/osThread.hpp"
6133N/A#include "runtime/safepoint.hpp"
6157N/A#include "runtime/sharedRuntime.hpp"
6157N/A#include "runtime/statSampler.hpp"
6157N/A#include "runtime/stubRoutines.hpp"
6157N/A#include "runtime/task.hpp"
6157N/A#include "runtime/threadCritical.hpp"
6157N/A#include "runtime/threadLocalStorage.hpp"
6157N/A#include "runtime/vframe.hpp"
6157N/A#include "runtime/vframeArray.hpp"
6157N/A#include "runtime/vframe_hp.hpp"
233N/A#include "runtime/vmThread.hpp"
712N/A#include "runtime/vm_operations.hpp"
1177N/A#include "services/attachListener.hpp"
564N/A#include "services/management.hpp"
0N/A#include "services/threadService.hpp"
0N/A#include "utilities/defaultStream.hpp"
0N/A#include "utilities/dtrace.hpp"
0N/A#include "utilities/events.hpp"
712N/A#include "utilities/preserveException.hpp"
0N/A#ifdef TARGET_OS_FAMILY_linux
0N/A# include "os_linux.inline.hpp"
0N/A# include "thread_linux.inline.hpp"
0N/A#endif
0N/A#ifdef TARGET_OS_FAMILY_solaris
233N/A# include "os_solaris.inline.hpp"
233N/A# include "thread_solaris.inline.hpp"
0N/A#endif
0N/A#ifdef TARGET_OS_FAMILY_windows
0N/A# include "os_windows.inline.hpp"
0N/A# include "thread_windows.inline.hpp"
0N/A#endif
0N/A#ifdef TARGET_OS_FAMILY_bsd
0N/A# include "os_bsd.inline.hpp"
0N/A# include "thread_bsd.inline.hpp"
567N/A#endif
567N/A#ifndef SERIALGC
567N/A#include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.hpp"
567N/A#include "gc_implementation/g1/concurrentMarkThread.inline.hpp"
2046N/A#include "gc_implementation/parallelScavenge/pcTasks.hpp"
2046N/A#endif
1210N/A#ifdef COMPILER1
2033N/A#include "c1/c1_Compiler.hpp"
712N/A#endif
5614N/A#ifdef COMPILER2
2046N/A#include "opto/c2compiler.hpp"
712N/A#include "opto/idealGraphPrinter.hpp"
675N/A#endif
5058N/A
712N/A#ifdef DTRACE_ENABLED
675N/A
567N/A// Only bother with this argument setup if dtrace is available
0N/A
5058N/A#ifndef USDT2
712N/AHS_DTRACE_PROBE_DECL(hotspot, vm__init__begin);
422N/AHS_DTRACE_PROBE_DECL(hotspot, vm__init__end);
0N/AHS_DTRACE_PROBE_DECL5(hotspot, thread__start, char*, intptr_t,
422N/A intptr_t, intptr_t, bool);
0N/AHS_DTRACE_PROBE_DECL5(hotspot, thread__stop, char*, intptr_t,
422N/A intptr_t, intptr_t, bool);
0N/A
0N/A#define DTRACE_THREAD_PROBE(probe, javathread) \
0N/A { \
0N/A ResourceMark rm(this); \
902N/A int len = 0; \
902N/A const char* name = (javathread)->get_thread_name(); \
902N/A len = strlen(name); \
902N/A HS_DTRACE_PROBE5(hotspot, thread__##probe, \
0N/A name, len, \
0N/A java_lang_Thread::thread_id((javathread)->threadObj()), \
0N/A (javathread)->osthread()->thread_id(), \
0N/A java_lang_Thread::is_daemon((javathread)->threadObj())); \
233N/A }
233N/A
233N/A#else /* USDT2 */
233N/A
730N/A#define HOTSPOT_THREAD_PROBE_start HOTSPOT_THREAD_PROBE_START
730N/A#define HOTSPOT_THREAD_PROBE_stop HOTSPOT_THREAD_PROBE_STOP
730N/A
0N/A#define DTRACE_THREAD_PROBE(probe, javathread) \
729N/A { \
729N/A ResourceMark rm(this); \
729N/A int len = 0; \
0N/A const char* name = (javathread)->get_thread_name(); \
0N/A len = strlen(name); \
0N/A HOTSPOT_THREAD_PROBE_##probe( /* probe = start, stop */ \
110N/A (char *) name, len, \
110N/A java_lang_Thread::thread_id((javathread)->threadObj()), \
121N/A (uintptr_t) (javathread)->osthread()->thread_id(), \
699N/A java_lang_Thread::is_daemon((javathread)->threadObj())); \
0N/A }
0N/A
1008N/A#endif /* USDT2 */
1008N/A
1008N/A#else // ndef DTRACE_ENABLED
1008N/A
3214N/A#define DTRACE_THREAD_PROBE(probe, javathread)
3381N/A
2086N/A#endif // ndef DTRACE_ENABLED
3646N/A
3646N/A// Class hierarchy
3646N/A// - Thread
5947N/A// - VMThread
2086N/A// - WatcherThread
3646N/A// - ConcurrentMarkSweepThread
1177N/A// - JavaThread
3980N/A// - CompilerThread
3980N/A
5058N/A// ======= Thread ========
3980N/A
3980N/A// Support for forcing alignment of thread objects for biased locking
3349N/Avoid* Thread::operator new(size_t size) {
3349N/A if (UseBiasedLocking) {
3349N/A const int alignment = markOopDesc::biased_lock_alignment;
3349N/A size_t aligned_size = size + (alignment - sizeof(intptr_t));
4686N/A void* real_malloc_addr = CHeapObj::operator new(aligned_size);
3349N/A void* aligned_addr = (void*) align_size_up((intptr_t) real_malloc_addr, alignment);
3349N/A assert(((uintptr_t) aligned_addr + (uintptr_t) size) <=
3381N/A ((uintptr_t) real_malloc_addr + (uintptr_t) aligned_size),
3349N/A "JavaThread alignment code overflowed allocated storage");
6608N/A if (TraceBiasedLocking) {
6374N/A if (aligned_addr != real_malloc_addr)
6374N/A tty->print_cr("Aligned thread " INTPTR_FORMAT " to " INTPTR_FORMAT,
6374N/A real_malloc_addr, aligned_addr);
6374N/A }
6374N/A ((Thread*) aligned_addr)->_real_malloc_address = real_malloc_addr;
6374N/A return aligned_addr;
6374N/A } else {
6374N/A return CHeapObj::operator new(size);
6374N/A }
6374N/A}
6374N/A
6374N/Avoid Thread::operator delete(void* p) {
6374N/A if (UseBiasedLocking) {
6374N/A void* real_malloc_addr = ((Thread*) p)->_real_malloc_address;
6158N/A CHeapObj::operator delete(real_malloc_addr);
6571N/A } else {
6571N/A CHeapObj::operator delete(p);
6571N/A }
6571N/A}
6571N/A
6178N/A
6158N/A// Base class for all threads: VMThread, WatcherThread, ConcurrentMarkSweepThread,
6158N/A// JavaThread
6158N/A
6165N/A
6165N/AThread::Thread() {
6174N/A // stack and get_thread
6165N/A set_stack_base(NULL);
6165N/A set_stack_size(0);
6165N/A set_self_raw_id(0);
6165N/A set_lgrp_id(-1);
6165N/A
6165N/A // allocated data structures
6174N/A set_osthread(NULL);
6165N/A set_resource_area(new ResourceArea());
6165N/A set_handle_area(new HandleArea(NULL));
6158N/A set_active_handles(NULL);
6158N/A set_free_handle_block(NULL);
5713N/A set_last_handle_mark(NULL);
6162N/A
5713N/A // This initial value ==> never claimed.
5902N/A _oops_do_parity = 0;
6280N/A
5902N/A // the handle mark links itself to last_handle_mark
5902N/A new HandleMark(this);
5902N/A
5902N/A // plain initialization
5902N/A debug_only(_owned_locks = NULL;)
5902N/A debug_only(_allow_allocation_count = 0;)
5902N/A NOT_PRODUCT(_allow_safepoint_count = 0;)
5902N/A NOT_PRODUCT(_skip_gcalot = false;)
5713N/A CHECK_UNHANDLED_OOPS_ONLY(_gc_locked_out_count = 0;)
3381N/A _jvmti_env_iteration_count = 0;
0N/A set_allocated_bytes(0);
0N/A _vm_operation_started_count = 0;
0N/A _vm_operation_completed_count = 0;
0N/A _current_pending_monitor = NULL;
3381N/A _current_pending_monitor_is_from_java = true;
5058N/A _current_waiting_monitor = NULL;
5058N/A _num_nested_signal = 0;
5058N/A omFreeList = NULL ;
3381N/A omFreeCount = 0 ;
0N/A omFreeProvision = 32 ;
5058N/A omInUseList = NULL ;
5896N/A omInUseCount = 0 ;
1177N/A
1177N/A _SR_lock = new Monitor(Mutex::suspend_resume, "SR_lock", true);
0N/A _suspend_flags = 0;
0N/A
0N/A // thread-specific hashCode stream generator state - Marsaglia shift-xor form
3853N/A _hashStateX = os::random() ;
1177N/A _hashStateY = 842502087 ;
1177N/A _hashStateZ = 0x8767 ; // (int)(3579807591LL & 0xffff) ;
0N/A _hashStateW = 273326509 ;
3853N/A
3853N/A _OnTrap = 0 ;
3853N/A _schedctl = NULL ;
3853N/A _Stalled = 0 ;
3853N/A _TypeTag = 0x2BAD ;
0N/A
3853N/A // Many of the following fields are effectively final - immutable
3853N/A // Note that nascent threads can't use the Native Monitor-Mutex
5896N/A // construct until the _MutexEvent is initialized ...
3853N/A // CONSIDER: instead of using a fixed set of purpose-dedicated ParkEvents
3853N/A // we might instead use a stack of ParkEvents that we could provision on-demand.
0N/A // The stack would act as a cache to avoid calls to ParkEvent::Allocate()
0N/A // and ::Release()
0N/A _ParkEvent = ParkEvent::Allocate (this) ;
0N/A _SleepEvent = ParkEvent::Allocate (this) ;
1177N/A _MutexEvent = ParkEvent::Allocate (this) ;
1177N/A _MuxEvent = ParkEvent::Allocate (this) ;
0N/A
0N/A#ifdef CHECK_UNHANDLED_OOPS
3381N/A if (CheckUnhandledOops) {
3381N/A _unhandled_oops = new UnhandledOops(this);
0N/A }
0N/A#endif // CHECK_UNHANDLED_OOPS
5896N/A#ifdef ASSERT
1177N/A if (UseBiasedLocking) {
1177N/A assert((((uintptr_t) this) & (markOopDesc::biased_lock_alignment - 1)) == 0, "forced alignment of thread object failed");
0N/A assert(this == _real_malloc_address ||
0N/A this == (void*) align_size_up((intptr_t) _real_malloc_address, markOopDesc::biased_lock_alignment),
2086N/A "bug in forced alignment of thread objects");
2086N/A }
2086N/A#endif /* ASSERT */
2086N/A}
2086N/A
2086N/Avoid Thread::initialize_thread_local_storage() {
2086N/A // Note: Make sure this method only calls
2086N/A // non-blocking operations. Otherwise, it might not work
2086N/A // with the thread-startup/safepoint interaction.
2086N/A
2086N/A // During Java thread startup, safepoint code should allow this
2086N/A // method to complete because it may need to allocate memory to
2086N/A // store information for the new thread.
2086N/A
2086N/A // initialize structure dependent on thread local storage
2086N/A ThreadLocalStorage::set_thread(this);
2086N/A
2086N/A // set up any platform-specific state.
2086N/A os::initialize_thread();
2086N/A
2086N/A}
2086N/A
2086N/Avoid Thread::record_stack_base_and_size() {
2086N/A set_stack_base(os::current_stack_base());
2086N/A set_stack_size(os::current_stack_size());
2086N/A}
2086N/A
2086N/A
2086N/AThread::~Thread() {
2086N/A // Reclaim the objectmonitors from the omFreeList of the moribund thread.
2086N/A ObjectSynchronizer::omFlush (this) ;
2086N/A
2284N/A // deallocate data structures
2284N/A delete resource_area();
2284N/A // since the handle marks are using the handle area, we have to deallocated the root
2086N/A // handle mark before deallocating the thread's handle area,
2086N/A assert(last_handle_mark() != NULL, "check we have an element");
2086N/A delete last_handle_mark();
2086N/A assert(last_handle_mark() == NULL, "check we have reached the end");
2086N/A
2086N/A // It's possible we can encounter a null _ParkEvent, etc., in stillborn threads.
2086N/A // We NULL out the fields for good hygiene.
2086N/A ParkEvent::Release (_ParkEvent) ; _ParkEvent = NULL ;
2086N/A ParkEvent::Release (_SleepEvent) ; _SleepEvent = NULL ;
2086N/A ParkEvent::Release (_MutexEvent) ; _MutexEvent = NULL ;
2086N/A ParkEvent::Release (_MuxEvent) ; _MuxEvent = NULL ;
2086N/A
2086N/A delete handle_area();
2086N/A
2086N/A // osthread() can be NULL, if creation of thread failed.
2086N/A if (osthread() != NULL) os::free_thread(osthread());
2086N/A
2086N/A delete _SR_lock;
2086N/A
2086N/A // clear thread local storage if the Thread is deleting itself
2086N/A if (this == Thread::current()) {
2086N/A ThreadLocalStorage::set_thread(NULL);
2086N/A } else {
2086N/A // In the case where we're not the current thread, invalidate all the
2086N/A // caches in case some code tries to get the current thread or the
2086N/A // thread that was destroyed, and gets stale information.
2086N/A ThreadLocalStorage::invalidate_all();
2086N/A }
2086N/A CHECK_UNHANDLED_OOPS_ONLY(if (CheckUnhandledOops) delete unhandled_oops();)
2086N/A}
2086N/A
2086N/A// NOTE: dummy function for assertion purpose.
2086N/Avoid Thread::run() {
2086N/A ShouldNotReachHere();
2086N/A}
2086N/A
3034N/A#ifdef ASSERT
3034N/A// Private method to check for dangling thread pointer
3034N/Avoid check_for_dangling_thread_pointer(Thread *thread) {
4156N/A assert(!thread->is_Java_thread() || Thread::current() == thread || Threads_lock->owned_by_self(),
4156N/A "possibility of dangling Thread pointer");
0N/A}
5947N/A#endif
5947N/A
5947N/A
5947N/A#ifndef PRODUCT
5947N/A// Tracing method for basic thread operations
5947N/Avoid Thread::trace(const char* msg, const Thread* const thread) {
5947N/A if (!TraceThreadEvents) return;
5947N/A ResourceMark rm;
5947N/A ThreadCritical tc;
5947N/A const char *name = "non-Java thread";
5947N/A int prio = -1;
5947N/A if (thread->is_Java_thread()
5947N/A && !thread->is_Compiler_thread()) {
5947N/A // The Threads_lock must be held to get information about
5947N/A // this thread but may not be in some situations when
5947N/A // tracing thread events.
5947N/A bool release_Threads_lock = false;
5947N/A if (!Threads_lock->owned_by_self()) {
5947N/A Threads_lock->lock();
5947N/A release_Threads_lock = true;
5947N/A }
5947N/A JavaThread* jt = (JavaThread *)thread;
5947N/A name = (char *)jt->get_thread_name();
5947N/A oop thread_oop = jt->threadObj();
5947N/A if (thread_oop != NULL) {
5947N/A prio = java_lang_Thread::priority(thread_oop);
5947N/A }
5947N/A if (release_Threads_lock) {
5947N/A Threads_lock->unlock();
5947N/A }
5947N/A }
5947N/A tty->print_cr("Thread::%s " INTPTR_FORMAT " [%lx] %s (prio: %d)", msg, thread, thread->osthread()->thread_id(), name, prio);
5947N/A}
5947N/A#endif
5947N/A
5947N/A
5947N/AThreadPriority Thread::get_priority(const Thread* const thread) {
5947N/A trace("get priority", thread);
5947N/A ThreadPriority priority;
5947N/A // Can return an error!
5947N/A (void)os::get_priority(thread, priority);
5947N/A assert(MinPriority <= priority && priority <= MaxPriority, "non-Java priority found");
5947N/A return priority;
5947N/A}
5947N/A
5947N/Avoid Thread::set_priority(Thread* thread, ThreadPriority priority) {
5947N/A trace("set priority", thread);
5947N/A debug_only(check_for_dangling_thread_pointer(thread);)
5947N/A // Can return an error!
5947N/A (void)os::set_priority(thread, priority);
5947N/A}
5947N/A
5947N/A
5947N/Avoid Thread::start(Thread* thread) {
5947N/A trace("start", thread);
5947N/A // Start is different from resume in that its safety is guaranteed by context or
5947N/A // being called from a Java method synchronized on the Thread object.
5947N/A if (!DisableStartThread) {
5947N/A if (thread->is_Java_thread()) {
5947N/A // Initialize the thread state to RUNNABLE before starting this thread.
5947N/A // Can not set it after the thread started because we do not know the
5947N/A // exact thread state at that time. It could be in MONITOR_WAIT or
5947N/A // in SLEEPING or some other state.
5947N/A java_lang_Thread::set_thread_status(((JavaThread*)thread)->threadObj(),
5947N/A java_lang_Thread::RUNNABLE);
5947N/A }
5947N/A os::start_thread(thread);
5947N/A }
5947N/A}
5947N/A
5947N/A// Enqueue a VM_Operation to do the job for us - sometime later
5947N/Avoid Thread::send_async_exception(oop java_thread, oop java_throwable) {
5947N/A VM_ThreadStop* vm_stop = new VM_ThreadStop(java_thread, java_throwable);
5947N/A VMThread::execute(vm_stop);
5947N/A}
5947N/A
5947N/A
5947N/A//
5947N/A// Check if an external suspend request has completed (or has been
5947N/A// cancelled). Returns true if the thread is externally suspended and
5947N/A// false otherwise.
5947N/A//
5947N/A// The bits parameter returns information about the code path through
5947N/A// the routine. Useful for debugging:
5947N/A//
5947N/A// set in is_ext_suspend_completed():
5947N/A// 0x00000001 - routine was entered
5947N/A// 0x00000010 - routine return false at end
0N/A// 0x00000100 - thread exited (return false)
6133N/A// 0x00000200 - suspend request cancelled (return false)
0N/A// 0x00000400 - thread suspended (return true)
0N/A// 0x00001000 - thread is in a suspend equivalent state (return true)
2342N/A// 0x00002000 - thread is native and walkable (return true)
1008N/A// 0x00004000 - thread is native_trans and walkable (needed retry)
6238N/A//
6238N/A// set in wait_for_ext_suspend_completion():
6238N/A// 0x00010000 - routine was entered
0N/A// 0x00020000 - suspend request cancelled before loop (return false)
0N/A// 0x00040000 - thread suspended before loop (return true)
0N/A// 0x00080000 - suspend request cancelled in loop (return false)
1177N/A// 0x00100000 - thread suspended in loop (return true)
121N/A// 0x00200000 - suspend not completed during retry loop (return false)
1177N/A//
1177N/A
1177N/A// Helper class for tracing suspend wait debug bits.
0N/A//
0N/A// 0x00000100 indicates that the target thread exited before it could
1273N/A// self-suspend which is not a wait failure. 0x00000200, 0x00020000 and
1273N/A// 0x00080000 each indicate a cancelled suspend request so they don't
1273N/A// count as wait failures either.
1273N/A#define DEBUG_FALSE_BITS (0x00000010 | 0x00200000)
5178N/A
1273N/Aclass TraceSuspendDebugBits : public StackObj {
5038N/A private:
1273N/A JavaThread * jt;
1273N/A bool is_wait;
1273N/A bool called_by_wait; // meaningful when !is_wait
1273N/A uint32_t * bits;
1273N/A
1273N/A public:
1273N/A TraceSuspendDebugBits(JavaThread *_jt, bool _is_wait, bool _called_by_wait,
1273N/A uint32_t *_bits) {
1273N/A jt = _jt;
1273N/A is_wait = _is_wait;
1273N/A called_by_wait = _called_by_wait;
1273N/A bits = _bits;
1273N/A }
1273N/A
1273N/A ~TraceSuspendDebugBits() {
1273N/A if (!is_wait) {
1273N/A#if 1
1273N/A // By default, don't trace bits for is_ext_suspend_completed() calls.
1273N/A // That trace is very chatty.
1273N/A return;
1273N/A#else
1960N/A if (!called_by_wait) {
1273N/A // If tracing for is_ext_suspend_completed() is enabled, then only
1273N/A // trace calls to it from wait_for_ext_suspend_completion()
5058N/A return;
0N/A }
121N/A#endif
1177N/A }
1177N/A
1177N/A if (AssertOnSuspendWaitFailure || TraceSuspendWaitFailures) {
1177N/A if (bits != NULL && (*bits & DEBUG_FALSE_BITS) != 0) {
1177N/A MutexLocker ml(Threads_lock); // needed for get_thread_name()
1559N/A ResourceMark rm;
1559N/A
1559N/A tty->print_cr(
3381N/A "Failed wait_for_ext_suspend_completion(thread=%s, debug_bits=%x)",
0N/A jt->get_thread_name(), *bits);
1234N/A
1234N/A guarantee(!AssertOnSuspendWaitFailure, "external suspend wait failed");
0N/A }
0N/A }
984N/A }
0N/A};
0N/A#undef DEBUG_FALSE_BITS
0N/A
0N/A
0N/Abool JavaThread::is_ext_suspend_completed(bool called_by_wait, int delay, uint32_t *bits) {
0N/A TraceSuspendDebugBits tsdb(this, false /* !is_wait */, called_by_wait, bits);
0N/A
0N/A bool did_trans_retry = false; // only do thread_in_native_trans retry once
0N/A bool do_trans_retry; // flag to force the retry
0N/A
0N/A *bits |= 0x00000001;
0N/A
0N/A do {
0N/A do_trans_retry = false;
0N/A
0N/A if (is_exiting()) {
0N/A // Thread is in the process of exiting. This is always checked
0N/A // first to reduce the risk of dereferencing a freed JavaThread.
0N/A *bits |= 0x00000100;
0N/A return false;
0N/A }
0N/A
3381N/A if (!is_external_suspend()) {
3349N/A // Suspend request is cancelled. This is always checked before
3349N/A // is_ext_suspended() to reduce the risk of a rogue resume
3349N/A // confusing the thread that made the suspend request.
3349N/A *bits |= 0x00000200;
3349N/A return false;
3349N/A }
3349N/A
3349N/A if (is_ext_suspended()) {
3349N/A // thread is suspended
3349N/A *bits |= 0x00000400;
3349N/A return true;
3349N/A }
3381N/A
3853N/A // Now that we no longer do hard suspends of threads running
3853N/A // native code, the target thread can be changing thread state
3853N/A // while we are in this routine:
3853N/A //
3853N/A // _thread_in_native -> _thread_in_native_trans -> _thread_blocked
3853N/A //
3853N/A // We save a copy of the thread state as observed at this moment
3853N/A // and make our decision about suspend completeness based on the
729N/A // copy. This closes the race where the thread state is seen as
729N/A // _thread_in_native_trans in the if-thread_blocked check, but is
729N/A // seen as _thread_blocked in if-thread_in_native_trans check.
729N/A JavaThreadState save_state = thread_state();
729N/A
729N/A if (save_state == _thread_blocked && is_suspend_equivalent()) {
729N/A // If the thread's state is _thread_blocked and this blocking
729N/A // condition is known to be equivalent to a suspend, then we can
729N/A // consider the thread to be externally suspended. This means that
729N/A // the code that sets _thread_blocked has been modified to do
729N/A // self-suspension if the blocking condition releases. We also
729N/A // used to check for CONDVAR_WAIT here, but that is now covered by
729N/A // the _thread_blocked with self-suspension check.
729N/A //
729N/A // Return true since we wouldn't be here unless there was still an
729N/A // external suspend request.
729N/A *bits |= 0x00001000;
729N/A return true;
729N/A } else if (save_state == _thread_in_native && frame_anchor()->walkable()) {
729N/A // Threads running native code will self-suspend on native==>VM/Java
729N/A // transitions. If its stack is walkable (should always be the case
0N/A // unless this function is called before the actual java_suspend()
4274N/A // call), then the wait is done.
4274N/A *bits |= 0x00002000;
4274N/A return true;
4274N/A } else if (!called_by_wait && !did_trans_retry &&
4274N/A save_state == _thread_in_native_trans &&
4274N/A frame_anchor()->walkable()) {
4274N/A // The thread is transitioning from thread_in_native to another
4274N/A // thread state. check_safepoint_and_suspend_for_native_trans()
4274N/A // will force the thread to self-suspend. If it hasn't gotten
4274N/A // there yet we may have caught the thread in-between the native
4274N/A // code check above and the self-suspend. Lucky us. If we were
4274N/A // called by wait_for_ext_suspend_completion(), then it
4274N/A // will be doing the retries so we don't have to.
4274N/A //
4274N/A // Since we use the saved thread state in the if-statement above,
0N/A // there is a chance that the thread has already transitioned to
1344N/A // _thread_blocked by the time we get here. In that case, we will
1344N/A // make a single unnecessary pass through the logic below. This
1344N/A // doesn't hurt anything since we still do the trans retry.
1344N/A
1344N/A *bits |= 0x00004000;
1344N/A
1344N/A // Once the thread leaves thread_in_native_trans for another
1344N/A // thread state, we break out of this retry loop. We shouldn't
1344N/A // need this flag to prevent us from getting back here, but
1344N/A // sometimes paranoia is good.
1344N/A did_trans_retry = true;
1344N/A
1344N/A // We wait for the thread to transition to a more usable state.
109N/A for (int i = 1; i <= SuspendRetryCount; i++) {
109N/A // We used to do an "os::yield_all(i)" call here with the intention
109N/A // that yielding would increase on each retry. However, the parameter
109N/A // is ignored on Linux which means the yield didn't scale up. Waiting
4274N/A // on the SR_lock below provides a much more predictable scale up for
4760N/A // the delay. It also provides a simple/direct point to check for any
109N/A // safepoint requests from the VMThread
1238N/A
109N/A // temporarily drops SR_lock while doing wait with safepoint check
1344N/A // (if we're a JavaThread - the WatcherThread can also call this)
1344N/A // and increase delay with each retry
1344N/A SR_lock()->wait(!Thread::current()->is_Java_thread(), i * delay);
1344N/A
1344N/A // check the actual thread state instead of what we saved above
1344N/A if (thread_state() != _thread_in_native_trans) {
110N/A // the thread has transitioned to another thread state so
109N/A // try all the checks (except this one) one more time.
109N/A do_trans_retry = true;
109N/A break;
109N/A }
109N/A } // end retry loop
109N/A
0N/A
0N/A }
0N/A } while (do_trans_retry);
0N/A
0N/A *bits |= 0x00000010;
1344N/A return false;
1344N/A}
1344N/A
1344N/A//
1344N/A// Wait for an external suspend request to complete (or be cancelled).
1344N/A// Returns true if the thread is externally suspended and false otherwise.
729N/A//
729N/Abool JavaThread::wait_for_ext_suspend_completion(int retries, int delay,
729N/A uint32_t *bits) {
729N/A TraceSuspendDebugBits tsdb(this, true /* is_wait */,
729N/A false /* !called_by_wait */, bits);
729N/A
729N/A // local flag copies to minimize SR_lock hold time
729N/A bool is_suspended;
729N/A bool pending;
729N/A uint32_t reset_bits;
1344N/A
729N/A // set a marker so is_ext_suspend_completed() knows we are the caller
729N/A *bits |= 0x00010000;
729N/A
729N/A // We use reset_bits to reinitialize the bits value at the top of
0N/A // each retry loop. This allows the caller to make use of any
0N/A // unused bits for their own marking purposes.
5044N/A reset_bits = *bits;
730N/A
0N/A {
0N/A MutexLockerEx ml(SR_lock(), Mutex::_no_safepoint_check_flag);
0N/A is_suspended = is_ext_suspend_completed(true /* called_by_wait */,
567N/A delay, bits);
662N/A pending = is_external_suspend();
0N/A }
2086N/A // must release SR_lock to allow suspension to complete
2086N/A
2086N/A if (!pending) {
2086N/A // A cancelled suspend request is the only false return from
2086N/A // is_ext_suspend_completed() that keeps us from entering the
2086N/A // retry loop.
2086N/A *bits |= 0x00020000;
2086N/A return false;
2086N/A }
2086N/A
0N/A if (is_suspended) {
0N/A *bits |= 0x00040000;
662N/A return true;
1210N/A }
1210N/A
1210N/A for (int i = 1; i <= retries; i++) {
1210N/A *bits = reset_bits; // reinit to only track last retry
1210N/A
1210N/A // We used to do an "os::yield_all(i)" call here with the intention
567N/A // that yielding would increase on each retry. However, the parameter
567N/A // is ignored on Linux which means the yield didn't scale up. Waiting
3387N/A // on the SR_lock below provides a much more predictable scale up for
3387N/A // the delay. It also provides a simple/direct point to check for any
3387N/A // safepoint requests from the VMThread
3387N/A
3387N/A {
3387N/A MutexLocker ml(SR_lock());
567N/A // wait with safepoint check (if we're a JavaThread - the WatcherThread
563N/A // can also call this) and increase delay with each retry
567N/A SR_lock()->wait(!Thread::current()->is_Java_thread(), i * delay);
712N/A
712N/A is_suspended = is_ext_suspend_completed(true /* called_by_wait */,
730N/A delay, bits);
2033N/A
712N/A // It is possible for the external suspend request to be cancelled
712N/A // (by a resume) before the actual suspend operation is completed.
0N/A // Refresh our local copy to see if we still need to wait.
3381N/A pending = is_external_suspend();
3381N/A }
3381N/A
3381N/A if (!pending) {
3381N/A // A cancelled suspend request is the only false return from
3381N/A // is_ext_suspend_completed() that keeps us from staying in the
0N/A // retry loop.
0N/A *bits |= 0x00080000;
0N/A return false;
0N/A }
0N/A
0N/A if (is_suspended) {
2058N/A *bits |= 0x00100000;
0N/A return true;
0N/A }
114N/A } // end retry loop
114N/A
114N/A // thread did not suspend after all our retries
114N/A *bits |= 0x00200000;
114N/A return false;
114N/A}
0N/A
0N/A#ifndef PRODUCT
0N/Avoid JavaThread::record_jump(address target, address instr, const char* file, int line) {
0N/A
729N/A // This should not need to be atomic as the only way for simultaneous
4760N/A // updates is via interrupts. Even then this should be rare or non-existant
121N/A // and we don't care that much anyway.
121N/A
1210N/A int index = _jmp_ring_index;
6210N/A _jmp_ring_index = (index + 1 ) & (jump_ring_buffer_size - 1);
6210N/A _jmp_ring[index]._target = (intptr_t) target;
6210N/A _jmp_ring[index]._instruction = (intptr_t) instr;
6210N/A _jmp_ring[index]._file = file;
6210N/A _jmp_ring[index]._line = line;
121N/A}
6210N/A#endif /* PRODUCT */
0N/A
0N/A// Called by flat profiler
4156N/A// Callers have already called wait_for_ext_suspend_completion
4156N/A// The assertion for that is currently too complex to put here:
2095N/Abool JavaThread::profile_last_Java_frame(frame* _fr) {
5902N/A bool gotframe = false;
0N/A // self suspension saves needed state.
6158N/A if (has_last_Java_frame() && _anchor.walkable()) {
2046N/A *_fr = pd_last_frame();
2033N/A gotframe = true;
2046N/A }
4156N/A return gotframe;
4156N/A}
4156N/A
0N/Avoid Thread::interrupt(Thread* thread) {
0N/A trace("interrupt", thread);
1607N/A debug_only(check_for_dangling_thread_pointer(thread);)
1607N/A os::interrupt(thread);
1607N/A}
2033N/A
2033N/Abool Thread::is_interrupted(Thread* thread, bool clear_interrupted) {
1607N/A trace("is_interrupted", thread);
0N/A debug_only(check_for_dangling_thread_pointer(thread);)
0N/A // Note: If clear_interrupted==false, this simply fetches and
1177N/A // returns the value of the field osthread()->interrupted().
1177N/A return os::is_interrupted(thread, clear_interrupted);
567N/A}
1559N/A
567N/A
567N/A// GC Support
5902N/Abool Thread::claim_oops_do_par_case(int strong_roots_parity) {
1210N/A jint thread_parity = _oops_do_parity;
1210N/A if (thread_parity != strong_roots_parity) {
1210N/A jint res = Atomic::cmpxchg(strong_roots_parity, &_oops_do_parity, thread_parity);
1210N/A if (res == thread_parity) return true;
1210N/A else {
1210N/A guarantee(res == strong_roots_parity, "Or else what?");
1210N/A assert(SharedHeap::heap()->n_par_threads() > 0,
5902N/A "Should only fail when parallel.");
1008N/A return false;
1210N/A }
1008N/A }
1008N/A assert(SharedHeap::heap()->n_par_threads() > 0,
2086N/A "Should only fail when parallel.");
5902N/A return false;
2086N/A}
2086N/A
2086N/Avoid Thread::oops_do(OopClosure* f, CodeBlobClosure* cf) {
2115N/A active_handles()->oops_do(f);
2115N/A // Do oop for ThreadShadow
1008N/A f->do_oop((oop*)&_pending_exception);
5902N/A handle_area()->oops_do(f);
567N/A}
567N/A
567N/Avoid Thread::nmethods_do(CodeBlobClosure* cf) {
567N/A // no nmethods in a generic thread...
567N/A}
567N/A
567N/Avoid Thread::print_on(outputStream* st) const {
567N/A // get_priority assumes osthread initialized
567N/A if (osthread() != NULL) {
567N/A st->print("prio=%d tid=" INTPTR_FORMAT " ", get_priority(this), this);
567N/A osthread()->print_on(st);
6238N/A }
6238N/A debug_only(if (WizardMode) print_owned_locks_on(st);)
6238N/A}
6238N/A
6238N/A// Thread::print_on_error() is called by fatal error handler. Don't use
2556N/A// any lock or allocate memory.
563N/Avoid Thread::print_on_error(outputStream* st, char* buf, int buflen) const {
712N/A if (is_VM_thread()) st->print("VMThread");
1177N/A else if (is_Compiler_thread()) st->print("CompilerThread");
2710N/A else if (is_Java_thread()) st->print("JavaThread");
2710N/A else if (is_GC_task_thread()) st->print("GCTaskThread");
2710N/A else if (is_Watcher_thread()) st->print("WatcherThread");
2710N/A else if (is_ConcurrentGC_thread()) st->print("ConcurrentGCThread");
2710N/A else st->print("Thread");
2710N/A
2710N/A st->print(" [stack: " PTR_FORMAT "," PTR_FORMAT "]",
2710N/A _stack_base - _stack_size, _stack_base);
2710N/A
3980N/A if (osthread()) {
3980N/A st->print(" [id=%d]", osthread()->thread_id());
3989N/A }
5058N/A}
5058N/A
5058N/A#ifdef ASSERT
5058N/Avoid Thread::print_owned_locks_on(outputStream* st) const {
3980N/A Monitor *cur = _owned_locks;
5058N/A if (cur == NULL) {
5058N/A st->print(" (no locks) ");
5058N/A } else {
5058N/A st->print_cr(" Locks owned:");
5058N/A while(cur) {
5058N/A cur->print_on(st);
5058N/A cur = cur->next();
5058N/A }
5058N/A }
5058N/A}
5058N/A
5058N/Astatic int ref_use_count = 0;
5058N/A
5058N/Abool Thread::owns_locks_but_compiled_lock() const {
5058N/A for(Monitor *cur = _owned_locks; cur; cur = cur->next()) {
5058N/A if (cur != Compile_lock) return true;
5058N/A }
5058N/A return false;
5058N/A}
5058N/A
5058N/A
5058N/A#endif
5058N/A
5058N/A#ifndef PRODUCT
5058N/A
5058N/A// The flag: potential_vm_operation notifies if this particular safepoint state could potential
3980N/A// invoke the vm-thread (i.e., and oop allocation). In that case, we also have to make sure that
2710N/A// no threads which allow_vm_block's are held
0N/Avoid Thread::check_for_valid_safepoint_state(bool potential_vm_operation) {
563N/A // Check if current thread is allowed to block at a safepoint
0N/A if (!(_allow_safepoint_count == 0))
0N/A fatal("Possible safepoint reached by thread that does not allow it");
0N/A if (is_Java_thread() && ((JavaThread*)this)->thread_state() != _thread_in_vm) {
0N/A fatal("LEAF method calling lock?");
2143N/A }
0N/A
0N/A#ifdef ASSERT
1362N/A if (potential_vm_operation && is_Java_thread()
1362N/A && !Universe::is_bootstrapping()) {
1362N/A // Make sure we do not hold any locks that the VM thread also uses.
1362N/A // This could potentially lead to deadlocks
1362N/A for(Monitor *cur = _owned_locks; cur; cur = cur->next()) {
1362N/A // Threads_lock is special, since the safepoint synchronization will not start before this is
1362N/A // acquired. Hence, a JavaThread cannot be holding it at a safepoint. So is VMOperationRequest_lock,
1362N/A // since it is used to transfer control between JavaThreads and the VMThread
1362N/A // Do not *exclude* any locks unless you are absolutly sure it is correct. Ask someone else first!
1362N/A if ( (cur->allow_vm_block() &&
1362N/A cur != Threads_lock &&
1362N/A cur != Compile_lock && // Temporary: should not be necessary when we get spearate compilation
0N/A cur != VMOperationRequest_lock &&
0N/A cur != VMOperationQueue_lock) ||
1960N/A cur->rank() == Mutex::special) {
0N/A warning("Thread holding lock at safepoint that vm can block on: %s", cur->name());
0N/A }
0N/A }
1960N/A }
0N/A
563N/A if (GCALotAtAllSafepoints) {
563N/A // We could enter a safepoint here and thus have a gc
712N/A InterfaceSupport::check_gc_alot();
1008N/A }
6210N/A#endif
1008N/A}
0N/A#endif
0N/A
2098N/Abool Thread::is_in_stack(address adr) const {
5902N/A assert(Thread::current() == this, "is_in_stack can only be called from current thread");
0N/A address end = os::current_stack_pointer();
6158N/A if (stack_base() >= adr && adr >= end) return true;
2046N/A
2033N/A return false;
2046N/A}
4156N/A
4156N/A
4156N/A// We had to move these methods here, because vm threads get into ObjectSynchronizer::enter
0N/A// However, there is a note in JavaThread::is_lock_owned() about the VM threads not being
0N/A// used for compilation in the future. If that change is made, the need for these methods
3381N/A// should be revisited, and they should be removed if possible.
1607N/A
1607N/Abool Thread::is_lock_owned(address adr) const {
2046N/A return on_local_stack(adr);
2033N/A}
1607N/A
1607N/Abool Thread::set_as_starting_thread() {
2086N/A // NOTE: this must be called inside the main thread.
2710N/A return os::create_main_thread((JavaThread*)this);
2086N/A}
3980N/A
2122N/Astatic void initialize_class(Symbol* class_name, TRAPS) {
2122N/A klassOop klass = SystemDictionary::resolve_or_fail(class_name, true, CHECK);
2122N/A instanceKlass::cast(klass)->initialize(CHECK);
2122N/A}
0N/A
1960N/A
2033N/A// Creates the initial ThreadGroup
2046N/Astatic Handle create_initial_thread_group(TRAPS) {
2046N/A klassOop k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_ThreadGroup(), true, CHECK_NH);
712N/A instanceKlassHandle klass (THREAD, k);
563N/A
563N/A Handle system_instance = klass->allocate_instance_handle(CHECK_NH);
5902N/A {
1210N/A JavaValue result(T_VOID);
1210N/A JavaCalls::call_special(&result,
1210N/A system_instance,
1210N/A klass,
1210N/A vmSymbols::object_initializer_name(),
1210N/A vmSymbols::void_method_signature(),
1210N/A CHECK_NH);
5902N/A }
1008N/A Universe::set_system_thread_group(system_instance());
1210N/A
1008N/A Handle main_instance = klass->allocate_instance_handle(CHECK_NH);
1008N/A {
4495N/A JavaValue result(T_VOID);
4495N/A Handle string = java_lang_String::create_from_str("main", CHECK_NH);
4495N/A JavaCalls::call_special(&result,
4495N/A main_instance,
4495N/A klass,
4495N/A vmSymbols::object_initializer_name(),
4495N/A vmSymbols::threadgroup_string_void_signature(),
1008N/A system_instance,
5902N/A string,
1008N/A CHECK_NH);
1008N/A }
1008N/A return main_instance;
1008N/A}
4495N/A
1008N/A// Creates the initial Thread
563N/Astatic oop create_initial_thread(Handle thread_group, JavaThread* thread, TRAPS) {
563N/A klassOop k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_Thread(), true, CHECK_NULL);
563N/A instanceKlassHandle klass (THREAD, k);
1008N/A instanceHandle thread_oop = klass->allocate_instance_handle(CHECK_NULL);
563N/A
563N/A java_lang_Thread::set_thread(thread_oop(), thread);
563N/A java_lang_Thread::set_priority(thread_oop(), NormPriority);
563N/A thread->set_threadObj(thread_oop());
563N/A
563N/A Handle string = java_lang_String::create_from_str("main", CHECK_NULL);
712N/A
4156N/A JavaValue result(T_VOID);
4156N/A JavaCalls::call_special(&result, thread_oop,
4156N/A klass,
4156N/A vmSymbols::object_initializer_name(),
4358N/A vmSymbols::threadgroup_string_void_signature(),
1008N/A thread_group,
1008N/A string,
6608N/A CHECK_NULL);
6374N/A return thread_oop();
6374N/A}
0N/A
0N/Astatic void call_initializeSystemClass(TRAPS) {
0N/A klassOop k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_System(), true, CHECK);
3214N/A instanceKlassHandle klass (THREAD, k);
3214N/A
3214N/A JavaValue result(T_VOID);
3381N/A JavaCalls::call_static(&result, klass, vmSymbols::initializeSystemClass_name(),
3381N/A vmSymbols::void_method_signature(), CHECK);
3214N/A}
3214N/A
3214N/A// General purpose hook into Java code, run once when the VM is initialized.
3090N/A// The Java library method itself may be changed independently from the VM.
3214N/Astatic void call_postVMInitHook(TRAPS) {
3214N/A klassOop k = SystemDictionary::PostVMInitHook_klass();
3214N/A instanceKlassHandle klass (THREAD, k);
3214N/A if (klass.not_null()) {
3090N/A JavaValue result(T_VOID);
3090N/A JavaCalls::call_static(&result, klass, vmSymbols::run_method_name(),
6158N/A vmSymbols::void_method_signature(),
3090N/A CHECK);
3090N/A }
3214N/A}
3764N/A
3381N/Astatic void reset_vm_info_property(TRAPS) {
3214N/A // the vm info string
3214N/A ResourceMark rm(THREAD);
3214N/A const char *vm_info = VM_Version::vm_info_string();
3214N/A
3214N/A // java.lang.System class
3214N/A klassOop k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_System(), true, CHECK);
3214N/A instanceKlassHandle klass (THREAD, k);
3214N/A
3214N/A // setProperty arguments
3214N/A Handle key_str = java_lang_String::create_from_str("java.vm.info", CHECK);
3214N/A Handle value_str = java_lang_String::create_from_str(vm_info, CHECK);
3214N/A
6158N/A // return value
3214N/A JavaValue r(T_OBJECT);
3214N/A
3214N/A // public static String setProperty(String key, String value);
3764N/A JavaCalls::call_static(&r,
3214N/A klass,
3381N/A vmSymbols::setProperty_name(),
3090N/A vmSymbols::string_string_string_signature(),
6608N/A key_str,
6374N/A value_str,
6608N/A CHECK);
6374N/A}
6374N/A
6608N/A
6374N/Avoid JavaThread::allocate_threadObj(Handle thread_group, char* thread_name, bool daemon, TRAPS) {
6374N/A assert(thread_group.not_null(), "thread group should be specified");
6608N/A assert(threadObj() == NULL, "should only create Java thread object once");
6374N/A
6374N/A klassOop k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_Thread(), true, CHECK);
6608N/A instanceKlassHandle klass (THREAD, k);
6374N/A instanceHandle thread_oop = klass->allocate_instance_handle(CHECK);
6374N/A
6374N/A java_lang_Thread::set_thread(thread_oop(), this);
6374N/A java_lang_Thread::set_priority(thread_oop(), NormPriority);
6374N/A set_threadObj(thread_oop());
6374N/A
0N/A JavaValue result(T_VOID);
0N/A if (thread_name != NULL) {
121N/A Handle name = java_lang_String::create_from_str(thread_name, CHECK);
0N/A // Thread gets assigned specified name and null target
0N/A JavaCalls::call_special(&result,
1960N/A thread_oop,
0N/A klass,
2556N/A vmSymbols::object_initializer_name(),
2556N/A vmSymbols::threadgroup_string_void_signature(),
2556N/A thread_group, // Argument 1
2556N/A name, // Argument 2
2556N/A THREAD);
2556N/A } else {
6238N/A // Thread gets assigned name "Thread-nnn" and null target
6318N/A // (java.lang.Thread doesn't have a constructor taking only a ThreadGroup argument)
6318N/A JavaCalls::call_special(&result,
6318N/A thread_oop,
6238N/A klass,
6238N/A vmSymbols::object_initializer_name(),
6238N/A vmSymbols::threadgroup_runnable_void_signature(),
6238N/A thread_group, // Argument 1
6238N/A Handle(), // Argument 2
6318N/A THREAD);
6318N/A }
6318N/A
6318N/A
6318N/A if (daemon) {
6238N/A java_lang_Thread::set_daemon(thread_oop());
6238N/A }
6238N/A
6238N/A if (HAS_PENDING_EXCEPTION) {
6238N/A return;
2556N/A }
2556N/A
2556N/A KlassHandle group(this, SystemDictionary::ThreadGroup_klass());
2556N/A Handle threadObj(this, this->threadObj());
2556N/A
2556N/A JavaCalls::call_special(&result,
2556N/A thread_group,
2556N/A group,
2556N/A vmSymbols::add_method_name(),
2556N/A vmSymbols::thread_void_signature(),
0N/A threadObj, // Arg 1
2086N/A THREAD);
2086N/A
2710N/A
2086N/A}
3980N/A
3980N/A// NamedThread -- non-JavaThread subclasses with multiple
3980N/A// uniquely named instances should derive from this.
3980N/ANamedThread::NamedThread() : Thread() {
2122N/A _name = NULL;
2122N/A _processed_thread = NULL;
2122N/A}
3381N/A
1960N/ANamedThread::~NamedThread() {
2556N/A if (_name != NULL) {
6131N/A FREE_C_HEAP_ARRAY(char, _name);
6131N/A _name = NULL;
4495N/A }
6131N/A}
4495N/A
4495N/Avoid NamedThread::set_name(const char* format, ...) {
4495N/A guarantee(_name == NULL, "Only get to set name once.");
4495N/A _name = NEW_C_HEAP_ARRAY(char, max_name_len);
4495N/A guarantee(_name != NULL, "alloc failure");
4495N/A va_list ap;
4495N/A va_start(ap, format);
4495N/A jio_vsnprintf(_name, max_name_len, format, ap);
4495N/A va_end(ap);
4495N/A}
4495N/A
4495N/A// ======= WatcherThread ========
4495N/A
4495N/A// The watcher thread exists to simulate timer interrupts. It should
4495N/A// be replaced by an abstraction over whatever native support for
4495N/A// timer interrupts exists on the platform.
4495N/A
4495N/AWatcherThread* WatcherThread::_watcher_thread = NULL;
4495N/Avolatile bool WatcherThread::_should_terminate = false;
4495N/A
4495N/AWatcherThread::WatcherThread() : Thread() {
4495N/A assert(watcher_thread() == NULL, "we can only allocate one WatcherThread");
4495N/A if (os::create_thread(this, os::watcher_thread)) {
4495N/A _watcher_thread = this;
4495N/A
4495N/A // Set the watcher thread to the highest OS priority which should not be
4495N/A // used, unless a Java thread with priority java.lang.Thread.MAX_PRIORITY
4495N/A // is created. The only normal thread using this priority is the reference
4495N/A // handler thread, which runs for very short intervals only.
4495N/A // If the VMThread's priority is not lower than the WatcherThread profiling
4495N/A // will be inaccurate.
4495N/A os::set_priority(this, MaxPriority);
4495N/A if (!DisableStartThread) {
4495N/A os::start_thread(this);
6131N/A }
6131N/A }
6131N/A}
6131N/A
712N/Avoid WatcherThread::run() {
6131N/A assert(this == watcher_thread(), "just checking");
5020N/A
6131N/A this->record_stack_base_and_size();
6131N/A this->initialize_thread_local_storage();
5020N/A this->set_active_handles(JNIHandleBlock::allocate_block());
563N/A while(!_should_terminate) {
563N/A assert(watcher_thread() == Thread::current(), "thread consistency check");
712N/A assert(watcher_thread() == this, "thread consistency check");
6174N/A
6174N/A // Calculate how long it'll be until the next PeriodicTask work
0N/A // should be done, and sleep that amount of time.
3381N/A size_t time_to_wait = PeriodicTask::time_to_wait();
1008N/A
1008N/A // we expect this to timeout - we only ever get unparked when
1008N/A // we should terminate
4358N/A {
3534N/A OSThreadWaitState osts(this->osthread(), false /* not Object.wait() */);
3534N/A
2976N/A jlong prev_time = os::javaTimeNanos();
2976N/A for (;;) {
2976N/A int res= _SleepEvent->park(time_to_wait);
2976N/A if (res == OS_TIMEOUT || _should_terminate)
1008N/A break;
6238N/A // spurious wakeup of some kind
5607N/A jlong now = os::javaTimeNanos();
0N/A time_to_wait -= (now - prev_time) / 1000000;
3381N/A if (time_to_wait <= 0)
3349N/A break;
6256N/A prev_time = now;
6256N/A }
6256N/A }
6256N/A
6256N/A if (is_error_reported()) {
6256N/A // A fatal error has happened, the error handler(VMError::report_and_die)
6256N/A // should abort JVM after creating an error log file. However in some
6256N/A // rare cases, the error handler itself might deadlock. Here we try to
6256N/A // kill JVM if the fatal error handler fails to abort in 2 minutes.
6256N/A //
6256N/A // This code is in WatcherThread because WatcherThread wakes up
6280N/A // periodically so the fatal error handler doesn't need to do anything;
6256N/A // also because the WatcherThread is less likely to crash than other
6256N/A // threads.
6280N/A
6256N/A for (;;) {
6256N/A if (!ShowMessageBoxOnError
4495N/A && (OnError == NULL || OnError[0] == '\0')
6131N/A && Arguments::abort_hook() == NULL) {
6238N/A os::sleep(this, 2 * 60 * 1000, false);
920N/A fdStream err(defaultStream::output_fd());
920N/A err.print_raw_cr("# [ timer expired, abort... ]");
920N/A // skip atexit/vm_exit/vm_abort hooks
920N/A os::die();
920N/A }
920N/A
920N/A // Wake up 5 seconds later, the fatal handler may reset OnError or
920N/A // ShowMessageBoxOnError when it is ready to abort.
920N/A os::sleep(this, 5 * 1000, false);
920N/A }
920N/A }
6238N/A
6238N/A PeriodicTask::real_time_tick(time_to_wait);
6238N/A
0N/A // If we have no more tasks left due to dynamic disenrollment,
0N/A // shut down the thread since we don't currently support dynamic enrollment
4358N/A if (PeriodicTask::num_tasks() == 0) {
6238N/A _should_terminate = true;
0N/A }
0N/A }
0N/A
6238N/A // Signal that it is terminated
107N/A {
107N/A MutexLockerEx mu(Terminator_lock, Mutex::_no_safepoint_check_flag);
107N/A _watcher_thread = NULL;
29N/A Terminator_lock->notify();
29N/A }
29N/A
6374N/A // Thread destructor usually does this..
29N/A ThreadLocalStorage::set_thread(NULL);
29N/A}
29N/A
29N/Avoid WatcherThread::start() {
3537N/A if (watcher_thread() == NULL) {
6307N/A _should_terminate = false;
3012N/A // Create the single instance of WatcherThread
3012N/A new WatcherThread();
2549N/A }
547N/A}
2549N/A
547N/Avoid WatcherThread::stop() {
84N/A // it is ok to take late safepoints here, if needed
565N/A MutexLocker mu(Terminator_lock);
712N/A _should_terminate = true;
1345N/A OrderAccess::fence(); // ensure WatcherThread sees update in main loop
2556N/A
2556N/A Thread* watcher = watcher_thread();
2556N/A if (watcher != NULL)
2556N/A watcher->_SleepEvent->unpark();
6280N/A
6280N/A while(watcher_thread() != NULL) {
6280N/A // This wait should make safepoint checks, wait without a timeout,
6280N/A // and wait as a suspend-equivalent condition.
6280N/A //
6280N/A // Note: If the FlatProfiler is running, then this thread is waiting
2556N/A // for the WatcherThread to terminate and the WatcherThread, via the
2556N/A // FlatProfiler task, is waiting for the external suspend request on
2556N/A // this thread to complete. wait_for_ext_suspend_completion() will
2556N/A // eventually timeout, but that takes time. Making this wait a
2556N/A // suspend-equivalent condition solves that timeout problem.
2556N/A //
2556N/A Terminator_lock->wait(!Mutex::_no_safepoint_check_flag, 0,
2556N/A Mutex::_as_suspend_equivalent_flag);
6280N/A }
6280N/A}
6280N/A
6280N/Avoid WatcherThread::print_on(outputStream* st) const {
6280N/A st->print("\"%s\" ", name());
6280N/A Thread::print_on(st);
2556N/A st->cr();
2556N/A}
2556N/A
2556N/A// ======= JavaThread ========
2556N/A
3853N/A// A JavaThread is a normal Java thread
3853N/A
2556N/Avoid JavaThread::initialize() {
6280N/A // Initialize fields
6280N/A
6280N/A // Set the claimed par_id to -1 (ie not claiming any par_ids)
6280N/A set_claimed_par_id(-1);
6280N/A
6280N/A set_saved_exception_pc(NULL);
2556N/A set_threadObj(NULL);
2556N/A _anchor.clear();
3853N/A set_entry_point(NULL);
2556N/A set_jni_functions(jni_functions());
2556N/A set_callee_target(NULL);
2556N/A set_vm_result(NULL);
485N/A set_vm_result_2(NULL);
6178N/A set_vframe_array_head(NULL);
485N/A set_vframe_array_last(NULL);
1197N/A set_deferred_locals(NULL);
1197N/A set_deopt_mark(NULL);
6178N/A set_deopt_nmethod(NULL);
6178N/A clear_must_deopt_id();
6178N/A set_monitor_chunks(NULL);
6238N/A set_next(NULL);
6238N/A set_thread_state(_thread_new);
6238N/A _terminated = _not_terminated;
0N/A _privileged_stack_top = NULL;
4575N/A _array_for_gc = NULL;
4575N/A _suspend_equivalent = false;
0N/A _in_deopt_handler = 0;
0N/A _doing_unsafe_access = false;
0N/A _stack_guard_state = stack_guard_unused;
1960N/A _exception_oop = NULL;
6238N/A _exception_pc = 0;
6238N/A _exception_handler_pc = 0;
6238N/A _is_method_handle_return = 0;
6238N/A _jvmti_thread_state= NULL;
6238N/A _should_post_on_exceptions_flag = JNI_FALSE;
6238N/A _jvmti_get_loaded_classes_closure = NULL;
6238N/A _interp_only_mode = 0;
6238N/A _special_runtime_exit_condition = _no_async_condition;
6238N/A _pending_async_exception = NULL;
6238N/A _is_compiling = false;
6238N/A _thread_stat = NULL;
6238N/A _thread_stat = new ThreadStatistics();
0N/A _blocked_on_compilation = false;
1559N/A _jni_active_critical = 0;
3381N/A _do_not_unlock_if_synchronized = false;
2308N/A _cached_monitor_info = NULL;
2308N/A _parker = Parker::Allocate(this) ;
2308N/A
2308N/A#ifndef PRODUCT
2308N/A _jmp_ring_index = 0;
0N/A for (int ji = 0 ; ji < jump_ring_buffer_size ; ji++ ) {
0N/A record_jump(NULL, NULL, NULL, 0);
6560N/A }
6560N/A#endif /* PRODUCT */
6560N/A
6571N/A set_thread_profiler(NULL);
6560N/A if (FlatProfiler::is_active()) {
6560N/A // This is where we would decide to either give each thread it's own profiler
6560N/A // or use one global one from FlatProfiler,
6560N/A // or up to some count of the number of profiled threads, etc.
6560N/A ThreadProfiler* pp = new ThreadProfiler();
6560N/A pp->engage();
6560N/A set_thread_profiler(pp);
6560N/A }
6560N/A
6560N/A // Setup safepoint state info for this thread
6560N/A ThreadSafepointState::create(this);
6560N/A
6560N/A debug_only(_java_call_counter = 0);
6560N/A
6560N/A // JVMTI PopFrame support
6560N/A _popframe_condition = popframe_inactive;
6560N/A _popframe_preserved_args = NULL;
6560N/A _popframe_preserved_args_size = 0;
6560N/A
6560N/A pd_initialize();
6560N/A}
6560N/A
6560N/A#ifndef SERIALGC
6560N/ASATBMarkQueueSet JavaThread::_satb_mark_queue_set;
6560N/ADirtyCardQueueSet JavaThread::_dirty_card_queue_set;
6560N/A#endif // !SERIALGC
6560N/A
6560N/AJavaThread::JavaThread(bool is_attaching_via_jni) :
6560N/A Thread()
6560N/A#ifndef SERIALGC
6560N/A , _satb_mark_queue(&_satb_mark_queue_set),
6561N/A _dirty_card_queue(&_dirty_card_queue_set)
6560N/A#endif // !SERIALGC
6560N/A{
6560N/A initialize();
6560N/A if (is_attaching_via_jni) {
6560N/A _jni_attach_state = _attaching_via_jni;
6560N/A } else {
6560N/A _jni_attach_state = _not_attaching_via_jni;
6560N/A }
6560N/A assert(_deferred_card_mark.is_empty(), "Default MemRegion ctor");
6560N/A}
6560N/A
6560N/Abool JavaThread::reguard_stack(address cur_sp) {
6560N/A if (_stack_guard_state != stack_guard_yellow_disabled) {
6560N/A return true; // Stack already guarded or guard pages not needed.
6561N/A }
6560N/A
6560N/A if (register_stack_overflow()) {
6560N/A // For those architectures which have separate register and
6560N/A // memory stacks, we must check the register stack to see if
6560N/A // it has overflowed.
6560N/A return false;
6560N/A }
6560N/A
6560N/A // Java code never executes within the yellow zone: the latter is only
6560N/A // there to provoke an exception during stack banging. If java code
6560N/A // is executing there, either StackShadowPages should be larger, or
6561N/A // some exception code in c1, c2 or the interpreter isn't unwinding
6561N/A // when it should.
6560N/A guarantee(cur_sp > stack_yellow_zone_base(), "not enough space to reguard - increase StackShadowPages");
6560N/A
6560N/A enable_stack_yellow_zone();
6560N/A return true;
6560N/A}
6560N/A
6560N/Abool JavaThread::reguard_stack(void) {
6560N/A return reguard_stack(os::current_stack_pointer());
6560N/A}
3069N/A
3069N/A
6131N/Avoid JavaThread::block_if_vm_exited() {
3069N/A if (_terminated == _vm_exited) {
6131N/A // _vm_exited is set at safepoint, and Threads_lock is never released
3069N/A // we will block here forever
3069N/A Threads_lock->lock_without_safepoint_check();
3069N/A ShouldNotReachHere();
3069N/A }
3069N/A}
3069N/A
3069N/A
3069N/A// Remove this ifdef when C1 is ported to the compiler interface.
3069N/Astatic void compiler_thread_entry(JavaThread* thread, TRAPS);
6238N/A
6283N/AJavaThread::JavaThread(ThreadFunction entry_point, size_t stack_sz) :
6521N/A Thread()
6521N/A#ifndef SERIALGC
6521N/A , _satb_mark_queue(&_satb_mark_queue_set),
6521N/A _dirty_card_queue(&_dirty_card_queue_set)
6521N/A#endif // !SERIALGC
6647N/A{
6647N/A if (TraceThreadEvents) {
6521N/A tty->print_cr("creating thread %p", this);
6521N/A }
6521N/A initialize();
6521N/A _jni_attach_state = _not_attaching_via_jni;
6521N/A set_entry_point(entry_point);
6521N/A // Create the native thread itself.
6521N/A // %note runtime_23
6521N/A os::ThreadType thr_type = os::java_thread;
6647N/A thr_type = entry_point == &compiler_thread_entry ? os::compiler_thread :
6521N/A os::java_thread;
6521N/A os::create_thread(this, thr_type, stack_sz);
6521N/A
6521N/A // The _osthread may be NULL here because we ran out of memory (too many threads active).
6521N/A // We need to throw and OutOfMemoryError - however we cannot do this here because the caller
6521N/A // may hold a lock and all locks must be unlocked before throwing the exception (throwing
6521N/A // the exception consists of creating the exception object & initializing it, initialization
6521N/A // will leave the VM via a JavaCall and then all locks must be unlocked).
6521N/A //
6521N/A // The thread is still suspended when we reach here. Thread must be explicit started
6521N/A // by creator! Furthermore, the thread must also explicitly be added to the Threads list
6521N/A // by calling Threads:add. The reason why this is not done here, is because the thread
6647N/A // object must be fully initialized (take a look at JVM_Start)
6521N/A}
6521N/A
6521N/AJavaThread::~JavaThread() {
6521N/A if (TraceThreadEvents) {
6521N/A tty->print_cr("terminate thread %p", this);
6521N/A }
3069N/A
3069N/A // JSR166 -- return the parker to the free list
3069N/A Parker::Release(_parker);
3069N/A _parker = NULL ;
3069N/A
3079N/A // Free any remaining previous UnrollBlock
6647N/A vframeArray* old_array = vframe_array_last();
6521N/A
6543N/A if (old_array != NULL) {
6647N/A Deoptimization::UnrollBlock* old_info = old_array->unroll_block();
6521N/A old_array->set_unroll_block(NULL);
6647N/A delete old_info;
6543N/A delete old_array;
6647N/A }
6521N/A
6521N/A GrowableArray<jvmtiDeferredLocalVariableSet*>* deferred = deferred_locals();
6647N/A if (deferred != NULL) {
6642N/A // This can only happen if thread is destroyed before deoptimization occurs.
6647N/A assert(deferred->length() != 0, "empty array!");
6238N/A do {
6238N/A jvmtiDeferredLocalVariableSet* dlv = deferred->at(0);
6521N/A deferred->remove_at(0);
6521N/A // individual jvmtiDeferredLocalVariableSet are CHeapObj's
6238N/A delete dlv;
6647N/A } while (deferred->length() != 0);
6521N/A delete deferred;
3069N/A }
3069N/A
3069N/A // All Java related clean up happens in exit
3069N/A ThreadSafepointState::destroy(this);
3069N/A if (_thread_profiler != NULL) delete _thread_profiler;
3069N/A if (_thread_stat != NULL) delete _thread_stat;
6647N/A}
6238N/A
6238N/A
6238N/A// The first routine called by a new Java thread
6238N/Avoid JavaThread::run() {
6238N/A // initialize thread-local alloc buffer related fields
6238N/A this->initialize_tlab();
6238N/A
6238N/A // used to test validitity of stack trace backs
6238N/A this->record_base_of_stack_pointer();
6238N/A
6238N/A // Record real stack base and size.
6238N/A this->record_stack_base_and_size();
6238N/A
6238N/A // Initialize thread local storage; set before calling MutexLocker
6642N/A this->initialize_thread_local_storage();
6642N/A
6642N/A this->create_stack_guard_pages();
6642N/A
6238N/A this->cache_global_variables();
6238N/A
6238N/A // Thread is now sufficient initialized to be handled by the safepoint code as being
6238N/A // in the VM. Change thread state from _thread_new to _thread_in_vm
6280N/A ThreadStateTransition::transition_and_fence(this, _thread_new, _thread_in_vm);
6238N/A
6238N/A assert(JavaThread::current() == this, "sanity check");
6238N/A assert(!Thread::current()->owns_locks(), "sanity check");
6238N/A
6283N/A DTRACE_THREAD_PROBE(start, this);
6238N/A
6238N/A // This operation might block. We call that after all safepoint checks for a new thread has
6310N/A // been completed.
6238N/A this->set_active_handles(JNIHandleBlock::allocate_block());
6238N/A
6647N/A if (JvmtiExport::should_post_thread_life()) {
6642N/A JvmtiExport::post_thread_start(this);
6642N/A }
6630N/A
6642N/A // We call another function to do the rest so we are sure that the stack addresses used
6642N/A // from there will be lower than the stack base just computed
6238N/A thread_main_inner();
6649N/A
6238N/A // Note, thread is no longer valid at this point!
6280N/A}
6290N/A
6635N/A
6642N/Avoid JavaThread::thread_main_inner() {
6238N/A assert(JavaThread::current() == this, "sanity check");
6713N/A assert(this->threadObj() != NULL, "just checking");
6238N/A
6642N/A // Execute thread entry point unless this thread has a pending exception
6238N/A // or has been stopped before starting.
6642N/A // Note: Due to JVM_StopThread we can have pending exceptions already!
6713N/A if (!this->has_pending_exception() &&
6238N/A !java_lang_Thread::is_stillborn(this->threadObj())) {
6642N/A {
6238N/A ResourceMark rm(this);
6642N/A this->set_native_thread_name(this->get_thread_name());
6647N/A }
6716N/A HandleMark hm(this);
6642N/A this->entry_point()(this, this);
6642N/A }
6647N/A
6238N/A DTRACE_THREAD_PROBE(stop, this);
6238N/A
1177N/A this->exit(false);
0N/A delete this;
0N/A}
0N/A
6647N/A
0N/Astatic void ensure_join(JavaThread* thread) {
6647N/A // We do not need to grap the Threads_lock, since we are operating on ourself.
6647N/A Handle threadObj(thread, thread->threadObj());
6647N/A assert(threadObj.not_null(), "java thread object must exist");
6647N/A ObjectLocker lock(threadObj, thread);
6647N/A // Ignore pending exception (ThreadDeath), since we are exiting anyway
6647N/A thread->clear_pending_exception();
6647N/A // Thread is exiting. So set thread_status field in java.lang.Thread class to TERMINATED.
6647N/A java_lang_Thread::set_thread_status(threadObj(), java_lang_Thread::TERMINATED);
6647N/A // Clear the native thread instance - this makes isAlive return false and allows the join()
6647N/A // to complete once we've done the notify_all below
6647N/A java_lang_Thread::set_thread(threadObj(), NULL);
6647N/A lock.notify_all(thread);
6647N/A // Ignore pending exception (ThreadDeath), since we are exiting anyway
0N/A thread->clear_pending_exception();
0N/A}
5902N/A
3107N/A
0N/A// For any new cleanup additions, please check to see if they need to be applied to
0N/A// cleanup_failed_attach_current_thread as well.
0N/Avoid JavaThread::exit(bool destroy_vm, ExitType exit_type) {
0N/A assert(this == JavaThread::current(), "thread consistency check");
0N/A if (!InitializeJavaLangSystem) return;
0N/A
0N/A HandleMark hm(this);
5902N/A Handle uncaught_exception(this, this->pending_exception());
3107N/A this->clear_pending_exception();
0N/A Handle threadObj(this, this->threadObj());
0N/A assert(threadObj.not_null(), "Java thread object should be created");
0N/A
0N/A if (get_thread_profiler() != NULL) {
0N/A get_thread_profiler()->disengage();
0N/A ResourceMark rm;
0N/A get_thread_profiler()->print(get_thread_name());
0N/A }
0N/A
3000N/A
3000N/A // FIXIT: This code should be moved into else part, when reliable 1.2/1.3 check is in place
3000N/A {
3000N/A EXCEPTION_MARK;
3000N/A
1960N/A CLEAR_PENDING_EXCEPTION;
0N/A }
0N/A // FIXIT: The is_null check is only so it works better on JDK1.2 VM's. This
0N/A // has to be fixed by a runtime query method
0N/A if (!destroy_vm || JDK_Version::is_jdk12x_version()) {
0N/A // JSR-166: change call from from ThreadGroup.uncaughtException to
0N/A // java.lang.Thread.dispatchUncaughtException
0N/A if (uncaught_exception.not_null()) {
0N/A Handle group(this, java_lang_Thread::threadGroup(threadObj()));
3058N/A Events::log("uncaught exception INTPTR_FORMAT " " INTPTR_FORMAT " " INTPTR_FORMAT",
4495N/A (address)uncaught_exception(), (address)threadObj(), (address)group());
4495N/A {
4495N/A EXCEPTION_MARK;
4495N/A // Check if the method Thread.dispatchUncaughtException() exists. If so
4495N/A // call it. Otherwise we have an older library without the JSR-166 changes,
4495N/A // so call ThreadGroup.uncaughtException()
4495N/A KlassHandle recvrKlass(THREAD, threadObj->klass());
6131N/A CallInfo callinfo;
6131N/A KlassHandle thread_klass(THREAD, SystemDictionary::Thread_klass());
0N/A LinkResolver::resolve_virtual_call(callinfo, threadObj, recvrKlass, thread_klass,
0N/A vmSymbols::dispatchUncaughtException_name(),
0N/A vmSymbols::throwable_void_signature(),
605N/A KlassHandle(), false, false, THREAD);
0N/A CLEAR_PENDING_EXCEPTION;
0N/A methodHandle method = callinfo.selected_method();
0N/A if (method.not_null()) {
0N/A JavaValue result(T_VOID);
0N/A JavaCalls::call_virtual(&result,
0N/A threadObj, thread_klass,
0N/A vmSymbols::dispatchUncaughtException_name(),
0N/A vmSymbols::throwable_void_signature(),
6210N/A uncaught_exception,
0N/A THREAD);
0N/A } else {
0N/A KlassHandle thread_group(THREAD, SystemDictionary::ThreadGroup_klass());
5178N/A JavaValue result(T_VOID);
0N/A JavaCalls::call_virtual(&result,
0N/A group, thread_group,
0N/A vmSymbols::uncaughtException_name(),
6158N/A vmSymbols::thread_throwable_void_signature(),
0N/A threadObj, // Arg 1
0N/A uncaught_exception, // Arg 2
0N/A THREAD);
0N/A }
0N/A if (HAS_PENDING_EXCEPTION) {
2528N/A ResourceMark rm(this);
2528N/A jio_fprintf(defaultStream::error_stream(),
2528N/A "\nException: %s thrown from the UncaughtExceptionHandler"
2528N/A " in thread \"%s\"\n",
0N/A Klass::cast(pending_exception()->klass())->external_name(),
0N/A get_thread_name());
1527N/A CLEAR_PENDING_EXCEPTION;
0N/A }
0N/A }
5607N/A }
1008N/A
1527N/A // Call Thread.exit(). We try 3 times in case we got another Thread.stop during
0N/A // the execution of the method. If that is not enough, then we don't really care. Thread.stop
2255N/A // is deprecated anyhow.
0N/A { int count = 3;
0N/A while (java_lang_Thread::threadGroup(threadObj()) != NULL && (count-- > 0)) {
0N/A EXCEPTION_MARK;
0N/A JavaValue result(T_VOID);
2900N/A KlassHandle thread_klass(THREAD, SystemDictionary::Thread_klass());
2896N/A JavaCalls::call_virtual(&result,
2900N/A threadObj, thread_klass,
2900N/A vmSymbols::exit_method_name(),
2896N/A vmSymbols::void_method_signature(),
2896N/A THREAD);
2896N/A CLEAR_PENDING_EXCEPTION;
6140N/A }
2896N/A }
2900N/A
2896N/A // notify JVMTI
2900N/A if (JvmtiExport::should_post_thread_life()) {
2900N/A JvmtiExport::post_thread_end(this);
2900N/A }
2896N/A
2896N/A // We have notified the agents that we are exiting, before we go on,
2900N/A // we must check for a pending external suspend request and honor it
2900N/A // in order to not surprise the thread that made the suspend request.
2896N/A while (true) {
2900N/A {
2900N/A MutexLockerEx ml(SR_lock(), Mutex::_no_safepoint_check_flag);
2896N/A if (!is_external_suspend()) {
2896N/A set_terminated(_thread_exiting);
2900N/A ThreadService::current_thread_exiting(this);
2896N/A break;
2896N/A }
6140N/A // Implied else:
2896N/A // Things get a little tricky here. We have a pending external
2900N/A // suspend request, but we are holding the SR_lock so we
3853N/A // can't just self-suspend. So we temporarily drop the lock
2896N/A // and then self-suspend.
2896N/A }
2896N/A
2896N/A ThreadBlockInVM tbivm(this);
2896N/A java_suspend_self();
2896N/A
2896N/A // We're done with this suspend request, but we have to loop around
2900N/A // and check again. Eventually we will get SR_lock without a pending
2900N/A // external suspend request and will be able to mark ourselves as
2900N/A // exiting.
2900N/A }
2896N/A // no more external suspends are allowed at this point
2900N/A } else {
2900N/A // before_exit() has already posted JVMTI THREAD_END events
2896N/A }
2896N/A
2900N/A // Notify waiters on thread object. This has to be done after exit() is called
2900N/A // on the thread (if the thread is the last thread in a daemon ThreadGroup the
2900N/A // group should have the destroyed bit set before waiters are notified).
2900N/A ensure_join(this);
2900N/A assert(!this->has_pending_exception(), "ensure_join should have cleared");
2900N/A
2900N/A // 6282335 JNI DetachCurrentThread spec states that all Java monitors
6140N/A // held by this thread must be released. A detach operation must only
2900N/A // get here if there are no Java frames on the stack. Therefore, any
2900N/A // owned monitors at this point MUST be JNI-acquired monitors which are
2900N/A // pre-inflated and in the monitor cache.
2900N/A //
2900N/A // ensure_join() ignores IllegalThreadStateExceptions, and so does this.
2900N/A if (exit_type == jni_detach && JNIDetachReleasesMonitors) {
3005N/A assert(!this->has_last_Java_frame(), "detaching with Java frames?");
2900N/A ObjectSynchronizer::release_monitors_owned_by_thread(this);
2900N/A assert(!this->has_pending_exception(), "release_monitors should have cleared");
6140N/A }
2900N/A
2900N/A // These things needs to be done while we are still a Java Thread. Make sure that thread
2900N/A // is in a consistent state, in case GC happens
2900N/A assert(_privileged_stack_top == NULL, "must be NULL when we get here");
2900N/A
2900N/A if (active_handles() != NULL) {
2900N/A JNIHandleBlock* block = active_handles();
2900N/A set_active_handles(NULL);
2900N/A JNIHandleBlock::release_block(block);
2900N/A }
2900N/A
2900N/A if (free_handle_block() != NULL) {
2900N/A JNIHandleBlock* block = free_handle_block();
2896N/A set_free_handle_block(NULL);
2896N/A JNIHandleBlock::release_block(block);
2896N/A }
2896N/A
2896N/A // These have to be removed while this is still a valid thread.
2896N/A remove_stack_guard_pages();
2896N/A
6158N/A if (UseTLAB) {
2900N/A tlab().make_parsable(true); // retire TLAB
2896N/A }
2896N/A
4235N/A if (JvmtiEnv::environments_might_exist()) {
4235N/A JvmtiExport::cleanup_thread(this);
2900N/A }
2896N/A
2900N/A#ifndef SERIALGC
2896N/A // We must flush G1-related buffers before removing a thread from
2896N/A // the list of active threads.
2896N/A if (UseG1GC) {
2896N/A flush_barrier_queues();
2896N/A }
2896N/A#endif
6158N/A
2900N/A // Remove from list of active threads list, and notify VM thread if we are the last non-daemon thread
2896N/A Threads::remove(this);
2896N/A}
2896N/A
2896N/A#ifndef SERIALGC
2896N/A// Flush G1-related queues.
2896N/Avoid JavaThread::flush_barrier_queues() {
2896N/A satb_mark_queue().flush();
2896N/A dirty_card_queue().flush();
2896N/A}
4235N/A
4235N/Avoid JavaThread::initialize_queues() {
4235N/A assert(!SafepointSynchronize::is_at_safepoint(),
4235N/A "we should not be at a safepoint");
2896N/A
2900N/A ObjPtrQueue& satb_queue = satb_mark_queue();
3853N/A SATBMarkQueueSet& satb_queue_set = satb_mark_queue_set();
121N/A // The SATB queue should have been constructed with its active
121N/A // field set to false.
0N/A assert(!satb_queue.is_active(), "SATB queue should not be active");
0N/A assert(satb_queue.is_empty(), "SATB queue should be empty");
0N/A // If we are creating the thread during a marking cycle, we should
0N/A // set the active field of the SATB queue to true.
0N/A if (satb_queue_set.is_active()) {
0N/A satb_queue.set_active(true);
0N/A }
0N/A
0N/A DirtyCardQueue& dirty_queue = dirty_card_queue();
0N/A // The dirty card queue should have been constructed with its
1527N/A // active field set to true.
1527N/A assert(dirty_queue.is_active(), "dirty card queue should be active");
1527N/A}
1527N/A#endif // !SERIALGC
0N/A
0N/Avoid JavaThread::cleanup_failed_attach_current_thread() {
0N/A if (get_thread_profiler() != NULL) {
3381N/A get_thread_profiler()->disengage();
3381N/A ResourceMark rm;
3083N/A get_thread_profiler()->print(get_thread_name());
3083N/A }
3083N/A
3083N/A if (active_handles() != NULL) {
3083N/A JNIHandleBlock* block = active_handles();
3381N/A set_active_handles(NULL);
3083N/A JNIHandleBlock::release_block(block);
5614N/A }
3083N/A
3083N/A if (free_handle_block() != NULL) {
3381N/A JNIHandleBlock* block = free_handle_block();
3083N/A set_free_handle_block(NULL);
5614N/A JNIHandleBlock::release_block(block);
3083N/A }
3083N/A
3083N/A // These have to be removed while this is still a valid thread.
5902N/A remove_stack_guard_pages();
3083N/A
6158N/A if (UseTLAB) {
6165N/A tlab().make_parsable(true); // retire TLAB, if any
3083N/A }
3083N/A
3083N/A#ifndef SERIALGC
4156N/A if (UseG1GC) {
4156N/A flush_barrier_queues();
4156N/A }
3083N/A#endif
3083N/A
3083N/A Threads::remove(this);
3083N/A delete this;
3083N/A}
3083N/A
3083N/A
3083N/A
3083N/A
3381N/AJavaThread* JavaThread::active() {
3083N/A Thread* thread = ThreadLocalStorage::thread();
0N/A assert(thread != NULL, "just checking");
0N/A if (thread->is_Java_thread()) {
0N/A return (JavaThread*) thread;
0N/A } else {
0N/A assert(thread->is_VM_thread(), "this must be a vm thread");
0N/A VM_Operation* op = ((VMThread*) thread)->vm_operation();
0N/A JavaThread *ret=op == NULL ? NULL : (JavaThread *)op->calling_thread();
0N/A assert(ret->is_Java_thread(), "must be a Java thread");
0N/A return ret;
0N/A }
0N/A}
0N/A
0N/Abool JavaThread::is_lock_owned(address adr) const {
0N/A if (Thread::is_lock_owned(adr)) return true;
0N/A
0N/A for (MonitorChunk* chunk = monitor_chunks(); chunk != NULL; chunk = chunk->next()) {
5902N/A if (chunk->contains(adr)) return true;
0N/A }
6158N/A
6165N/A return false;
0N/A}
0N/A
0N/A
0N/Avoid JavaThread::add_monitor_chunk(MonitorChunk* chunk) {
0N/A chunk->set_next(monitor_chunks());
0N/A set_monitor_chunks(chunk);
1527N/A}
0N/A
0N/Avoid JavaThread::remove_monitor_chunk(MonitorChunk* chunk) {
2900N/A guarantee(monitor_chunks() != NULL, "must be non empty");
2407N/A if (monitor_chunks() == chunk) {
2407N/A set_monitor_chunks(chunk->next());
2407N/A } else {
2407N/A MonitorChunk* prev = monitor_chunks();
712N/A while (prev->next() != chunk) prev = prev->next();
3349N/A prev->set_next(chunk->next());
3349N/A }
3381N/A}
233N/A
675N/A// JVM support.
675N/A
675N/A// Note: this function shouldn't block if it's called in
675N/A// _thread_in_native_trans state (such as from
675N/A// check_special_condition_for_native_trans()).
675N/Avoid JavaThread::check_and_handle_async_exceptions(bool check_unsafe_error) {
675N/A
675N/A if (has_last_Java_frame() && has_async_condition()) {
675N/A // If we are at a polling page safepoint (not a poll return)
675N/A // then we must defer async exception because live registers
675N/A // will be clobbered by the exception path. Poll return is
675N/A // ok because the call we a returning from already collides
1559N/A // with exception handling registers and so there is no issue.
2123N/A // (The exception handling path kills call result registers but
1559N/A // this is ok since the exception kills the result anyway).
1559N/A
1559N/A if (is_at_poll_safepoint()) {
1559N/A // if the code we are returning to has deoptimized we must defer
1559N/A // the exception otherwise live registers get clobbered on the
1559N/A // exception path before deoptimization is able to retrieve them.
1559N/A //
1559N/A RegisterMap map(this, false);
1559N/A frame caller_fr = last_frame().sender(&map);
1559N/A assert(caller_fr.is_compiled_frame(), "what?");
1559N/A if (caller_fr.is_deoptimized_frame()) {
1559N/A if (TraceExceptions) {
675N/A ResourceMark rm;
2556N/A tty->print_cr("deferred async exception at compiled safepoint");
1559N/A }
2123N/A return;
1559N/A }
1559N/A }
1559N/A }
1559N/A
1559N/A JavaThread::AsyncRequests condition = clear_special_runtime_exit_condition();
1559N/A if (condition == _no_async_condition) {
1559N/A // Conditions have changed since has_special_runtime_exit_condition()
1559N/A // was called:
1559N/A // - if we were here only because of an external suspend request,
1559N/A // then that was taken care of above (or cancelled) so we are done
1559N/A // - if we were here because of another async request, then it has
1559N/A // been cleared between the has_special_runtime_exit_condition()
675N/A // and now so again we are done
675N/A return;
675N/A }
675N/A
675N/A // Check for pending async. exception
675N/A if (_pending_async_exception != NULL) {
675N/A // Only overwrite an already pending exception, if it is not a threadDeath.
675N/A if (!has_pending_exception() || !pending_exception()->is_a(SystemDictionary::ThreadDeath_klass())) {
675N/A
675N/A // We cannot call Exceptions::_throw(...) here because we cannot block
675N/A set_pending_exception(_pending_async_exception, __FILE__, __LINE__);
675N/A
675N/A if (TraceExceptions) {
675N/A ResourceMark rm;
675N/A tty->print("Async. exception installed at runtime exit (" INTPTR_FORMAT ")", this);
675N/A if (has_last_Java_frame() ) {
675N/A frame f = last_frame();
712N/A tty->print(" (pc: " INTPTR_FORMAT " sp: " INTPTR_FORMAT " )", f.pc(), f.sp());
233N/A }
233N/A tty->print_cr(" of type: %s", instanceKlass::cast(_pending_async_exception->klass())->external_name());
564N/A }
233N/A _pending_async_exception = NULL;
233N/A clear_has_async_exception();
233N/A }
233N/A }
712N/A
567N/A if (check_unsafe_error &&
712N/A condition == _async_unsafe_access_error && !has_pending_exception()) {
567N/A condition = _no_async_condition; // done
318N/A switch (thread_state()) {
712N/A case _thread_in_vm:
712N/A {
233N/A JavaThread* THREAD = this;
1177N/A THROW_MSG(vmSymbols::java_lang_InternalError(), "a fault occurred in an unsafe memory access operation");
1177N/A }
1008N/A case _thread_in_native:
712N/A {
712N/A ThreadInVMfromNative tiv(this);
712N/A JavaThread* THREAD = this;
712N/A THROW_MSG(vmSymbols::java_lang_InternalError(), "a fault occurred in an unsafe memory access operation");
1008N/A }
712N/A case _thread_in_Java:
1008N/A {
712N/A ThreadInVMfromJava tiv(this);
233N/A JavaThread* THREAD = this;
6715N/A THROW_MSG(vmSymbols::java_lang_InternalError(), "a fault occurred in a recent unsafe memory access operation in compiled Java code");
6715N/A }
712N/A default:
6715N/A ShouldNotReachHere();
6715N/A }
712N/A }
712N/A
712N/A assert(condition == _no_async_condition || has_pending_exception() ||
712N/A (!check_unsafe_error && condition == _async_unsafe_access_error),
712N/A "must have handled the async condition, if no exception");
712N/A}
712N/A
1008N/Avoid JavaThread::handle_special_runtime_exit_condition(bool check_asyncs) {
712N/A //
0N/A // Check for pending external suspend. Internal suspend requests do
0N/A // not use handle_special_runtime_exit_condition().
1177N/A // If JNIEnv proxies are allowed, don't self-suspend if the target
1177N/A // thread is not the current thread. In older versions of jdbx, jdbx
675N/A // threads could call into the VM with another thread's JNIEnv so we
675N/A // can be here operating on behalf of a suspended thread (4432884).
675N/A bool do_self_suspend = is_external_suspend_with_lock();
675N/A if (do_self_suspend && (!AllowJNIEnvProxy || this == JavaThread::current())) {
675N/A //
675N/A // Because thread is external suspended the safepoint code will count
675N/A // thread as at a safepoint. This can be odd because we can be here
21N/A // as _thread_in_Java which would normally transition to _thread_blocked
675N/A // at a safepoint. We would like to mark the thread as _thread_blocked
675N/A // before calling java_suspend_self like all other callers of it but
675N/A // we must then observe proper safepoint protocol. (We can't leave
675N/A // _thread_blocked with a safepoint in progress). However we can be
675N/A // here as _thread_in_native_trans so we can't use a normal transition
675N/A // constructor/destructor pair because they assert on that type of
699N/A // transition. We could do something like:
699N/A //
699N/A // JavaThreadState state = thread_state();
699N/A // set_thread_state(_thread_in_vm);
699N/A // {
699N/A // ThreadBlockInVM tbivm(this);
675N/A // java_suspend_self()
675N/A // }
675N/A // set_thread_state(_thread_in_vm_trans);
675N/A // if (safepoint) block;
1849N/A // set_thread_state(state);
1849N/A //
1849N/A // but that is pretty messy. Instead we just go with the way the
1849N/A // code has worked before and note that this is the only path to
1849N/A // java_suspend_self that doesn't put the thread in _thread_blocked
1849N/A // mode.
1849N/A
1849N/A frame_anchor()->make_walkable(this);
1849N/A java_suspend_self();
1849N/A
1849N/A // We might be here for reasons in addition to the self-suspend request
1849N/A // so check for other async requests.
675N/A }
675N/A
675N/A if (check_asyncs) {
675N/A check_and_handle_async_exceptions();
675N/A }
675N/A}
675N/A
675N/Avoid JavaThread::send_thread_stop(oop java_throwable) {
675N/A assert(Thread::current()->is_VM_thread(), "should be in the vm thread");
729N/A assert(Threads_lock->is_locked(), "Threads_lock should be locked by safepoint code");
729N/A assert(SafepointSynchronize::is_at_safepoint(), "all threads are stopped");
729N/A
675N/A // Do not throw asynchronous exceptions against the compiler thread
675N/A // (the compiler thread should not be a Java thread -- fix in 1.4.2)
675N/A if (is_Compiler_thread()) return;
675N/A
675N/A {
712N/A // Actually throw the Throwable against the target Thread - however
699N/A // only if there is no thread death exception installed already.
1849N/A if (_pending_async_exception == NULL || !_pending_async_exception->is_a(SystemDictionary::ThreadDeath_klass())) {
1849N/A // If the topmost frame is a runtime stub, then we are calling into
675N/A // OptoRuntime from compiled code. Some runtime stubs (new, monitor_exit..)
712N/A // must deoptimize the caller before continuing, as the compiled exception handler table
21N/A // may not be valid
1177N/A if (has_last_Java_frame()) {
1177N/A frame f = last_frame();
0N/A if (f.is_runtime_frame() || f.is_safepoint_blob_frame()) {
185N/A // BiasedLocking needs an updated RegisterMap for the revoke monitors pass
185N/A RegisterMap reg_map(this, UseBiasedLocking);
185N/A frame compiled_frame = f.sender(&reg_map);
185N/A if (compiled_frame.can_be_deoptimized()) {
1177N/A Deoptimization::deoptimize(this, compiled_frame, &reg_map);
1177N/A }
318N/A }
699N/A }
712N/A
318N/A // Set async. pending exception in thread.
185N/A set_pending_async_exception(java_throwable);
1177N/A
1177N/A if (TraceExceptions) {
185N/A ResourceMark rm;
185N/A tty->print_cr("Pending Async. exception installed of type: %s", instanceKlass::cast(_pending_async_exception->klass())->external_name());
3083N/A }
712N/A // for AbortVMOnException flag
185N/A NOT_PRODUCT(Exceptions::debug_check_abort(instanceKlass::cast(_pending_async_exception->klass())->external_name()));
185N/A }
185N/A }
1177N/A
185N/A
21N/A // Interrupt thread so it will wake up from a potential wait()
1238N/A Thread::interrupt(this);
712N/A}
121N/A
121N/A// External suspension mechanism.
5037N/A//
5037N/A// Tell the VM to suspend a thread when ever it knows that it does not hold on
5044N/A// to any VM_locks and it is at a transition
5037N/A// Self-suspension will happen on the transition out of the vm.
5037N/A// Catch "this" coming in from JNIEnv pointers when the thread has been freed
5037N/A//
5037N/A// Guarantees on return:
5037N/A// + Target thread will not execute any new bytecode (that's why we need to
5037N/A// force a safepoint)
5037N/A// + Target thread will not enter any new monitors
1177N/A//
121N/Avoid JavaThread::java_suspend() {
121N/A { MutexLocker mu(Threads_lock);
675N/A if (!Threads::includes(this) || is_exiting() || this->threadObj() == NULL) {
699N/A return;
121N/A }
121N/A }
233N/A
233N/A { MutexLockerEx ml(SR_lock(), Mutex::_no_safepoint_check_flag);
675N/A if (!is_external_suspend()) {
699N/A // a racing resume has cancelled us; bail out now
233N/A return;
233N/A }
318N/A
699N/A // suspend is done
675N/A uint32_t debug_bits = 0;
318N/A // Warning: is_ext_suspend_completed() may temporarily drop the
318N/A // SR_lock to allow the thread to reach a stable thread state if
712N/A // it is currently in a transient thread state.
712N/A if (is_ext_suspend_completed(false /* !called_by_wait */,
712N/A SuspendRetryDelay, &debug_bits) ) {
712N/A return;
712N/A }
712N/A }
2342N/A
2342N/A VM_ForceSafepoint vm_suspend;
2342N/A VMThread::execute(&vm_suspend);
2342N/A}
2342N/A
2342N/A// Part II of external suspension.
2342N/A// A JavaThread self suspends when it detects a pending external suspend
2342N/A// request. This is usually on transitions. It is also done in places
2342N/A// where continuing to the next transition would surprise the caller,
2342N/A// e.g., monitor entry.
2342N/A//
2342N/A// Returns the number of times that the thread self-suspended.
2342N/A//
2342N/A// Note: DO NOT call java_suspend_self() when you just want to block current
2342N/A// thread. java_suspend_self() is the second stage of cooperative
2342N/A// suspension for external suspend requests and should only be used
2342N/A// to complete an external suspend request.
2342N/A//
2342N/Aint JavaThread::java_suspend_self() {
2342N/A int ret = 0;
2342N/A
2342N/A // we are in the process of exiting so don't suspend
2342N/A if (is_exiting()) {
2342N/A clear_external_suspend();
2392N/A return ret;
2392N/A }
2392N/A
2392N/A assert(_anchor.walkable() ||
2392N/A (is_Java_thread() && !((JavaThread*)this)->has_last_Java_frame()),
2392N/A "must have walkable stack");
2392N/A
2342N/A MutexLockerEx ml(SR_lock(), Mutex::_no_safepoint_check_flag);
2342N/A
2342N/A assert(!this->is_ext_suspended(),
2342N/A "a thread trying to self-suspend should not already be suspended");
2342N/A
2342N/A if (this->is_suspend_equivalent()) {
2342N/A // If we are self-suspending as a result of the lifting of a
2342N/A // suspend equivalent condition, then the suspend_equivalent
2342N/A // flag is not cleared until we set the ext_suspended flag so
2342N/A // that wait_for_ext_suspend_completion() returns consistent
1016N/A // results.
1016N/A this->clear_suspend_equivalent();
1016N/A }
1016N/A
2342N/A // A racing resume may have cancelled us before we grabbed SR_lock
2342N/A // above. Or another external suspend request could be waiting for us
2342N/A // by the time we return from SR_lock()->wait(). The thread
2342N/A // that requested the suspension may already be trying to walk our
2342N/A // stack and if we return now, we can change the stack out from under
712N/A // it. This would be a "bad thing (TM)" and cause the stack walker
712N/A // to crash. We stay self-suspended until there are no more pending
712N/A // external suspend requests.
3538N/A while (is_external_suspend()) {
902N/A ret++;
902N/A this->set_ext_suspended();
902N/A
902N/A // _ext_suspended flag is cleared by java_resume()
1960N/A while (is_ext_suspended()) {
902N/A this->SR_lock()->wait(Mutex::_no_safepoint_check_flag);
3538N/A }
2342N/A }
2342N/A
2342N/A return ret;
2342N/A}
2342N/A
2342N/A#ifdef ASSERT
2342N/A// verify the JavaThread has not yet been published in the Threads::list, and
902N/A// hence doesn't need protection from concurrent access at this stage
1666N/Avoid JavaThread::verify_not_published() {
1666N/A if (!Threads_lock->owned_by_self()) {
1666N/A MutexLockerEx ml(Threads_lock, Mutex::_no_safepoint_check_flag);
1666N/A assert( !Threads::includes(this),
1666N/A "java thread shouldn't have been published yet!");
1666N/A }
1666N/A else {
712N/A assert( !Threads::includes(this),
712N/A "java thread shouldn't have been published yet!");
712N/A }
984N/A}
712N/A#endif
712N/A
712N/A// Slow path when the native==>VM/Java barriers detect a safepoint is in
712N/A// progress or when _suspend_flags is non-zero.
984N/A// Current thread needs to self-suspend if there is a suspend request and/or
712N/A// block if a safepoint is in progress.
712N/A// Async exception ISN'T checked.
712N/A// Note only the ThreadInVMfromNative transition can call this function
1666N/A// directly and when thread state is _thread_in_native_trans
1666N/Avoid JavaThread::check_safepoint_and_suspend_for_native_trans(JavaThread *thread) {
984N/A assert(thread->thread_state() == _thread_in_native_trans, "wrong state");
712N/A
2342N/A JavaThread *curJT = JavaThread::current();
2342N/A bool do_self_suspend = thread->is_external_suspend();
2342N/A
2342N/A assert(!curJT->has_last_Java_frame() || curJT->frame_anchor()->walkable(), "Unwalkable stack in native->vm transition");
4006N/A
712N/A // If JNIEnv proxies are allowed, don't self-suspend if the target
712N/A // thread is not the current thread. In older versions of jdbx, jdbx
712N/A // threads could call into the VM with another thread's JNIEnv so we
1177N/A // can be here operating on behalf of a suspended thread (4432884).
1177N/A if (do_self_suspend && (!AllowJNIEnvProxy || curJT == thread)) {
121N/A JavaThreadState state = thread->thread_state();
121N/A
712N/A // We mark this thread_blocked state as a suspend-equivalent so
5037N/A // that a caller to is_ext_suspend_completed() won't be confused.
712N/A // The suspend-equivalent state is cleared by java_suspend_self().
0N/A thread->set_suspend_equivalent();
1008N/A
0N/A // If the safepoint code sees the _thread_in_native_trans state, it will
0N/A // wait until the thread changes to other thread state. There is no
0N/A // guarantee on how soon we can obtain the SR_lock and complete the
0N/A // self-suspend request. It would be a bad idea to let safepoint wait for
0N/A // too long. Temporarily change the state to _thread_blocked to
0N/A // let the VM thread know that this thread is ready for GC. The problem
0N/A // of changing thread state is that safepoint could happen just after
0N/A // java_suspend_self() returns after being resumed, and VM thread will
185N/A // see the _thread_blocked state. We must check for safepoint
161N/A // after restoring the state and make sure we won't leave while a safepoint
161N/A // is in progress.
161N/A thread->set_thread_state(_thread_blocked);
161N/A thread->java_suspend_self();
161N/A thread->set_thread_state(state);
503N/A // Make sure new state is seen by VM thread
2342N/A if (os::is_MP()) {
2342N/A if (UseMembar) {
2342N/A // Force a fence between the write above and read below
2342N/A OrderAccess::fence();
2342N/A } else {
2342N/A // Must use this rather than serialization page in particular on Windows
2342N/A InterfaceSupport::serialize_memory(thread);
2342N/A }
2342N/A }
2342N/A }
2342N/A
2342N/A if (SafepointSynchronize::do_call_back()) {
2342N/A // If we are safepointing, then block the caller which may not be
2342N/A // the same as the target thread (see above).
2342N/A SafepointSynchronize::block(curJT);
503N/A }
503N/A
712N/A if (thread->is_deopt_suspend()) {
503N/A thread->clear_deopt_suspend();
503N/A RegisterMap map(thread, false);
503N/A frame f = thread->last_frame();
503N/A while ( f.id() != thread->must_deopt_id() && ! f.is_first_frame()) {
712N/A f = f.sender(&map);
1016N/A }
1016N/A if (f.id() == thread->must_deopt_id()) {
1016N/A thread->clear_must_deopt_id();
1016N/A f.deoptimize(thread);
1016N/A } else {
1016N/A fatal("missed deoptimization!");
1016N/A }
1016N/A }
3538N/A}
1590N/A
3538N/A// Slow path when the native==>VM/Java barriers detect a safepoint is in
3538N/A// progress or when _suspend_flags is non-zero.
902N/A// Current thread needs to self-suspend if there is a suspend request and/or
3538N/A// block if a safepoint is in progress.
902N/A// Also check for pending async exception (not including unsafe access error).
902N/A// Note only the native==>VM/Java barriers can call this function and when
902N/A// thread state is _thread_in_native_trans.
2342N/Avoid JavaThread::check_special_condition_for_native_trans(JavaThread *thread) {
2342N/A check_safepoint_and_suspend_for_native_trans(thread);
2342N/A
2342N/A if (thread->has_async_exception()) {
2342N/A // We are in _thread_in_native_trans state, don't handle unsafe
2342N/A // access error since that may block.
2342N/A thread->check_and_handle_async_exceptions(false);
2342N/A }
2342N/A}
2342N/A
2342N/A// We need to guarantee the Threads_lock here, since resumes are not
2342N/A// allowed during safepoint synchronization
2342N/A// Can only resume from an external suspension
2342N/Avoid JavaThread::java_resume() {
2342N/A assert_locked_or_safepoint(Threads_lock);
2342N/A
2556N/A // Sanity check: thread is gone, has started exiting or the thread
2556N/A // was not externally suspended.
2556N/A if (!Threads::includes(this) || is_exiting() || !is_external_suspend()) {
2342N/A return;
2342N/A }
2342N/A
2342N/A MutexLockerEx ml(SR_lock(), Mutex::_no_safepoint_check_flag);
2342N/A
2342N/A clear_external_suspend();
2342N/A
2342N/A if (is_ext_suspended()) {
2342N/A clear_ext_suspended();
2342N/A SR_lock()->notify_all();
2342N/A }
2342N/A}
2342N/A
2342N/Avoid JavaThread::create_stack_guard_pages() {
2342N/A if (! os::uses_stack_guard_pages() || _stack_guard_state != stack_guard_unused) return;
2342N/A address low_addr = stack_base() - stack_size();
2556N/A size_t len = (StackYellowPages + StackRedPages) * os::vm_page_size();
2556N/A
2342N/A int allocate = os::allocate_stack_guard_pages();
2342N/A // warning("Guarding at " PTR_FORMAT " for len " SIZE_FORMAT "\n", low_addr, len);
2342N/A
2342N/A if (allocate && !os::create_stack_guard_pages((char *) low_addr, len)) {
2342N/A warning("Attempt to allocate stack guard pages failed.");
902N/A return;
712N/A }
712N/A
712N/A if (os::guard_memory((char *) low_addr, len)) {
712N/A _stack_guard_state = stack_guard_enabled;
712N/A } else {
1008N/A warning("Attempt to protect stack guard pages failed.");
712N/A if (os::uncommit_memory((char *) low_addr, len)) {
712N/A warning("Attempt to deallocate stack guard pages failed.");
712N/A }
712N/A }
712N/A}
712N/A
2342N/Avoid JavaThread::remove_stack_guard_pages() {
712N/A if (_stack_guard_state == stack_guard_unused) return;
712N/A address low_addr = stack_base() - stack_size();
712N/A size_t len = (StackYellowPages + StackRedPages) * os::vm_page_size();
712N/A
0N/A if (os::allocate_stack_guard_pages()) {
0N/A if (os::remove_stack_guard_pages((char *) low_addr, len)) {
151N/A _stack_guard_state = stack_guard_unused;
1527N/A } else {
151N/A warning("Attempt to deallocate stack guard pages failed.");
2086N/A }
0N/A } else {
42N/A if (_stack_guard_state == stack_guard_unused) return;
0N/A if (os::unguard_memory((char *) low_addr, len)) {
6158N/A _stack_guard_state = stack_guard_unused;
6165N/A } else {
0N/A warning("Attempt to unprotect stack guard pages failed.");
2046N/A }
1559N/A }
1559N/A}
1559N/A
1559N/Avoid JavaThread::enable_stack_yellow_zone() {
0N/A assert(_stack_guard_state != stack_guard_unused, "must be using guard pages.");
0N/A assert(_stack_guard_state != stack_guard_enabled, "already enabled");
0N/A
3381N/A // The base notation is from the stacks point of view, growing downward.
3349N/A // We need to adjust it to work correctly with guard_memory()
3349N/A address base = stack_yellow_zone_base() - stack_yellow_zone_size();
3349N/A
0N/A guarantee(base < stack_base(),"Error calculating stack yellow zone");
6158N/A guarantee(base < os::current_stack_pointer(),"Error calculating stack yellow zone");
6158N/A
42N/A if (os::guard_memory((char *) base, stack_yellow_zone_size())) {
151N/A _stack_guard_state = stack_guard_enabled;
5058N/A } else {
937N/A warning("Attempt to guard stack yellow zone failed.");
3368N/A }
503N/A enable_register_stack_guard();
1016N/A}
3538N/A
2342N/Avoid JavaThread::disable_stack_yellow_zone() {
2342N/A assert(_stack_guard_state != stack_guard_unused, "must be using guard pages.");
371N/A assert(_stack_guard_state != stack_guard_yellow_disabled, "already disabled");
712N/A
2342N/A // Simply return if called for a thread that does not use guard pages.
2342N/A if (_stack_guard_state == stack_guard_unused) return;
2342N/A
2342N/A // The base notation is from the stacks point of view, growing downward.
6158N/A // We need to adjust it to work correctly with guard_memory()
233N/A address base = stack_yellow_zone_base() - stack_yellow_zone_size();
0N/A
121N/A if (os::unguard_memory((char *)base, stack_yellow_zone_size())) {
712N/A _stack_guard_state = stack_guard_yellow_disabled;
712N/A } else {
712N/A warning("Attempt to unguard stack yellow zone failed.");
1008N/A }
712N/A disable_register_stack_guard();
712N/A}
712N/A
712N/Avoid JavaThread::enable_stack_red_zone() {
1960N/A // The base notation is from the stacks point of view, growing downward.
712N/A // We need to adjust it to work correctly with guard_memory()
42N/A assert(_stack_guard_state != stack_guard_unused, "must be using guard pages.");
95N/A address base = stack_red_zone_base() - stack_red_zone_size();
422N/A
1008N/A guarantee(base < stack_base(),"Error calculating stack red zone");
1008N/A guarantee(base < os::current_stack_pointer(),"Error calculating stack red zone");
422N/A
42N/A if(!os::guard_memory((char *) base, stack_red_zone_size())) {
724N/A warning("Attempt to guard stack red zone failed.");
422N/A }
724N/A}
42N/A
712N/Avoid JavaThread::disable_stack_red_zone() {
42N/A // The base notation is from the stacks point of view, growing downward.
121N/A // We need to adjust it to work correctly with guard_memory()
712N/A assert(_stack_guard_state != stack_guard_unused, "must be using guard pages.");
712N/A address base = stack_red_zone_base() - stack_red_zone_size();
712N/A if (!os::unguard_memory((char *)base, stack_red_zone_size())) {
0N/A warning("Attempt to unguard stack red zone failed.");
0N/A }
1177N/A}
1177N/A
318N/Avoid JavaThread::frames_do(void f(frame*, const RegisterMap* map)) {
984N/A // ignore is there is no stack
984N/A if (!has_last_Java_frame()) return;
984N/A // traverse the stack frames. Starts from top frame.
984N/A for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
984N/A frame* fr = fst.current();
984N/A f(fr, fst.register_map());
984N/A }
984N/A}
984N/A
984N/A
984N/A#ifndef PRODUCT
984N/A// Deoptimization
1177N/A// Function for testing deoptimization
1177N/Avoid JavaThread::deoptimize() {
21N/A // BiasedLocking needs an updated RegisterMap for the revoke monitors pass
21N/A StackFrameStream fst(this, UseBiasedLocking);
0N/A bool deopt = false; // Dump stack only if a deopt actually happens.
0N/A bool only_at = strlen(DeoptimizeOnlyAt) > 0;
0N/A // Iterate over all frames in the thread and deoptimize
0N/A for(; !fst.is_done(); fst.next()) {
0N/A if(fst.current()->can_be_deoptimized()) {
0N/A
0N/A if (only_at) {
0N/A // Deoptimize only at particular bcis. DeoptimizeOnlyAt
0N/A // consists of comma or carriage return separated numbers so
0N/A // search for the current bci in that string.
121N/A address pc = fst.current()->pc();
3381N/A nmethod* nm = (nmethod*) fst.current()->cb();
3381N/A ScopeDesc* sd = nm->scope_desc_at( pc);
1177N/A char buffer[8];
233N/A jio_snprintf(buffer, sizeof(buffer), "%d", sd->bci());
233N/A size_t len = strlen(buffer);
233N/A const char * found = strstr(DeoptimizeOnlyAt, buffer);
233N/A while (found != NULL) {
3646N/A if ((found[len] == ',' || found[len] == '\n' || found[len] == '\0') &&
3646N/A (found == DeoptimizeOnlyAt || found[-1] == ',' || found[-1] == '\n')) {
2086N/A // Check that the bci found is bracketed by terminators.
2086N/A break;
2086N/A }
2086N/A found = strstr(found + 1, buffer);
2086N/A }
2086N/A if (!found) {
2940N/A continue;
2940N/A }
5902N/A }
2086N/A
2086N/A if (DebugDeoptimization && !deopt) {
5902N/A deopt = true; // One-time only print before deopt
233N/A tty->print_cr("[BEFORE Deoptimization]");
233N/A trace_frames();
233N/A trace_stack();
233N/A }
578N/A Deoptimization::deoptimize(this, *fst.current(), fst.register_map());
578N/A }
578N/A }
578N/A
729N/A if (DebugDeoptimization && deopt) {
729N/A tty->print_cr("[AFTER Deoptimization]");
729N/A trace_frames();
729N/A }
729N/A}
233N/A
233N/A
233N/A// Make zombies
233N/Avoid JavaThread::make_zombies() {
564N/A for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
233N/A if (fst.current()->can_be_deoptimized()) {
233N/A // it is a Java nmethod
1008N/A nmethod* nm = CodeCache::find_nmethod(fst.current()->pc());
1177N/A nm->make_not_entrant();
1177N/A }
1008N/A }
6210N/A}
1177N/A#endif // PRODUCT
1177N/A
1177N/A
1177N/Avoid JavaThread::deoptimized_wrt_marked_nmethods() {
1177N/A if (!has_last_Java_frame()) return;
1238N/A // BiasedLocking needs an updated RegisterMap for the revoke monitors pass
1177N/A StackFrameStream fst(this, UseBiasedLocking);
1177N/A for(; !fst.is_done(); fst.next()) {
1177N/A if (fst.current()->should_be_deoptimized()) {
1177N/A Deoptimization::deoptimize(this, *fst.current(), fst.register_map());
1177N/A }
1238N/A }
6200N/A}
1177N/A
1177N/A
5058N/A// GC support
6210N/Astatic void frame_gc_epilogue(frame* f, const RegisterMap* map) { f->gc_epilogue(); }
1177N/A
6210N/Avoid JavaThread::gc_epilogue() {
2813N/A frames_do(frame_gc_epilogue);
5058N/A}
5058N/A
1177N/A
1177N/Astatic void frame_gc_prologue(frame* f, const RegisterMap* map) { f->gc_prologue(); }
1177N/A
3381N/Avoid JavaThread::gc_prologue() {
3381N/A frames_do(frame_gc_prologue);
6210N/A}
5058N/A
5058N/A// If the caller is a NamedThread, then remember, in the current scope,
5058N/A// the given JavaThread in its _processed_thread field.
5058N/Aclass RememberProcessedThread: public StackObj {
5058N/A NamedThread* _cur_thr;
5058N/Apublic:
5058N/A RememberProcessedThread(JavaThread* jthr) {
1008N/A Thread* thread = Thread::current();
4156N/A if (thread->is_Named_thread()) {
5607N/A _cur_thr = (NamedThread *)thread;
1008N/A _cur_thr->set_processed_thread(jthr);
1008N/A } else {
5058N/A _cur_thr = NULL;
1008N/A }
1008N/A }
1008N/A
1008N/A ~RememberProcessedThread() {
1008N/A if (_cur_thr) {
5058N/A _cur_thr->set_processed_thread(NULL);
1008N/A }
1008N/A }
1008N/A};
4156N/A
5607N/Avoid JavaThread::oops_do(OopClosure* f, CodeBlobClosure* cf) {
1008N/A // Verify that the deferred card marks have been flushed.
1008N/A assert(deferred_card_mark().is_empty(), "Should be empty during GC");
5058N/A
1008N/A // The ThreadProfiler oops_do is done from FlatProfiler::oops_do
1008N/A // since there may be more than one thread using each ThreadProfiler.
1008N/A
1008N/A // Traverse the GCHandles
1008N/A Thread::oops_do(f, cf);
5058N/A
1008N/A assert( (!has_last_Java_frame() && java_call_counter() == 0) ||
1008N/A (has_last_Java_frame() && java_call_counter() > 0), "wrong java_sp info!");
1008N/A
4156N/A if (has_last_Java_frame()) {
5607N/A // Record JavaThread to GC thread
1008N/A RememberProcessedThread rpt(this);
1008N/A
5058N/A // Traverse the privileged stack
1008N/A if (_privileged_stack_top != NULL) {
1008N/A _privileged_stack_top->oops_do(f);
1008N/A }
1008N/A
1008N/A // traverse the registered growable array
5058N/A if (_array_for_gc != NULL) {
1008N/A for (int index = 0; index < _array_for_gc->length(); index++) {
1008N/A f->do_oop(_array_for_gc->adr_at(index));
1008N/A }
1008N/A }
4156N/A
5607N/A // Traverse the monitor chunks
1008N/A for (MonitorChunk* chunk = monitor_chunks(); chunk != NULL; chunk = chunk->next()) {
1008N/A chunk->oops_do(f);
5058N/A }
1008N/A
1008N/A // Traverse the execution stack
1530N/A for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
4156N/A fst.current()->oops_do(f, cf, fst.register_map());
5607N/A }
1530N/A }
1530N/A
5058N/A // callee_target is never live across a gc point so NULL it here should
1530N/A // it still contain a methdOop.
1530N/A
1140N/A set_callee_target(NULL);
4156N/A
5607N/A assert(vframe_array_head() == NULL, "deopt in progress at a safepoint!");
1140N/A // If we have deferred set_locals there might be oops waiting to be
1140N/A // written
5058N/A GrowableArray<jvmtiDeferredLocalVariableSet*>* list = deferred_locals();
1140N/A if (list != NULL) {
3381N/A for (int i = 0; i < list->length(); i++) {
1008N/A list->at(i)->oops_do(f);
1008N/A }
1008N/A }
4156N/A
5607N/A // Traverse instance variables at the end since the GC may be moving things
5058N/A // around using this function
5058N/A f->do_oop((oop*) &_threadObj);
1008N/A f->do_oop((oop*) &_vm_result);
1008N/A f->do_oop((oop*) &_vm_result_2);
1008N/A f->do_oop((oop*) &_exception_oop);
1008N/A f->do_oop((oop*) &_pending_async_exception);
1008N/A
1008N/A if (jvmti_thread_state() != NULL) {
1177N/A jvmti_thread_state()->oops_do(f);
1177N/A }
1008N/A}
3853N/A
1008N/Avoid JavaThread::nmethods_do(CodeBlobClosure* cf) {
1008N/A Thread::nmethods_do(cf); // (super method is a no-op)
1008N/A
1008N/A assert( (!has_last_Java_frame() && java_call_counter() == 0) ||
1008N/A (has_last_Java_frame() && java_call_counter() > 0), "wrong java_sp info!");
1008N/A
2459N/A if (has_last_Java_frame()) {
1008N/A // Traverse the execution stack
1008N/A for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
1008N/A fst.current()->nmethods_do(cf);
1008N/A }
1530N/A }
1008N/A}
1008N/A
1008N/A// Printing
2086N/Aconst char* _get_thread_state_name(JavaThreadState _thread_state) {
3853N/A switch (_thread_state) {
2086N/A case _thread_uninitialized: return "_thread_uninitialized";
2086N/A case _thread_new: return "_thread_new";
2086N/A case _thread_new_trans: return "_thread_new_trans";
2086N/A case _thread_in_native: return "_thread_in_native";
1395N/A case _thread_in_native_trans: return "_thread_in_native_trans";
1395N/A case _thread_in_vm: return "_thread_in_vm";
6210N/A case _thread_in_vm_trans: return "_thread_in_vm_trans";
1395N/A case _thread_in_Java: return "_thread_in_Java";
1395N/A case _thread_in_Java_trans: return "_thread_in_Java_trans";
1395N/A case _thread_blocked: return "_thread_blocked";
1395N/A case _thread_blocked_trans: return "_thread_blocked_trans";
1395N/A default: return "unknown thread state";
1395N/A }
1395N/A}
1395N/A
1395N/A#ifndef PRODUCT
1395N/Avoid JavaThread::print_thread_state_on(outputStream *st) const {
2033N/A st->print_cr(" JavaThread state: %s", _get_thread_state_name(_thread_state));
1395N/A};
1395N/Avoid JavaThread::print_thread_state() const {
1395N/A print_thread_state_on(tty);
1395N/A};
3381N/A#endif // PRODUCT
3381N/A
1008N/A// Called by Threads::print() for VM_PrintThreads operation
1008N/Avoid JavaThread::print_on(outputStream *st) const {
1008N/A st->print("\"%s\" ", get_thread_name());
1008N/A oop thread_oop = threadObj();
1008N/A if (thread_oop != NULL && java_lang_Thread::is_daemon(thread_oop)) st->print("daemon ");
1008N/A Thread::print_on(st);
1008N/A // print guess for valid stack memory region (assume 4K pages); helps lock debugging
1008N/A st->print_cr("[" INTPTR_FORMAT "]", (intptr_t)last_Java_sp() & ~right_n_bits(12));
1008N/A if (thread_oop != NULL && JDK_Version::is_gte_jdk15x_version()) {
1008N/A st->print_cr(" java.lang.Thread.State: %s", java_lang_Thread::thread_status_name(thread_oop));
1008N/A }
1008N/A#ifndef PRODUCT
1008N/A print_thread_state_on(st);
3646N/A _safepoint_state->print_on(st);
1008N/A#endif // PRODUCT
1008N/A}
1008N/A
1008N/A// Called by fatal error handler. The difference between this and
1008N/A// JavaThread::print() is that we can't grab lock or allocate memory.
1008N/Avoid JavaThread::print_on_error(outputStream* st, char *buf, int buflen) const {
1008N/A st->print("JavaThread \"%s\"", get_thread_name_string(buf, buflen));
1008N/A oop thread_obj = threadObj();
1008N/A if (thread_obj != NULL) {
1008N/A if (java_lang_Thread::is_daemon(thread_obj)) st->print(" daemon");
1008N/A }
1008N/A st->print(" [");
1008N/A st->print("%s", _get_thread_state_name(_thread_state));
3646N/A if (osthread()) {
3646N/A st->print(", id=%d", osthread()->thread_id());
3646N/A }
5614N/A st->print(", stack(" PTR_FORMAT "," PTR_FORMAT ")",
1008N/A _stack_base - _stack_size, _stack_base);
1008N/A st->print("]");
1008N/A return;
1008N/A}
1008N/A
3381N/A// Verification
3349N/A
3349N/Astatic void frame_verify(frame* f, const RegisterMap *map) { f->verify(map); }
3349N/A
3349N/Avoid JavaThread::verify() {
3381N/A // Verify oops in the thread.
3349N/A oops_do(&VerifyOopClosure::verify_oop, NULL);
4009N/A
4009N/A // Verify the stack frames.
4009N/A frames_do(frame_verify);
4009N/A}
3349N/A
3381N/A// CR 6300358 (sub-CR 2137150)
3349N/A// Most callers of this method assume that it can't return NULL but a
3381N/A// thread may not have a name whilst it is in the process of attaching to
3349N/A// the VM - see CR 6412693, and there are places where a JavaThread can be
3349N/A// seen prior to having it's threadObj set (eg JNI attaching threads and
3349N/A// if vm exit occurs during initialization). These cases can all be accounted
3349N/A// for such that this method never returns NULL.
3349N/Aconst char* JavaThread::get_thread_name() const {
3349N/A#ifdef ASSERT
3381N/A // early safepoints can hit while current thread does not yet have TLS
3349N/A if (!SafepointSynchronize::is_at_safepoint()) {
3349N/A Thread *cur = Thread::current();
3349N/A if (!(cur->is_Java_thread() && cur == this)) {
3349N/A // Current JavaThreads are allowed to get their own name without
3349N/A // the Threads_lock.
3381N/A assert_locked_or_safepoint(Threads_lock);
5286N/A }
5286N/A }
5286N/A#endif // ASSERT
5286N/A return get_thread_name_string();
3349N/A}
3349N/A
3381N/A// Returns a non-NULL representation of this thread's name, or a suitable
3349N/A// descriptive string if there is no set name
4008N/Aconst char* JavaThread::get_thread_name_string(char* buf, int buflen) const {
3349N/A const char* name_str;
3349N/A oop thread_obj = threadObj();
3381N/A if (thread_obj != NULL) {
3349N/A typeArrayOop name = java_lang_Thread::name(thread_obj);
3349N/A if (name != NULL) {
5902N/A if (buf == NULL) {
5902N/A name_str = UNICODE::as_utf8((jchar*) name->base(T_CHAR), name->length());
3349N/A }
6158N/A else {
3349N/A name_str = UNICODE::as_utf8((jchar*) name->base(T_CHAR), name->length(), buf, buflen);
3349N/A }
3349N/A }
3349N/A else if (is_attaching_via_jni()) { // workaround for 6412693 - see 6404306
3349N/A name_str = "<no-name - thread is attaching>";
3381N/A }
5902N/A else {
3349N/A name_str = Thread::name();
6158N/A }
3349N/A }
3349N/A else {
3349N/A name_str = Thread::name();
3349N/A }
3349N/A assert(name_str != NULL, "unexpected NULL thread name");
3349N/A return name_str;
3349N/A}
3381N/A
3349N/A
3381N/Aconst char* JavaThread::get_threadgroup_name() const {
3349N/A debug_only(if (JavaThread::current() != this) assert_locked_or_safepoint(Threads_lock);)
3349N/A oop thread_obj = threadObj();
3349N/A if (thread_obj != NULL) {
3349N/A oop thread_group = java_lang_Thread::threadGroup(thread_obj);
6238N/A if (thread_group != NULL) {
3349N/A typeArrayOop name = java_lang_ThreadGroup::name(thread_group);
6238N/A // ThreadGroup.name can be null
3349N/A if (name != NULL) {
3349N/A const char* str = UNICODE::as_utf8((jchar*) name->base(T_CHAR), name->length());
3349N/A return str;
3349N/A }
3381N/A }
3349N/A }
6238N/A return NULL;
3349N/A}
3349N/A
3381N/Aconst char* JavaThread::get_parent_name() const {
3349N/A debug_only(if (JavaThread::current() != this) assert_locked_or_safepoint(Threads_lock);)
3349N/A oop thread_obj = threadObj();
3349N/A if (thread_obj != NULL) {
3349N/A oop thread_group = java_lang_Thread::threadGroup(thread_obj);
3853N/A if (thread_group != NULL) {
3853N/A oop parent = java_lang_ThreadGroup::parent(thread_group);
3853N/A if (parent != NULL) {
3853N/A typeArrayOop name = java_lang_ThreadGroup::name(parent);
3853N/A // ThreadGroup.name can be null
3853N/A if (name != NULL) {
3853N/A const char* str = UNICODE::as_utf8((jchar*) name->base(T_CHAR), name->length());
4686N/A return str;
4686N/A }
4686N/A }
4686N/A }
4686N/A }
4686N/A return NULL;
3349N/A}
3349N/A
3349N/AThreadPriority JavaThread::java_priority() const {
3381N/A oop thr_oop = threadObj();
5310N/A if (thr_oop == NULL) return NormPriority; // Bootstrapping
3349N/A ThreadPriority priority = java_lang_Thread::priority(thr_oop);
3349N/A assert(MinPriority <= priority && priority <= MaxPriority, "sanity check");
3349N/A return priority;
5902N/A}
3349N/A
6158N/Avoid JavaThread::prepare(jobject jni_thread, ThreadPriority prio) {
6165N/A
3349N/A assert(Threads_lock->owner() == Thread::current(), "must have threads lock");
3349N/A // Link Java Thread object <-> C++ Thread
3349N/A
3349N/A // Get the C++ thread object (an oop) from the JNI handle (a jthread)
3381N/A // and put it into a new Handle. The Handle "thread_oop" can then
3349N/A // be used to pass the C++ thread object to other methods.
3349N/A
3349N/A // Set the Java level thread object (jthread) field of the
3349N/A // new thread (a JavaThread *) to C++ thread object using the
3349N/A // "thread_oop" handle.
3349N/A
3349N/A // Set the thread field (a JavaThread *) of the
3349N/A // oop representing the java_lang_Thread to the new thread (a JavaThread *).
3349N/A
3381N/A Handle thread_oop(Thread::current(),
6133N/A JNIHandles::resolve_non_null(jni_thread));
6133N/A assert(instanceKlass::cast(thread_oop->klass())->is_linked(),
6133N/A "must be initialized");
6133N/A set_threadObj(thread_oop());
6133N/A java_lang_Thread::set_thread(thread_oop(), this);
6133N/A
6133N/A if (prio == NoPriority) {
6133N/A prio = java_lang_Thread::priority(thread_oop());
6133N/A assert(prio != NoPriority, "A valid priority should be present");
6133N/A }
6133N/A
6133N/A // Push the Java priority down to the native thread; needs Threads_lock
6133N/A Thread::set_priority(this, prio);
6133N/A
6133N/A // Add the new thread to the Threads list and set it in motion.
6133N/A // We must have threads lock in order to call Threads::add.
6133N/A // It is crucial that we do not block before the thread is
6133N/A // added to the Threads list for if a GC happens, then the java_thread oop
6133N/A // will not be visited by GC.
6133N/A Threads::add(this);
6133N/A}
6133N/A
6133N/Aoop JavaThread::current_park_blocker() {
6133N/A // Support for JSR-166 locks
6133N/A oop thread_oop = threadObj();
6133N/A if (thread_oop != NULL &&
6133N/A JDK_Version::current().supports_thread_park_blocker()) {
6140N/A return java_lang_Thread::park_blocker(thread_oop);
6133N/A }
6133N/A return NULL;
6133N/A}
6133N/A
6133N/A
6140N/Avoid JavaThread::print_stack_on(outputStream* st) {
6133N/A if (!has_last_Java_frame()) return;
6133N/A ResourceMark rm;
6133N/A HandleMark hm;
6162N/A
6133N/A RegisterMap reg_map(this);
6133N/A vframe* start_vf = last_java_vframe(&reg_map);
6133N/A int count = 0;
6133N/A for (vframe* f = start_vf; f; f = f->sender() ) {
6133N/A if (f->is_java_frame()) {
6133N/A javaVFrame* jvf = javaVFrame::cast(f);
6280N/A java_lang_Throwable::print_stack_element(st, jvf->method(), jvf->bci());
6133N/A
5306N/A // Print out lock information
4330N/A if (JavaMonitorsInStackTrace) {
0N/A jvf->print_lock_info_on(st, count);
}
} else {
// Ignore non-Java frames
}
// Bail-out case for too deep stacks
count++;
if (MaxJavaStackTraceDepth == count) return;
}
}
// JVMTI PopFrame support
void JavaThread::popframe_preserve_args(ByteSize size_in_bytes, void* start) {
assert(_popframe_preserved_args == NULL, "should not wipe out old PopFrame preserved arguments");
if (in_bytes(size_in_bytes) != 0) {
_popframe_preserved_args = NEW_C_HEAP_ARRAY(char, in_bytes(size_in_bytes));
_popframe_preserved_args_size = in_bytes(size_in_bytes);
Copy::conjoint_jbytes(start, _popframe_preserved_args, _popframe_preserved_args_size);
}
}
void* JavaThread::popframe_preserved_args() {
return _popframe_preserved_args;
}
ByteSize JavaThread::popframe_preserved_args_size() {
return in_ByteSize(_popframe_preserved_args_size);
}
WordSize JavaThread::popframe_preserved_args_size_in_words() {
int sz = in_bytes(popframe_preserved_args_size());
assert(sz % wordSize == 0, "argument size must be multiple of wordSize");
return in_WordSize(sz / wordSize);
}
void JavaThread::popframe_free_preserved_args() {
assert(_popframe_preserved_args != NULL, "should not free PopFrame preserved arguments twice");
FREE_C_HEAP_ARRAY(char, (char*) _popframe_preserved_args);
_popframe_preserved_args = NULL;
_popframe_preserved_args_size = 0;
}
#ifndef PRODUCT
void JavaThread::trace_frames() {
tty->print_cr("[Describe stack]");
int frame_no = 1;
for(StackFrameStream fst(this); !fst.is_done(); fst.next()) {
tty->print(" %d. ", frame_no++);
fst.current()->print_value_on(tty,this);
tty->cr();
}
}
class PrintAndVerifyOopClosure: public OopClosure {
protected:
template <class T> inline void do_oop_work(T* p) {
oop obj = oopDesc::load_decode_heap_oop(p);
if (obj == NULL) return;
tty->print(INTPTR_FORMAT ": ", p);
if (obj->is_oop_or_null()) {
if (obj->is_objArray()) {
tty->print_cr("valid objArray: " INTPTR_FORMAT, (oopDesc*) obj);
} else {
obj->print();
}
} else {
tty->print_cr("invalid oop: " INTPTR_FORMAT, (oopDesc*) obj);
}
tty->cr();
}
public:
virtual void do_oop(oop* p) { do_oop_work(p); }
virtual void do_oop(narrowOop* p) { do_oop_work(p); }
};
static void oops_print(frame* f, const RegisterMap *map) {
PrintAndVerifyOopClosure print;
f->print_value();
f->oops_do(&print, NULL, (RegisterMap*)map);
}
// Print our all the locations that contain oops and whether they are
// valid or not. This useful when trying to find the oldest frame
// where an oop has gone bad since the frame walk is from youngest to
// oldest.
void JavaThread::trace_oops() {
tty->print_cr("[Trace oops]");
frames_do(oops_print);
}
#ifdef ASSERT
// Print or validate the layout of stack frames
void JavaThread::print_frame_layout(int depth, bool validate_only) {
ResourceMark rm;
PRESERVE_EXCEPTION_MARK;
FrameValues values;
int frame_no = 0;
for(StackFrameStream fst(this, false); !fst.is_done(); fst.next()) {
fst.current()->describe(values, ++frame_no);
if (depth == frame_no) break;
}
if (validate_only) {
values.validate();
} else {
tty->print_cr("[Describe stack layout]");
values.print();
}
}
#endif
void JavaThread::trace_stack_from(vframe* start_vf) {
ResourceMark rm;
int vframe_no = 1;
for (vframe* f = start_vf; f; f = f->sender() ) {
if (f->is_java_frame()) {
javaVFrame::cast(f)->print_activation(vframe_no++);
} else {
f->print();
}
if (vframe_no > StackPrintLimit) {
tty->print_cr("...<more frames>...");
return;
}
}
}
void JavaThread::trace_stack() {
if (!has_last_Java_frame()) return;
ResourceMark rm;
HandleMark hm;
RegisterMap reg_map(this);
trace_stack_from(last_java_vframe(&reg_map));
}
#endif // PRODUCT
javaVFrame* JavaThread::last_java_vframe(RegisterMap *reg_map) {
assert(reg_map != NULL, "a map must be given");
frame f = last_frame();
for (vframe* vf = vframe::new_vframe(&f, reg_map, this); vf; vf = vf->sender() ) {
if (vf->is_java_frame()) return javaVFrame::cast(vf);
}
return NULL;
}
klassOop JavaThread::security_get_caller_class(int depth) {
vframeStream vfst(this);
vfst.security_get_caller_frame(depth);
if (!vfst.at_end()) {
return vfst.method()->method_holder();
}
return NULL;
}
static void compiler_thread_entry(JavaThread* thread, TRAPS) {
assert(thread->is_Compiler_thread(), "must be compiler thread");
CompileBroker::compiler_thread_loop();
}
// Create a CompilerThread
CompilerThread::CompilerThread(CompileQueue* queue, CompilerCounters* counters)
: JavaThread(&compiler_thread_entry) {
_env = NULL;
_log = NULL;
_task = NULL;
_queue = queue;
_counters = counters;
_buffer_blob = NULL;
_scanned_nmethod = NULL;
#ifndef PRODUCT
_ideal_graph_printer = NULL;
#endif
}
void CompilerThread::oops_do(OopClosure* f, CodeBlobClosure* cf) {
JavaThread::oops_do(f, cf);
if (_scanned_nmethod != NULL && cf != NULL) {
// Safepoints can occur when the sweeper is scanning an nmethod so
// process it here to make sure it isn't unloaded in the middle of
// a scan.
cf->do_code_blob(_scanned_nmethod);
}
}
// ======= Threads ========
// The Threads class links together all active threads, and provides
// operations over all threads. It is protected by its own Mutex
// lock, which is also used in other contexts to protect thread
// operations from having the thread being operated on from exiting
// and going away unexpectedly (e.g., safepoint synchronization)
JavaThread* Threads::_thread_list = NULL;
int Threads::_number_of_threads = 0;
int Threads::_number_of_non_daemon_threads = 0;
int Threads::_return_code = 0;
size_t JavaThread::_stack_size_at_create = 0;
// All JavaThreads
#define ALL_JAVA_THREADS(X) for (JavaThread* X = _thread_list; X; X = X->next())
void os_stream();
// All JavaThreads + all non-JavaThreads (i.e., every thread in the system)
void Threads::threads_do(ThreadClosure* tc) {
assert_locked_or_safepoint(Threads_lock);
// ALL_JAVA_THREADS iterates through all JavaThreads
ALL_JAVA_THREADS(p) {
tc->do_thread(p);
}
// Someday we could have a table or list of all non-JavaThreads.
// For now, just manually iterate through them.
tc->do_thread(VMThread::vm_thread());
Universe::heap()->gc_threads_do(tc);
WatcherThread *wt = WatcherThread::watcher_thread();
// Strictly speaking, the following NULL check isn't sufficient to make sure
// the data for WatcherThread is still valid upon being examined. However,
// considering that WatchThread terminates when the VM is on the way to
// exit at safepoint, the chance of the above is extremely small. The right
// way to prevent termination of WatcherThread would be to acquire
// Terminator_lock, but we can't do that without violating the lock rank
// checking in some cases.
if (wt != NULL)
tc->do_thread(wt);
// If CompilerThreads ever become non-JavaThreads, add them here
}
jint Threads::create_vm(JavaVMInitArgs* args, bool* canTryAgain) {
extern void JDK_Version_init();
// Check version
if (!is_supported_jni_version(args->version)) return JNI_EVERSION;
// Initialize the output stream module
ostream_init();
// Process java launcher properties.
Arguments::process_sun_java_launcher_properties(args);
// Initialize the os module before using TLS
os::init();
// Initialize system properties.
Arguments::init_system_properties();
// So that JDK version can be used as a discrimintor when parsing arguments
JDK_Version_init();
// Update/Initialize System properties after JDK version number is known
Arguments::init_version_specific_system_properties();
// Parse arguments
jint parse_result = Arguments::parse(args);
if (parse_result != JNI_OK) return parse_result;
if (PauseAtStartup) {
os::pause();
}
#ifndef USDT2
HS_DTRACE_PROBE(hotspot, vm__init__begin);
#else /* USDT2 */
HOTSPOT_VM_INIT_BEGIN();
#endif /* USDT2 */
// Record VM creation timing statistics
TraceVmCreationTime create_vm_timer;
create_vm_timer.start();
// Timing (must come after argument parsing)
TraceTime timer("Create VM", TraceStartupTime);
// Initialize the os module after parsing the args
jint os_init_2_result = os::init_2();
if (os_init_2_result != JNI_OK) return os_init_2_result;
// Initialize output stream logging
ostream_init_log();
// Convert -Xrun to -agentlib: if there is no JVM_OnLoad
// Must be before create_vm_init_agents()
if (Arguments::init_libraries_at_startup()) {
convert_vm_init_libraries_to_agents();
}
// Launch -agentlib/-agentpath and converted -Xrun agents
if (Arguments::init_agents_at_startup()) {
create_vm_init_agents();
}
// Initialize Threads state
_thread_list = NULL;
_number_of_threads = 0;
_number_of_non_daemon_threads = 0;
// Initialize TLS
ThreadLocalStorage::init();
// Initialize global data structures and create system classes in heap
vm_init_globals();
// Attach the main thread to this os thread
JavaThread* main_thread = new JavaThread();
main_thread->set_thread_state(_thread_in_vm);
// must do this before set_active_handles and initialize_thread_local_storage
// Note: on solaris initialize_thread_local_storage() will (indirectly)
// change the stack size recorded here to one based on the java thread
// stacksize. This adjusted size is what is used to figure the placement
// of the guard pages.
main_thread->record_stack_base_and_size();
main_thread->initialize_thread_local_storage();
main_thread->set_active_handles(JNIHandleBlock::allocate_block());
if (!main_thread->set_as_starting_thread()) {
vm_shutdown_during_initialization(
"Failed necessary internal allocation. Out of swap space");
delete main_thread;
*canTryAgain = false; // don't let caller call JNI_CreateJavaVM again
return JNI_ENOMEM;
}
// Enable guard page *after* os::create_main_thread(), otherwise it would
// crash Linux VM, see notes in os_linux.cpp.
main_thread->create_stack_guard_pages();
// Initialize Java-Level synchronization subsystem
ObjectMonitor::Initialize() ;
// Initialize global modules
jint status = init_globals();
if (status != JNI_OK) {
delete main_thread;
*canTryAgain = false; // don't let caller call JNI_CreateJavaVM again
return status;
}
// Should be done after the heap is fully created
main_thread->cache_global_variables();
HandleMark hm;
{ MutexLocker mu(Threads_lock);
Threads::add(main_thread);
}
// Any JVMTI raw monitors entered in onload will transition into
// real raw monitor. VM is setup enough here for raw monitor enter.
JvmtiExport::transition_pending_onload_raw_monitors();
if (VerifyBeforeGC &&
Universe::heap()->total_collections() >= VerifyGCStartAt) {
Universe::heap()->prepare_for_verify();
Universe::verify(); // make sure we're starting with a clean slate
}
// Create the VMThread
{ TraceTime timer("Start VMThread", TraceStartupTime);
VMThread::create();
Thread* vmthread = VMThread::vm_thread();
if (!os::create_thread(vmthread, os::vm_thread))
vm_exit_during_initialization("Cannot create VM thread. Out of system resources.");
// Wait for the VM thread to become ready, and VMThread::run to initialize
// Monitors can have spurious returns, must always check another state flag
{
MutexLocker ml(Notify_lock);
os::start_thread(vmthread);
while (vmthread->active_handles() == NULL) {
Notify_lock->wait();
}
}
}
assert (Universe::is_fully_initialized(), "not initialized");
EXCEPTION_MARK;
// At this point, the Universe is initialized, but we have not executed
// any byte code. Now is a good time (the only time) to dump out the
// internal state of the JVM for sharing.
if (DumpSharedSpaces) {
Universe::heap()->preload_and_dump(CHECK_0);
ShouldNotReachHere();
}
// Always call even when there are not JVMTI environments yet, since environments
// may be attached late and JVMTI must track phases of VM execution
JvmtiExport::enter_start_phase();
// Notify JVMTI agents that VM has started (JNI is up) - nop if no agents.
JvmtiExport::post_vm_start();
{
TraceTime timer("Initialize java.lang classes", TraceStartupTime);
if (EagerXrunInit && Arguments::init_libraries_at_startup()) {
create_vm_init_libraries();
}
if (InitializeJavaLangString) {
initialize_class(vmSymbols::java_lang_String(), CHECK_0);
} else {
warning("java.lang.String not initialized");
}
if (AggressiveOpts) {
{
// Forcibly initialize java/util/HashMap and mutate the private
// static final "frontCacheEnabled" field before we start creating instances
#ifdef ASSERT
klassOop tmp_k = SystemDictionary::find(vmSymbols::java_util_HashMap(), Handle(), Handle(), CHECK_0);
assert(tmp_k == NULL, "java/util/HashMap should not be loaded yet");
#endif
klassOop k_o = SystemDictionary::resolve_or_null(vmSymbols::java_util_HashMap(), Handle(), Handle(), CHECK_0);
KlassHandle k = KlassHandle(THREAD, k_o);
guarantee(k.not_null(), "Must find java/util/HashMap");
instanceKlassHandle ik = instanceKlassHandle(THREAD, k());
ik->initialize(CHECK_0);
fieldDescriptor fd;
// Possible we might not find this field; if so, don't break
if (ik->find_local_field(vmSymbols::frontCacheEnabled_name(), vmSymbols::bool_signature(), &fd)) {
k()->java_mirror()->bool_field_put(fd.offset(), true);
}
}
if (UseStringCache) {
// Forcibly initialize java/lang/StringValue and mutate the private
// static final "stringCacheEnabled" field before we start creating instances
klassOop k_o = SystemDictionary::resolve_or_null(vmSymbols::java_lang_StringValue(), Handle(), Handle(), CHECK_0);
// Possible that StringValue isn't present: if so, silently don't break
if (k_o != NULL) {
KlassHandle k = KlassHandle(THREAD, k_o);
instanceKlassHandle ik = instanceKlassHandle(THREAD, k());
ik->initialize(CHECK_0);
fieldDescriptor fd;
// Possible we might not find this field: if so, silently don't break
if (ik->find_local_field(vmSymbols::stringCacheEnabled_name(), vmSymbols::bool_signature(), &fd)) {
k()->java_mirror()->bool_field_put(fd.offset(), true);
}
}
}
}
// Initialize java_lang.System (needed before creating the thread)
if (InitializeJavaLangSystem) {
initialize_class(vmSymbols::java_lang_System(), CHECK_0);
initialize_class(vmSymbols::java_lang_ThreadGroup(), CHECK_0);
Handle thread_group = create_initial_thread_group(CHECK_0);
Universe::set_main_thread_group(thread_group());
initialize_class(vmSymbols::java_lang_Thread(), CHECK_0);
oop thread_object = create_initial_thread(thread_group, main_thread, CHECK_0);
main_thread->set_threadObj(thread_object);
// Set thread status to running since main thread has
// been started and running.
java_lang_Thread::set_thread_status(thread_object,
java_lang_Thread::RUNNABLE);
// The VM preresolve methods to these classes. Make sure that get initialized
initialize_class(vmSymbols::java_lang_reflect_Method(), CHECK_0);
initialize_class(vmSymbols::java_lang_ref_Finalizer(), CHECK_0);
// The VM creates & returns objects of this class. Make sure it's initialized.
initialize_class(vmSymbols::java_lang_Class(), CHECK_0);
call_initializeSystemClass(CHECK_0);
} else {
warning("java.lang.System not initialized");
}
// an instance of OutOfMemory exception has been allocated earlier
if (InitializeJavaLangExceptionsErrors) {
initialize_class(vmSymbols::java_lang_OutOfMemoryError(), CHECK_0);
initialize_class(vmSymbols::java_lang_NullPointerException(), CHECK_0);
initialize_class(vmSymbols::java_lang_ClassCastException(), CHECK_0);
initialize_class(vmSymbols::java_lang_ArrayStoreException(), CHECK_0);
initialize_class(vmSymbols::java_lang_ArithmeticException(), CHECK_0);
initialize_class(vmSymbols::java_lang_StackOverflowError(), CHECK_0);
initialize_class(vmSymbols::java_lang_IllegalMonitorStateException(), CHECK_0);
} else {
warning("java.lang.OutOfMemoryError has not been initialized");
warning("java.lang.NullPointerException has not been initialized");
warning("java.lang.ClassCastException has not been initialized");
warning("java.lang.ArrayStoreException has not been initialized");
warning("java.lang.ArithmeticException has not been initialized");
warning("java.lang.StackOverflowError has not been initialized");
}
}
// See : bugid 4211085.
// Background : the static initializer of java.lang.Compiler tries to read
// property"java.compiler" and read & write property "java.vm.info".
// When a security manager is installed through the command line
// option "-Djava.security.manager", the above properties are not
// readable and the static initializer for java.lang.Compiler fails
// resulting in a NoClassDefFoundError. This can happen in any
// user code which calls methods in java.lang.Compiler.
// Hack : the hack is to pre-load and initialize this class, so that only
// system domains are on the stack when the properties are read.
// Currently even the AWT code has calls to methods in java.lang.Compiler.
// On the classic VM, java.lang.Compiler is loaded very early to load the JIT.
// Future Fix : the best fix is to grant everyone permissions to read "java.compiler" and
// read and write"java.vm.info" in the default policy file. See bugid 4211383
// Once that is done, we should remove this hack.
initialize_class(vmSymbols::java_lang_Compiler(), CHECK_0);
// More hackery - the static initializer of java.lang.Compiler adds the string "nojit" to
// the java.vm.info property if no jit gets loaded through java.lang.Compiler (the hotspot
// compiler does not get loaded through java.lang.Compiler). "java -version" with the
// hotspot vm says "nojit" all the time which is confusing. So, we reset it here.
// This should also be taken out as soon as 4211383 gets fixed.
reset_vm_info_property(CHECK_0);
quicken_jni_functions();
// Set flag that basic initialization has completed. Used by exceptions and various
// debug stuff, that does not work until all basic classes have been initialized.
set_init_completed();
#ifndef USDT2
HS_DTRACE_PROBE(hotspot, vm__init__end);
#else /* USDT2 */
HOTSPOT_VM_INIT_END();
#endif /* USDT2 */
// record VM initialization completion time
Management::record_vm_init_completed();
// Compute system loader. Note that this has to occur after set_init_completed, since
// valid exceptions may be thrown in the process.
// Note that we do not use CHECK_0 here since we are inside an EXCEPTION_MARK and
// set_init_completed has just been called, causing exceptions not to be shortcut
// anymore. We call vm_exit_during_initialization directly instead.
SystemDictionary::compute_java_system_loader(THREAD);
if (HAS_PENDING_EXCEPTION) {
vm_exit_during_initialization(Handle(THREAD, PENDING_EXCEPTION));
}
#ifndef SERIALGC
// Support for ConcurrentMarkSweep. This should be cleaned up
// and better encapsulated. The ugly nested if test would go away
// once things are properly refactored. XXX YSR
if (UseConcMarkSweepGC || UseG1GC) {
if (UseConcMarkSweepGC) {
ConcurrentMarkSweepThread::makeSurrogateLockerThread(THREAD);
} else {
ConcurrentMarkThread::makeSurrogateLockerThread(THREAD);
}
if (HAS_PENDING_EXCEPTION) {
vm_exit_during_initialization(Handle(THREAD, PENDING_EXCEPTION));
}
}
#endif // SERIALGC
// Always call even when there are not JVMTI environments yet, since environments
// may be attached late and JVMTI must track phases of VM execution
JvmtiExport::enter_live_phase();
// Signal Dispatcher needs to be started before VMInit event is posted
os::signal_init();
// Start Attach Listener if +StartAttachListener or it can't be started lazily
if (!DisableAttachMechanism) {
if (StartAttachListener || AttachListener::init_at_startup()) {
AttachListener::init();
}
}
// Launch -Xrun agents
// Must be done in the JVMTI live phase so that for backward compatibility the JDWP
// back-end can launch with -Xdebug -Xrunjdwp.
if (!EagerXrunInit && Arguments::init_libraries_at_startup()) {
create_vm_init_libraries();
}
// Notify JVMTI agents that VM initialization is complete - nop if no agents.
JvmtiExport::post_vm_initialized();
if (CleanChunkPoolAsync) {
Chunk::start_chunk_pool_cleaner_task();
}
// initialize compiler(s)
CompileBroker::compilation_init();
Management::initialize(THREAD);
if (HAS_PENDING_EXCEPTION) {
// management agent fails to start possibly due to
// configuration problem and is responsible for printing
// stack trace if appropriate. Simply exit VM.
vm_exit(1);
}
if (Arguments::has_profile()) FlatProfiler::engage(main_thread, true);
if (Arguments::has_alloc_profile()) AllocationProfiler::engage();
if (MemProfiling) MemProfiler::engage();
StatSampler::engage();
if (CheckJNICalls) JniPeriodicChecker::engage();
BiasedLocking::init();
if (JDK_Version::current().post_vm_init_hook_enabled()) {
call_postVMInitHook(THREAD);
// The Java side of PostVMInitHook.run must deal with all
// exceptions and provide means of diagnosis.
if (HAS_PENDING_EXCEPTION) {
CLEAR_PENDING_EXCEPTION;
}
}
// Start up the WatcherThread if there are any periodic tasks
// NOTE: All PeriodicTasks should be registered by now. If they
// aren't, late joiners might appear to start slowly (we might
// take a while to process their first tick).
if (PeriodicTask::num_tasks() > 0) {
WatcherThread::start();
}
// Give os specific code one last chance to start
os::init_3();
create_vm_timer.end();
return JNI_OK;
}
// type for the Agent_OnLoad and JVM_OnLoad entry points
extern "C" {
typedef jint (JNICALL *OnLoadEntry_t)(JavaVM *, char *, void *);
}
// Find a command line agent library and return its entry point for
// -agentlib: -agentpath: -Xrun
// num_symbol_entries must be passed-in since only the caller knows the number of symbols in the array.
static OnLoadEntry_t lookup_on_load(AgentLibrary* agent, const char *on_load_symbols[], size_t num_symbol_entries) {
OnLoadEntry_t on_load_entry = NULL;
void *library = agent->os_lib(); // check if we have looked it up before
if (library == NULL) {
char buffer[JVM_MAXPATHLEN];
char ebuf[1024];
const char *name = agent->name();
const char *msg = "Could not find agent library ";
if (agent->is_absolute_path()) {
library = os::dll_load(name, ebuf, sizeof ebuf);
if (library == NULL) {
const char *sub_msg = " in absolute path, with error: ";
size_t len = strlen(msg) + strlen(name) + strlen(sub_msg) + strlen(ebuf) + 1;
char *buf = NEW_C_HEAP_ARRAY(char, len);
jio_snprintf(buf, len, "%s%s%s%s", msg, name, sub_msg, ebuf);
// If we can't find the agent, exit.
vm_exit_during_initialization(buf, NULL);
FREE_C_HEAP_ARRAY(char, buf);
}
} else {
// Try to load the agent from the standard dll directory
os::dll_build_name(buffer, sizeof(buffer), Arguments::get_dll_dir(), name);
library = os::dll_load(buffer, ebuf, sizeof ebuf);
#ifdef KERNEL
// Download instrument dll
if (library == NULL && strcmp(name, "instrument") == 0) {
char *props = Arguments::get_kernel_properties();
char *home = Arguments::get_java_home();
const char *fmt = "%s/bin/java %s -Dkernel.background.download=false"
" sun.jkernel.DownloadManager -download client_jvm";
size_t length = strlen(props) + strlen(home) + strlen(fmt) + 1;
char *cmd = NEW_C_HEAP_ARRAY(char, length);
jio_snprintf(cmd, length, fmt, home, props);
int status = os::fork_and_exec(cmd);
FreeHeap(props);
if (status == -1) {
warning(cmd);
vm_exit_during_initialization("fork_and_exec failed: %s",
strerror(errno));
}
FREE_C_HEAP_ARRAY(char, cmd);
// when this comes back the instrument.dll should be where it belongs.
library = os::dll_load(buffer, ebuf, sizeof ebuf);
}
#endif // KERNEL
if (library == NULL) { // Try the local directory
char ns[1] = {0};
os::dll_build_name(buffer, sizeof(buffer), ns, name);
library = os::dll_load(buffer, ebuf, sizeof ebuf);
if (library == NULL) {
const char *sub_msg = " on the library path, with error: ";
size_t len = strlen(msg) + strlen(name) + strlen(sub_msg) + strlen(ebuf) + 1;
char *buf = NEW_C_HEAP_ARRAY(char, len);
jio_snprintf(buf, len, "%s%s%s%s", msg, name, sub_msg, ebuf);
// If we can't find the agent, exit.
vm_exit_during_initialization(buf, NULL);
FREE_C_HEAP_ARRAY(char, buf);
}
}
}
agent->set_os_lib(library);
}
// Find the OnLoad function.
for (size_t symbol_index = 0; symbol_index < num_symbol_entries; symbol_index++) {
on_load_entry = CAST_TO_FN_PTR(OnLoadEntry_t, os::dll_lookup(library, on_load_symbols[symbol_index]));
if (on_load_entry != NULL) break;
}
return on_load_entry;
}
// Find the JVM_OnLoad entry point
static OnLoadEntry_t lookup_jvm_on_load(AgentLibrary* agent) {
const char *on_load_symbols[] = JVM_ONLOAD_SYMBOLS;
return lookup_on_load(agent, on_load_symbols, sizeof(on_load_symbols) / sizeof(char*));
}
// Find the Agent_OnLoad entry point
static OnLoadEntry_t lookup_agent_on_load(AgentLibrary* agent) {
const char *on_load_symbols[] = AGENT_ONLOAD_SYMBOLS;
return lookup_on_load(agent, on_load_symbols, sizeof(on_load_symbols) / sizeof(char*));
}
// For backwards compatibility with -Xrun
// Convert libraries with no JVM_OnLoad, but which have Agent_OnLoad to be
// treated like -agentpath:
// Must be called before agent libraries are created
void Threads::convert_vm_init_libraries_to_agents() {
AgentLibrary* agent;
AgentLibrary* next;
for (agent = Arguments::libraries(); agent != NULL; agent = next) {
next = agent->next(); // cache the next agent now as this agent may get moved off this list
OnLoadEntry_t on_load_entry = lookup_jvm_on_load(agent);
// If there is an JVM_OnLoad function it will get called later,
// otherwise see if there is an Agent_OnLoad
if (on_load_entry == NULL) {
on_load_entry = lookup_agent_on_load(agent);
if (on_load_entry != NULL) {
// switch it to the agent list -- so that Agent_OnLoad will be called,
// JVM_OnLoad won't be attempted and Agent_OnUnload will
Arguments::convert_library_to_agent(agent);
} else {
vm_exit_during_initialization("Could not find JVM_OnLoad or Agent_OnLoad function in the library", agent->name());
}
}
}
}
// Create agents for -agentlib: -agentpath: and converted -Xrun
// Invokes Agent_OnLoad
// Called very early -- before JavaThreads exist
void Threads::create_vm_init_agents() {
extern struct JavaVM_ main_vm;
AgentLibrary* agent;
JvmtiExport::enter_onload_phase();
for (agent = Arguments::agents(); agent != NULL; agent = agent->next()) {
OnLoadEntry_t on_load_entry = lookup_agent_on_load(agent);
if (on_load_entry != NULL) {
// Invoke the Agent_OnLoad function
jint err = (*on_load_entry)(&main_vm, agent->options(), NULL);
if (err != JNI_OK) {
vm_exit_during_initialization("agent library failed to init", agent->name());
}
} else {
vm_exit_during_initialization("Could not find Agent_OnLoad function in the agent library", agent->name());
}
}
JvmtiExport::enter_primordial_phase();
}
extern "C" {
typedef void (JNICALL *Agent_OnUnload_t)(JavaVM *);
}
void Threads::shutdown_vm_agents() {
// Send any Agent_OnUnload notifications
const char *on_unload_symbols[] = AGENT_ONUNLOAD_SYMBOLS;
extern struct JavaVM_ main_vm;
for (AgentLibrary* agent = Arguments::agents(); agent != NULL; agent = agent->next()) {
// Find the Agent_OnUnload function.
for (uint symbol_index = 0; symbol_index < ARRAY_SIZE(on_unload_symbols); symbol_index++) {
Agent_OnUnload_t unload_entry = CAST_TO_FN_PTR(Agent_OnUnload_t,
os::dll_lookup(agent->os_lib(), on_unload_symbols[symbol_index]));
// Invoke the Agent_OnUnload function
if (unload_entry != NULL) {
JavaThread* thread = JavaThread::current();
ThreadToNativeFromVM ttn(thread);
HandleMark hm(thread);
(*unload_entry)(&main_vm);
break;
}
}
}
}
// Called for after the VM is initialized for -Xrun libraries which have not been converted to agent libraries
// Invokes JVM_OnLoad
void Threads::create_vm_init_libraries() {
extern struct JavaVM_ main_vm;
AgentLibrary* agent;
for (agent = Arguments::libraries(); agent != NULL; agent = agent->next()) {
OnLoadEntry_t on_load_entry = lookup_jvm_on_load(agent);
if (on_load_entry != NULL) {
// Invoke the JVM_OnLoad function
JavaThread* thread = JavaThread::current();
ThreadToNativeFromVM ttn(thread);
HandleMark hm(thread);
jint err = (*on_load_entry)(&main_vm, agent->options(), NULL);
if (err != JNI_OK) {
vm_exit_during_initialization("-Xrun library failed to init", agent->name());
}
} else {
vm_exit_during_initialization("Could not find JVM_OnLoad function in -Xrun library", agent->name());
}
}
}
// Last thread running calls java.lang.Shutdown.shutdown()
void JavaThread::invoke_shutdown_hooks() {
HandleMark hm(this);
// We could get here with a pending exception, if so clear it now.
if (this->has_pending_exception()) {
this->clear_pending_exception();
}
EXCEPTION_MARK;
klassOop k =
SystemDictionary::resolve_or_null(vmSymbols::java_lang_Shutdown(),
THREAD);
if (k != NULL) {
// SystemDictionary::resolve_or_null will return null if there was
// an exception. If we cannot load the Shutdown class, just don't
// call Shutdown.shutdown() at all. This will mean the shutdown hooks
// and finalizers (if runFinalizersOnExit is set) won't be run.
// Note that if a shutdown hook was registered or runFinalizersOnExit
// was called, the Shutdown class would have already been loaded
// (Runtime.addShutdownHook and runFinalizersOnExit will load it).
instanceKlassHandle shutdown_klass (THREAD, k);
JavaValue result(T_VOID);
JavaCalls::call_static(&result,
shutdown_klass,
vmSymbols::shutdown_method_name(),
vmSymbols::void_method_signature(),
THREAD);
}
CLEAR_PENDING_EXCEPTION;
}
// Threads::destroy_vm() is normally called from jni_DestroyJavaVM() when
// the program falls off the end of main(). Another VM exit path is through
// vm_exit() when the program calls System.exit() to return a value or when
// there is a serious error in VM. The two shutdown paths are not exactly
// the same, but they share Shutdown.shutdown() at Java level and before_exit()
// and VM_Exit op at VM level.
//
// Shutdown sequence:
// + Wait until we are the last non-daemon thread to execute
// <-- every thing is still working at this moment -->
// + Call java.lang.Shutdown.shutdown(), which will invoke Java level
// shutdown hooks, run finalizers if finalization-on-exit
// + Call before_exit(), prepare for VM exit
// > run VM level shutdown hooks (they are registered through JVM_OnExit(),
// currently the only user of this mechanism is File.deleteOnExit())
// > stop flat profiler, StatSampler, watcher thread, CMS threads,
// post thread end and vm death events to JVMTI,
// stop signal thread
// + Call JavaThread::exit(), it will:
// > release JNI handle blocks, remove stack guard pages
// > remove this thread from Threads list
// <-- no more Java code from this thread after this point -->
// + Stop VM thread, it will bring the remaining VM to a safepoint and stop
// the compiler threads at safepoint
// <-- do not use anything that could get blocked by Safepoint -->
// + Disable tracing at JNI/JVM barriers
// + Set _vm_exited flag for threads that are still running native code
// + Delete this thread
// + Call exit_globals()
// > deletes tty
// > deletes PerfMemory resources
// + Return to caller
bool Threads::destroy_vm() {
JavaThread* thread = JavaThread::current();
// Wait until we are the last non-daemon thread to execute
{ MutexLocker nu(Threads_lock);
while (Threads::number_of_non_daemon_threads() > 1 )
// This wait should make safepoint checks, wait without a timeout,
// and wait as a suspend-equivalent condition.
//
// Note: If the FlatProfiler is running and this thread is waiting
// for another non-daemon thread to finish, then the FlatProfiler
// is waiting for the external suspend request on this thread to
// complete. wait_for_ext_suspend_completion() will eventually
// timeout, but that takes time. Making this wait a suspend-
// equivalent condition solves that timeout problem.
//
Threads_lock->wait(!Mutex::_no_safepoint_check_flag, 0,
Mutex::_as_suspend_equivalent_flag);
}
// Hang forever on exit if we are reporting an error.
if (ShowMessageBoxOnError && is_error_reported()) {
os::infinite_sleep();
}
os::wait_for_keypress_at_exit();
if (JDK_Version::is_jdk12x_version()) {
// We are the last thread running, so check if finalizers should be run.
// For 1.3 or later this is done in thread->invoke_shutdown_hooks()
HandleMark rm(thread);
Universe::run_finalizers_on_exit();
} else {
// run Java level shutdown hooks
thread->invoke_shutdown_hooks();
}
before_exit(thread);
thread->exit(true);
// Stop VM thread.
{
// 4945125 The vm thread comes to a safepoint during exit.
// GC vm_operations can get caught at the safepoint, and the
// heap is unparseable if they are caught. Grab the Heap_lock
// to prevent this. The GC vm_operations will not be able to
// queue until after the vm thread is dead.
// After this point, we'll never emerge out of the safepoint before
// the VM exits, so concurrent GC threads do not need to be explicitly
// stopped; they remain inactive until the process exits.
// Note: some concurrent G1 threads may be running during a safepoint,
// but these will not be accessing the heap, just some G1-specific side
// data structures that are not accessed by any other threads but them
// after this point in a terminal safepoint.
MutexLocker ml(Heap_lock);
VMThread::wait_for_vm_thread_exit();
assert(SafepointSynchronize::is_at_safepoint(), "VM thread should exit at Safepoint");
VMThread::destroy();
}
// clean up ideal graph printers
#if defined(COMPILER2) && !defined(PRODUCT)
IdealGraphPrinter::clean_up();
#endif
// Now, all Java threads are gone except daemon threads. Daemon threads
// running Java code or in VM are stopped by the Safepoint. However,
// daemon threads executing native code are still running. But they
// will be stopped at native=>Java/VM barriers. Note that we can't
// simply kill or suspend them, as it is inherently deadlock-prone.
#ifndef PRODUCT
// disable function tracing at JNI/JVM barriers
TraceJNICalls = false;
TraceJVMCalls = false;
TraceRuntimeCalls = false;
#endif
VM_Exit::set_vm_exited();
notify_vm_shutdown();
delete thread;
// exit_globals() will delete tty
exit_globals();
return true;
}
jboolean Threads::is_supported_jni_version_including_1_1(jint version) {
if (version == JNI_VERSION_1_1) return JNI_TRUE;
return is_supported_jni_version(version);
}
jboolean Threads::is_supported_jni_version(jint version) {
if (version == JNI_VERSION_1_2) return JNI_TRUE;
if (version == JNI_VERSION_1_4) return JNI_TRUE;
if (version == JNI_VERSION_1_6) return JNI_TRUE;
return JNI_FALSE;
}
void Threads::add(JavaThread* p, bool force_daemon) {
// The threads lock must be owned at this point
assert_locked_or_safepoint(Threads_lock);
// See the comment for this method in thread.hpp for its purpose and
// why it is called here.
p->initialize_queues();
p->set_next(_thread_list);
_thread_list = p;
_number_of_threads++;
oop threadObj = p->threadObj();
bool daemon = true;
// Bootstrapping problem: threadObj can be null for initial
// JavaThread (or for threads attached via JNI)
if ((!force_daemon) && (threadObj == NULL || !java_lang_Thread::is_daemon(threadObj))) {
_number_of_non_daemon_threads++;
daemon = false;
}
ThreadService::add_thread(p, daemon);
// Possible GC point.
Events::log("Thread added: " INTPTR_FORMAT, p);
}
void Threads::remove(JavaThread* p) {
// Extra scope needed for Thread_lock, so we can check
// that we do not remove thread without safepoint code notice
{ MutexLocker ml(Threads_lock);
assert(includes(p), "p must be present");
JavaThread* current = _thread_list;
JavaThread* prev = NULL;
while (current != p) {
prev = current;
current = current->next();
}
if (prev) {
prev->set_next(current->next());
} else {
_thread_list = p->next();
}
_number_of_threads--;
oop threadObj = p->threadObj();
bool daemon = true;
if (threadObj == NULL || !java_lang_Thread::is_daemon(threadObj)) {
_number_of_non_daemon_threads--;
daemon = false;
// Only one thread left, do a notify on the Threads_lock so a thread waiting
// on destroy_vm will wake up.
if (number_of_non_daemon_threads() == 1)
Threads_lock->notify_all();
}
ThreadService::remove_thread(p, daemon);
// Make sure that safepoint code disregard this thread. This is needed since
// the thread might mess around with locks after this point. This can cause it
// to do callbacks into the safepoint code. However, the safepoint code is not aware
// of this thread since it is removed from the queue.
p->set_terminated_value();
} // unlock Threads_lock
// Since Events::log uses a lock, we grab it outside the Threads_lock
Events::log("Thread exited: " INTPTR_FORMAT, p);
}
// Threads_lock must be held when this is called (or must be called during a safepoint)
bool Threads::includes(JavaThread* p) {
assert(Threads_lock->is_locked(), "sanity check");
ALL_JAVA_THREADS(q) {
if (q == p ) {
return true;
}
}
return false;
}
// Operations on the Threads list for GC. These are not explicitly locked,
// but the garbage collector must provide a safe context for them to run.
// In particular, these things should never be called when the Threads_lock
// is held by some other thread. (Note: the Safepoint abstraction also
// uses the Threads_lock to gurantee this property. It also makes sure that
// all threads gets blocked when exiting or starting).
void Threads::oops_do(OopClosure* f, CodeBlobClosure* cf) {
ALL_JAVA_THREADS(p) {
p->oops_do(f, cf);
}
VMThread::vm_thread()->oops_do(f, cf);
}
void Threads::possibly_parallel_oops_do(OopClosure* f, CodeBlobClosure* cf) {
// Introduce a mechanism allowing parallel threads to claim threads as
// root groups. Overhead should be small enough to use all the time,
// even in sequential code.
SharedHeap* sh = SharedHeap::heap();
bool is_par = (sh->n_par_threads() > 0);
int cp = SharedHeap::heap()->strong_roots_parity();
ALL_JAVA_THREADS(p) {
if (p->claim_oops_do(is_par, cp)) {
p->oops_do(f, cf);
}
}
VMThread* vmt = VMThread::vm_thread();
if (vmt->claim_oops_do(is_par, cp))
vmt->oops_do(f, cf);
}
#ifndef SERIALGC
// Used by ParallelScavenge
void Threads::create_thread_roots_tasks(GCTaskQueue* q) {
ALL_JAVA_THREADS(p) {
q->enqueue(new ThreadRootsTask(p));
}
q->enqueue(new ThreadRootsTask(VMThread::vm_thread()));
}
// Used by Parallel Old
void Threads::create_thread_roots_marking_tasks(GCTaskQueue* q) {
ALL_JAVA_THREADS(p) {
q->enqueue(new ThreadRootsMarkingTask(p));
}
q->enqueue(new ThreadRootsMarkingTask(VMThread::vm_thread()));
}
#endif // SERIALGC
void Threads::nmethods_do(CodeBlobClosure* cf) {
ALL_JAVA_THREADS(p) {
p->nmethods_do(cf);
}
VMThread::vm_thread()->nmethods_do(cf);
}
void Threads::gc_epilogue() {
ALL_JAVA_THREADS(p) {
p->gc_epilogue();
}
}
void Threads::gc_prologue() {
ALL_JAVA_THREADS(p) {
p->gc_prologue();
}
}
void Threads::deoptimized_wrt_marked_nmethods() {
ALL_JAVA_THREADS(p) {
p->deoptimized_wrt_marked_nmethods();
}
}
// Get count Java threads that are waiting to enter the specified monitor.
GrowableArray<JavaThread*>* Threads::get_pending_threads(int count,
address monitor, bool doLock) {
assert(doLock || SafepointSynchronize::is_at_safepoint(),
"must grab Threads_lock or be at safepoint");
GrowableArray<JavaThread*>* result = new GrowableArray<JavaThread*>(count);
int i = 0;
{
MutexLockerEx ml(doLock ? Threads_lock : NULL);
ALL_JAVA_THREADS(p) {
if (p->is_Compiler_thread()) continue;
address pending = (address)p->current_pending_monitor();
if (pending == monitor) { // found a match
if (i < count) result->append(p); // save the first count matches
i++;
}
}
}
return result;
}
JavaThread *Threads::owning_thread_from_monitor_owner(address owner, bool doLock) {
assert(doLock ||
Threads_lock->owned_by_self() ||
SafepointSynchronize::is_at_safepoint(),
"must grab Threads_lock or be at safepoint");
// NULL owner means not locked so we can skip the search
if (owner == NULL) return NULL;
{
MutexLockerEx ml(doLock ? Threads_lock : NULL);
ALL_JAVA_THREADS(p) {
// first, see if owner is the address of a Java thread
if (owner == (address)p) return p;
}
}
assert(UseHeavyMonitors == false, "Did not find owning Java thread with UseHeavyMonitors enabled");
if (UseHeavyMonitors) return NULL;
//
// If we didn't find a matching Java thread and we didn't force use of
// heavyweight monitors, then the owner is the stack address of the
// Lock Word in the owning Java thread's stack.
//
JavaThread* the_owner = NULL;
{
MutexLockerEx ml(doLock ? Threads_lock : NULL);
ALL_JAVA_THREADS(q) {
if (q->is_lock_owned(owner)) {
the_owner = q;
break;
}
}
}
assert(the_owner != NULL, "Did not find owning Java thread for lock word address");
return the_owner;
}
// Threads::print_on() is called at safepoint by VM_PrintThreads operation.
void Threads::print_on(outputStream* st, bool print_stacks, bool internal_format, bool print_concurrent_locks) {
char buf[32];
st->print_cr(os::local_time_string(buf, sizeof(buf)));
st->print_cr("Full thread dump %s (%s %s):",
Abstract_VM_Version::vm_name(),
Abstract_VM_Version::vm_release(),
Abstract_VM_Version::vm_info_string()
);
st->cr();
#ifndef SERIALGC
// Dump concurrent locks
ConcurrentLocksDump concurrent_locks;
if (print_concurrent_locks) {
concurrent_locks.dump_at_safepoint();
}
#endif // SERIALGC
ALL_JAVA_THREADS(p) {
ResourceMark rm;
p->print_on(st);
if (print_stacks) {
if (internal_format) {
p->trace_stack();
} else {
p->print_stack_on(st);
}
}
st->cr();
#ifndef SERIALGC
if (print_concurrent_locks) {
concurrent_locks.print_locks_on(p, st);
}
#endif // SERIALGC
}
VMThread::vm_thread()->print_on(st);
st->cr();
Universe::heap()->print_gc_threads_on(st);
WatcherThread* wt = WatcherThread::watcher_thread();
if (wt != NULL) wt->print_on(st);
st->cr();
CompileBroker::print_compiler_threads_on(st);
st->flush();
}
// Threads::print_on_error() is called by fatal error handler. It's possible
// that VM is not at safepoint and/or current thread is inside signal handler.
// Don't print stack trace, as the stack may not be walkable. Don't allocate
// memory (even in resource area), it might deadlock the error handler.
void Threads::print_on_error(outputStream* st, Thread* current, char* buf, int buflen) {
bool found_current = false;
st->print_cr("Java Threads: ( => current thread )");
ALL_JAVA_THREADS(thread) {
bool is_current = (current == thread);
found_current = found_current || is_current;
st->print("%s", is_current ? "=>" : " ");
st->print(PTR_FORMAT, thread);
st->print(" ");
thread->print_on_error(st, buf, buflen);
st->cr();
}
st->cr();
st->print_cr("Other Threads:");
if (VMThread::vm_thread()) {
bool is_current = (current == VMThread::vm_thread());
found_current = found_current || is_current;
st->print("%s", current == VMThread::vm_thread() ? "=>" : " ");
st->print(PTR_FORMAT, VMThread::vm_thread());
st->print(" ");
VMThread::vm_thread()->print_on_error(st, buf, buflen);
st->cr();
}
WatcherThread* wt = WatcherThread::watcher_thread();
if (wt != NULL) {
bool is_current = (current == wt);
found_current = found_current || is_current;
st->print("%s", is_current ? "=>" : " ");
st->print(PTR_FORMAT, wt);
st->print(" ");
wt->print_on_error(st, buf, buflen);
st->cr();
}
if (!found_current) {
st->cr();
st->print("=>" PTR_FORMAT " (exited) ", current);
current->print_on_error(st, buf, buflen);
st->cr();
}
}
// Internal SpinLock and Mutex
// Based on ParkEvent
// Ad-hoc mutual exclusion primitives: SpinLock and Mux
//
// We employ SpinLocks _only for low-contention, fixed-length
// short-duration critical sections where we're concerned
// about native mutex_t or HotSpot Mutex:: latency.
// The mux construct provides a spin-then-block mutual exclusion
// mechanism.
//
// Testing has shown that contention on the ListLock guarding gFreeList
// is common. If we implement ListLock as a simple SpinLock it's common
// for the JVM to devolve to yielding with little progress. This is true
// despite the fact that the critical sections protected by ListLock are
// extremely short.
//
// TODO-FIXME: ListLock should be of type SpinLock.
// We should make this a 1st-class type, integrated into the lock
// hierarchy as leaf-locks. Critically, the SpinLock structure
// should have sufficient padding to avoid false-sharing and excessive
// cache-coherency traffic.
typedef volatile int SpinLockT ;
void Thread::SpinAcquire (volatile int * adr, const char * LockName) {
if (Atomic::cmpxchg (1, adr, 0) == 0) {
return ; // normal fast-path return
}
// Slow-path : We've encountered contention -- Spin/Yield/Block strategy.
TEVENT (SpinAcquire - ctx) ;
int ctr = 0 ;
int Yields = 0 ;
for (;;) {
while (*adr != 0) {
++ctr ;
if ((ctr & 0xFFF) == 0 || !os::is_MP()) {
if (Yields > 5) {
// Consider using a simple NakedSleep() instead.
// Then SpinAcquire could be called by non-JVM threads
Thread::current()->_ParkEvent->park(1) ;
} else {
os::NakedYield() ;
++Yields ;
}
} else {
SpinPause() ;
}
}
if (Atomic::cmpxchg (1, adr, 0) == 0) return ;
}
}
void Thread::SpinRelease (volatile int * adr) {
assert (*adr != 0, "invariant") ;
OrderAccess::fence() ; // guarantee at least release consistency.
// Roach-motel semantics.
// It's safe if subsequent LDs and STs float "up" into the critical section,
// but prior LDs and STs within the critical section can't be allowed
// to reorder or float past the ST that releases the lock.
*adr = 0 ;
}
// muxAcquire and muxRelease:
//
// * muxAcquire and muxRelease support a single-word lock-word construct.
// The LSB of the word is set IFF the lock is held.
// The remainder of the word points to the head of a singly-linked list
// of threads blocked on the lock.
//
// * The current implementation of muxAcquire-muxRelease uses its own
// dedicated Thread._MuxEvent instance. If we're interested in
// minimizing the peak number of extant ParkEvent instances then
// we could eliminate _MuxEvent and "borrow" _ParkEvent as long
// as certain invariants were satisfied. Specifically, care would need
// to be taken with regards to consuming unpark() "permits".
// A safe rule of thumb is that a thread would never call muxAcquire()
// if it's enqueued (cxq, EntryList, WaitList, etc) and will subsequently
// park(). Otherwise the _ParkEvent park() operation in muxAcquire() could
// consume an unpark() permit intended for monitorenter, for instance.
// One way around this would be to widen the restricted-range semaphore
// implemented in park(). Another alternative would be to provide
// multiple instances of the PlatformEvent() for each thread. One
// instance would be dedicated to muxAcquire-muxRelease, for instance.
//
// * Usage:
// -- Only as leaf locks
// -- for short-term locking only as muxAcquire does not perform
// thread state transitions.
//
// Alternatives:
// * We could implement muxAcquire and muxRelease with MCS or CLH locks
// but with parking or spin-then-park instead of pure spinning.
// * Use Taura-Oyama-Yonenzawa locks.
// * It's possible to construct a 1-0 lock if we encode the lockword as
// (List,LockByte). Acquire will CAS the full lockword while Release
// will STB 0 into the LockByte. The 1-0 scheme admits stranding, so
// acquiring threads use timers (ParkTimed) to detect and recover from
// the stranding window. Thread/Node structures must be aligned on 256-byte
// boundaries by using placement-new.
// * Augment MCS with advisory back-link fields maintained with CAS().
// Pictorially: LockWord -> T1 <-> T2 <-> T3 <-> ... <-> Tn <-> Owner.
// The validity of the backlinks must be ratified before we trust the value.
// If the backlinks are invalid the exiting thread must back-track through the
// the forward links, which are always trustworthy.
// * Add a successor indication. The LockWord is currently encoded as
// (List, LOCKBIT:1). We could also add a SUCCBIT or an explicit _succ variable
// to provide the usual futile-wakeup optimization.
// See RTStt for details.
// * Consider schedctl.sc_nopreempt to cover the critical section.
//
typedef volatile intptr_t MutexT ; // Mux Lock-word
enum MuxBits { LOCKBIT = 1 } ;
void Thread::muxAcquire (volatile intptr_t * Lock, const char * LockName) {
intptr_t w = Atomic::cmpxchg_ptr (LOCKBIT, Lock, 0) ;
if (w == 0) return ;
if ((w & LOCKBIT) == 0 && Atomic::cmpxchg_ptr (w|LOCKBIT, Lock, w) == w) {
return ;
}
TEVENT (muxAcquire - Contention) ;
ParkEvent * const Self = Thread::current()->_MuxEvent ;
assert ((intptr_t(Self) & LOCKBIT) == 0, "invariant") ;
for (;;) {
int its = (os::is_MP() ? 100 : 0) + 1 ;
// Optional spin phase: spin-then-park strategy
while (--its >= 0) {
w = *Lock ;
if ((w & LOCKBIT) == 0 && Atomic::cmpxchg_ptr (w|LOCKBIT, Lock, w) == w) {
return ;
}
}
Self->reset() ;
Self->OnList = intptr_t(Lock) ;
// The following fence() isn't _strictly necessary as the subsequent
// CAS() both serializes execution and ratifies the fetched *Lock value.
OrderAccess::fence();
for (;;) {
w = *Lock ;
if ((w & LOCKBIT) == 0) {
if (Atomic::cmpxchg_ptr (w|LOCKBIT, Lock, w) == w) {
Self->OnList = 0 ; // hygiene - allows stronger asserts
return ;
}
continue ; // Interference -- *Lock changed -- Just retry
}
assert (w & LOCKBIT, "invariant") ;
Self->ListNext = (ParkEvent *) (w & ~LOCKBIT );
if (Atomic::cmpxchg_ptr (intptr_t(Self)|LOCKBIT, Lock, w) == w) break ;
}
while (Self->OnList != 0) {
Self->park() ;
}
}
}
void Thread::muxAcquireW (volatile intptr_t * Lock, ParkEvent * ev) {
intptr_t w = Atomic::cmpxchg_ptr (LOCKBIT, Lock, 0) ;
if (w == 0) return ;
if ((w & LOCKBIT) == 0 && Atomic::cmpxchg_ptr (w|LOCKBIT, Lock, w) == w) {
return ;
}
TEVENT (muxAcquire - Contention) ;
ParkEvent * ReleaseAfter = NULL ;
if (ev == NULL) {
ev = ReleaseAfter = ParkEvent::Allocate (NULL) ;
}
assert ((intptr_t(ev) & LOCKBIT) == 0, "invariant") ;
for (;;) {
guarantee (ev->OnList == 0, "invariant") ;
int its = (os::is_MP() ? 100 : 0) + 1 ;
// Optional spin phase: spin-then-park strategy
while (--its >= 0) {
w = *Lock ;
if ((w & LOCKBIT) == 0 && Atomic::cmpxchg_ptr (w|LOCKBIT, Lock, w) == w) {
if (ReleaseAfter != NULL) {
ParkEvent::Release (ReleaseAfter) ;
}
return ;
}
}
ev->reset() ;
ev->OnList = intptr_t(Lock) ;
// The following fence() isn't _strictly necessary as the subsequent
// CAS() both serializes execution and ratifies the fetched *Lock value.
OrderAccess::fence();
for (;;) {
w = *Lock ;
if ((w & LOCKBIT) == 0) {
if (Atomic::cmpxchg_ptr (w|LOCKBIT, Lock, w) == w) {
ev->OnList = 0 ;
// We call ::Release while holding the outer lock, thus
// artificially lengthening the critical section.
// Consider deferring the ::Release() until the subsequent unlock(),
// after we've dropped the outer lock.
if (ReleaseAfter != NULL) {
ParkEvent::Release (ReleaseAfter) ;
}
return ;
}
continue ; // Interference -- *Lock changed -- Just retry
}
assert (w & LOCKBIT, "invariant") ;
ev->ListNext = (ParkEvent *) (w & ~LOCKBIT );
if (Atomic::cmpxchg_ptr (intptr_t(ev)|LOCKBIT, Lock, w) == w) break ;
}
while (ev->OnList != 0) {
ev->park() ;
}
}
}
// Release() must extract a successor from the list and then wake that thread.
// It can "pop" the front of the list or use a detach-modify-reattach (DMR) scheme
// similar to that used by ParkEvent::Allocate() and ::Release(). DMR-based
// Release() would :
// (A) CAS() or swap() null to *Lock, releasing the lock and detaching the list.
// (B) Extract a successor from the private list "in-hand"
// (C) attempt to CAS() the residual back into *Lock over null.
// If there were any newly arrived threads and the CAS() would fail.
// In that case Release() would detach the RATs, re-merge the list in-hand
// with the RATs and repeat as needed. Alternately, Release() might
// detach and extract a successor, but then pass the residual list to the wakee.
// The wakee would be responsible for reattaching and remerging before it
// competed for the lock.
//
// Both "pop" and DMR are immune from ABA corruption -- there can be
// multiple concurrent pushers, but only one popper or detacher.
// This implementation pops from the head of the list. This is unfair,
// but tends to provide excellent throughput as hot threads remain hot.
// (We wake recently run threads first).
void Thread::muxRelease (volatile intptr_t * Lock) {
for (;;) {
const intptr_t w = Atomic::cmpxchg_ptr (0, Lock, LOCKBIT) ;
assert (w & LOCKBIT, "invariant") ;
if (w == LOCKBIT) return ;
ParkEvent * List = (ParkEvent *) (w & ~LOCKBIT) ;
assert (List != NULL, "invariant") ;
assert (List->OnList == intptr_t(Lock), "invariant") ;
ParkEvent * nxt = List->ListNext ;
// The following CAS() releases the lock and pops the head element.
if (Atomic::cmpxchg_ptr (intptr_t(nxt), Lock, w) != w) {
continue ;
}
List->OnList = 0 ;
OrderAccess::fence() ;
List->unpark () ;
return ;
}
}
void Threads::verify() {
ALL_JAVA_THREADS(p) {
p->verify();
}
VMThread* thread = VMThread::vm_thread();
if (thread != NULL) thread->verify();
}