We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The reason for this issue is that current implementation does not support 5-register tuples.
The text was updated successfully, but these errors were encountered:
I think this is fixed now. See https://reviews.llvm.org/D94960 which enabled proper disassembly of MIMG instructions with tfe.
Sorry, something went wrong.
Thanks! The patch you mentioned did fix a lot of disassembler failures.
However some tests with 0xf dmask still fail to disassemble.
For example, the following code is disassembled ok for gfx8 and gfx9:
0x00,0x0f,0x44,0xf0,0xfc,0x05,0x02,0x00 image_atomic_cmpswap v[5:8], v252, s[8:15] dmask:0xf
The same code with tfe produces an invalid output for the same GPUs:
0x00,0x0f,0x45,0xf0,0xfc,0x05,0x02,0x00 image_atomic_cmpswap v[5:6], v252, s[8:15] dmask:0xf tfe
Also the following instruction fails to assemble on gfx7-gfx10:
image_atomic_cmpswap v[5:9], v252, s[8:15] dmask:0xf tfe
See also related bugs 48846, 48847
I think this problem is now fixed with PR 112622.
Seems to work now
jwanggit86
No branches or pull requests
Extended Description
The reason for this issue is that current implementation does not support 5-register tuples.
The text was updated successfully, but these errors were encountered: