1999-05-03 09:29:06 +02:00
|
|
|
|
/* Interface between the opcode library and its callers.
|
2001-03-14 03:27:44 +01:00
|
|
|
|
|
2005-03-03 12:58:10 +01:00
|
|
|
|
Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005
|
|
|
|
|
Free Software Foundation, Inc.
|
2001-03-14 03:27:44 +01:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-05-10 12:21:13 +02:00
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
|
|
|
|
Boston, MA 02110-1301, USA.
|
2001-03-14 03:27:44 +01:00
|
|
|
|
|
1999-05-03 09:29:06 +02:00
|
|
|
|
Written by Cygnus Support, 1993.
|
|
|
|
|
|
|
|
|
|
The opcode library (libopcodes.a) provides instruction decoders for
|
|
|
|
|
a large variety of instruction sets, callable with an identical
|
|
|
|
|
interface, for making instruction-processing programs more independent
|
|
|
|
|
of the instruction set being processed. */
|
|
|
|
|
|
|
|
|
|
#ifndef DIS_ASM_H
|
|
|
|
|
#define DIS_ASM_H
|
|
|
|
|
|
1999-12-16 02:23:39 +01:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:06 +02:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include "bfd.h"
|
|
|
|
|
|
Kaveh Ghazi's printf format attribute checking patch.
bfd:
* elf32-xtensa.c (vsprint_msg): Add format attribute. Fix
format bugs.
* vms.h (_bfd_vms_debug): Add format attribute.
(_bfd_vms_debug, _bfd_hexdump): Fix typos.
binutils:
* bucomm.h (report): Add format attribute.
* dlltool.c (inform): Likewise.
* dllwrap.c (display, inform, warn): Likewise.
* objdump.c (objdump_sprintf): Likewise.
* readelf.c (error, warn): Likewise. Fix format bugs.
gas:
* config/tc-tic30.c (debug): Add format attribute. Fix format
bugs.
include:
* dis-asm.h (fprintf_ftype): Add format attribute.
opcodes:
* arc-dis.c, arm-dis.c, cris-dis.c, crx-dis.c, d10v-dis.c,
d30v-dis.c, fr30-dis.c, h8300-dis.c, h8500-dis.c, i860-dis.c,
ia64-dis.c, ip2k-dis.c, m10200-dis.c, m10300-dis.c,
m88k-dis.c, mcore-dis.c, mips-dis.c, ms1-dis.c, or32-dis.c,
ppc-dis.c, sh64-dis.c, sparc-dis.c, tic4x-dis.c, tic80-dis.c,
v850-dis.c: Fix format bugs.
* ia64-gen.c (fail, warn): Add format attribute.
* or32-opc.c (debug): Likewise.
2005-07-07 21:27:44 +02:00
|
|
|
|
typedef int (*fprintf_ftype) (void *, const char*, ...) ATTRIBUTE_FPTR_PRINTF_2;
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
|
|
|
|
enum dis_insn_type {
|
|
|
|
|
dis_noninsn, /* Not a valid instruction */
|
|
|
|
|
dis_nonbranch, /* Not a branch instruction */
|
|
|
|
|
dis_branch, /* Unconditional branch */
|
|
|
|
|
dis_condbranch, /* Conditional branch */
|
|
|
|
|
dis_jsr, /* Jump to subroutine */
|
|
|
|
|
dis_condjsr, /* Conditional jump to subroutine */
|
|
|
|
|
dis_dref, /* Data reference instruction */
|
|
|
|
|
dis_dref2 /* Two data references in instruction */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* This struct is passed into the instruction decoding routine,
|
|
|
|
|
and is passed back out into each callback. The various fields are used
|
|
|
|
|
for conveying information from your main routine into your callbacks,
|
|
|
|
|
for passing information into the instruction decoders (such as the
|
|
|
|
|
addresses of the callback functions), or for passing information
|
|
|
|
|
back from the instruction decoders to their callers.
|
|
|
|
|
|
|
|
|
|
It must be initialized before it is first passed; this can be done
|
|
|
|
|
by hand, or using one of the initialization macros below. */
|
|
|
|
|
|
|
|
|
|
typedef struct disassemble_info {
|
|
|
|
|
fprintf_ftype fprintf_func;
|
2003-08-07 04:25:50 +02:00
|
|
|
|
void *stream;
|
|
|
|
|
void *application_data;
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
|
|
|
|
/* Target description. We could replace this with a pointer to the bfd,
|
|
|
|
|
but that would require one. There currently isn't any such requirement
|
|
|
|
|
so to avoid introducing one we record these explicitly. */
|
|
|
|
|
/* The bfd_flavour. This can be bfd_target_unknown_flavour. */
|
|
|
|
|
enum bfd_flavour flavour;
|
|
|
|
|
/* The bfd_arch value. */
|
|
|
|
|
enum bfd_architecture arch;
|
|
|
|
|
/* The bfd_mach value. */
|
|
|
|
|
unsigned long mach;
|
|
|
|
|
/* Endianness (for bi-endian cpus). Mono-endian cpus can ignore this. */
|
|
|
|
|
enum bfd_endian endian;
|
2002-02-05 20:40:42 +01:00
|
|
|
|
/* An arch/mach-specific bitmask of selected instruction subsets, mainly
|
|
|
|
|
for processors with run-time-switchable instruction sets. The default,
|
|
|
|
|
zero, means that there is no constraint. CGEN-based opcodes ports
|
|
|
|
|
may use ISA_foo masks. */
|
2005-10-28 21:41:01 +02:00
|
|
|
|
void *insn_sets;
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
2000-12-19 00:19:55 +01:00
|
|
|
|
/* Some targets need information about the current section to accurately
|
|
|
|
|
display insns. If this is NULL, the target disassembler function
|
|
|
|
|
will have to make its best guess. */
|
|
|
|
|
asection *section;
|
|
|
|
|
|
1999-05-03 09:29:06 +02:00
|
|
|
|
/* An array of pointers to symbols either at the location being disassembled
|
|
|
|
|
or at the start of the function being disassembled. The array is sorted
|
|
|
|
|
so that the first symbol is intended to be the one used. The others are
|
|
|
|
|
present for any misc. purposes. This is not set reliably, but if it is
|
|
|
|
|
not NULL, it is correct. */
|
|
|
|
|
asymbol **symbols;
|
|
|
|
|
/* Number of symbols in array. */
|
|
|
|
|
int num_symbols;
|
|
|
|
|
|
|
|
|
|
/* For use by the disassembler.
|
|
|
|
|
The top 16 bits are reserved for public use (and are documented here).
|
|
|
|
|
The bottom 16 bits are for the internal use of the disassembler. */
|
|
|
|
|
unsigned long flags;
|
|
|
|
|
#define INSN_HAS_RELOC 0x80000000
|
2003-08-07 04:25:50 +02:00
|
|
|
|
void *private_data;
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
|
|
|
|
/* Function used to get bytes to disassemble. MEMADDR is the
|
|
|
|
|
address of the stuff to be disassembled, MYADDR is the address to
|
|
|
|
|
put the bytes in, and LENGTH is the number of bytes to read.
|
|
|
|
|
INFO is a pointer to this struct.
|
|
|
|
|
Returns an errno value or 0 for success. */
|
|
|
|
|
int (*read_memory_func)
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(bfd_vma memaddr, bfd_byte *myaddr, unsigned int length,
|
|
|
|
|
struct disassemble_info *info);
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
|
|
|
|
/* Function which should be called if we get an error that we can't
|
|
|
|
|
recover from. STATUS is the errno value from read_memory_func and
|
|
|
|
|
MEMADDR is the address that we were trying to read. INFO is a
|
|
|
|
|
pointer to this struct. */
|
|
|
|
|
void (*memory_error_func)
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(int status, bfd_vma memaddr, struct disassemble_info *info);
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
|
|
|
|
/* Function called to print ADDR. */
|
|
|
|
|
void (*print_address_func)
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(bfd_vma addr, struct disassemble_info *info);
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
|
|
|
|
/* Function called to determine if there is a symbol at the given ADDR.
|
|
|
|
|
If there is, the function returns 1, otherwise it returns 0.
|
|
|
|
|
This is used by ports which support an overlay manager where
|
|
|
|
|
the overlay number is held in the top part of an address. In
|
|
|
|
|
some circumstances we want to include the overlay number in the
|
|
|
|
|
address, (normally because there is a symbol associated with
|
|
|
|
|
that address), but sometimes we want to mask out the overlay bits. */
|
|
|
|
|
int (* symbol_at_address_func)
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(bfd_vma addr, struct disassemble_info * info);
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
2003-11-14 16:12:43 +01:00
|
|
|
|
/* Function called to check if a SYMBOL is can be displayed to the user.
|
|
|
|
|
This is used by some ports that want to hide special symbols when
|
|
|
|
|
displaying debugging outout. */
|
|
|
|
|
bfd_boolean (* symbol_is_valid)
|
|
|
|
|
(asymbol *, struct disassemble_info * info);
|
|
|
|
|
|
1999-05-03 09:29:06 +02:00
|
|
|
|
/* These are for buffer_read_memory. */
|
|
|
|
|
bfd_byte *buffer;
|
|
|
|
|
bfd_vma buffer_vma;
|
2000-02-21 13:01:26 +01:00
|
|
|
|
unsigned int buffer_length;
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
|
|
|
|
/* This variable may be set by the instruction decoder. It suggests
|
|
|
|
|
the number of bytes objdump should display on a single line. If
|
|
|
|
|
the instruction decoder sets this, it should always set it to
|
|
|
|
|
the same value in order to get reasonable looking output. */
|
|
|
|
|
int bytes_per_line;
|
|
|
|
|
|
2003-11-14 16:12:43 +01:00
|
|
|
|
/* The next two variables control the way objdump displays the raw data. */
|
1999-05-03 09:29:06 +02:00
|
|
|
|
/* For example, if bytes_per_line is 8 and bytes_per_chunk is 4, the */
|
|
|
|
|
/* output will look like this:
|
|
|
|
|
00: 00000000 00000000
|
|
|
|
|
with the chunks displayed according to "display_endian". */
|
|
|
|
|
int bytes_per_chunk;
|
|
|
|
|
enum bfd_endian display_endian;
|
|
|
|
|
|
2000-02-03 19:12:54 +01:00
|
|
|
|
/* Number of octets per incremented target address
|
2001-10-30 16:20:10 +01:00
|
|
|
|
Normally one, but some DSPs have byte sizes of 16 or 32 bits. */
|
2000-02-21 13:01:26 +01:00
|
|
|
|
unsigned int octets_per_byte;
|
2000-02-03 19:12:54 +01:00
|
|
|
|
|
2005-01-10 10:54:50 +01:00
|
|
|
|
/* The number of zeroes we want to see at the end of a section before we
|
|
|
|
|
start skipping them. */
|
|
|
|
|
unsigned int skip_zeroes;
|
|
|
|
|
|
|
|
|
|
/* The number of zeroes to skip at the end of a section. If the number
|
|
|
|
|
of zeroes at the end is between SKIP_ZEROES_AT_END and SKIP_ZEROES,
|
|
|
|
|
they will be disassembled. If there are fewer than
|
|
|
|
|
SKIP_ZEROES_AT_END, they will be skipped. This is a heuristic
|
|
|
|
|
attempt to avoid disassembling zeroes inserted by section
|
|
|
|
|
alignment. */
|
|
|
|
|
unsigned int skip_zeroes_at_end;
|
|
|
|
|
|
1999-05-03 09:29:06 +02:00
|
|
|
|
/* Results from instruction decoders. Not all decoders yet support
|
|
|
|
|
this information. This info is set each time an instruction is
|
|
|
|
|
decoded, and is only valid for the last such instruction.
|
|
|
|
|
|
|
|
|
|
To determine whether this decoder supports this information, set
|
|
|
|
|
insn_info_valid to 0, decode an instruction, then check it. */
|
|
|
|
|
|
|
|
|
|
char insn_info_valid; /* Branch info has been set. */
|
|
|
|
|
char branch_delay_insns; /* How many sequential insn's will run before
|
|
|
|
|
a branch takes effect. (0 = normal) */
|
|
|
|
|
char data_size; /* Size of data reference in insn, in bytes */
|
|
|
|
|
enum dis_insn_type insn_type; /* Type of instruction */
|
|
|
|
|
bfd_vma target; /* Target address of branch or dref, if known;
|
|
|
|
|
zero if unknown. */
|
|
|
|
|
bfd_vma target2; /* Second target address for dref2 */
|
|
|
|
|
|
1999-06-16 04:24:26 +02:00
|
|
|
|
/* Command line options specific to the target disassembler. */
|
|
|
|
|
char * disassembler_options;
|
|
|
|
|
|
1999-05-03 09:29:06 +02:00
|
|
|
|
} disassemble_info;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Standard disassemblers. Disassemble one instruction at the given
|
2001-11-11 16:45:34 +01:00
|
|
|
|
target address. Return number of octets processed. */
|
2003-08-07 04:25:50 +02:00
|
|
|
|
typedef int (*disassembler_ftype) (bfd_vma, disassemble_info *);
|
|
|
|
|
|
|
|
|
|
extern int print_insn_big_mips (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_little_mips (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_i386 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_i386_att (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_i386_intel (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_ia64 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_i370 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_m68hc11 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_m68hc12 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_m68k (bfd_vma, disassemble_info *);
|
2005-10-25 19:40:19 +02:00
|
|
|
|
extern int print_insn_z80 (bfd_vma, disassemble_info *);
|
2003-08-07 04:25:50 +02:00
|
|
|
|
extern int print_insn_z8001 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_z8002 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_h8300 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_h8300h (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_h8300s (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_h8500 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_alpha (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_big_arm (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_little_arm (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_sparc (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_avr (bfd_vma, disassemble_info *);
|
2005-09-30 17:12:52 +02:00
|
|
|
|
extern int print_insn_bfin (bfd_vma, disassemble_info *);
|
2003-08-07 04:25:50 +02:00
|
|
|
|
extern int print_insn_d10v (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_d30v (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_dlx (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_fr30 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_hppa (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_i860 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_i960 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_ip2k (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_m32r (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_m88k (bfd_vma, disassemble_info *);
|
2004-11-08 14:17:39 +01:00
|
|
|
|
extern int print_insn_maxq_little (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_maxq_big (bfd_vma, disassemble_info *);
|
2003-08-07 04:25:50 +02:00
|
|
|
|
extern int print_insn_mcore (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_mmix (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_mn10200 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_mn10300 (bfd_vma, disassemble_info *);
|
2005-06-07 23:08:36 +02:00
|
|
|
|
extern int print_insn_ms1 (bfd_vma, disassemble_info *);
|
2003-08-07 04:25:50 +02:00
|
|
|
|
extern int print_insn_msp430 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_ns32k (bfd_vma, disassemble_info *);
|
2004-07-07 19:28:50 +02:00
|
|
|
|
extern int print_insn_crx (bfd_vma, disassemble_info *);
|
2003-08-07 04:25:50 +02:00
|
|
|
|
extern int print_insn_openrisc (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_big_or32 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_little_or32 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_pdp11 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_pj (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_big_powerpc (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_little_powerpc (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_rs6000 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_s390 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_sh (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_tic30 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_tic4x (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_tic54x (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_tic80 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_v850 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_vax (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_w65 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_xstormy16 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_xtensa (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_sh64 (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_sh64x_media (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_frv (bfd_vma, disassemble_info *);
|
|
|
|
|
extern int print_insn_iq2000 (bfd_vma, disassemble_info *);
|
ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* configure.in: Add cases for Renesas m32c.
* configure: Regenerated.
bfd/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for m32c-*-elf (Renesas m32c and m16c).
* Makefile.am (ALL_MACHINES): Add cpu-m32c.lo.
(ALL_MACHINES_CFILES): Add cpu-m32c.c.
(BFD32_BACKENDS): Add elf32-m32c.lo.
(BFD32_BACKENDS_CFILES): Add elf32-m32c.c.
(cpu-m32c.lo, elf32-m32c.lo): New rules, generated by 'make dep-am'.
* Makefile.in: Regenerated.
* archures.c (bfd_arch_m32c, bfd_mach_m16c, bfd_mach_m32c): New
arch and mach codes.
(bfd_m32c_arch): New arch info object.
(bfd_archures_list): List bfd_m32c_arch.
* bfd-in2.h: Regenerated.
* config.bfd: Add case for the m32c.
* configure.in: Add case for the m32c.
* configure: Regenerated.
* cpu-m32c.c, elf32-m32c.c: New files.
* libbfd.h: Regenerated.
* targets.c (bfd_elf32_m32c_vec): Declare.
(_bfd_target_vector): List bfd_elf32_m32c_vec.
binutils/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* readelf.c: #include "elf/m32c.h"
(guess_is_rela, dump_relocations, get_machine_name): Add cases for
EM_M32C.
* Makefile.am (readelf.o): Update dependencies.
* Makefile.in: Regenerated.
cpu/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* m32c.cpu, m32c.opc: Machine description for the Renesas M32C.
gas/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C.
* Makefile.am (CPU_TYPES): List m32c.
(TARGET_CPU_CFILES): List config/tc-m32c.c.
(TARGET_CPU_HFILES): List config/tc-m32c.h.
* configure.in: Add case for m32c.
* configure.tgt: Add cases for m32c and m32c-*-elf.
* configure: Regenerated.
* config/tc-m32c.c, config/tc-m32c.h: New files.
* doc/Makefile.am (CPU_DOCS): Add c-m32c.texi.
* doc/Makefile.in: Regenerated.
* doc/all.texi: Set M32C.
* doc/as.texinfo: Add text for the M32C-specific options and line
comment characters, and refer to c-m32c.texi.
* doc/c-m32c.texi: New file.
include/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* dis-asm.h (print_insn_m32c): New declaration.
include/elf/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for Renesas M32C and M16C.
* common.h (EM_M32C): New machine number.
* m32c.h: New file.
ld/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C and M16C.
* Makefile.am (ALL_EMULATIONS): Add eelf32m32c.o.
(eelf32m32c.c): New target.
* Makefile.in: Regenerated.
* configure.tgt: Add case for m32c-*-elf.
* emulparams/elf32m32c.sh: New file.
opcodes/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C and M16C.
* m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c, m32c-opc.c: New.
* m32c-desc.h, m32c-opc.h: New.
* Makefile.am (HFILES): List m32c-desc.h and m32c-opc.h.
(CFILES): List m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c,
m32c-opc.c.
(ALL_MACHINES): List m32c-asm.lo, m32c-desc.lo, m32c-dis.lo,
m32c-ibld.lo, m32c-opc.lo.
(CLEANFILES): List stamp-m32c.
(M32C_DEPS): List stamp-m32c, if CGEN_MAINT.
(CGEN_CPUS): Add m32c.
(m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c, m32c-opc.c)
(m32c-desc.h, m32c-opc.h): Depend on M32C_DEPS.
(m32c_opc_h): New variable.
(stamp-m32c, m32c-asm.lo, m32c-desc.lo, m32c-dis.lo, m32c-ibld.lo)
(m32c-opc.lo): New rules.
* Makefile.in: Regenerated.
* configure.in: Add case for bfd_m32c_arch.
* configure: Regenerated.
* disassemble.c (ARCH_m32c): New.
[ARCH_m32c]: #include "m32c-desc.h".
(disassembler) [ARCH_m32c]: Add case for bfd_arch_m32c.
(disassemble_init_for_target) [ARCH_m32c]: Same.
* cgen-ops.h, cgen-types.h: New files.
* Makefile.am (HFILES): List them.
* Makefile.in: Regenerated.
2005-07-15 00:52:16 +02:00
|
|
|
|
extern int print_insn_m32c (bfd_vma, disassemble_info *);
|
2003-08-07 04:25:50 +02:00
|
|
|
|
|
|
|
|
|
extern disassembler_ftype arc_get_disassembler (void *);
|
|
|
|
|
extern disassembler_ftype cris_get_disassembler (bfd *);
|
|
|
|
|
|
|
|
|
|
extern void print_mips_disassembler_options (FILE *);
|
|
|
|
|
extern void print_ppc_disassembler_options (FILE *);
|
|
|
|
|
extern void print_arm_disassembler_options (FILE *);
|
|
|
|
|
extern void parse_arm_disassembler_option (char *);
|
|
|
|
|
extern int get_arm_regname_num_options (void);
|
|
|
|
|
extern int set_arm_regname_option (int);
|
opcodes:
* arm-opc.h: Delete; fold contents into ...
* arm-dis.c: ... here. Move includes of internal COFF headers
next to includes of internal ELF headers.
(streq, WORD_ADDRESS, BDISP, BDISP23): Delete, unused.
(struct arm_opcode): Rename struct opcode32. Make 'assembler' const.
(struct thumb_opcode): Rename struct opcode16. Make 'assembler' const.
(arm_conditional, arm_fp_const, arm_shift, arm_regname, regnames)
(iwmmxt_wwnames, iwmmxt_wwssnames):
Make const.
(regnames): Remove iWMMXt coprocessor register sets.
(iwmmxt_regnames, iwmmxt_cregnames): New statics.
(get_arm_regnames): Adjust fourth argument to match above changes.
(set_iwmmxt_regnames): Delete.
(print_insn_arm): Constify 'c'. Use ISO syntax for function
pointer calls. Expand sole use of BDISP. Use iwmmxt_regnames
and iwmmxt_cregnames, not set_iwmmxt_regnames.
(print_insn_thumb16, print_insn_thumb32): Constify 'c'. Use
ISO syntax for function pointer calls.
include:
* dis-asm.h (get_arm_regnames): Update prototype.
2005-06-08 19:27:41 +02:00
|
|
|
|
extern int get_arm_regnames (int, const char **, const char **, const char *const **);
|
2003-11-14 16:12:43 +01:00
|
|
|
|
extern bfd_boolean arm_symbol_is_valid (asymbol *, struct disassemble_info *);
|
1999-06-16 04:24:26 +02:00
|
|
|
|
|
1999-05-03 09:29:06 +02:00
|
|
|
|
/* Fetch the disassembler for a given BFD, if that support is available. */
|
2003-08-07 04:25:50 +02:00
|
|
|
|
extern disassembler_ftype disassembler (bfd *);
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
2003-11-14 16:12:43 +01:00
|
|
|
|
/* Amend the disassemble_info structure as necessary for the target architecture.
|
|
|
|
|
Should only be called after initialising the info->arch field. */
|
|
|
|
|
extern void disassemble_init_for_target (struct disassemble_info * info);
|
|
|
|
|
|
2000-01-27 22:44:26 +01:00
|
|
|
|
/* Document any target specific options available from the disassembler. */
|
2003-08-07 04:25:50 +02:00
|
|
|
|
extern void disassembler_usage (FILE *);
|
2000-01-27 22:44:26 +01:00
|
|
|
|
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
|
|
|
|
/* This block of definitions is for particular callers who read instructions
|
|
|
|
|
into a buffer before calling the instruction decoder. */
|
|
|
|
|
|
|
|
|
|
/* Here is a function which callers may wish to use for read_memory_func.
|
|
|
|
|
It gets bytes from a buffer. */
|
|
|
|
|
extern int buffer_read_memory
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(bfd_vma, bfd_byte *, unsigned int, struct disassemble_info *);
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
|
|
|
|
/* This function goes with buffer_read_memory.
|
|
|
|
|
It prints a message using info->fprintf_func and info->stream. */
|
2003-08-07 04:25:50 +02:00
|
|
|
|
extern void perror_memory (int, bfd_vma, struct disassemble_info *);
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Just print the address in hex. This is included for completeness even
|
|
|
|
|
though both GDB and objdump provide their own (to print symbolic
|
|
|
|
|
addresses). */
|
|
|
|
|
extern void generic_print_address
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(bfd_vma, struct disassemble_info *);
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
|
|
|
|
/* Always true. */
|
|
|
|
|
extern int generic_symbol_at_address
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(bfd_vma, struct disassemble_info *);
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
2003-11-14 16:12:43 +01:00
|
|
|
|
/* Also always true. */
|
|
|
|
|
extern bfd_boolean generic_symbol_is_valid
|
|
|
|
|
(asymbol *, struct disassemble_info *);
|
|
|
|
|
|
2003-09-04 01:43:17 +02:00
|
|
|
|
/* Method to initialize a disassemble_info struct. This should be
|
|
|
|
|
called by all applications creating such a struct. */
|
|
|
|
|
extern void init_disassemble_info (struct disassemble_info *info, void *stream,
|
|
|
|
|
fprintf_ftype fprintf_func);
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
2003-09-04 01:43:17 +02:00
|
|
|
|
/* For compatibility with existing code. */
|
|
|
|
|
#define INIT_DISASSEMBLE_INFO(INFO, STREAM, FPRINTF_FUNC) \
|
|
|
|
|
init_disassemble_info (&(INFO), (STREAM), (fprintf_ftype) (FPRINTF_FUNC))
|
1999-05-03 09:29:06 +02:00
|
|
|
|
#define INIT_DISASSEMBLE_INFO_NO_ARCH(INFO, STREAM, FPRINTF_FUNC) \
|
2003-09-04 01:43:17 +02:00
|
|
|
|
init_disassemble_info (&(INFO), (STREAM), (fprintf_ftype) (FPRINTF_FUNC))
|
|
|
|
|
|
1999-05-03 09:29:06 +02:00
|
|
|
|
|
1999-12-16 02:23:39 +01:00
|
|
|
|
#ifdef __cplusplus
|
2002-09-19 17:48:16 +02:00
|
|
|
|
}
|
1999-12-16 02:23:39 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:06 +02:00
|
|
|
|
#endif /* ! defined (DIS_ASM_H) */
|