Skip to content

Commit be4245e

Browse files
committedNov 30, 2022
8294924: JvmtiExport::post_exception_throw() doesn't deal well with concurrent stack processing
Reviewed-by: pchilanomate, sspitsyn, dholmes
1 parent be99e84 commit be4245e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

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

+6
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
#include "runtime/javaCalls.hpp"
6161
#include "runtime/javaThread.hpp"
6262
#include "runtime/jniHandles.inline.hpp"
63+
#include "runtime/keepStackGCProcessed.hpp"
6364
#include "runtime/objectMonitor.hpp"
6465
#include "runtime/objectMonitor.inline.hpp"
6566
#include "runtime/os.hpp"
@@ -1964,6 +1965,11 @@ void JvmtiExport::post_exception_throw(JavaThread *thread, Method* method, addre
19641965
HandleMark hm(thread);
19651966
methodHandle mh(thread, method);
19661967
Handle exception_handle(thread, exception);
1968+
// The KeepStackGCProcessedMark below keeps the target thread and its stack fully
1969+
// GC processed across this scope. This is needed because there is a stack walk
1970+
// below with safepoint polls inside of it. After such safepoints, we have to
1971+
// ensure the stack is sufficiently processed.
1972+
KeepStackGCProcessedMark ksgcpm(thread);
19671973

19681974
JvmtiThreadState *state = thread->jvmti_thread_state();
19691975
if (state == NULL) {

0 commit comments

Comments
 (0)
Please sign in to comment.