Use ui_out_emit_tuple
[deliverable/binutils-gdb.git] / gdb / mi / mi-symbol-cmds.c
CommitLineData
0d18235f 1/* MI Command Set - symbol commands.
61baf725 2 Copyright (C) 2003-2017 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
2b03b41d
SS
25/* Print the list of all pc addresses and lines of code for the
26 provided (full or base) source file name. The entries are sorted
27 in ascending PC order. */
0d18235f 28
ce8f13f8 29void
9f33b8b7 30mi_cmd_symbol_list_lines (const char *command, char **argv, int argc)
0d18235f 31{
5af949e3 32 struct gdbarch *gdbarch;
0d18235f
JB
33 char *filename;
34 struct symtab *s;
35 int i;
2e783024 36 struct cleanup *cleanup_stack;
79a45e25 37 struct ui_out *uiout = current_uiout;
0d18235f
JB
38
39 if (argc != 1)
1b05df00 40 error (_("-symbol-list-lines: Usage: SOURCE_FILENAME"));
0d18235f
JB
41
42 filename = argv[0];
43 s = lookup_symtab (filename);
44
45 if (s == NULL)
1b05df00 46 error (_("-symbol-list-lines: Unknown source file name."));
0d18235f 47
2b03b41d
SS
48 /* Now, dump the associated line table. The pc addresses are
49 already sorted by increasing values in the symbol table, so no
50 need to perform any other sorting. */
0d18235f 51
eb822aa6 52 gdbarch = get_objfile_arch (SYMTAB_OBJFILE (s));
0d18235f
JB
53 cleanup_stack = make_cleanup_ui_out_list_begin_end (uiout, "lines");
54
8435453b
DE
55 if (SYMTAB_LINETABLE (s) != NULL && SYMTAB_LINETABLE (s)->nitems > 0)
56 for (i = 0; i < SYMTAB_LINETABLE (s)->nitems; i++)
0d18235f 57 {
2e783024 58 ui_out_emit_tuple tuple_emitter (uiout, NULL);
112e8700
SM
59 uiout->field_core_addr ("pc", gdbarch, SYMTAB_LINETABLE (s)->item[i].pc);
60 uiout->field_int ("line", SYMTAB_LINETABLE (s)->item[i].line);
0d18235f
JB
61 }
62
63 do_cleanups (cleanup_stack);
0d18235f 64}
This page took 1.777808 seconds and 4 git commands to generate.