mirror of
https://github.com/qemu/qemu.git
synced 2024-11-30 23:33:51 +08:00
disas: Add a field for target-dependant data to disassemble_info
This patch adds a field "target_info" to the structure disassemble_info. The purpose of this field is to enable targets to pass to disassembler code any additional data thet deem suitable. Reviewed-by: Aleksandar Rikalo <aleksandar.rikalo@rt-rk.com> Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com> Message-Id: <1579883929-1517-6-git-send-email-aleksandar.markovic@rt-rk.com>
This commit is contained in:
parent
2048d5d4bc
commit
3404e180f9
@ -372,6 +372,9 @@ typedef struct disassemble_info {
|
||||
/* Command line options specific to the target disassembler. */
|
||||
char * disassembler_options;
|
||||
|
||||
/* Field intended to be used by targets in any way they deem suitable. */
|
||||
int64_t target_info;
|
||||
|
||||
/* Options for Capstone disassembly. */
|
||||
int cap_arch;
|
||||
int cap_mode;
|
||||
|
Loading…
Reference in New Issue
Block a user