]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/disasm.c
Rename `typename' in d-exp.y to avoid C++ reserved word
[thirdparty/binutils-gdb.git] / gdb / disasm.c
CommitLineData
92df71f0 1/* Disassemble support for GDB.
1bac305b 2
32d0add0 3 Copyright (C) 2000-2015 Free Software Foundation, Inc.
92df71f0
FN
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
92df71f0
FN
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
92df71f0
FN
19
20#include "defs.h"
21#include "target.h"
22#include "value.h"
23#include "ui-out.h"
92df71f0 24#include "disasm.h"
810ecf9f 25#include "gdbcore.h"
a89aa300 26#include "dis-asm.h"
92df71f0
FN
27
28/* Disassemble functions.
29 FIXME: We should get rid of all the duplicate code in gdb that does
0963b4bd 30 the same thing: disassemble_command() and the gdbtk variation. */
92df71f0
FN
31
32/* This Structure is used to store line number information.
33 We need a different sort of line table from the normal one cuz we can't
34 depend upon implicit line-end pc's for lines to do the
35 reordering in this function. */
36
37struct dis_line_entry
38{
39 int line;
40 CORE_ADDR start_pc;
41 CORE_ADDR end_pc;
42};
43
810ecf9f
AC
44/* Like target_read_memory, but slightly different parameters. */
45static int
1b0ba102 46dis_asm_read_memory (bfd_vma memaddr, gdb_byte *myaddr, unsigned int len,
a89aa300 47 struct disassemble_info *info)
810ecf9f 48{
283f7163 49 return target_read_code (memaddr, myaddr, len);
810ecf9f
AC
50}
51
52/* Like memory_error with slightly different parameters. */
53static void
a89aa300
AC
54dis_asm_memory_error (int status, bfd_vma memaddr,
55 struct disassemble_info *info)
810ecf9f
AC
56{
57 memory_error (status, memaddr);
58}
59
60/* Like print_address with slightly different parameters. */
61static void
62dis_asm_print_address (bfd_vma addr, struct disassemble_info *info)
63{
5af949e3 64 struct gdbarch *gdbarch = info->application_data;
9a619af0 65
5af949e3 66 print_address (gdbarch, addr, info->stream);
810ecf9f
AC
67}
68
92df71f0 69static int
bde58177 70compare_lines (const void *mle1p, const void *mle2p)
92df71f0
FN
71{
72 struct dis_line_entry *mle1, *mle2;
73 int val;
74
75 mle1 = (struct dis_line_entry *) mle1p;
76 mle2 = (struct dis_line_entry *) mle2p;
77
9011945e
AB
78 /* End of sequence markers have a line number of 0 but don't want to
79 be sorted to the head of the list, instead sort by PC. */
80 if (mle1->line == 0 || mle2->line == 0)
81 {
82 val = mle1->start_pc - mle2->start_pc;
83 if (val == 0)
84 val = mle1->line - mle2->line;
85 }
86 else
87 {
88 val = mle1->line - mle2->line;
89 if (val == 0)
90 val = mle1->start_pc - mle2->start_pc;
91 }
92 return val;
92df71f0
FN
93}
94
95static int
13274fc3
UW
96dump_insns (struct gdbarch *gdbarch, struct ui_out *uiout,
97 struct disassemble_info * di,
92df71f0 98 CORE_ADDR low, CORE_ADDR high,
f99d8bf4 99 int how_many, int flags, struct ui_file *stb)
92df71f0
FN
100{
101 int num_displayed = 0;
102 CORE_ADDR pc;
103
104 /* parts of the symbolic representation of the address */
105 int unmapped;
92df71f0
FN
106 int offset;
107 int line;
3b31d625 108 struct cleanup *ui_out_chain;
92df71f0
FN
109
110 for (pc = low; pc < high;)
111 {
1211bce3
EZ
112 char *filename = NULL;
113 char *name = NULL;
114
92df71f0
FN
115 QUIT;
116 if (how_many >= 0)
117 {
118 if (num_displayed >= how_many)
119 break;
120 else
121 num_displayed++;
122 }
3b31d625 123 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
946287b7
MM
124
125 if ((flags & DISASSEMBLY_OMIT_PC) == 0)
126 ui_out_text (uiout, pc_prefix (pc));
5af949e3 127 ui_out_field_core_addr (uiout, "address", gdbarch, pc);
92df71f0 128
22e722e1 129 if (!build_address_symbolic (gdbarch, pc, 0, &name, &offset, &filename,
92df71f0
FN
130 &line, &unmapped))
131 {
132 /* We don't care now about line, filename and
0963b4bd 133 unmapped. But we might in the future. */
92df71f0 134 ui_out_text (uiout, " <");
9c419145
PP
135 if ((flags & DISASSEMBLY_OMIT_FNAME) == 0)
136 ui_out_field_string (uiout, "func-name", name);
92df71f0
FN
137 ui_out_text (uiout, "+");
138 ui_out_field_int (uiout, "offset", offset);
139 ui_out_text (uiout, ">:\t");
140 }
13adf674
DJ
141 else
142 ui_out_text (uiout, ":\t");
143
92df71f0
FN
144 if (filename != NULL)
145 xfree (filename);
146 if (name != NULL)
147 xfree (name);
148
f99d8bf4 149 ui_file_rewind (stb);
e6158f16
HZ
150 if (flags & DISASSEMBLY_RAW_INSN)
151 {
152 CORE_ADDR old_pc = pc;
153 bfd_byte data;
154 int status;
b716877b
AB
155 const char *spacer = "";
156
157 /* Build the opcodes using a temporary stream so we can
158 write them out in a single go for the MI. */
f99d8bf4 159 struct ui_file *opcode_stream = mem_fileopen ();
b716877b 160 struct cleanup *cleanups =
f99d8bf4 161 make_cleanup_ui_file_delete (opcode_stream);
9a619af0 162
e6158f16
HZ
163 pc += gdbarch_print_insn (gdbarch, pc, di);
164 for (;old_pc < pc; old_pc++)
165 {
166 status = (*di->read_memory_func) (old_pc, &data, 1, di);
167 if (status != 0)
168 (*di->memory_error_func) (status, old_pc, di);
f99d8bf4 169 fprintf_filtered (opcode_stream, "%s%02x",
b716877b
AB
170 spacer, (unsigned) data);
171 spacer = " ";
e6158f16 172 }
b716877b 173 ui_out_field_stream (uiout, "opcodes", opcode_stream);
e6158f16 174 ui_out_text (uiout, "\t");
b716877b
AB
175
176 do_cleanups (cleanups);
e6158f16
HZ
177 }
178 else
179 pc += gdbarch_print_insn (gdbarch, pc, di);
92df71f0 180 ui_out_field_stream (uiout, "inst", stb);
f99d8bf4 181 ui_file_rewind (stb);
3b31d625 182 do_cleanups (ui_out_chain);
92df71f0
FN
183 ui_out_text (uiout, "\n");
184 }
185 return num_displayed;
186}
187
188/* The idea here is to present a source-O-centric view of a
189 function to the user. This means that things are presented
190 in source order, with (possibly) out of order assembly
191 immediately following. */
0963b4bd 192
92df71f0 193static void
13274fc3 194do_mixed_source_and_assembly (struct gdbarch *gdbarch, struct ui_out *uiout,
92df71f0
FN
195 struct disassemble_info *di, int nlines,
196 struct linetable_entry *le,
197 CORE_ADDR low, CORE_ADDR high,
198 struct symtab *symtab,
f99d8bf4 199 int how_many, int flags, struct ui_file *stb)
92df71f0
FN
200{
201 int newlines = 0;
202 struct dis_line_entry *mle;
203 struct symtab_and_line sal;
204 int i;
205 int out_of_order = 0;
206 int next_line = 0;
92df71f0 207 int num_displayed = 0;
4cd29721 208 enum print_source_lines_flags psl_flags = 0;
3b31d625 209 struct cleanup *ui_out_chain;
0127c0d3
JJ
210 struct cleanup *ui_out_tuple_chain = make_cleanup (null_cleanup, 0);
211 struct cleanup *ui_out_list_chain = make_cleanup (null_cleanup, 0);
92df71f0 212
4cd29721
MM
213 if (flags & DISASSEMBLY_FILENAME)
214 psl_flags |= PRINT_SOURCE_LINES_FILENAME;
215
92df71f0
FN
216 mle = (struct dis_line_entry *) alloca (nlines
217 * sizeof (struct dis_line_entry));
218
219 /* Copy linetable entries for this function into our data
220 structure, creating end_pc's and setting out_of_order as
221 appropriate. */
222
223 /* First, skip all the preceding functions. */
224
225 for (i = 0; i < nlines - 1 && le[i].pc < low; i++);
226
227 /* Now, copy all entries before the end of this function. */
228
229 for (; i < nlines - 1 && le[i].pc < high; i++)
230 {
231 if (le[i].line == le[i + 1].line && le[i].pc == le[i + 1].pc)
0963b4bd 232 continue; /* Ignore duplicates. */
92df71f0
FN
233
234 /* Skip any end-of-function markers. */
235 if (le[i].line == 0)
236 continue;
237
238 mle[newlines].line = le[i].line;
239 if (le[i].line > le[i + 1].line)
240 out_of_order = 1;
241 mle[newlines].start_pc = le[i].pc;
242 mle[newlines].end_pc = le[i + 1].pc;
243 newlines++;
244 }
245
246 /* If we're on the last line, and it's part of the function,
247 then we need to get the end pc in a special way. */
248
249 if (i == nlines - 1 && le[i].pc < high)
250 {
251 mle[newlines].line = le[i].line;
252 mle[newlines].start_pc = le[i].pc;
253 sal = find_pc_line (le[i].pc, 0);
254 mle[newlines].end_pc = sal.end;
255 newlines++;
256 }
257
258 /* Now, sort mle by line #s (and, then by addresses within
0963b4bd 259 lines). */
92df71f0
FN
260
261 if (out_of_order)
262 qsort (mle, newlines, sizeof (struct dis_line_entry), compare_lines);
263
264 /* Now, for each line entry, emit the specified lines (unless
265 they have been emitted before), followed by the assembly code
266 for that line. */
267
3b31d625 268 ui_out_chain = make_cleanup_ui_out_list_begin_end (uiout, "asm_insns");
92df71f0
FN
269
270 for (i = 0; i < newlines; i++)
271 {
92df71f0
FN
272 /* Print out everything from next_line to the current line. */
273 if (mle[i].line >= next_line)
274 {
275 if (next_line != 0)
276 {
0963b4bd 277 /* Just one line to print. */
92df71f0
FN
278 if (next_line == mle[i].line)
279 {
3b31d625
EZ
280 ui_out_tuple_chain
281 = make_cleanup_ui_out_tuple_begin_end (uiout,
282 "src_and_asm_line");
4cd29721 283 print_source_lines (symtab, next_line, mle[i].line + 1, psl_flags);
92df71f0
FN
284 }
285 else
286 {
0963b4bd 287 /* Several source lines w/o asm instructions associated. */
92df71f0
FN
288 for (; next_line < mle[i].line; next_line++)
289 {
3b31d625
EZ
290 struct cleanup *ui_out_list_chain_line;
291 struct cleanup *ui_out_tuple_chain_line;
292
293 ui_out_tuple_chain_line
294 = make_cleanup_ui_out_tuple_begin_end (uiout,
295 "src_and_asm_line");
92df71f0 296 print_source_lines (symtab, next_line, next_line + 1,
4cd29721 297 psl_flags);
3b31d625
EZ
298 ui_out_list_chain_line
299 = make_cleanup_ui_out_list_begin_end (uiout,
300 "line_asm_insn");
301 do_cleanups (ui_out_list_chain_line);
302 do_cleanups (ui_out_tuple_chain_line);
92df71f0
FN
303 }
304 /* Print the last line and leave list open for
0963b4bd 305 asm instructions to be added. */
3b31d625
EZ
306 ui_out_tuple_chain
307 = make_cleanup_ui_out_tuple_begin_end (uiout,
308 "src_and_asm_line");
4cd29721 309 print_source_lines (symtab, next_line, mle[i].line + 1, psl_flags);
92df71f0
FN
310 }
311 }
312 else
313 {
3b31d625 314 ui_out_tuple_chain
3e43a32a
MS
315 = make_cleanup_ui_out_tuple_begin_end (uiout,
316 "src_and_asm_line");
4cd29721 317 print_source_lines (symtab, mle[i].line, mle[i].line + 1, psl_flags);
92df71f0
FN
318 }
319
320 next_line = mle[i].line + 1;
3b31d625
EZ
321 ui_out_list_chain
322 = make_cleanup_ui_out_list_begin_end (uiout, "line_asm_insn");
92df71f0
FN
323 }
324
13274fc3
UW
325 num_displayed += dump_insns (gdbarch, uiout, di,
326 mle[i].start_pc, mle[i].end_pc,
e6158f16 327 how_many, flags, stb);
0127c0d3
JJ
328
329 /* When we've reached the end of the mle array, or we've seen the last
330 assembly range for this source line, close out the list/tuple. */
331 if (i == (newlines - 1) || mle[i + 1].line > mle[i].line)
92df71f0 332 {
3b31d625
EZ
333 do_cleanups (ui_out_list_chain);
334 do_cleanups (ui_out_tuple_chain);
0127c0d3
JJ
335 ui_out_tuple_chain = make_cleanup (null_cleanup, 0);
336 ui_out_list_chain = make_cleanup (null_cleanup, 0);
92df71f0 337 ui_out_text (uiout, "\n");
92df71f0 338 }
0127c0d3
JJ
339 if (how_many >= 0 && num_displayed >= how_many)
340 break;
92df71f0 341 }
3b31d625 342 do_cleanups (ui_out_chain);
92df71f0
FN
343}
344
345
346static void
13274fc3
UW
347do_assembly_only (struct gdbarch *gdbarch, struct ui_out *uiout,
348 struct disassemble_info * di,
92df71f0 349 CORE_ADDR low, CORE_ADDR high,
f99d8bf4 350 int how_many, int flags, struct ui_file *stb)
92df71f0
FN
351{
352 int num_displayed = 0;
3b31d625 353 struct cleanup *ui_out_chain;
92df71f0 354
3b31d625 355 ui_out_chain = make_cleanup_ui_out_list_begin_end (uiout, "asm_insns");
92df71f0 356
e6158f16
HZ
357 num_displayed = dump_insns (gdbarch, uiout, di, low, high, how_many,
358 flags, stb);
92df71f0 359
3b31d625 360 do_cleanups (ui_out_chain);
92df71f0
FN
361}
362
92bf2b80
AC
363/* Initialize the disassemble info struct ready for the specified
364 stream. */
365
a0b31db1 366static int ATTRIBUTE_PRINTF (2, 3)
242e8be5
AC
367fprintf_disasm (void *stream, const char *format, ...)
368{
369 va_list args;
9a619af0 370
242e8be5
AC
371 va_start (args, format);
372 vfprintf_filtered (stream, format, args);
373 va_end (args);
374 /* Something non -ve. */
375 return 0;
376}
377
ed3ef339 378struct disassemble_info
92bf2b80 379gdb_disassemble_info (struct gdbarch *gdbarch, struct ui_file *file)
92df71f0 380{
a89aa300 381 struct disassemble_info di;
9a619af0 382
242e8be5 383 init_disassemble_info (&di, file, fprintf_disasm);
2b6fd0d8
AC
384 di.flavour = bfd_target_unknown_flavour;
385 di.memory_error_func = dis_asm_memory_error;
386 di.print_address_func = dis_asm_print_address;
387 /* NOTE: cagney/2003-04-28: The original code, from the old Insight
388 disassembler had a local optomization here. By default it would
389 access the executable file, instead of the target memory (there
ce2826aa 390 was a growing list of exceptions though). Unfortunately, the
2b6fd0d8
AC
391 heuristic was flawed. Commands like "disassemble &variable"
392 didn't work as they relied on the access going to the target.
393 Further, it has been supperseeded by trust-read-only-sections
394 (although that should be superseeded by target_trust..._p()). */
395 di.read_memory_func = dis_asm_read_memory;
22b0d388 396 di.arch = gdbarch_bfd_arch_info (gdbarch)->arch;
92bf2b80
AC
397 di.mach = gdbarch_bfd_arch_info (gdbarch)->mach;
398 di.endian = gdbarch_byte_order (gdbarch);
9d4fde75 399 di.endian_code = gdbarch_byte_order_for_code (gdbarch);
5af949e3 400 di.application_data = gdbarch;
2877b4cc 401 disassemble_init_for_target (&di);
92bf2b80
AC
402 return di;
403}
404
405void
13274fc3 406gdb_disassembly (struct gdbarch *gdbarch, struct ui_out *uiout,
9c419145
PP
407 char *file_string, int flags, int how_many,
408 CORE_ADDR low, CORE_ADDR high)
92bf2b80 409{
f99d8bf4
PA
410 struct ui_file *stb = mem_fileopen ();
411 struct cleanup *cleanups = make_cleanup_ui_file_delete (stb);
412 struct disassemble_info di = gdb_disassemble_info (gdbarch, stb);
34248c3a 413 struct symtab *symtab;
92bf2b80
AC
414 struct linetable_entry *le = NULL;
415 int nlines = -1;
92df71f0 416
0963b4bd 417 /* Assume symtab is valid for whole PC range. */
34248c3a 418 symtab = find_pc_line_symtab (low);
92df71f0 419
8435453b 420 if (symtab != NULL && SYMTAB_LINETABLE (symtab) != NULL)
92df71f0
FN
421 {
422 /* Convert the linetable to a bunch of my_line_entry's. */
8435453b
DE
423 le = SYMTAB_LINETABLE (symtab)->item;
424 nlines = SYMTAB_LINETABLE (symtab)->nitems;
92df71f0
FN
425 }
426
e6158f16 427 if (!(flags & DISASSEMBLY_SOURCE) || nlines <= 0
8435453b 428 || symtab == NULL || SYMTAB_LINETABLE (symtab) == NULL)
e6158f16 429 do_assembly_only (gdbarch, uiout, &di, low, high, how_many, flags, stb);
92df71f0 430
e6158f16 431 else if (flags & DISASSEMBLY_SOURCE)
13274fc3 432 do_mixed_source_and_assembly (gdbarch, uiout, &di, nlines, le, low,
e6158f16 433 high, symtab, how_many, flags, stb);
92df71f0 434
2b6fd0d8 435 do_cleanups (cleanups);
92df71f0
FN
436 gdb_flush (gdb_stdout);
437}
810ecf9f 438
92bf2b80 439/* Print the instruction at address MEMADDR in debugged memory,
a4642986
MR
440 on STREAM. Returns the length of the instruction, in bytes,
441 and, if requested, the number of branch delay slot instructions. */
92bf2b80
AC
442
443int
13274fc3
UW
444gdb_print_insn (struct gdbarch *gdbarch, CORE_ADDR memaddr,
445 struct ui_file *stream, int *branch_delay_insns)
92bf2b80 446{
a4642986
MR
447 struct disassemble_info di;
448 int length;
449
13274fc3
UW
450 di = gdb_disassemble_info (gdbarch, stream);
451 length = gdbarch_print_insn (gdbarch, memaddr, &di);
a4642986
MR
452 if (branch_delay_insns)
453 {
454 if (di.insn_info_valid)
455 *branch_delay_insns = di.branch_delay_insns;
456 else
457 *branch_delay_insns = 0;
458 }
459 return length;
92bf2b80 460}
eda5a4d7
PA
461
462static void
463do_ui_file_delete (void *arg)
464{
465 ui_file_delete (arg);
466}
467
468/* Return the length in bytes of the instruction at address MEMADDR in
469 debugged memory. */
470
471int
472gdb_insn_length (struct gdbarch *gdbarch, CORE_ADDR addr)
473{
474 static struct ui_file *null_stream = NULL;
475
476 /* Dummy file descriptor for the disassembler. */
477 if (!null_stream)
478 {
479 null_stream = ui_file_new ();
480 make_final_cleanup (do_ui_file_delete, null_stream);
481 }
482
483 return gdb_print_insn (gdbarch, addr, null_stream, NULL);
484}
485
486/* fprintf-function for gdb_buffered_insn_length. This function is a
487 nop, we don't want to print anything, we just want to compute the
488 length of the insn. */
489
490static int ATTRIBUTE_PRINTF (2, 3)
491gdb_buffered_insn_length_fprintf (void *stream, const char *format, ...)
492{
493 return 0;
494}
495
496/* Initialize a struct disassemble_info for gdb_buffered_insn_length. */
497
498static void
499gdb_buffered_insn_length_init_dis (struct gdbarch *gdbarch,
500 struct disassemble_info *di,
501 const gdb_byte *insn, int max_len,
502 CORE_ADDR addr)
503{
504 init_disassemble_info (di, NULL, gdb_buffered_insn_length_fprintf);
505
506 /* init_disassemble_info installs buffer_read_memory, etc.
507 so we don't need to do that here.
508 The cast is necessary until disassemble_info is const-ified. */
509 di->buffer = (gdb_byte *) insn;
510 di->buffer_length = max_len;
511 di->buffer_vma = addr;
512
513 di->arch = gdbarch_bfd_arch_info (gdbarch)->arch;
514 di->mach = gdbarch_bfd_arch_info (gdbarch)->mach;
515 di->endian = gdbarch_byte_order (gdbarch);
516 di->endian_code = gdbarch_byte_order_for_code (gdbarch);
517
518 disassemble_init_for_target (di);
519}
520
521/* Return the length in bytes of INSN. MAX_LEN is the size of the
522 buffer containing INSN. */
523
524int
525gdb_buffered_insn_length (struct gdbarch *gdbarch,
526 const gdb_byte *insn, int max_len, CORE_ADDR addr)
527{
528 struct disassemble_info di;
529
530 gdb_buffered_insn_length_init_dis (gdbarch, &di, insn, max_len, addr);
531
532 return gdbarch_print_insn (gdbarch, addr, &di);
533}