Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
/ jdk19 Public archive

Commit

Permalink
8278053: serviceability/jvmti/vthread/ContStackDepthTest/ContStackDep…
Browse files Browse the repository at this point in the history
…thTest.java failing in loom repo with Xcomp

Reviewed-by: sspitsyn, pchilanomate, coleenp
  • Loading branch information
pron authored and Serguei Spitsyn committed Jun 21, 2022
1 parent 31d981e commit 97200a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/hotspot/share/runtime/continuationFreezeThaw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1965,6 +1965,10 @@ inline void ThawBase::patch(frame& f, const frame& caller, bool bottom) {
if (bottom) {
ContinuationHelper::Frame::patch_pc(caller, _cont.is_empty() ? caller.pc()
: StubRoutines::cont_returnBarrier());
} else {
// caller might have been deoptimized during thaw but we've overwritten the return address when copying f from the heap.
// If the caller is not deoptimized, pc is unchanged.
ContinuationHelper::Frame::patch_pc(caller, caller.raw_pc());
}

patch_pd(f, caller);
Expand Down
3 changes: 0 additions & 3 deletions test/hotspot/jtreg/ProblemList-Xcomp.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ vmTestbase/nsk/jvmti/AttachOnDemand/attach022/TestDescription.java 8277573 gener

vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw001/TestDescription.java 8205957 generic-all

serviceability/jvmti/vthread/ContFramePopTest/ContFramePopTest.java 8278053 generic-all
serviceability/jvmti/vthread/ContStackDepthTest/ContStackDepthTest.java 8278053 generic-all

serviceability/sa/TestJhsdbJstackMixed.java 8248675 linux-aarch64

vmTestbase/nsk/jvmti/scenarios/sampling/SP07/sp07t002/TestDescription.java 8245680 windows-x64
Expand Down

1 comment on commit 97200a7

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.