Release 950109
[wine/multimedia.git] / debugger / opcodes / dis-asm.h
blobe38f5fdfc1c5bb55b964cf8f2413f76821d37727
1 /* Interface between the opcode library and its callers.
2 Written by Cygnus Support, 1993.
4 The opcode library (libopcodes.a) provides instruction decoders for
5 a large variety of instruction sets, callable with an identical
6 interface, for making instruction-processing programs more independent
7 of the instruction set being processed. */
9 #include <stdio.h>
10 #include "bfd.h"
12 typedef int (*fprintf_ftype) PARAMS((FILE*, const char*, ...));
14 enum dis_insn_type {
15 dis_noninsn, /* Not a valid instruction */
16 dis_nonbranch, /* Not a branch instruction */
17 dis_branch, /* Unconditional branch */
18 dis_condbranch, /* Conditional branch */
19 dis_jsr, /* Jump to subroutine */
20 dis_condjsr, /* Conditional jump to subroutine */
21 dis_dref, /* Data reference instruction */
22 dis_dref2 /* Two data references in instruction */
25 /* This struct is passed into the instruction decoding routine,
26 and is passed back out into each callback. The various fields are used
27 for conveying information from your main routine into your callbacks,
28 for passing information into the instruction decoders (such as the
29 addresses of the callback functions), or for passing information
30 back from the instruction decoders to their callers.
32 It must be initialized before it is first passed; this can be done
33 by hand, or using one of the initialization macros below. */
35 typedef struct disassemble_info {
36 fprintf_ftype fprintf_func;
37 FILE *stream;
38 PTR application_data;
40 /* For use by the disassembler. */
41 int flags;
42 PTR private_data;
44 /* Function used to get bytes to disassemble. MEMADDR is the
45 address of the stuff to be disassembled, MYADDR is the address to
46 put the bytes in, and LENGTH is the number of bytes to read.
47 INFO is a pointer to this struct.
48 Returns an errno value or 0 for success. */
49 int (*read_memory_func)
50 PARAMS ((bfd_vma memaddr, bfd_byte *myaddr, int length,
51 struct disassemble_info *info));
53 /* Function which should be called if we get an error that we can't
54 recover from. STATUS is the errno value from read_memory_func and
55 MEMADDR is the address that we were trying to read. INFO is a
56 pointer to this struct. */
57 void (*memory_error_func)
58 PARAMS ((int status, bfd_vma memaddr, struct disassemble_info *info));
60 /* Function called to print ADDR. */
61 void (*print_address_func)
62 PARAMS ((bfd_vma addr, struct disassemble_info *info));
64 /* These are for buffer_read_memory. */
65 bfd_byte *buffer;
66 bfd_vma buffer_vma;
67 int buffer_length;
69 /* Results from instruction decoders. Not all decoders yet support
70 this information. This info is set each time an instruction is
71 decoded, and is only valid for the last such instruction.
73 To determine whether this decoder supports this information, set
74 insn_info_valid to 0, decode an instruction, then check it. */
76 char insn_info_valid; /* Branch info has been set. */
77 char branch_delay_insns; /* How many sequential insn's will run before
78 a branch takes effect. (0 = normal) */
79 char data_size; /* Size of data reference in insn, in bytes */
80 enum dis_insn_type insn_type; /* Type of instruction */
81 bfd_vma target; /* Target address of branch or dref, if known;
82 zero if unknown. */
83 bfd_vma target2; /* Second target address for dref2 */
85 } disassemble_info;
92 /* Standard disassemblers. Disassemble one instruction at the given
93 target address. Return number of bytes processed. */
94 typedef int (*disassembler_ftype)
95 PARAMS((bfd_vma, disassemble_info *));
97 extern int print_insn_big_mips PARAMS ((bfd_vma, disassemble_info*));
98 extern int print_insn_little_mips PARAMS ((bfd_vma, disassemble_info*));
99 extern int print_insn_i286 PARAMS ((bfd_vma, disassemble_info*));
100 extern int print_insn_i386 PARAMS ((bfd_vma, disassemble_info*));
101 extern int print_insn_m68k PARAMS ((bfd_vma, disassemble_info*));
102 extern int print_insn_z8001 PARAMS ((bfd_vma, disassemble_info*));
103 extern int print_insn_z8002 PARAMS ((bfd_vma, disassemble_info*));
104 extern int print_insn_h8300 PARAMS ((bfd_vma, disassemble_info*));
105 extern int print_insn_h8300h PARAMS ((bfd_vma, disassemble_info*));
106 extern int print_insn_h8500 PARAMS ((bfd_vma, disassemble_info*));
107 extern int print_insn_alpha PARAMS ((bfd_vma, disassemble_info*));
108 extern int print_insn_sparc PARAMS ((bfd_vma, disassemble_info*));
109 extern int print_insn_big_a29k PARAMS ((bfd_vma, disassemble_info*));
110 extern int print_insn_little_a29k PARAMS ((bfd_vma, disassemble_info*));
111 extern int print_insn_i960 PARAMS ((bfd_vma, disassemble_info*));
112 extern int print_insn_sh PARAMS ((bfd_vma, disassemble_info*));
113 extern int print_insn_hppa PARAMS ((bfd_vma, disassemble_info*));
114 extern int print_insn_m88k PARAMS ((bfd_vma, disassemble_info*));
115 extern int print_insn_big_powerpc PARAMS ((bfd_vma, disassemble_info*));
116 extern int print_insn_little_powerpc PARAMS ((bfd_vma, disassemble_info*));
117 extern int print_insn_rs6000 PARAMS ((bfd_vma, disassemble_info*));
119 /* Fetch the disassembler for a given BFD, if that support is available. */
120 extern disassembler_ftype disassembler PARAMS ((bfd *));
123 /* This block of definitions is for particular callers who read instructions
124 into a buffer before calling the instruction decoder. */
126 /* Here is a function which callers may wish to use for read_memory_func.
127 It gets bytes from a buffer. */
128 extern int buffer_read_memory
129 PARAMS ((bfd_vma, bfd_byte *, int, struct disassemble_info *));
131 /* This function goes with buffer_read_memory.
132 It prints a message using info->fprintf_func and info->stream. */
133 extern void perror_memory PARAMS ((int, bfd_vma, struct disassemble_info *));
136 /* Just print the address is hex. This is included for completeness even
137 though both GDB and objdump provide their own (to print symbolic
138 addresses). */
139 extern void generic_print_address
140 PARAMS ((bfd_vma, struct disassemble_info *));
142 #define INIT_DISASSEMBLE_INFO(INFO, STREAM) \
143 (INFO).fprintf_func = (fprintf_ftype)fprintf, \
144 (INFO).stream = (STREAM), \
145 (INFO).buffer = NULL, \
146 (INFO).buffer_vma = 0, \
147 (INFO).buffer_length = 0, \
148 (INFO).read_memory_func = buffer_read_memory, \
149 (INFO).memory_error_func = perror_memory, \
150 (INFO).print_address_func = generic_print_address, \
151 (INFO).insn_info_valid = 0
156 /* This block of definitions is for calling the instruction decoders
157 from GDB. */
159 /* GDB--Like target_read_memory, but slightly different parameters. */
160 extern int
161 dis_asm_read_memory PARAMS ((bfd_vma memaddr, bfd_byte *myaddr, int len,
162 disassemble_info *info));
164 /* GDB--Like memory_error with slightly different parameters. */
165 extern void
166 dis_asm_memory_error
167 PARAMS ((int status, bfd_vma memaddr, disassemble_info *info));
169 /* GDB--Like print_address with slightly different parameters. */
170 extern void
171 dis_asm_print_address PARAMS ((bfd_vma addr, disassemble_info *info));
173 #define GDB_INIT_DISASSEMBLE_INFO(INFO, STREAM) \
174 (INFO).fprintf_func = (fprintf_ftype)fprintf_filtered, \
175 (INFO).stream = (STREAM), \
176 (INFO).read_memory_func = dis_asm_read_memory, \
177 (INFO).memory_error_func = dis_asm_memory_error, \
178 (INFO).print_address_func = dis_asm_print_address, \
179 (INFO).insn_info_valid = 0