]>
Commit | Line | Data |
---|---|---|
92df71f0 | 1 | /* Disassemble support for GDB. |
1bac305b | 2 | |
618f726f | 3 | Copyright (C) 2000-2016 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" |
6ff0ba5f | 27 | #include "source.h" |
92df71f0 FN |
28 | |
29 | /* Disassemble functions. | |
30 | FIXME: We should get rid of all the duplicate code in gdb that does | |
0963b4bd | 31 | the same thing: disassemble_command() and the gdbtk variation. */ |
92df71f0 | 32 | |
6ff0ba5f DE |
33 | /* This structure is used to store line number information for the |
34 | deprecated /m option. | |
92df71f0 FN |
35 | We need a different sort of line table from the normal one cuz we can't |
36 | depend upon implicit line-end pc's for lines to do the | |
37 | reordering in this function. */ | |
38 | ||
6ff0ba5f | 39 | struct deprecated_dis_line_entry |
92df71f0 FN |
40 | { |
41 | int line; | |
42 | CORE_ADDR start_pc; | |
43 | CORE_ADDR end_pc; | |
44 | }; | |
45 | ||
6ff0ba5f DE |
46 | /* This Structure is used to store line number information. |
47 | We need a different sort of line table from the normal one cuz we can't | |
48 | depend upon implicit line-end pc's for lines to do the | |
49 | reordering in this function. */ | |
50 | ||
51 | struct dis_line_entry | |
52 | { | |
53 | struct symtab *symtab; | |
54 | int line; | |
55 | }; | |
56 | ||
57 | /* Hash function for dis_line_entry. */ | |
58 | ||
59 | static hashval_t | |
60 | hash_dis_line_entry (const void *item) | |
61 | { | |
9a3c8263 | 62 | const struct dis_line_entry *dle = (const struct dis_line_entry *) item; |
6ff0ba5f DE |
63 | |
64 | return htab_hash_pointer (dle->symtab) + dle->line; | |
65 | } | |
66 | ||
67 | /* Equal function for dis_line_entry. */ | |
68 | ||
69 | static int | |
70 | eq_dis_line_entry (const void *item_lhs, const void *item_rhs) | |
71 | { | |
9a3c8263 SM |
72 | const struct dis_line_entry *lhs = (const struct dis_line_entry *) item_lhs; |
73 | const struct dis_line_entry *rhs = (const struct dis_line_entry *) item_rhs; | |
6ff0ba5f DE |
74 | |
75 | return (lhs->symtab == rhs->symtab | |
76 | && lhs->line == rhs->line); | |
77 | } | |
78 | ||
79 | /* Create the table to manage lines for mixed source/disassembly. */ | |
80 | ||
81 | static htab_t | |
82 | allocate_dis_line_table (void) | |
83 | { | |
84 | return htab_create_alloc (41, | |
85 | hash_dis_line_entry, eq_dis_line_entry, | |
86 | xfree, xcalloc, xfree); | |
87 | } | |
88 | ||
4a099de2 | 89 | /* Add a new dis_line_entry containing SYMTAB and LINE to TABLE. */ |
6ff0ba5f DE |
90 | |
91 | static void | |
4a099de2 | 92 | add_dis_line_entry (htab_t table, struct symtab *symtab, int line) |
6ff0ba5f DE |
93 | { |
94 | void **slot; | |
95 | struct dis_line_entry dle, *dlep; | |
96 | ||
97 | dle.symtab = symtab; | |
98 | dle.line = line; | |
99 | slot = htab_find_slot (table, &dle, INSERT); | |
100 | if (*slot == NULL) | |
101 | { | |
102 | dlep = XNEW (struct dis_line_entry); | |
103 | dlep->symtab = symtab; | |
104 | dlep->line = line; | |
105 | *slot = dlep; | |
106 | } | |
107 | } | |
108 | ||
109 | /* Return non-zero if SYMTAB, LINE are in TABLE. */ | |
110 | ||
111 | static int | |
112 | line_has_code_p (htab_t table, struct symtab *symtab, int line) | |
113 | { | |
114 | struct dis_line_entry dle; | |
115 | ||
116 | dle.symtab = symtab; | |
117 | dle.line = line; | |
118 | return htab_find (table, &dle) != NULL; | |
119 | } | |
120 | ||
810ecf9f AC |
121 | /* Like target_read_memory, but slightly different parameters. */ |
122 | static int | |
1b0ba102 | 123 | dis_asm_read_memory (bfd_vma memaddr, gdb_byte *myaddr, unsigned int len, |
a89aa300 | 124 | struct disassemble_info *info) |
810ecf9f | 125 | { |
283f7163 | 126 | return target_read_code (memaddr, myaddr, len); |
810ecf9f AC |
127 | } |
128 | ||
129 | /* Like memory_error with slightly different parameters. */ | |
130 | static void | |
d09f2c3f | 131 | dis_asm_memory_error (int err, bfd_vma memaddr, |
a89aa300 | 132 | struct disassemble_info *info) |
810ecf9f | 133 | { |
d09f2c3f | 134 | memory_error (TARGET_XFER_E_IO, memaddr); |
810ecf9f AC |
135 | } |
136 | ||
137 | /* Like print_address with slightly different parameters. */ | |
138 | static void | |
139 | dis_asm_print_address (bfd_vma addr, struct disassemble_info *info) | |
140 | { | |
9a3c8263 | 141 | struct gdbarch *gdbarch = (struct gdbarch *) info->application_data; |
9a619af0 | 142 | |
9a3c8263 | 143 | print_address (gdbarch, addr, (struct ui_file *) info->stream); |
810ecf9f AC |
144 | } |
145 | ||
92df71f0 | 146 | static int |
bde58177 | 147 | compare_lines (const void *mle1p, const void *mle2p) |
92df71f0 | 148 | { |
6ff0ba5f | 149 | struct deprecated_dis_line_entry *mle1, *mle2; |
92df71f0 FN |
150 | int val; |
151 | ||
6ff0ba5f DE |
152 | mle1 = (struct deprecated_dis_line_entry *) mle1p; |
153 | mle2 = (struct deprecated_dis_line_entry *) mle2p; | |
92df71f0 | 154 | |
9011945e AB |
155 | /* End of sequence markers have a line number of 0 but don't want to |
156 | be sorted to the head of the list, instead sort by PC. */ | |
157 | if (mle1->line == 0 || mle2->line == 0) | |
158 | { | |
159 | val = mle1->start_pc - mle2->start_pc; | |
160 | if (val == 0) | |
161 | val = mle1->line - mle2->line; | |
162 | } | |
163 | else | |
164 | { | |
165 | val = mle1->line - mle2->line; | |
166 | if (val == 0) | |
167 | val = mle1->start_pc - mle2->start_pc; | |
168 | } | |
169 | return val; | |
92df71f0 FN |
170 | } |
171 | ||
a50a4026 | 172 | /* See disasm.h. */ |
af70908d | 173 | |
a50a4026 | 174 | int |
af70908d | 175 | gdb_pretty_print_insn (struct gdbarch *gdbarch, struct ui_out *uiout, |
a50a4026 MM |
176 | struct disassemble_info * di, |
177 | const struct disasm_insn *insn, int flags, | |
af70908d | 178 | struct ui_file *stb) |
92df71f0 | 179 | { |
92df71f0 FN |
180 | /* parts of the symbolic representation of the address */ |
181 | int unmapped; | |
92df71f0 FN |
182 | int offset; |
183 | int line; | |
af70908d | 184 | int size; |
3b31d625 | 185 | struct cleanup *ui_out_chain; |
af70908d MM |
186 | char *filename = NULL; |
187 | char *name = NULL; | |
a50a4026 | 188 | CORE_ADDR pc; |
af70908d MM |
189 | |
190 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, NULL); | |
a50a4026 MM |
191 | pc = insn->addr; |
192 | ||
193 | if (insn->number != 0) | |
194 | { | |
195 | ui_out_field_fmt (uiout, "insn-number", "%u", insn->number); | |
196 | ui_out_text (uiout, "\t"); | |
197 | } | |
92df71f0 | 198 | |
a50a4026 MM |
199 | if ((flags & DISASSEMBLY_SPECULATIVE) != 0) |
200 | { | |
201 | if (insn->is_speculative) | |
202 | { | |
203 | ui_out_field_string (uiout, "is-speculative", "?"); | |
204 | ||
205 | /* The speculative execution indication overwrites the first | |
206 | character of the PC prefix. | |
207 | We assume a PC prefix length of 3 characters. */ | |
208 | if ((flags & DISASSEMBLY_OMIT_PC) == 0) | |
209 | ui_out_text (uiout, pc_prefix (pc) + 1); | |
210 | else | |
211 | ui_out_text (uiout, " "); | |
212 | } | |
213 | else if ((flags & DISASSEMBLY_OMIT_PC) == 0) | |
214 | ui_out_text (uiout, pc_prefix (pc)); | |
215 | else | |
216 | ui_out_text (uiout, " "); | |
217 | } | |
218 | else if ((flags & DISASSEMBLY_OMIT_PC) == 0) | |
af70908d MM |
219 | ui_out_text (uiout, pc_prefix (pc)); |
220 | ui_out_field_core_addr (uiout, "address", gdbarch, pc); | |
221 | ||
222 | if (!build_address_symbolic (gdbarch, pc, 0, &name, &offset, &filename, | |
223 | &line, &unmapped)) | |
92df71f0 | 224 | { |
af70908d MM |
225 | /* We don't care now about line, filename and unmapped. But we might in |
226 | the future. */ | |
227 | ui_out_text (uiout, " <"); | |
228 | if ((flags & DISASSEMBLY_OMIT_FNAME) == 0) | |
229 | ui_out_field_string (uiout, "func-name", name); | |
230 | ui_out_text (uiout, "+"); | |
231 | ui_out_field_int (uiout, "offset", offset); | |
232 | ui_out_text (uiout, ">:\t"); | |
233 | } | |
234 | else | |
235 | ui_out_text (uiout, ":\t"); | |
1211bce3 | 236 | |
af70908d MM |
237 | if (filename != NULL) |
238 | xfree (filename); | |
239 | if (name != NULL) | |
240 | xfree (name); | |
241 | ||
242 | ui_file_rewind (stb); | |
243 | if (flags & DISASSEMBLY_RAW_INSN) | |
244 | { | |
245 | CORE_ADDR end_pc; | |
246 | bfd_byte data; | |
247 | int err; | |
248 | const char *spacer = ""; | |
249 | ||
250 | /* Build the opcodes using a temporary stream so we can | |
251 | write them out in a single go for the MI. */ | |
252 | struct ui_file *opcode_stream = mem_fileopen (); | |
253 | struct cleanup *cleanups = | |
254 | make_cleanup_ui_file_delete (opcode_stream); | |
946287b7 | 255 | |
af70908d MM |
256 | size = gdbarch_print_insn (gdbarch, pc, di); |
257 | end_pc = pc + size; | |
92df71f0 | 258 | |
af70908d | 259 | for (;pc < end_pc; ++pc) |
92df71f0 | 260 | { |
af70908d MM |
261 | err = (*di->read_memory_func) (pc, &data, 1, di); |
262 | if (err != 0) | |
263 | (*di->memory_error_func) (err, pc, di); | |
264 | fprintf_filtered (opcode_stream, "%s%02x", | |
265 | spacer, (unsigned) data); | |
266 | spacer = " "; | |
92df71f0 | 267 | } |
af70908d MM |
268 | |
269 | ui_out_field_stream (uiout, "opcodes", opcode_stream); | |
270 | ui_out_text (uiout, "\t"); | |
271 | ||
272 | do_cleanups (cleanups); | |
273 | } | |
274 | else | |
275 | size = gdbarch_print_insn (gdbarch, pc, di); | |
276 | ||
277 | ui_out_field_stream (uiout, "inst", stb); | |
278 | ui_file_rewind (stb); | |
279 | do_cleanups (ui_out_chain); | |
280 | ui_out_text (uiout, "\n"); | |
281 | ||
282 | return size; | |
283 | } | |
284 | ||
285 | static int | |
286 | dump_insns (struct gdbarch *gdbarch, struct ui_out *uiout, | |
287 | struct disassemble_info * di, | |
288 | CORE_ADDR low, CORE_ADDR high, | |
289 | int how_many, int flags, struct ui_file *stb, | |
290 | CORE_ADDR *end_pc) | |
291 | { | |
a50a4026 | 292 | struct disasm_insn insn; |
af70908d MM |
293 | int num_displayed = 0; |
294 | ||
a50a4026 MM |
295 | memset (&insn, 0, sizeof (insn)); |
296 | insn.addr = low; | |
297 | ||
298 | while (insn.addr < high && (how_many < 0 || num_displayed < how_many)) | |
af70908d MM |
299 | { |
300 | int size; | |
301 | ||
a50a4026 | 302 | size = gdb_pretty_print_insn (gdbarch, uiout, di, &insn, flags, stb); |
af70908d MM |
303 | if (size <= 0) |
304 | break; | |
305 | ||
306 | ++num_displayed; | |
a50a4026 | 307 | insn.addr += size; |
af70908d MM |
308 | |
309 | /* Allow user to bail out with ^C. */ | |
310 | QUIT; | |
92df71f0 | 311 | } |
6ff0ba5f DE |
312 | |
313 | if (end_pc != NULL) | |
a50a4026 | 314 | *end_pc = insn.addr; |
af70908d | 315 | |
92df71f0 FN |
316 | return num_displayed; |
317 | } | |
318 | ||
319 | /* The idea here is to present a source-O-centric view of a | |
320 | function to the user. This means that things are presented | |
321 | in source order, with (possibly) out of order assembly | |
6ff0ba5f DE |
322 | immediately following. |
323 | ||
324 | N.B. This view is deprecated. */ | |
0963b4bd | 325 | |
92df71f0 | 326 | static void |
6ff0ba5f DE |
327 | do_mixed_source_and_assembly_deprecated |
328 | (struct gdbarch *gdbarch, struct ui_out *uiout, | |
329 | struct disassemble_info *di, struct symtab *symtab, | |
330 | CORE_ADDR low, CORE_ADDR high, | |
331 | int how_many, int flags, struct ui_file *stb) | |
92df71f0 FN |
332 | { |
333 | int newlines = 0; | |
6ff0ba5f DE |
334 | int nlines; |
335 | struct linetable_entry *le; | |
336 | struct deprecated_dis_line_entry *mle; | |
92df71f0 FN |
337 | struct symtab_and_line sal; |
338 | int i; | |
339 | int out_of_order = 0; | |
340 | int next_line = 0; | |
92df71f0 | 341 | int num_displayed = 0; |
8d297bbf | 342 | print_source_lines_flags psl_flags = 0; |
3b31d625 | 343 | struct cleanup *ui_out_chain; |
0127c0d3 JJ |
344 | struct cleanup *ui_out_tuple_chain = make_cleanup (null_cleanup, 0); |
345 | struct cleanup *ui_out_list_chain = make_cleanup (null_cleanup, 0); | |
92df71f0 | 346 | |
6ff0ba5f DE |
347 | gdb_assert (symtab != NULL && SYMTAB_LINETABLE (symtab) != NULL); |
348 | ||
349 | nlines = SYMTAB_LINETABLE (symtab)->nitems; | |
350 | le = SYMTAB_LINETABLE (symtab)->item; | |
351 | ||
4cd29721 MM |
352 | if (flags & DISASSEMBLY_FILENAME) |
353 | psl_flags |= PRINT_SOURCE_LINES_FILENAME; | |
354 | ||
6ff0ba5f DE |
355 | mle = (struct deprecated_dis_line_entry *) |
356 | alloca (nlines * sizeof (struct deprecated_dis_line_entry)); | |
92df71f0 FN |
357 | |
358 | /* Copy linetable entries for this function into our data | |
359 | structure, creating end_pc's and setting out_of_order as | |
360 | appropriate. */ | |
361 | ||
362 | /* First, skip all the preceding functions. */ | |
363 | ||
364 | for (i = 0; i < nlines - 1 && le[i].pc < low; i++); | |
365 | ||
366 | /* Now, copy all entries before the end of this function. */ | |
367 | ||
368 | for (; i < nlines - 1 && le[i].pc < high; i++) | |
369 | { | |
370 | if (le[i].line == le[i + 1].line && le[i].pc == le[i + 1].pc) | |
0963b4bd | 371 | continue; /* Ignore duplicates. */ |
92df71f0 FN |
372 | |
373 | /* Skip any end-of-function markers. */ | |
374 | if (le[i].line == 0) | |
375 | continue; | |
376 | ||
377 | mle[newlines].line = le[i].line; | |
378 | if (le[i].line > le[i + 1].line) | |
379 | out_of_order = 1; | |
380 | mle[newlines].start_pc = le[i].pc; | |
381 | mle[newlines].end_pc = le[i + 1].pc; | |
382 | newlines++; | |
383 | } | |
384 | ||
385 | /* If we're on the last line, and it's part of the function, | |
386 | then we need to get the end pc in a special way. */ | |
387 | ||
388 | if (i == nlines - 1 && le[i].pc < high) | |
389 | { | |
390 | mle[newlines].line = le[i].line; | |
391 | mle[newlines].start_pc = le[i].pc; | |
392 | sal = find_pc_line (le[i].pc, 0); | |
393 | mle[newlines].end_pc = sal.end; | |
394 | newlines++; | |
395 | } | |
396 | ||
6ff0ba5f | 397 | /* Now, sort mle by line #s (and, then by addresses within lines). */ |
92df71f0 FN |
398 | |
399 | if (out_of_order) | |
6ff0ba5f DE |
400 | qsort (mle, newlines, sizeof (struct deprecated_dis_line_entry), |
401 | compare_lines); | |
92df71f0 FN |
402 | |
403 | /* Now, for each line entry, emit the specified lines (unless | |
404 | they have been emitted before), followed by the assembly code | |
405 | for that line. */ | |
406 | ||
3b31d625 | 407 | ui_out_chain = make_cleanup_ui_out_list_begin_end (uiout, "asm_insns"); |
92df71f0 FN |
408 | |
409 | for (i = 0; i < newlines; i++) | |
410 | { | |
92df71f0 FN |
411 | /* Print out everything from next_line to the current line. */ |
412 | if (mle[i].line >= next_line) | |
413 | { | |
414 | if (next_line != 0) | |
415 | { | |
0963b4bd | 416 | /* Just one line to print. */ |
92df71f0 FN |
417 | if (next_line == mle[i].line) |
418 | { | |
3b31d625 EZ |
419 | ui_out_tuple_chain |
420 | = make_cleanup_ui_out_tuple_begin_end (uiout, | |
421 | "src_and_asm_line"); | |
4cd29721 | 422 | print_source_lines (symtab, next_line, mle[i].line + 1, psl_flags); |
92df71f0 FN |
423 | } |
424 | else | |
425 | { | |
0963b4bd | 426 | /* Several source lines w/o asm instructions associated. */ |
92df71f0 FN |
427 | for (; next_line < mle[i].line; next_line++) |
428 | { | |
3b31d625 EZ |
429 | struct cleanup *ui_out_list_chain_line; |
430 | struct cleanup *ui_out_tuple_chain_line; | |
431 | ||
432 | ui_out_tuple_chain_line | |
433 | = make_cleanup_ui_out_tuple_begin_end (uiout, | |
434 | "src_and_asm_line"); | |
92df71f0 | 435 | print_source_lines (symtab, next_line, next_line + 1, |
4cd29721 | 436 | psl_flags); |
3b31d625 EZ |
437 | ui_out_list_chain_line |
438 | = make_cleanup_ui_out_list_begin_end (uiout, | |
439 | "line_asm_insn"); | |
440 | do_cleanups (ui_out_list_chain_line); | |
441 | do_cleanups (ui_out_tuple_chain_line); | |
92df71f0 FN |
442 | } |
443 | /* Print the last line and leave list open for | |
0963b4bd | 444 | asm instructions to be added. */ |
3b31d625 EZ |
445 | ui_out_tuple_chain |
446 | = make_cleanup_ui_out_tuple_begin_end (uiout, | |
447 | "src_and_asm_line"); | |
4cd29721 | 448 | print_source_lines (symtab, next_line, mle[i].line + 1, psl_flags); |
92df71f0 FN |
449 | } |
450 | } | |
451 | else | |
452 | { | |
3b31d625 | 453 | ui_out_tuple_chain |
3e43a32a MS |
454 | = make_cleanup_ui_out_tuple_begin_end (uiout, |
455 | "src_and_asm_line"); | |
4cd29721 | 456 | print_source_lines (symtab, mle[i].line, mle[i].line + 1, psl_flags); |
92df71f0 FN |
457 | } |
458 | ||
459 | next_line = mle[i].line + 1; | |
3b31d625 EZ |
460 | ui_out_list_chain |
461 | = make_cleanup_ui_out_list_begin_end (uiout, "line_asm_insn"); | |
92df71f0 FN |
462 | } |
463 | ||
13274fc3 UW |
464 | num_displayed += dump_insns (gdbarch, uiout, di, |
465 | mle[i].start_pc, mle[i].end_pc, | |
6ff0ba5f | 466 | how_many, flags, stb, NULL); |
0127c0d3 JJ |
467 | |
468 | /* When we've reached the end of the mle array, or we've seen the last | |
469 | assembly range for this source line, close out the list/tuple. */ | |
470 | if (i == (newlines - 1) || mle[i + 1].line > mle[i].line) | |
92df71f0 | 471 | { |
3b31d625 EZ |
472 | do_cleanups (ui_out_list_chain); |
473 | do_cleanups (ui_out_tuple_chain); | |
0127c0d3 JJ |
474 | ui_out_tuple_chain = make_cleanup (null_cleanup, 0); |
475 | ui_out_list_chain = make_cleanup (null_cleanup, 0); | |
92df71f0 | 476 | ui_out_text (uiout, "\n"); |
92df71f0 | 477 | } |
0127c0d3 JJ |
478 | if (how_many >= 0 && num_displayed >= how_many) |
479 | break; | |
92df71f0 | 480 | } |
3b31d625 | 481 | do_cleanups (ui_out_chain); |
92df71f0 FN |
482 | } |
483 | ||
6ff0ba5f DE |
484 | /* The idea here is to present a source-O-centric view of a |
485 | function to the user. This means that things are presented | |
486 | in source order, with (possibly) out of order assembly | |
487 | immediately following. */ | |
488 | ||
489 | static void | |
490 | do_mixed_source_and_assembly (struct gdbarch *gdbarch, struct ui_out *uiout, | |
491 | struct disassemble_info *di, | |
492 | struct symtab *main_symtab, | |
493 | CORE_ADDR low, CORE_ADDR high, | |
494 | int how_many, int flags, struct ui_file *stb) | |
495 | { | |
6ff0ba5f | 496 | const struct linetable_entry *le, *first_le; |
6ff0ba5f | 497 | int i, nlines; |
6ff0ba5f | 498 | int num_displayed = 0; |
8d297bbf | 499 | print_source_lines_flags psl_flags = 0; |
6ff0ba5f DE |
500 | struct cleanup *cleanups; |
501 | struct cleanup *ui_out_chain; | |
502 | struct cleanup *ui_out_tuple_chain; | |
503 | struct cleanup *ui_out_list_chain; | |
504 | CORE_ADDR pc; | |
505 | struct symtab *last_symtab; | |
506 | int last_line; | |
507 | htab_t dis_line_table; | |
508 | ||
509 | gdb_assert (main_symtab != NULL && SYMTAB_LINETABLE (main_symtab) != NULL); | |
510 | ||
511 | /* First pass: collect the list of all source files and lines. | |
512 | We do this so that we can only print lines containing code once. | |
513 | We try to print the source text leading up to the next instruction, | |
514 | but if that text is for code that will be disassembled later, then | |
515 | we'll want to defer printing it until later with its associated code. */ | |
516 | ||
517 | dis_line_table = allocate_dis_line_table (); | |
518 | cleanups = make_cleanup_htab_delete (dis_line_table); | |
519 | ||
520 | pc = low; | |
521 | ||
522 | /* The prologue may be empty, but there may still be a line number entry | |
523 | for the opening brace which is distinct from the first line of code. | |
524 | If the prologue has been eliminated find_pc_line may return the source | |
525 | line after the opening brace. We still want to print this opening brace. | |
526 | first_le is used to implement this. */ | |
527 | ||
528 | nlines = SYMTAB_LINETABLE (main_symtab)->nitems; | |
529 | le = SYMTAB_LINETABLE (main_symtab)->item; | |
530 | first_le = NULL; | |
531 | ||
532 | /* Skip all the preceding functions. */ | |
533 | for (i = 0; i < nlines && le[i].pc < low; i++) | |
534 | continue; | |
535 | ||
536 | if (i < nlines && le[i].pc < high) | |
537 | first_le = &le[i]; | |
538 | ||
539 | /* Add lines for every pc value. */ | |
540 | while (pc < high) | |
541 | { | |
542 | struct symtab_and_line sal; | |
543 | int length; | |
544 | ||
545 | sal = find_pc_line (pc, 0); | |
546 | length = gdb_insn_length (gdbarch, pc); | |
547 | pc += length; | |
548 | ||
549 | if (sal.symtab != NULL) | |
4a099de2 | 550 | add_dis_line_entry (dis_line_table, sal.symtab, sal.line); |
6ff0ba5f DE |
551 | } |
552 | ||
553 | /* Second pass: print the disassembly. | |
554 | ||
555 | Output format, from an MI perspective: | |
556 | The result is a ui_out list, field name "asm_insns", where elements have | |
557 | name "src_and_asm_line". | |
558 | Each element is a tuple of source line specs (field names line, file, | |
559 | fullname), and field "line_asm_insn" which contains the disassembly. | |
560 | Field "line_asm_insn" is a list of tuples: address, func-name, offset, | |
561 | opcodes, inst. | |
562 | ||
563 | CLI output works on top of this because MI ignores ui_out_text output, | |
564 | which is where we put file name and source line contents output. | |
565 | ||
566 | Cleanup usage: | |
567 | cleanups: | |
568 | For things created at the beginning of this function and need to be | |
569 | kept until the end of this function. | |
570 | ui_out_chain | |
571 | Handles the outer "asm_insns" list. | |
572 | ui_out_tuple_chain | |
573 | The tuples for each group of consecutive disassemblies. | |
574 | ui_out_list_chain | |
575 | List of consecutive source lines or disassembled insns. */ | |
576 | ||
577 | if (flags & DISASSEMBLY_FILENAME) | |
578 | psl_flags |= PRINT_SOURCE_LINES_FILENAME; | |
579 | ||
580 | ui_out_chain = make_cleanup_ui_out_list_begin_end (uiout, "asm_insns"); | |
581 | ||
582 | ui_out_tuple_chain = NULL; | |
583 | ui_out_list_chain = NULL; | |
584 | ||
585 | last_symtab = NULL; | |
586 | last_line = 0; | |
587 | pc = low; | |
588 | ||
589 | while (pc < high) | |
590 | { | |
6ff0ba5f DE |
591 | struct symtab_and_line sal; |
592 | CORE_ADDR end_pc; | |
593 | int start_preceding_line_to_display = 0; | |
594 | int end_preceding_line_to_display = 0; | |
595 | int new_source_line = 0; | |
596 | ||
597 | sal = find_pc_line (pc, 0); | |
598 | ||
599 | if (sal.symtab != last_symtab) | |
600 | { | |
601 | /* New source file. */ | |
602 | new_source_line = 1; | |
603 | ||
604 | /* If this is the first line of output, check for any preceding | |
605 | lines. */ | |
606 | if (last_line == 0 | |
607 | && first_le != NULL | |
608 | && first_le->line < sal.line) | |
609 | { | |
610 | start_preceding_line_to_display = first_le->line; | |
611 | end_preceding_line_to_display = sal.line; | |
612 | } | |
613 | } | |
614 | else | |
615 | { | |
616 | /* Same source file as last time. */ | |
617 | if (sal.symtab != NULL) | |
618 | { | |
619 | if (sal.line > last_line + 1 && last_line != 0) | |
620 | { | |
621 | int l; | |
622 | ||
623 | /* Several preceding source lines. Print the trailing ones | |
624 | not associated with code that we'll print later. */ | |
625 | for (l = sal.line - 1; l > last_line; --l) | |
626 | { | |
627 | if (line_has_code_p (dis_line_table, sal.symtab, l)) | |
628 | break; | |
629 | } | |
630 | if (l < sal.line - 1) | |
631 | { | |
632 | start_preceding_line_to_display = l + 1; | |
633 | end_preceding_line_to_display = sal.line; | |
634 | } | |
635 | } | |
636 | if (sal.line != last_line) | |
637 | new_source_line = 1; | |
638 | else | |
639 | { | |
640 | /* Same source line as last time. This can happen, depending | |
641 | on the debug info. */ | |
642 | } | |
643 | } | |
644 | } | |
645 | ||
646 | if (new_source_line) | |
647 | { | |
648 | /* Skip the newline if this is the first instruction. */ | |
649 | if (pc > low) | |
650 | ui_out_text (uiout, "\n"); | |
651 | if (ui_out_tuple_chain != NULL) | |
652 | { | |
653 | gdb_assert (ui_out_list_chain != NULL); | |
654 | do_cleanups (ui_out_list_chain); | |
655 | do_cleanups (ui_out_tuple_chain); | |
656 | } | |
657 | if (sal.symtab != last_symtab | |
658 | && !(flags & DISASSEMBLY_FILENAME)) | |
659 | { | |
660 | /* Remember MI ignores ui_out_text. | |
661 | We don't have to do anything here for MI because MI | |
662 | output includes the source specs for each line. */ | |
663 | if (sal.symtab != NULL) | |
664 | { | |
665 | ui_out_text (uiout, | |
666 | symtab_to_filename_for_display (sal.symtab)); | |
667 | } | |
668 | else | |
669 | ui_out_text (uiout, "unknown"); | |
670 | ui_out_text (uiout, ":\n"); | |
671 | } | |
672 | if (start_preceding_line_to_display > 0) | |
673 | { | |
674 | /* Several source lines w/o asm instructions associated. | |
675 | We need to preserve the structure of the output, so output | |
676 | a bunch of line tuples with no asm entries. */ | |
677 | int l; | |
678 | struct cleanup *ui_out_list_chain_line; | |
679 | struct cleanup *ui_out_tuple_chain_line; | |
680 | ||
681 | gdb_assert (sal.symtab != NULL); | |
682 | for (l = start_preceding_line_to_display; | |
683 | l < end_preceding_line_to_display; | |
684 | ++l) | |
685 | { | |
686 | ui_out_tuple_chain_line | |
687 | = make_cleanup_ui_out_tuple_begin_end (uiout, | |
688 | "src_and_asm_line"); | |
689 | print_source_lines (sal.symtab, l, l + 1, psl_flags); | |
690 | ui_out_list_chain_line | |
691 | = make_cleanup_ui_out_list_begin_end (uiout, | |
692 | "line_asm_insn"); | |
693 | do_cleanups (ui_out_list_chain_line); | |
694 | do_cleanups (ui_out_tuple_chain_line); | |
695 | } | |
696 | } | |
697 | ui_out_tuple_chain | |
698 | = make_cleanup_ui_out_tuple_begin_end (uiout, "src_and_asm_line"); | |
699 | if (sal.symtab != NULL) | |
700 | print_source_lines (sal.symtab, sal.line, sal.line + 1, psl_flags); | |
701 | else | |
702 | ui_out_text (uiout, _("--- no source info for this pc ---\n")); | |
703 | ui_out_list_chain | |
704 | = make_cleanup_ui_out_list_begin_end (uiout, "line_asm_insn"); | |
705 | } | |
706 | else | |
707 | { | |
708 | /* Here we're appending instructions to an existing line. | |
709 | By construction the very first insn will have a symtab | |
710 | and follow the new_source_line path above. */ | |
711 | gdb_assert (ui_out_tuple_chain != NULL); | |
712 | gdb_assert (ui_out_list_chain != NULL); | |
713 | } | |
714 | ||
715 | if (sal.end != 0) | |
716 | end_pc = min (sal.end, high); | |
717 | else | |
718 | end_pc = pc + 1; | |
719 | num_displayed += dump_insns (gdbarch, uiout, di, pc, end_pc, | |
720 | how_many, flags, stb, &end_pc); | |
721 | pc = end_pc; | |
722 | ||
723 | if (how_many >= 0 && num_displayed >= how_many) | |
724 | break; | |
725 | ||
726 | last_symtab = sal.symtab; | |
727 | last_line = sal.line; | |
728 | } | |
729 | ||
730 | do_cleanups (ui_out_chain); | |
731 | do_cleanups (cleanups); | |
732 | } | |
92df71f0 FN |
733 | |
734 | static void | |
13274fc3 UW |
735 | do_assembly_only (struct gdbarch *gdbarch, struct ui_out *uiout, |
736 | struct disassemble_info * di, | |
92df71f0 | 737 | CORE_ADDR low, CORE_ADDR high, |
f99d8bf4 | 738 | int how_many, int flags, struct ui_file *stb) |
92df71f0 | 739 | { |
3b31d625 | 740 | struct cleanup *ui_out_chain; |
92df71f0 | 741 | |
3b31d625 | 742 | ui_out_chain = make_cleanup_ui_out_list_begin_end (uiout, "asm_insns"); |
92df71f0 | 743 | |
ac298888 | 744 | dump_insns (gdbarch, uiout, di, low, high, how_many, flags, stb, NULL); |
92df71f0 | 745 | |
3b31d625 | 746 | do_cleanups (ui_out_chain); |
92df71f0 FN |
747 | } |
748 | ||
92bf2b80 AC |
749 | /* Initialize the disassemble info struct ready for the specified |
750 | stream. */ | |
751 | ||
a0b31db1 | 752 | static int ATTRIBUTE_PRINTF (2, 3) |
242e8be5 AC |
753 | fprintf_disasm (void *stream, const char *format, ...) |
754 | { | |
755 | va_list args; | |
9a619af0 | 756 | |
242e8be5 | 757 | va_start (args, format); |
9a3c8263 | 758 | vfprintf_filtered ((struct ui_file *) stream, format, args); |
242e8be5 AC |
759 | va_end (args); |
760 | /* Something non -ve. */ | |
761 | return 0; | |
762 | } | |
763 | ||
ed3ef339 | 764 | struct disassemble_info |
92bf2b80 | 765 | gdb_disassemble_info (struct gdbarch *gdbarch, struct ui_file *file) |
92df71f0 | 766 | { |
a89aa300 | 767 | struct disassemble_info di; |
9a619af0 | 768 | |
242e8be5 | 769 | init_disassemble_info (&di, file, fprintf_disasm); |
2b6fd0d8 AC |
770 | di.flavour = bfd_target_unknown_flavour; |
771 | di.memory_error_func = dis_asm_memory_error; | |
772 | di.print_address_func = dis_asm_print_address; | |
773 | /* NOTE: cagney/2003-04-28: The original code, from the old Insight | |
774 | disassembler had a local optomization here. By default it would | |
775 | access the executable file, instead of the target memory (there | |
ce2826aa | 776 | was a growing list of exceptions though). Unfortunately, the |
2b6fd0d8 AC |
777 | heuristic was flawed. Commands like "disassemble &variable" |
778 | didn't work as they relied on the access going to the target. | |
779 | Further, it has been supperseeded by trust-read-only-sections | |
780 | (although that should be superseeded by target_trust..._p()). */ | |
781 | di.read_memory_func = dis_asm_read_memory; | |
22b0d388 | 782 | di.arch = gdbarch_bfd_arch_info (gdbarch)->arch; |
92bf2b80 AC |
783 | di.mach = gdbarch_bfd_arch_info (gdbarch)->mach; |
784 | di.endian = gdbarch_byte_order (gdbarch); | |
9d4fde75 | 785 | di.endian_code = gdbarch_byte_order_for_code (gdbarch); |
5af949e3 | 786 | di.application_data = gdbarch; |
2877b4cc | 787 | disassemble_init_for_target (&di); |
92bf2b80 AC |
788 | return di; |
789 | } | |
790 | ||
791 | void | |
13274fc3 | 792 | gdb_disassembly (struct gdbarch *gdbarch, struct ui_out *uiout, |
9c419145 PP |
793 | char *file_string, int flags, int how_many, |
794 | CORE_ADDR low, CORE_ADDR high) | |
92bf2b80 | 795 | { |
f99d8bf4 PA |
796 | struct ui_file *stb = mem_fileopen (); |
797 | struct cleanup *cleanups = make_cleanup_ui_file_delete (stb); | |
798 | struct disassemble_info di = gdb_disassemble_info (gdbarch, stb); | |
34248c3a | 799 | struct symtab *symtab; |
92bf2b80 | 800 | int nlines = -1; |
92df71f0 | 801 | |
0963b4bd | 802 | /* Assume symtab is valid for whole PC range. */ |
34248c3a | 803 | symtab = find_pc_line_symtab (low); |
92df71f0 | 804 | |
8435453b | 805 | if (symtab != NULL && SYMTAB_LINETABLE (symtab) != NULL) |
6ff0ba5f | 806 | nlines = SYMTAB_LINETABLE (symtab)->nitems; |
92df71f0 | 807 | |
6ff0ba5f DE |
808 | if (!(flags & (DISASSEMBLY_SOURCE_DEPRECATED | DISASSEMBLY_SOURCE)) |
809 | || nlines <= 0) | |
e6158f16 | 810 | do_assembly_only (gdbarch, uiout, &di, low, high, how_many, flags, stb); |
92df71f0 | 811 | |
e6158f16 | 812 | else if (flags & DISASSEMBLY_SOURCE) |
6ff0ba5f DE |
813 | do_mixed_source_and_assembly (gdbarch, uiout, &di, symtab, low, high, |
814 | how_many, flags, stb); | |
815 | ||
816 | else if (flags & DISASSEMBLY_SOURCE_DEPRECATED) | |
817 | do_mixed_source_and_assembly_deprecated (gdbarch, uiout, &di, symtab, | |
818 | low, high, how_many, flags, stb); | |
92df71f0 | 819 | |
2b6fd0d8 | 820 | do_cleanups (cleanups); |
92df71f0 FN |
821 | gdb_flush (gdb_stdout); |
822 | } | |
810ecf9f | 823 | |
92bf2b80 | 824 | /* Print the instruction at address MEMADDR in debugged memory, |
a4642986 MR |
825 | on STREAM. Returns the length of the instruction, in bytes, |
826 | and, if requested, the number of branch delay slot instructions. */ | |
92bf2b80 AC |
827 | |
828 | int | |
13274fc3 UW |
829 | gdb_print_insn (struct gdbarch *gdbarch, CORE_ADDR memaddr, |
830 | struct ui_file *stream, int *branch_delay_insns) | |
92bf2b80 | 831 | { |
a4642986 MR |
832 | struct disassemble_info di; |
833 | int length; | |
834 | ||
13274fc3 UW |
835 | di = gdb_disassemble_info (gdbarch, stream); |
836 | length = gdbarch_print_insn (gdbarch, memaddr, &di); | |
a4642986 MR |
837 | if (branch_delay_insns) |
838 | { | |
839 | if (di.insn_info_valid) | |
840 | *branch_delay_insns = di.branch_delay_insns; | |
841 | else | |
842 | *branch_delay_insns = 0; | |
843 | } | |
844 | return length; | |
92bf2b80 | 845 | } |
eda5a4d7 PA |
846 | |
847 | static void | |
848 | do_ui_file_delete (void *arg) | |
849 | { | |
9a3c8263 | 850 | ui_file_delete ((struct ui_file *) arg); |
eda5a4d7 PA |
851 | } |
852 | ||
853 | /* Return the length in bytes of the instruction at address MEMADDR in | |
854 | debugged memory. */ | |
855 | ||
856 | int | |
857 | gdb_insn_length (struct gdbarch *gdbarch, CORE_ADDR addr) | |
858 | { | |
859 | static struct ui_file *null_stream = NULL; | |
860 | ||
861 | /* Dummy file descriptor for the disassembler. */ | |
862 | if (!null_stream) | |
863 | { | |
864 | null_stream = ui_file_new (); | |
865 | make_final_cleanup (do_ui_file_delete, null_stream); | |
866 | } | |
867 | ||
868 | return gdb_print_insn (gdbarch, addr, null_stream, NULL); | |
869 | } | |
870 | ||
871 | /* fprintf-function for gdb_buffered_insn_length. This function is a | |
872 | nop, we don't want to print anything, we just want to compute the | |
873 | length of the insn. */ | |
874 | ||
875 | static int ATTRIBUTE_PRINTF (2, 3) | |
876 | gdb_buffered_insn_length_fprintf (void *stream, const char *format, ...) | |
877 | { | |
878 | return 0; | |
879 | } | |
880 | ||
881 | /* Initialize a struct disassemble_info for gdb_buffered_insn_length. */ | |
882 | ||
883 | static void | |
884 | gdb_buffered_insn_length_init_dis (struct gdbarch *gdbarch, | |
885 | struct disassemble_info *di, | |
886 | const gdb_byte *insn, int max_len, | |
887 | CORE_ADDR addr) | |
888 | { | |
889 | init_disassemble_info (di, NULL, gdb_buffered_insn_length_fprintf); | |
890 | ||
891 | /* init_disassemble_info installs buffer_read_memory, etc. | |
892 | so we don't need to do that here. | |
893 | The cast is necessary until disassemble_info is const-ified. */ | |
894 | di->buffer = (gdb_byte *) insn; | |
895 | di->buffer_length = max_len; | |
896 | di->buffer_vma = addr; | |
897 | ||
898 | di->arch = gdbarch_bfd_arch_info (gdbarch)->arch; | |
899 | di->mach = gdbarch_bfd_arch_info (gdbarch)->mach; | |
900 | di->endian = gdbarch_byte_order (gdbarch); | |
901 | di->endian_code = gdbarch_byte_order_for_code (gdbarch); | |
902 | ||
903 | disassemble_init_for_target (di); | |
904 | } | |
905 | ||
906 | /* Return the length in bytes of INSN. MAX_LEN is the size of the | |
907 | buffer containing INSN. */ | |
908 | ||
909 | int | |
910 | gdb_buffered_insn_length (struct gdbarch *gdbarch, | |
911 | const gdb_byte *insn, int max_len, CORE_ADDR addr) | |
912 | { | |
913 | struct disassemble_info di; | |
914 | ||
915 | gdb_buffered_insn_length_init_dis (gdbarch, &di, insn, max_len, addr); | |
916 | ||
917 | return gdbarch_print_insn (gdbarch, addr, &di); | |
918 | } |