Message ID | 1579883929-1517-6-git-send-email-aleksandar.markovic@rt-rk.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | target/mips: Misc MIPS fixes and improvements for 5.0 | expand |
> From: Aleksandar Markovic <amarkovic@wavecomp.com> > > 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. > > Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com> > --- > include/disas/dis-asm.h | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/include/disas/dis-asm.h b/include/disas/dis-asm.h > index e9c7dd8..f87f468 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; Reviewed-by: Aleksandar Rikalo <aleksandar.rikalo@rt-rk.com>
diff --git a/include/disas/dis-asm.h b/include/disas/dis-asm.h index e9c7dd8..f87f468 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;