From 3404e180f9f08de070371932cb98817a25467781 Mon Sep 17 00:00:00 2001 From: Aleksandar Markovic Date: Fri, 24 Jan 2020 17:38:47 +0100 Subject: 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 Signed-off-by: Aleksandar Markovic Message-Id: <1579883929-1517-6-git-send-email-aleksandar.markovic@rt-rk.com> --- include/disas/dis-asm.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/disas') diff --git a/include/disas/dis-asm.h b/include/disas/dis-asm.h index e9c7dd8eb4..f87f468809 100644 --- a/include/disas/dis-asm.h +++ b/include/disas/dis-asm.h @@ -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; -- cgit v1.2.3