-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/objdump: x86 disassembler does not recognize PDEPQ #25617
Comments
#23386 is potentially linked. @quasilyte suggested in a comment that the disassembler needs to be updated according to the latest x86.csv. From my limited digging into this, it does seem it could just be a matter of some instruction tables getting out of sync. |
@mmcloughlin, that's my understanding that it's better to re-generate disassembler than to manually fix all issues (there are potentially a lots of them). It's possible to patch it, but decoder does not understand, for example, all recently added AVX-512 instructions, so it's not a matter of dozens, but hundreds of instructions. The main problem is that updated x86.csv generator is on halt until some format questions are resolved. The encoder tables (for assembler) are generated from XED tables directly right now. It is possible to generate decoder tables from that too, but this would require discussion as well. |
Thank you for the detailed reply. I'd agree that an automated solution to this is preferable. I'm interested in learning more and helping out, but it seems that contributing in this area is non-trivial? |
Noting that the objdump still cannot disassemble the input:
|
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes, confirmed on 1.9.2 and 1.10.2. Not tested on master.
What operating system and processor architecture are you using (
go env
)?What did you do?
Compiled package with assembly code using
PDEPQ
. Viewed resulting assembly withgo tool objdump
.Gist https://gist.github.com/mmcloughlin/b5bf1bcc7f31222ff2bc510f2777cd79 is a minimal example.
What did you expect to see?
Expect
go tool objdump
to show thePDEPQ
instruction.What did you see instead?
Output from
objdump.sh
script is as follows. Theobjdump
tool does not recognizePDEPQ
, and instead parses it as a sequence of instructions. Note that Apple's LLVM objdump correctly identifies the instruction.The text was updated successfully, but these errors were encountered: