diff options
author | Andrew Burgess <aburgess@redhat.com> | 2022-04-04 22:38:04 +0100 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2022-04-04 22:41:24 +0100 |
commit | 7b01c1cc1d111ba0afa51e60fa9842d3b971e2d1 (patch) | |
tree | ba53406de8080613704aa3247a77dd9a360e1521 /sim/rl78 | |
parent | 0578e87f93b09e4cc41d3982eb1672bcfc81042d (diff) | |
download | gdb-7b01c1cc1d111ba0afa51e60fa9842d3b971e2d1.zip gdb-7b01c1cc1d111ba0afa51e60fa9842d3b971e2d1.tar.gz gdb-7b01c1cc1d111ba0afa51e60fa9842d3b971e2d1.tar.bz2 |
sim: fixes for libopcodes styled disassembler
In commit:
commit 60a3da00bd5407f07d64dff82a4dae98230dfaac
Date: Sat Jan 22 11:38:18 2022 +0000
objdump/opcodes: add syntax highlighting to disassembler output
I broke several sim/ targets by forgetting to update their uses of the
libopcodes disassembler to take account of the new styled printing.
These should all be fixed by this commit.
I've not tried to add actual styled output to the simulator traces,
instead, the styled print routines just ignore the style and print the
output unstyled.
Diffstat (limited to 'sim/rl78')
-rw-r--r-- | sim/rl78/trace.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/sim/rl78/trace.c b/sim/rl78/trace.c index df75d79..a485c4c 100644 --- a/sim/rl78/trace.c +++ b/sim/rl78/trace.c @@ -104,6 +104,18 @@ op_printf (char *buf, char *fmt, ...) return ret; } +static int +op_styled_printf (char *buf, enum disassembler_style style, char *fmt, ...) +{ + int ret; + va_list ap; + + va_start (ap, fmt); + ret = vsprintf (opbuf + strlen (opbuf), fmt, ap); + va_end (ap); + return ret; +} + static bfd * current_bfd = NULL; static asymbol ** symtab = NULL; static int symcount = 0; @@ -205,7 +217,7 @@ sim_get_current_source_location (const char ** pfilename, initted = 1; memset (& info, 0, sizeof (info)); - INIT_DISASSEMBLE_INFO (info, stdout, op_printf); + INIT_DISASSEMBLE_INFO (info, stdout, op_printf, op_styled_printf); info.read_memory_func = sim_dis_read; info.arch = bfd_get_arch (current_bfd); info.mach = bfd_get_mach (current_bfd); |