]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/mi/mi-symbol-cmds.c
* defs.h (strlen_paddr, paddr, paddr_nz): Remove.
[thirdparty/binutils-gdb.git] / gdb / mi / mi-symbol-cmds.c
CommitLineData
0d18235f 1/* MI Command Set - symbol commands.
0fb0cc75 2 Copyright (C) 2003, 2007, 2008, 2009 Free Software Foundation, Inc.
0d18235f
JB
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
0d18235f
JB
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
0d18235f
JB
18
19#include "defs.h"
20#include "mi-cmds.h"
21#include "symtab.h"
5af949e3 22#include "objfiles.h"
0d18235f
JB
23#include "ui-out.h"
24
25/* SYMBOL-LIST-LINES:
26
27 Print the list of all pc addresses and lines of code for
28 the provided (full or base) source file name. The entries
29 are sorted in ascending PC order. */
30
ce8f13f8 31void
0d18235f
JB
32mi_cmd_symbol_list_lines (char *command, char **argv, int argc)
33{
5af949e3 34 struct gdbarch *gdbarch;
0d18235f
JB
35 char *filename;
36 struct symtab *s;
37 int i;
38 struct cleanup *cleanup_stack, *cleanup_tuple;
39
40 if (argc != 1)
8a3fe4f8 41 error (_("mi_cmd_symbol_list_lines: Usage: SOURCE_FILENAME"));
0d18235f
JB
42
43 filename = argv[0];
44 s = lookup_symtab (filename);
45
46 if (s == NULL)
8a3fe4f8 47 error (_("mi_cmd_symbol_list_lines: Unknown source file name."));
0d18235f
JB
48
49 /* Now, dump the associated line table. The pc addresses are already
50 sorted by increasing values in the symbol table, so no need to
51 perform any other sorting. */
52
5af949e3 53 gdbarch = get_objfile_arch (s->objfile);
0d18235f
JB
54 cleanup_stack = make_cleanup_ui_out_list_begin_end (uiout, "lines");
55
56 if (LINETABLE (s) != NULL && LINETABLE (s)->nitems > 0)
57 for (i = 0; i < LINETABLE (s)->nitems; i++)
58 {
59 cleanup_tuple = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
5af949e3 60 ui_out_field_core_addr (uiout, "pc", gdbarch, LINETABLE (s)->item[i].pc);
0d18235f
JB
61 ui_out_field_int (uiout, "line", LINETABLE (s)->item[i].line);
62 do_cleanups (cleanup_tuple);
63 }
64
65 do_cleanups (cleanup_stack);
0d18235f 66}