OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gdb-6.8/] [pre-binutils-2.20.1-sync/] [gdb/] [mi/] [mi-symbol-cmds.c] - Diff between revs 157 and 223

Only display areas with differences | Details | Blame | View Log

Rev 157 Rev 223
/* MI Command Set - symbol commands.
/* MI Command Set - symbol commands.
   Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc.
   Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc.
 
 
   This file is part of GDB.
   This file is part of GDB.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
#include "defs.h"
#include "defs.h"
#include "mi-cmds.h"
#include "mi-cmds.h"
#include "symtab.h"
#include "symtab.h"
#include "ui-out.h"
#include "ui-out.h"
 
 
/* SYMBOL-LIST-LINES:
/* SYMBOL-LIST-LINES:
 
 
   Print the list of all pc addresses and lines of code for
   Print the list of all pc addresses and lines of code for
   the provided (full or base) source file name.  The entries
   the provided (full or base) source file name.  The entries
   are sorted in ascending PC order. */
   are sorted in ascending PC order. */
 
 
enum mi_cmd_result
enum mi_cmd_result
mi_cmd_symbol_list_lines (char *command, char **argv, int argc)
mi_cmd_symbol_list_lines (char *command, char **argv, int argc)
{
{
  char *filename;
  char *filename;
  struct symtab *s;
  struct symtab *s;
  int i;
  int i;
  struct cleanup *cleanup_stack, *cleanup_tuple;
  struct cleanup *cleanup_stack, *cleanup_tuple;
 
 
  if (argc != 1)
  if (argc != 1)
    error (_("mi_cmd_symbol_list_lines: Usage: SOURCE_FILENAME"));
    error (_("mi_cmd_symbol_list_lines: Usage: SOURCE_FILENAME"));
 
 
  filename = argv[0];
  filename = argv[0];
  s = lookup_symtab (filename);
  s = lookup_symtab (filename);
 
 
  if (s == NULL)
  if (s == NULL)
    error (_("mi_cmd_symbol_list_lines: Unknown source file name."));
    error (_("mi_cmd_symbol_list_lines: Unknown source file name."));
 
 
  /* Now, dump the associated line table.  The pc addresses are already
  /* Now, dump the associated line table.  The pc addresses are already
     sorted by increasing values in the symbol table, so no need to
     sorted by increasing values in the symbol table, so no need to
     perform any other sorting. */
     perform any other sorting. */
 
 
  cleanup_stack = make_cleanup_ui_out_list_begin_end (uiout, "lines");
  cleanup_stack = make_cleanup_ui_out_list_begin_end (uiout, "lines");
 
 
  if (LINETABLE (s) != NULL && LINETABLE (s)->nitems > 0)
  if (LINETABLE (s) != NULL && LINETABLE (s)->nitems > 0)
    for (i = 0; i < LINETABLE (s)->nitems; i++)
    for (i = 0; i < LINETABLE (s)->nitems; i++)
    {
    {
      cleanup_tuple = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
      cleanup_tuple = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
      ui_out_field_core_addr (uiout, "pc", LINETABLE (s)->item[i].pc);
      ui_out_field_core_addr (uiout, "pc", LINETABLE (s)->item[i].pc);
      ui_out_field_int (uiout, "line", LINETABLE (s)->item[i].line);
      ui_out_field_int (uiout, "line", LINETABLE (s)->item[i].line);
      do_cleanups (cleanup_tuple);
      do_cleanups (cleanup_tuple);
    }
    }
 
 
  do_cleanups (cleanup_stack);
  do_cleanups (cleanup_stack);
 
 
  return MI_CMD_DONE;
  return MI_CMD_DONE;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.