Skip to content

Commit 839dd65

Browse files
author
Serguei Spitsyn
committedNov 21, 2023
8319244: implement JVMTI handshakes support for virtual threads
Reviewed-by: pchilanomate, amenkov
1 parent 46e4028 commit 839dd65

File tree

4 files changed

+164
-360
lines changed

4 files changed

+164
-360
lines changed
 

‎src/hotspot/share/prims/jvmtiEnv.cpp

+10-128
Original file line numberDiff line numberDiff line change
@@ -1711,47 +1711,9 @@ JvmtiEnv::GetThreadGroupChildren(jthreadGroup group, jint* thread_count_ptr, jth
17111711
// count_ptr - pre-checked for null
17121712
jvmtiError
17131713
JvmtiEnv::GetStackTrace(jthread thread, jint start_depth, jint max_frame_count, jvmtiFrameInfo* frame_buffer, jint* count_ptr) {
1714-
JavaThread* current_thread = JavaThread::current();
1715-
HandleMark hm(current_thread);
1716-
1717-
JvmtiVTMSTransitionDisabler disabler(thread);
1718-
ThreadsListHandle tlh(current_thread);
1719-
1720-
JavaThread* java_thread = nullptr;
1721-
oop thread_obj = nullptr;
1722-
jvmtiError err = get_threadOop_and_JavaThread(tlh.list(), thread, &java_thread, &thread_obj);
1723-
if (err != JVMTI_ERROR_NONE) {
1724-
return err;
1725-
}
1726-
1727-
if (java_lang_VirtualThread::is_instance(thread_obj)) {
1728-
if (java_thread == nullptr) { // Target virtual thread is unmounted.
1729-
ResourceMark rm(current_thread);
1730-
1731-
VM_VirtualThreadGetStackTrace op(this, Handle(current_thread, thread_obj),
1732-
start_depth, max_frame_count,
1733-
frame_buffer, count_ptr);
1734-
VMThread::execute(&op);
1735-
return op.result();
1736-
}
1737-
VirtualThreadGetStackTraceClosure op(this, Handle(current_thread, thread_obj),
1738-
start_depth, max_frame_count, frame_buffer, count_ptr);
1739-
Handshake::execute(&op, java_thread);
1740-
return op.result();
1741-
}
1742-
1743-
// It is only safe to perform the direct operation on the current
1744-
// thread. All other usage needs to use a direct handshake for safety.
1745-
if (java_thread == JavaThread::current()) {
1746-
err = get_stack_trace(java_thread, start_depth, max_frame_count, frame_buffer, count_ptr);
1747-
} else {
1748-
// Get stack trace with handshake.
1749-
GetStackTraceClosure op(this, start_depth, max_frame_count, frame_buffer, count_ptr);
1750-
Handshake::execute(&op, java_thread);
1751-
err = op.result();
1752-
}
1753-
1754-
return err;
1714+
GetStackTraceClosure op(this, start_depth, max_frame_count, frame_buffer, count_ptr);
1715+
JvmtiHandshake::execute(&op, thread);
1716+
return op.result();
17551717
} /* end GetStackTrace */
17561718

17571719

@@ -1829,41 +1791,9 @@ JvmtiEnv::GetThreadListStackTraces(jint thread_count, const jthread* thread_list
18291791
// count_ptr - pre-checked for null
18301792
jvmtiError
18311793
JvmtiEnv::GetFrameCount(jthread thread, jint* count_ptr) {
1832-
JavaThread* current_thread = JavaThread::current();
1833-
HandleMark hm(current_thread);
1834-
1835-
JvmtiVTMSTransitionDisabler disabler(thread);
1836-
ThreadsListHandle tlh(current_thread);
1837-
1838-
JavaThread* java_thread = nullptr;
1839-
oop thread_obj = nullptr;
1840-
jvmtiError err = get_threadOop_and_JavaThread(tlh.list(), thread, &java_thread, &thread_obj);
1841-
if (err != JVMTI_ERROR_NONE) {
1842-
return err;
1843-
}
1844-
1845-
if (java_lang_VirtualThread::is_instance(thread_obj)) {
1846-
if (java_thread == nullptr) { // Target virtual thread is unmounted.
1847-
VM_VirtualThreadGetFrameCount op(this, Handle(current_thread, thread_obj), count_ptr);
1848-
VMThread::execute(&op);
1849-
return op.result();
1850-
}
1851-
VirtualThreadGetFrameCountClosure op(this, Handle(current_thread, thread_obj), count_ptr);
1852-
Handshake::execute(&op, java_thread);
1853-
return op.result();
1854-
}
1855-
1856-
// It is only safe to perform the direct operation on the current
1857-
// thread. All other usage needs to use a direct handshake for safety.
1858-
if (java_thread == JavaThread::current()) {
1859-
err = get_frame_count(java_thread, count_ptr);
1860-
} else {
1861-
// get java stack frame count with handshake.
1862-
GetFrameCountClosure op(this, count_ptr);
1863-
Handshake::execute(&op, java_thread);
1864-
err = op.result();
1865-
}
1866-
return err;
1794+
GetFrameCountClosure op(this, count_ptr);
1795+
JvmtiHandshake::execute(&op, thread);
1796+
return op.result();
18671797
} /* end GetFrameCount */
18681798

18691799

@@ -1923,41 +1853,9 @@ JvmtiEnv::PopFrame(jthread thread) {
19231853
// location_ptr - pre-checked for null
19241854
jvmtiError
19251855
JvmtiEnv::GetFrameLocation(jthread thread, jint depth, jmethodID* method_ptr, jlocation* location_ptr) {
1926-
JavaThread* current_thread = JavaThread::current();
1927-
HandleMark hm(current_thread);
1928-
1929-
JvmtiVTMSTransitionDisabler disabler(thread);
1930-
ThreadsListHandle tlh(current_thread);
1931-
1932-
JavaThread* java_thread = nullptr;
1933-
oop thread_obj = nullptr;
1934-
jvmtiError err = get_threadOop_and_JavaThread(tlh.list(), thread, &java_thread, &thread_obj);
1935-
if (err != JVMTI_ERROR_NONE) {
1936-
return err;
1937-
}
1938-
1939-
if (java_lang_VirtualThread::is_instance(thread_obj)) {
1940-
if (java_thread == nullptr) { // Target virtual thread is unmounted.
1941-
err = get_frame_location(thread_obj, depth, method_ptr, location_ptr);
1942-
return err;
1943-
}
1944-
VirtualThreadGetFrameLocationClosure op(this, Handle(current_thread, thread_obj),
1945-
depth, method_ptr, location_ptr);
1946-
Handshake::execute(&op, java_thread);
1947-
return op.result();
1948-
}
1949-
1950-
// It is only safe to perform the direct operation on the current
1951-
// thread. All other usage needs to use a direct handshake for safety.
1952-
if (java_thread == JavaThread::current()) {
1953-
err = get_frame_location(java_thread, depth, method_ptr, location_ptr);
1954-
} else {
1955-
// JVMTI get java stack frame location via direct handshake.
1956-
GetFrameLocationClosure op(this, depth, method_ptr, location_ptr);
1957-
Handshake::execute(&op, java_thread);
1958-
err = op.result();
1959-
}
1960-
return err;
1856+
GetFrameLocationClosure op(this, depth, method_ptr, location_ptr);
1857+
JvmtiHandshake::execute(&op, thread);
1858+
return op.result();
19611859
} /* end GetFrameLocation */
19621860

19631861

@@ -1984,25 +1882,9 @@ JvmtiEnv::NotifyFramePop(jthread thread, jint depth) {
19841882
return JVMTI_ERROR_THREAD_NOT_ALIVE;
19851883
}
19861884

1987-
if (java_lang_VirtualThread::is_instance(thread_handle())) {
1988-
VirtualThreadSetFramePopClosure op(this, thread_handle, state, depth);
1989-
MutexLocker mu(current, JvmtiThreadState_lock);
1990-
if (java_thread == nullptr || java_thread == current) {
1991-
// Target virtual thread is unmounted or current.
1992-
op.doit(java_thread, true /* self */);
1993-
} else {
1994-
Handshake::execute(&op, java_thread);
1995-
}
1996-
return op.result();
1997-
}
1998-
19991885
SetFramePopClosure op(this, state, depth);
20001886
MutexLocker mu(current, JvmtiThreadState_lock);
2001-
if (java_thread == current) {
2002-
op.doit(java_thread, true /* self */);
2003-
} else {
2004-
Handshake::execute(&op, java_thread);
2005-
}
1887+
JvmtiHandshake::execute(&op, &tlh, java_thread, thread_handle);
20061888
return op.result();
20071889
} /* end NotifyFramePop */
20081890

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Nov 21, 2023

@openjdk-notifier[bot]
Please sign in to comment.