8367553: [lworld] compiler/valhalla/inlinetypes/TestNullableArrays.java fails with segfault in C1 compiled code on aarch64 #1766
+0
−7
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Seems that it was just JDK-8367151: [lworld] CorrectlyRestoreRfp.java triggers "bad oop found" during deoptimization/#1751. When I checked first if it still reproduces, #1751 wasn't integrated yet. And after investigation, it turned out to be the same issue. And after integration of the said PR, the problem didn't show again under much more extensive testing than what was enough to reproduce before.
In more details, the case I investigated was mostly in
test76_verifier(occasionally intest78_verifier)valhalla/test/hotspot/jtreg/compiler/valhalla/inlinetypes/TestNullableArrays.java
Lines 2100 to 2120 in acb511a
that is C1-compiled. During a call to C2-compiled
verify:valhalla/test/hotspot/jtreg/compiler/valhalla/inlinetypes/TestNullableArrays.java
Lines 1145 to 1153 in acb511a
an oop is passed in rfp. Sometimes, the GC moves the object during the execution of
verify, it updated the wrong copy of RFP on the stack. Thenverifyhits an uncommon trap, and in the process picks the wrongrfpby exactly the same mechanism as in JDK-8367151. Later intest76_verify, the content of rfp, that now contains a wrong oop, is used, garbage is read, segfault.The fact that is goes through an uncommon trap makes it a slightly different flavor than what I've seen before. Also, I should have taken my own advice, and use SerialGC, it would have saved me some complications!
I suggest we just un-problem list now.
Thanks,
Marc
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/valhalla.git pull/1766/head:pull/1766$ git checkout pull/1766Update a local copy of the PR:
$ git checkout pull/1766$ git pull https://git.openjdk.org/valhalla.git pull/1766/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 1766View PR using the GUI difftool:
$ git pr show -t 1766Using diff file
Download this PR as a diff file:
https://git.openjdk.org/valhalla/pull/1766.diff
Using Webrev
Link to Webrev Comment