Support for DPP instructions in disassembler.
Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
LGTM and one nit.
lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp | ||
---|---|---|
135 | tryDecodeInst restores Bytes on failed attempt. |
lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp | ||
---|---|---|
135 | It is still needed here because eatBytes<uint64_t>() eats 8 bytes and tryDecodeInst would not restore them. We need to restore Bytes from original Bytes_ stream. |
tryDecodeInst restores Bytes on failed attempt.