Skip to content
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

Winch: fix atomic and/or/xor bug #10060

Merged
merged 1 commit into from
Jan 21, 2025

Conversation

MarinPostma
Copy link
Contributor

This PR fixes atomic and/or/xor. The issue was that I was using the operand as a destination for the AtomicRmwSeq, but it is a macro-instruction, and the operand ended up being overwritten. This was caught when I enabled the atomic.wast spec tests in #10039 (comment).

Investigating into the issue I realized that AtomicRmwSeq also had requirement for one of it's registers, but that didn't show up initially, because I got lucky, and the value was popped in the right register every time I tested.

The fix is to pop-push the operand to compute the address, and then pass the codegen context to masm to allocate the registers.

@MarinPostma MarinPostma requested review from a team as code owners January 21, 2025 12:55
@MarinPostma MarinPostma requested review from abrown and fitzgen and removed request for a team January 21, 2025 12:55
@github-actions github-actions bot added the winch Winch issues or pull requests label Jan 21, 2025
Copy link

Subscribe to Label Action

cc @saulecabrera

This issue or pull request has been labeled: "winch"

Thus the following users have been cc'd because of the following labels:

  • saulecabrera: winch

To subscribe or unsubscribe from this label, edit the .github/subscribe-to-label.json configuration file.

Learn more.

Copy link
Member

@fitzgen fitzgen left a comment

Choose a reason for hiding this comment

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

LGTM, thanks!

@fitzgen fitzgen added this pull request to the merge queue Jan 21, 2025
Merged via the queue into bytecodealliance:main with commit 328ef65 Jan 21, 2025
39 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
winch Winch issues or pull requests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants