@@ -1711,47 +1711,9 @@ JvmtiEnv::GetThreadGroupChildren(jthreadGroup group, jint* thread_count_ptr, jth
1711
1711
// count_ptr - pre-checked for null
1712
1712
jvmtiError
1713
1713
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 ();
1755
1717
} /* end GetStackTrace */
1756
1718
1757
1719
@@ -1829,41 +1791,9 @@ JvmtiEnv::GetThreadListStackTraces(jint thread_count, const jthread* thread_list
1829
1791
// count_ptr - pre-checked for null
1830
1792
jvmtiError
1831
1793
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 ();
1867
1797
} /* end GetFrameCount */
1868
1798
1869
1799
@@ -1923,41 +1853,9 @@ JvmtiEnv::PopFrame(jthread thread) {
1923
1853
// location_ptr - pre-checked for null
1924
1854
jvmtiError
1925
1855
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 ();
1961
1859
} /* end GetFrameLocation */
1962
1860
1963
1861
@@ -1984,25 +1882,9 @@ JvmtiEnv::NotifyFramePop(jthread thread, jint depth) {
1984
1882
return JVMTI_ERROR_THREAD_NOT_ALIVE;
1985
1883
}
1986
1884
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
-
1999
1885
SetFramePopClosure op (this , state, depth);
2000
1886
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);
2006
1888
return op.result ();
2007
1889
} /* end NotifyFramePop */
2008
1890
1 commit comments
openjdk-notifier[bot] commentedon Nov 21, 2023
Review
Issues