msx: fix loading small cartridge images
[qemu/z80.git] / disas.c
blob5ca873e276aa246d98a9edfa9606409f06fb875f
1 /* General "disassemble this chunk" code. Used for debugging. */
2 #include "config.h"
3 #include "dis-asm.h"
4 #include "elf.h"
5 #include <errno.h>
7 #include "cpu.h"
8 #include "exec-all.h"
9 #include "disas.h"
11 /* Filled in by elfload.c. Simplistic, but will do for now. */
12 struct syminfo *syminfos = NULL;
14 /* Get LENGTH bytes from info's buffer, at target address memaddr.
15 Transfer them to myaddr. */
16 int
17 buffer_read_memory(bfd_vma memaddr, bfd_byte *myaddr, int length,
18 struct disassemble_info *info)
20 if (memaddr < info->buffer_vma
21 || memaddr + length > info->buffer_vma + info->buffer_length)
22 /* Out of bounds. Use EIO because GDB uses it. */
23 return EIO;
24 memcpy (myaddr, info->buffer + (memaddr - info->buffer_vma), length);
25 return 0;
28 /* Get LENGTH bytes from info's buffer, at target address memaddr.
29 Transfer them to myaddr. */
30 static int
31 target_read_memory (bfd_vma memaddr,
32 bfd_byte *myaddr,
33 int length,
34 struct disassemble_info *info)
36 cpu_memory_rw_debug(cpu_single_env, memaddr, myaddr, length, 0);
37 return 0;
40 /* Print an error message. We can assume that this is in response to
41 an error return from buffer_read_memory. */
42 void
43 perror_memory (int status, bfd_vma memaddr, struct disassemble_info *info)
45 if (status != EIO)
46 /* Can't happen. */
47 (*info->fprintf_func) (info->stream, "Unknown error %d\n", status);
48 else
49 /* Actually, address between memaddr and memaddr + len was
50 out of bounds. */
51 (*info->fprintf_func) (info->stream,
52 "Address 0x%" PRIx64 " is out of bounds.\n", memaddr);
55 /* This could be in a separate file, to save miniscule amounts of space
56 in statically linked executables. */
58 /* Just print the address is hex. This is included for completeness even
59 though both GDB and objdump provide their own (to print symbolic
60 addresses). */
62 void
63 generic_print_address (bfd_vma addr, struct disassemble_info *info)
65 (*info->fprintf_func) (info->stream, "0x%" PRIx64, addr);
68 /* Just return the given address. */
70 int
71 generic_symbol_at_address (bfd_vma addr, struct disassemble_info *info)
73 return 1;
76 bfd_vma bfd_getl32 (const bfd_byte *addr)
78 unsigned long v;
80 v = (unsigned long) addr[0];
81 v |= (unsigned long) addr[1] << 8;
82 v |= (unsigned long) addr[2] << 16;
83 v |= (unsigned long) addr[3] << 24;
84 return (bfd_vma) v;
87 bfd_vma bfd_getb32 (const bfd_byte *addr)
89 unsigned long v;
91 v = (unsigned long) addr[0] << 24;
92 v |= (unsigned long) addr[1] << 16;
93 v |= (unsigned long) addr[2] << 8;
94 v |= (unsigned long) addr[3];
95 return (bfd_vma) v;
98 bfd_vma bfd_getl16 (const bfd_byte *addr)
100 unsigned long v;
102 v = (unsigned long) addr[0];
103 v |= (unsigned long) addr[1] << 8;
104 return (bfd_vma) v;
107 bfd_vma bfd_getb16 (const bfd_byte *addr)
109 unsigned long v;
111 v = (unsigned long) addr[0] << 24;
112 v |= (unsigned long) addr[1] << 16;
113 return (bfd_vma) v;
116 #ifdef TARGET_ARM
117 static int
118 print_insn_thumb1(bfd_vma pc, disassemble_info *info)
120 return print_insn_arm(pc | 1, info);
122 #endif
124 /* Disassemble this for me please... (debugging). 'flags' has the following
125 values:
126 i386 - nonzero means 16 bit code
127 arm - nonzero means thumb code
128 ppc - nonzero means little endian
129 other targets - unused
131 void target_disas(FILE *out, target_ulong code, target_ulong size, int flags)
133 target_ulong pc;
134 int count;
135 struct disassemble_info disasm_info;
136 int (*print_insn)(bfd_vma pc, disassemble_info *info);
138 INIT_DISASSEMBLE_INFO(disasm_info, out, fprintf);
140 disasm_info.read_memory_func = target_read_memory;
141 disasm_info.buffer_vma = code;
142 disasm_info.buffer_length = size;
144 #ifdef TARGET_WORDS_BIGENDIAN
145 disasm_info.endian = BFD_ENDIAN_BIG;
146 #else
147 disasm_info.endian = BFD_ENDIAN_LITTLE;
148 #endif
149 #if defined(TARGET_I386)
150 if (flags == 2)
151 disasm_info.mach = bfd_mach_x86_64;
152 else if (flags == 1)
153 disasm_info.mach = bfd_mach_i386_i8086;
154 else
155 disasm_info.mach = bfd_mach_i386_i386;
156 print_insn = print_insn_i386;
157 #elif defined(TARGET_ARM)
158 if (flags)
159 print_insn = print_insn_thumb1;
160 else
161 print_insn = print_insn_arm;
162 #elif defined(TARGET_SPARC)
163 print_insn = print_insn_sparc;
164 #ifdef TARGET_SPARC64
165 disasm_info.mach = bfd_mach_sparc_v9b;
166 #endif
167 #elif defined(TARGET_PPC)
168 if (flags >> 16)
169 disasm_info.endian = BFD_ENDIAN_LITTLE;
170 if (flags & 0xFFFF) {
171 /* If we have a precise definitions of the instructions set, use it */
172 disasm_info.mach = flags & 0xFFFF;
173 } else {
174 #ifdef TARGET_PPC64
175 disasm_info.mach = bfd_mach_ppc64;
176 #else
177 disasm_info.mach = bfd_mach_ppc;
178 #endif
180 print_insn = print_insn_ppc;
181 #elif defined(TARGET_M68K)
182 print_insn = print_insn_m68k;
183 #elif defined(TARGET_MIPS)
184 #ifdef TARGET_WORDS_BIGENDIAN
185 print_insn = print_insn_big_mips;
186 #else
187 print_insn = print_insn_little_mips;
188 #endif
189 #elif defined(TARGET_SH4)
190 disasm_info.mach = bfd_mach_sh4;
191 print_insn = print_insn_sh;
192 #elif defined(TARGET_ALPHA)
193 disasm_info.mach = bfd_mach_alpha;
194 print_insn = print_insn_alpha;
195 #elif defined(TARGET_CRIS)
196 disasm_info.mach = bfd_mach_cris_v32;
197 print_insn = print_insn_crisv32;
198 #elif defined(TARGET_MICROBLAZE)
199 disasm_info.mach = bfd_arch_microblaze;
200 print_insn = print_insn_microblaze;
201 #elif defined(TARGET_Z80)
202 print_insn = print_insn_z80;
203 #else
204 fprintf(out, "0x" TARGET_FMT_lx
205 ": Asm output not supported on this arch\n", code);
206 return;
207 #endif
209 for (pc = code; size > 0; pc += count, size -= count) {
210 fprintf(out, "0x" TARGET_FMT_lx ": ", pc);
211 count = print_insn(pc, &disasm_info);
212 #if 0
214 int i;
215 uint8_t b;
216 fprintf(out, " {");
217 for(i = 0; i < count; i++) {
218 target_read_memory(pc + i, &b, 1, &disasm_info);
219 fprintf(out, " %02x", b);
221 fprintf(out, " }");
223 #endif
224 fprintf(out, "\n");
225 if (count < 0)
226 break;
227 if (size < count) {
228 fprintf(out,
229 "Disassembler disagrees with translator over instruction "
230 "decoding\n"
231 "Please report this to qemu-devel@nongnu.org\n");
232 break;
237 /* Disassemble this for me please... (debugging). */
238 void disas(FILE *out, void *code, unsigned long size)
240 unsigned long pc;
241 int count;
242 struct disassemble_info disasm_info;
243 int (*print_insn)(bfd_vma pc, disassemble_info *info);
245 INIT_DISASSEMBLE_INFO(disasm_info, out, fprintf);
247 disasm_info.buffer = code;
248 disasm_info.buffer_vma = (unsigned long)code;
249 disasm_info.buffer_length = size;
251 #ifdef WORDS_BIGENDIAN
252 disasm_info.endian = BFD_ENDIAN_BIG;
253 #else
254 disasm_info.endian = BFD_ENDIAN_LITTLE;
255 #endif
256 #if defined(__i386__)
257 disasm_info.mach = bfd_mach_i386_i386;
258 print_insn = print_insn_i386;
259 #elif defined(__x86_64__)
260 disasm_info.mach = bfd_mach_x86_64;
261 print_insn = print_insn_i386;
262 #elif defined(_ARCH_PPC)
263 print_insn = print_insn_ppc;
264 #elif defined(__alpha__)
265 print_insn = print_insn_alpha;
266 #elif defined(__sparc__)
267 print_insn = print_insn_sparc;
268 #if defined(__sparc_v8plus__) || defined(__sparc_v8plusa__) || defined(__sparc_v9__)
269 disasm_info.mach = bfd_mach_sparc_v9b;
270 #endif
271 #elif defined(__arm__)
272 print_insn = print_insn_arm;
273 #elif defined(__MIPSEB__)
274 print_insn = print_insn_big_mips;
275 #elif defined(__MIPSEL__)
276 print_insn = print_insn_little_mips;
277 #elif defined(__m68k__)
278 print_insn = print_insn_m68k;
279 #elif defined(__s390__)
280 print_insn = print_insn_s390;
281 #elif defined(__hppa__)
282 print_insn = print_insn_hppa;
283 #else
284 fprintf(out, "0x%lx: Asm output not supported on this arch\n",
285 (long) code);
286 return;
287 #endif
288 for (pc = (unsigned long)code; size > 0; pc += count, size -= count) {
289 fprintf(out, "0x%08lx: ", pc);
290 #ifdef __arm__
291 /* since data is included in the code, it is better to
292 display code data too */
293 fprintf(out, "%08x ", (int)bfd_getl32((const bfd_byte *)pc));
294 #endif
295 count = print_insn(pc, &disasm_info);
296 fprintf(out, "\n");
297 if (count < 0)
298 break;
302 /* Look up symbol for debugging purpose. Returns "" if unknown. */
303 const char *lookup_symbol(target_ulong orig_addr)
305 const char *symbol = "";
306 struct syminfo *s;
308 for (s = syminfos; s; s = s->next) {
309 symbol = s->lookup_symbol(s, orig_addr);
310 if (symbol[0] != '\0') {
311 break;
315 return symbol;
318 #if !defined(CONFIG_USER_ONLY)
320 #include "monitor.h"
322 static int monitor_disas_is_physical;
323 static CPUState *monitor_disas_env;
325 static int
326 monitor_read_memory (bfd_vma memaddr, bfd_byte *myaddr, int length,
327 struct disassemble_info *info)
329 if (monitor_disas_is_physical) {
330 cpu_physical_memory_rw(memaddr, myaddr, length, 0);
331 } else {
332 cpu_memory_rw_debug(monitor_disas_env, memaddr,myaddr, length, 0);
334 return 0;
337 static int monitor_fprintf(FILE *stream, const char *fmt, ...)
339 va_list ap;
340 va_start(ap, fmt);
341 monitor_vprintf((Monitor *)stream, fmt, ap);
342 va_end(ap);
343 return 0;
346 void monitor_disas(Monitor *mon, CPUState *env,
347 target_ulong pc, int nb_insn, int is_physical, int flags)
349 int count, i;
350 struct disassemble_info disasm_info;
351 int (*print_insn)(bfd_vma pc, disassemble_info *info);
353 INIT_DISASSEMBLE_INFO(disasm_info, (FILE *)mon, monitor_fprintf);
355 monitor_disas_env = env;
356 monitor_disas_is_physical = is_physical;
357 disasm_info.read_memory_func = monitor_read_memory;
359 disasm_info.buffer_vma = pc;
361 #ifdef TARGET_WORDS_BIGENDIAN
362 disasm_info.endian = BFD_ENDIAN_BIG;
363 #else
364 disasm_info.endian = BFD_ENDIAN_LITTLE;
365 #endif
366 #if defined(TARGET_I386)
367 if (flags == 2)
368 disasm_info.mach = bfd_mach_x86_64;
369 else if (flags == 1)
370 disasm_info.mach = bfd_mach_i386_i8086;
371 else
372 disasm_info.mach = bfd_mach_i386_i386;
373 print_insn = print_insn_i386;
374 #elif defined(TARGET_ARM)
375 print_insn = print_insn_arm;
376 #elif defined(TARGET_ALPHA)
377 print_insn = print_insn_alpha;
378 #elif defined(TARGET_SPARC)
379 print_insn = print_insn_sparc;
380 #ifdef TARGET_SPARC64
381 disasm_info.mach = bfd_mach_sparc_v9b;
382 #endif
383 #elif defined(TARGET_PPC)
384 #ifdef TARGET_PPC64
385 disasm_info.mach = bfd_mach_ppc64;
386 #else
387 disasm_info.mach = bfd_mach_ppc;
388 #endif
389 print_insn = print_insn_ppc;
390 #elif defined(TARGET_M68K)
391 print_insn = print_insn_m68k;
392 #elif defined(TARGET_MIPS)
393 #ifdef TARGET_WORDS_BIGENDIAN
394 print_insn = print_insn_big_mips;
395 #else
396 print_insn = print_insn_little_mips;
397 #endif
398 #else
399 monitor_printf(mon, "0x" TARGET_FMT_lx
400 ": Asm output not supported on this arch\n", pc);
401 return;
402 #endif
404 for(i = 0; i < nb_insn; i++) {
405 monitor_printf(mon, "0x" TARGET_FMT_lx ": ", pc);
406 count = print_insn(pc, &disasm_info);
407 monitor_printf(mon, "\n");
408 if (count < 0)
409 break;
410 pc += count;
413 #endif