diff options
author | Alan Modra <amodra@gmail.com> | 2012-03-15 12:58:48 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2012-03-15 12:58:48 +0000 |
commit | b240011aba98dd8a0c4736a51afcea38af814200 (patch) | |
tree | 2cc895e2ccef08761fd87a9fe9fbd164c7520009 /include | |
parent | fc3e51758a16508acb99feaafd0b63487487bd4f (diff) | |
download | gdb-b240011aba98dd8a0c4736a51afcea38af814200.zip gdb-b240011aba98dd8a0c4736a51afcea38af814200.tar.gz gdb-b240011aba98dd8a0c4736a51afcea38af814200.tar.bz2 |
include/
* dis-asm.h (disassemble_init_powerpc): Declare.
opcodes/
* disassemble.c (disassemble_init_for_target): Handle ppc init.
* ppc-dis.c (private): New var.
(powerpc_init_dialect): Don't return calloc failure, instead use
private.
(PPC_OPCD_SEGS, PPC_OP_TO_SEG): Define.
(powerpc_opcd_indices): New array.
(disassemble_init_powerpc): New function.
(print_insn_big_powerpc): Don't init dialect here.
(print_insn_little_powerpc): Likewise.
(print_insn_powerpc): Start search using powerpc_opcd_indices.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/dis-asm.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index e722835..c5b84b5 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2012-03-15 Alan Modra <amodra@gmail.com> + + * dis-asm.h (disassemble_init_powerpc): Declare. + 2009-11-06 Jonas Maebe <jonas.maebe@elis.ugent.be> Add DWARF attribute value for the "Borland fastcall" calling diff --git a/include/dis-asm.h b/include/dis-asm.h index d2334c6..c9cbfbb 100644 --- a/include/dis-asm.h +++ b/include/dis-asm.h @@ -1,7 +1,7 @@ /* Interface between the opcode library and its callers. Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, 2010, - 2011 Free Software Foundation, Inc. + 2011, 2012 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -314,6 +314,7 @@ extern int get_arm_regname_num_options (void); extern int set_arm_regname_option (int); extern int get_arm_regnames (int, const char **, const char **, const char *const **); extern bfd_boolean arm_symbol_is_valid (asymbol *, struct disassemble_info *); +extern void disassemble_init_powerpc (struct disassemble_info *); /* Fetch the disassembler for a given BFD, if that support is available. */ extern disassembler_ftype disassembler (bfd *); |