Skip to content

Commit 198cec9

Browse files
pronSerguei Spitsyn
authored and
Serguei Spitsyn
committedJun 21, 2022
8286103: VThreadMonitorTest fails "assert(!current->cont_fastpath() || (current->cont_fastpath_thread_state() && !interpreted_native_or_deoptimized_on_stack(current))) failed"
Reviewed-by: sspitsyn, pchilanomate
1 parent 97200a7 commit 198cec9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎src/hotspot/share/runtime/continuationFreezeThaw.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -2065,6 +2065,9 @@ void ThawBase::recurse_thaw_compiled_frame(const frame& hf, frame& caller, int n
20652065
_align_size += frame::align_wiggle; // we add one whether or not we've aligned because we add it in freeze_interpreted_frame
20662066
}
20672067

2068+
// new_stack_frame must construct the resulting frame using hf.pc() rather than hf.raw_pc() because the frame is not
2069+
// yet laid out in the stack, and so the original_pc is not stored in it.
2070+
// As a result, f.is_deoptimized_frame() is always false and we must test hf to know if the frame is deoptimized.
20682071
frame f = new_stack_frame<ContinuationHelper::CompiledFrame>(hf, caller, is_bottom_frame);
20692072
intptr_t* const stack_frame_top = f.sp();
20702073
intptr_t* const heap_frame_top = hf.unextended_sp();
@@ -2086,7 +2089,9 @@ void ThawBase::recurse_thaw_compiled_frame(const frame& hf, frame& caller, int n
20862089

20872090
patch(f, caller, is_bottom_frame);
20882091

2089-
if (f.is_deoptimized_frame()) {
2092+
// f.is_deoptimized_frame() is always false and we must test hf.is_deoptimized_frame() (see comment above)
2093+
assert(!f.is_deoptimized_frame(), "");
2094+
if (hf.is_deoptimized_frame()) {
20902095
maybe_set_fastpath(f.sp());
20912096
} else if (_thread->is_interp_only_mode()
20922097
|| (_cont.is_preempted() && f.cb()->as_compiled_method()->is_marked_for_deoptimization())) {

0 commit comments

Comments
 (0)
Please sign in to comment.