-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[RISCV] Missing register overlap check for XTheadMemPair loads #136087
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
Comments
@llvm/issue-subscribers-backend-risc-v Author: Craig Topper (topperc)
The XTheadMemPair extension requires rs1 != rd1 && rs1 != rd2 && rd1 != rd2. We don't check for this in the assembler today, but binutils does.
We need to add a check to validateInstruction in RISCVAsmParser.cpp |
Hi! This issue may be a good introductory issue for people new to working on LLVM. If you would like to work on this issue, your first steps are:
If you have any further questions about this issue, don't hesitate to ask via a comment in the thread below. |
@llvm/issue-subscribers-good-first-issue Author: Craig Topper (topperc)
The XTheadMemPair extension requires rs1 != rd1 && rs1 != rd2 && rd1 != rd2. We don't check for this in the assembler today, but binutils does.
We need to add a check to validateInstruction in RISCVAsmParser.cpp |
Uh oh!
There was an error while loading. Please reload this page.
I think the XTheadMemPair extension requires rs1 != rd1 && rs1 != rd2 && rd1 != rd2.
We have a check in the assembler in
validateInstruction
but it isn't as strict.The text was updated successfully, but these errors were encountered: