You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure how feasible this is or how much LLVM provides, but it seems like there isn't a lot of information available about decoded instructions. It's for example not possible to extract arguments or even easily retrieve just the instruction mnemonic.
Because it's generic over multiple architectures it probably won't ever reach the level of detail that something like iced_x86::Instruction has, but a bit more than just the bytes and the entire assembler line would be nice.
The text was updated successfully, but these errors were encountered:
This is something we would really like to have, but which has proven difficult. While LLVM provies a MCInstrDesc for each instruction, the information in this class are not the greatest, since they need to be generic over all architectures. In the future this should be further explored.
Not sure how feasible this is or how much LLVM provides, but it seems like there isn't a lot of information available about decoded instructions. It's for example not possible to extract arguments or even easily retrieve just the instruction mnemonic.
Because it's generic over multiple architectures it probably won't ever reach the level of detail that something like iced_x86::Instruction has, but a bit more than just the bytes and the entire assembler line would be nice.
The text was updated successfully, but these errors were encountered: