Skip to content

8360175: C2 crash: assert(edge_from_to(prior_use,n)) failed: before block local scheduling #26157

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

mhaessig
Copy link
Contributor

@mhaessig mhaessig commented Jul 7, 2025

The triggered assert is part of the schedule verification code that runs just before machine code is emitted. The debug output showed that a leaPCompressedOopOffset node was causing the assert, which suggested the peephole optimization introduced in #25471 as the cause. The failure proved quite difficult to reproduce. It failed more often on Windows and required -XX:+UseKNLSetting (forces code generation for Intel's Knights Landing platform), which forces -XX:+OptoScheduling.

The root-cause is a subtle bug in the rewiring of the base edge of leaP* nodes in the remove_redundant_lea peephole. When the peephole removed a decodeHeapOop_not_null including a spill, it did not set the base edge of the leaP* node to the same node as the address edge, which is the intent of the peephole, but to the parent node of the spill. That is not catastrophic in most cases, but might reference another register slot, which causes this assert. Concretely, we see the following graph

    MemToRegSpillCopy
     |             |
     |    MemToRegSpillCopy
     |             |    
DefiniinoSpillCopy |
     |             |
     |  decodeHeapOop_not_null
     |             |
   leaPCompressedHeapOop

gets rewired to

     MemToRegSpillCopy
       |            |    
DefinitionSpillCopy |
       |            |
   leaPCompressedHeapOop

instead of

  MemToRegSpillCopy
         |
 DefinitionSpillCopy
        / \     
leaPCompressedHeapOop

This PR fixes this by always setting the base edge of the leaP* node to the same node as the address edge. Unfortunately, I was not able to construct a regression test because of the difficulty of reproducing the bug.

Testing

  • Github Actions
  • tier1,tier2 plus internal testing on all Oracle supported platforms
  • tier3,tier4,tier5 plus internal testing on Linux and Windows x64
  • Runthese8H on windows-x64-debug (test that reliably produced the failure addressed in this PR)

Progress

  • Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue

Issue

  • JDK-8360175: C2 crash: assert(edge_from_to(prior_use,n)) failed: before block local scheduling (Bug - P3)

Reviewers

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/26157/head:pull/26157
$ git checkout pull/26157

Update a local copy of the PR:
$ git checkout pull/26157
$ git pull https://git.openjdk.org/jdk.git pull/26157/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 26157

View PR using the GUI difftool:
$ git pr show -t 26157

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/26157.diff

Using Webrev

Link to Webrev Comment

@mhaessig mhaessig marked this pull request as draft July 7, 2025 09:47
@bridgekeeper
Copy link

bridgekeeper bot commented Jul 7, 2025

👋 Welcome back mhaessig! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk
Copy link

openjdk bot commented Jul 7, 2025

@mhaessig This change now passes all automated pre-integration checks.

ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details.

After integration, the commit message for the final commit will be:

8360175: C2 crash:  assert(edge_from_to(prior_use,n)) failed: before block local scheduling

Reviewed-by: kvn, chagedorn

You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed.

At the time when this comment was updated there had been 16 new commits pushed to the master branch:

As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details.

➡️ To integrate this PR with the above commit message to the master branch, type /integrate in a new comment.

@openjdk openjdk bot changed the title 8360175: C2 crash: assert(edge_from_to(prior_use,n)) failed: before block local scheduling 8360175: C2 crash: assert(edge_from_to(prior_use,n)) failed: before block local scheduling Jul 7, 2025
@openjdk
Copy link

openjdk bot commented Jul 7, 2025

@mhaessig The following label will be automatically applied to this pull request:

  • hotspot-compiler

When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command.

@openjdk openjdk bot added the hotspot-compiler hotspot-compiler-dev@openjdk.org label Jul 7, 2025
@mhaessig mhaessig marked this pull request as ready for review July 7, 2025 10:25
@openjdk openjdk bot added the rfr Pull request is ready for review label Jul 7, 2025
@mlbridge
Copy link

mlbridge bot commented Jul 7, 2025

Webrevs

Copy link
Contributor

@vnkozlov vnkozlov left a comment

Choose a reason for hiding this comment

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

Seems fine.

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Jul 8, 2025
@@ -346,7 +346,7 @@ bool Peephole::lea_remove_redundant(Block* block, int block_index, PhaseCFG* cfg
for (DUIterator_Fast imax, i = decode->fast_outs(imax); i < imax; i++) {
Node* dependant_lea = decode->fast_out(i);
if (dependant_lea->is_Mach() && dependant_lea->as_Mach()->ideal_Opcode() == Op_AddP) {
dependant_lea->set_req(AddPNode::Base, decode_address);
dependant_lea->set_req(AddPNode::Base, lea_derived_oop->in(AddPNode::Address));
Copy link
Member

Choose a reason for hiding this comment

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

The fix looks reasonable to me, too. No worries about the regression test, thanks for trying! A small question: Why don't we use lea_address?

Another thing I've noticed while browsing the code: ra_ and new_root seem to be unused and could be removed (could probably also be squeezed into this PR here instead of creating a new issue just for that).

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We cannot use lea_address because in case of a spill that also gets moved up one node to check if the lea and the decode point to the same grandparent.

Another thing I've noticed while browsing the code: ra_ and new_root seem to be unused and could be removed.

These arguments come from the machinery that calls this out of the matcher. I am not too familiar with it, so my working assumption so far has been to keep the signature the same as the other peepholes, which seems logical since it is called by generated code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
hotspot-compiler hotspot-compiler-dev@openjdk.org ready Pull request is ready to be integrated rfr Pull request is ready for review
Development

Successfully merging this pull request may close these issues.

3 participants