diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2007-04-09 17:09:56 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2007-04-09 17:09:56 +0000 |
commit | 56dc1f8ac36f15b60206b19b90096b97ebb5d98b (patch) | |
tree | bd4fe1e15bb0c7c26fb399281e8e3b592e7c45e5 /opcodes/m68k-dis.c | |
parent | 9150673628eae2af8140585b0164b1b667b70ce3 (diff) | |
download | gdb-56dc1f8ac36f15b60206b19b90096b97ebb5d98b.zip gdb-56dc1f8ac36f15b60206b19b90096b97ebb5d98b.tar.gz gdb-56dc1f8ac36f15b60206b19b90096b97ebb5d98b.tar.bz2 |
* m68k-dis.c (print_insn_m68k): Restore info->fprintf_func and
info->print_address_func if longjmp is called.
Diffstat (limited to 'opcodes/m68k-dis.c')
-rw-r--r-- | opcodes/m68k-dis.c | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/opcodes/m68k-dis.c b/opcodes/m68k-dis.c index 08a2838..16ad7e4 100644 --- a/opcodes/m68k-dis.c +++ b/opcodes/m68k-dis.c @@ -1475,6 +1475,12 @@ print_insn_m68k (bfd_vma memaddr, disassemble_info *info) bfd_byte *buffer = priv.the_buffer; + /* Save these printing functions in case we need to restore them + later. */ + fprintf_ftype save_printer = info->fprintf_func; + void (* save_print_address) (bfd_vma, struct disassemble_info *) + = info->print_address_func; + info->private_data = (PTR) &priv; /* Tell objdump to use two bytes per chunk and six bytes per line for displaying raw data. */ @@ -1485,8 +1491,26 @@ print_insn_m68k (bfd_vma memaddr, disassemble_info *info) priv.insn_start = memaddr; if (setjmp (priv.bailout) != 0) - /* Error return. */ - return -1; + { + /* longjmp may be called while these printing functions are + temporarily replaced with dummy functions. Restore them + before we leave. + + Admittedly, this save-and-restore operation is somewhat ugly + in that we are exposing the fact that match_insn_m68k + temporarily replaces insn->fprintf_func and + insn->print_address_func. Perhaps, a real fix is to report a + FETCH_DATA failure with a return value of some sort, without + using setjmp/longjmp. A better fix may be to teach the m68k + disassembler do its job without temporarily replacing + insn->fprintf_func and insn->print_address_func, but that's a + task for another day. */ + info->fprintf_func = save_printer; + info->print_address_func = save_print_address; + + /* Error return. */ + return -1; + } arch_mask = bfd_m68k_mach_to_features (info->mach); if (!arch_mask) |