1 /* General "disassemble this chunk" code. Used for debugging. */
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. */
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. */
24 memcpy (myaddr, info->buffer + (memaddr - info->buffer_vma), length);
28 /* Get LENGTH bytes from info's buffer, at target address memaddr.
29 Transfer them to myaddr. */
31 target_read_memory (bfd_vma memaddr,
34 struct disassemble_info *info)
36 cpu_memory_rw_debug(cpu_single_env, memaddr, myaddr, length, 0);
40 /* Print an error message. We can assume that this is in response to
41 an error return from buffer_read_memory. */
43 perror_memory (int status, bfd_vma memaddr, struct disassemble_info *info)
47 (*info->fprintf_func) (info->stream, "Unknown error %d\n", status);
49 /* Actually, address between memaddr and memaddr + len was
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
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. */
71 generic_symbol_at_address (bfd_vma addr, struct disassemble_info *info)
76 bfd_vma bfd_getl64 (const bfd_byte *addr)
80 v = (unsigned long long) addr[0];
81 v |= (unsigned long long) addr[1] << 8;
82 v |= (unsigned long long) addr[2] << 16;
83 v |= (unsigned long long) addr[3] << 24;
84 v |= (unsigned long long) addr[4] << 32;
85 v |= (unsigned long long) addr[5] << 40;
86 v |= (unsigned long long) addr[6] << 48;
87 v |= (unsigned long long) addr[7] << 56;
91 bfd_vma bfd_getl32 (const bfd_byte *addr)
95 v = (unsigned long) addr[0];
96 v |= (unsigned long) addr[1] << 8;
97 v |= (unsigned long) addr[2] << 16;
98 v |= (unsigned long) addr[3] << 24;
102 bfd_vma bfd_getb32 (const bfd_byte *addr)
106 v = (unsigned long) addr[0] << 24;
107 v |= (unsigned long) addr[1] << 16;
108 v |= (unsigned long) addr[2] << 8;
109 v |= (unsigned long) addr[3];
113 bfd_vma bfd_getl16 (const bfd_byte *addr)
117 v = (unsigned long) addr[0];
118 v |= (unsigned long) addr[1] << 8;
122 bfd_vma bfd_getb16 (const bfd_byte *addr)
126 v = (unsigned long) addr[0] << 24;
127 v |= (unsigned long) addr[1] << 16;
133 print_insn_thumb1(bfd_vma pc, disassemble_info *info)
135 return print_insn_arm(pc | 1, info);
139 /* Disassemble this for me please... (debugging). 'flags' has the following
141 i386 - nonzero means 16 bit code
142 arm - nonzero means thumb code
143 ppc - nonzero means little endian
144 other targets - unused
146 void target_disas(FILE *out, target_ulong code, target_ulong size, int flags)
150 struct disassemble_info disasm_info;
151 int (*print_insn)(bfd_vma pc, disassemble_info *info);
153 INIT_DISASSEMBLE_INFO(disasm_info, out, fprintf);
155 disasm_info.read_memory_func = target_read_memory;
156 disasm_info.buffer_vma = code;
157 disasm_info.buffer_length = size;
159 #ifdef TARGET_WORDS_BIGENDIAN
160 disasm_info.endian = BFD_ENDIAN_BIG;
162 disasm_info.endian = BFD_ENDIAN_LITTLE;
164 #if defined(TARGET_I386)
166 disasm_info.mach = bfd_mach_x86_64;
168 disasm_info.mach = bfd_mach_i386_i8086;
170 disasm_info.mach = bfd_mach_i386_i386;
171 print_insn = print_insn_i386;
172 #elif defined(TARGET_ARM)
174 print_insn = print_insn_thumb1;
176 print_insn = print_insn_arm;
177 #elif defined(TARGET_SPARC)
178 print_insn = print_insn_sparc;
179 #ifdef TARGET_SPARC64
180 disasm_info.mach = bfd_mach_sparc_v9b;
182 #elif defined(TARGET_PPC)
184 disasm_info.endian = BFD_ENDIAN_LITTLE;
185 if (flags & 0xFFFF) {
186 /* If we have a precise definitions of the instructions set, use it */
187 disasm_info.mach = flags & 0xFFFF;
190 disasm_info.mach = bfd_mach_ppc64;
192 disasm_info.mach = bfd_mach_ppc;
195 print_insn = print_insn_ppc;
196 #elif defined(TARGET_M68K)
197 print_insn = print_insn_m68k;
198 #elif defined(TARGET_MIPS)
199 #ifdef TARGET_WORDS_BIGENDIAN
200 print_insn = print_insn_big_mips;
202 print_insn = print_insn_little_mips;
204 #elif defined(TARGET_SH4)
205 disasm_info.mach = bfd_mach_sh4;
206 print_insn = print_insn_sh;
207 #elif defined(TARGET_ALPHA)
208 disasm_info.mach = bfd_mach_alpha;
209 print_insn = print_insn_alpha;
210 #elif defined(TARGET_CRIS)
212 disasm_info.mach = bfd_mach_cris_v0_v10;
213 print_insn = print_insn_crisv10;
215 disasm_info.mach = bfd_mach_cris_v32;
216 print_insn = print_insn_crisv32;
218 #elif defined(TARGET_MICROBLAZE)
219 disasm_info.mach = bfd_arch_microblaze;
220 print_insn = print_insn_microblaze;
222 fprintf(out, "0x" TARGET_FMT_lx
223 ": Asm output not supported on this arch\n", code);
227 for (pc = code; size > 0; pc += count, size -= count) {
228 fprintf(out, "0x" TARGET_FMT_lx ": ", pc);
229 count = print_insn(pc, &disasm_info);
235 for(i = 0; i < count; i++) {
236 target_read_memory(pc + i, &b, 1, &disasm_info);
237 fprintf(out, " %02x", b);
247 "Disassembler disagrees with translator over instruction "
255 /* Disassemble this for me please... (debugging). */
256 void disas(FILE *out, void *code, unsigned long size)
260 struct disassemble_info disasm_info;
261 int (*print_insn)(bfd_vma pc, disassemble_info *info);
263 INIT_DISASSEMBLE_INFO(disasm_info, out, fprintf);
265 disasm_info.buffer = code;
266 disasm_info.buffer_vma = (unsigned long)code;
267 disasm_info.buffer_length = size;
269 #ifdef HOST_WORDS_BIGENDIAN
270 disasm_info.endian = BFD_ENDIAN_BIG;
272 disasm_info.endian = BFD_ENDIAN_LITTLE;
274 #if defined(__i386__)
275 disasm_info.mach = bfd_mach_i386_i386;
276 print_insn = print_insn_i386;
277 #elif defined(__x86_64__)
278 disasm_info.mach = bfd_mach_x86_64;
279 print_insn = print_insn_i386;
280 #elif defined(_ARCH_PPC)
281 print_insn = print_insn_ppc;
282 #elif defined(__alpha__)
283 print_insn = print_insn_alpha;
284 #elif defined(__sparc__)
285 print_insn = print_insn_sparc;
286 #if defined(__sparc_v8plus__) || defined(__sparc_v8plusa__) || defined(__sparc_v9__)
287 disasm_info.mach = bfd_mach_sparc_v9b;
289 #elif defined(__arm__)
290 print_insn = print_insn_arm;
291 #elif defined(__MIPSEB__)
292 print_insn = print_insn_big_mips;
293 #elif defined(__MIPSEL__)
294 print_insn = print_insn_little_mips;
295 #elif defined(__m68k__)
296 print_insn = print_insn_m68k;
297 #elif defined(__s390__)
298 print_insn = print_insn_s390;
299 #elif defined(__hppa__)
300 print_insn = print_insn_hppa;
301 #elif defined(__ia64__)
302 print_insn = print_insn_ia64;
304 fprintf(out, "0x%lx: Asm output not supported on this arch\n",
308 for (pc = (unsigned long)code; size > 0; pc += count, size -= count) {
309 fprintf(out, "0x%08lx: ", pc);
310 count = print_insn(pc, &disasm_info);
317 /* Look up symbol for debugging purpose. Returns "" if unknown. */
318 const char *lookup_symbol(target_ulong orig_addr)
320 const char *symbol = "";
323 for (s = syminfos; s; s = s->next) {
324 symbol = s->lookup_symbol(s, orig_addr);
325 if (symbol[0] != '\0') {
333 #if !defined(CONFIG_USER_ONLY)
337 static int monitor_disas_is_physical;
338 static CPUState *monitor_disas_env;
341 monitor_read_memory (bfd_vma memaddr, bfd_byte *myaddr, int length,
342 struct disassemble_info *info)
344 if (monitor_disas_is_physical) {
345 cpu_physical_memory_rw(memaddr, myaddr, length, 0);
347 cpu_memory_rw_debug(monitor_disas_env, memaddr,myaddr, length, 0);
352 static int GCC_FMT_ATTR(2, 3)
353 monitor_fprintf(FILE *stream, const char *fmt, ...)
357 monitor_vprintf((Monitor *)stream, fmt, ap);
362 void monitor_disas(Monitor *mon, CPUState *env,
363 target_ulong pc, int nb_insn, int is_physical, int flags)
366 struct disassemble_info disasm_info;
367 int (*print_insn)(bfd_vma pc, disassemble_info *info);
369 INIT_DISASSEMBLE_INFO(disasm_info, (FILE *)mon, monitor_fprintf);
371 monitor_disas_env = env;
372 monitor_disas_is_physical = is_physical;
373 disasm_info.read_memory_func = monitor_read_memory;
375 disasm_info.buffer_vma = pc;
377 #ifdef TARGET_WORDS_BIGENDIAN
378 disasm_info.endian = BFD_ENDIAN_BIG;
380 disasm_info.endian = BFD_ENDIAN_LITTLE;
382 #if defined(TARGET_I386)
384 disasm_info.mach = bfd_mach_x86_64;
386 disasm_info.mach = bfd_mach_i386_i8086;
388 disasm_info.mach = bfd_mach_i386_i386;
389 print_insn = print_insn_i386;
390 #elif defined(TARGET_ARM)
391 print_insn = print_insn_arm;
392 #elif defined(TARGET_ALPHA)
393 print_insn = print_insn_alpha;
394 #elif defined(TARGET_SPARC)
395 print_insn = print_insn_sparc;
396 #ifdef TARGET_SPARC64
397 disasm_info.mach = bfd_mach_sparc_v9b;
399 #elif defined(TARGET_PPC)
401 disasm_info.mach = bfd_mach_ppc64;
403 disasm_info.mach = bfd_mach_ppc;
405 print_insn = print_insn_ppc;
406 #elif defined(TARGET_M68K)
407 print_insn = print_insn_m68k;
408 #elif defined(TARGET_MIPS)
409 #ifdef TARGET_WORDS_BIGENDIAN
410 print_insn = print_insn_big_mips;
412 print_insn = print_insn_little_mips;
414 #elif defined(TARGET_SH4)
415 disasm_info.mach = bfd_mach_sh4;
416 print_insn = print_insn_sh;
418 monitor_printf(mon, "0x" TARGET_FMT_lx
419 ": Asm output not supported on this arch\n", pc);
423 for(i = 0; i < nb_insn; i++) {
424 monitor_printf(mon, "0x" TARGET_FMT_lx ": ", pc);
425 count = print_insn(pc, &disasm_info);
426 monitor_printf(mon, "\n");