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-cmd-file.c] - Diff between revs 157 and 223

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

Rev 157 Rev 223
/* MI Command Set - breakpoint and watchpoint commands.
/* MI Command Set - breakpoint and watchpoint commands.
   Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
   Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
   Contributed by Cygnus Solutions (a Red Hat company).
   Contributed by Cygnus Solutions (a Red Hat company).
 
 
   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 "mi-getopt.h"
#include "mi-getopt.h"
#include "ui-out.h"
#include "ui-out.h"
#include "symtab.h"
#include "symtab.h"
#include "source.h"
#include "source.h"
#include "objfiles.h"
#include "objfiles.h"
 
 
/* Return to the client the absolute path and line number of the
/* Return to the client the absolute path and line number of the
   current file being executed. */
   current file being executed. */
 
 
enum mi_cmd_result
enum mi_cmd_result
mi_cmd_file_list_exec_source_file (char *command, char **argv, int argc)
mi_cmd_file_list_exec_source_file (char *command, char **argv, int argc)
{
{
  struct symtab_and_line st;
  struct symtab_and_line st;
  int optind = 0;
  int optind = 0;
  char *optarg;
  char *optarg;
 
 
  if (!mi_valid_noargs ("mi_cmd_file_list_exec_source_file", argc, argv))
  if (!mi_valid_noargs ("mi_cmd_file_list_exec_source_file", argc, argv))
    error (_("mi_cmd_file_list_exec_source_file: Usage: No args"));
    error (_("mi_cmd_file_list_exec_source_file: Usage: No args"));
 
 
  /* Set the default file and line, also get them */
  /* Set the default file and line, also get them */
  set_default_source_symtab_and_line ();
  set_default_source_symtab_and_line ();
  st = get_current_source_symtab_and_line ();
  st = get_current_source_symtab_and_line ();
 
 
  /* We should always get a symtab.
  /* We should always get a symtab.
     Apparently, filename does not need to be tested for NULL.
     Apparently, filename does not need to be tested for NULL.
     The documentation in symtab.h suggests it will always be correct */
     The documentation in symtab.h suggests it will always be correct */
  if (!st.symtab)
  if (!st.symtab)
    error (_("mi_cmd_file_list_exec_source_file: No symtab"));
    error (_("mi_cmd_file_list_exec_source_file: No symtab"));
 
 
  /* Extract the fullname if it is not known yet */
  /* Extract the fullname if it is not known yet */
  symtab_to_fullname (st.symtab);
  symtab_to_fullname (st.symtab);
 
 
  /* Print to the user the line, filename and fullname */
  /* Print to the user the line, filename and fullname */
  ui_out_field_int (uiout, "line", st.line);
  ui_out_field_int (uiout, "line", st.line);
  ui_out_field_string (uiout, "file", st.symtab->filename);
  ui_out_field_string (uiout, "file", st.symtab->filename);
 
 
  /* We may not be able to open the file (not available). */
  /* We may not be able to open the file (not available). */
  if (st.symtab->fullname)
  if (st.symtab->fullname)
  ui_out_field_string (uiout, "fullname", st.symtab->fullname);
  ui_out_field_string (uiout, "fullname", st.symtab->fullname);
 
 
  ui_out_field_int (uiout, "macro-info", st.symtab->macro_table ? 1 : 0);
  ui_out_field_int (uiout, "macro-info", st.symtab->macro_table ? 1 : 0);
 
 
  return MI_CMD_DONE;
  return MI_CMD_DONE;
}
}
 
 
enum mi_cmd_result
enum mi_cmd_result
mi_cmd_file_list_exec_source_files (char *command, char **argv, int argc)
mi_cmd_file_list_exec_source_files (char *command, char **argv, int argc)
{
{
  struct symtab *s;
  struct symtab *s;
  struct partial_symtab *ps;
  struct partial_symtab *ps;
  struct objfile *objfile;
  struct objfile *objfile;
 
 
  if (!mi_valid_noargs ("mi_cmd_file_list_exec_source_files", argc, argv))
  if (!mi_valid_noargs ("mi_cmd_file_list_exec_source_files", argc, argv))
    error (_("mi_cmd_file_list_exec_source_files: Usage: No args"));
    error (_("mi_cmd_file_list_exec_source_files: Usage: No args"));
 
 
  /* Print the table header */
  /* Print the table header */
  ui_out_begin (uiout, ui_out_type_list, "files");
  ui_out_begin (uiout, ui_out_type_list, "files");
 
 
  /* Look at all of the symtabs */
  /* Look at all of the symtabs */
  ALL_SYMTABS (objfile, s)
  ALL_SYMTABS (objfile, s)
  {
  {
    ui_out_begin (uiout, ui_out_type_tuple, NULL);
    ui_out_begin (uiout, ui_out_type_tuple, NULL);
 
 
    ui_out_field_string (uiout, "file", s->filename);
    ui_out_field_string (uiout, "file", s->filename);
 
 
    /* Extract the fullname if it is not known yet */
    /* Extract the fullname if it is not known yet */
    symtab_to_fullname (s);
    symtab_to_fullname (s);
 
 
    if (s->fullname)
    if (s->fullname)
      ui_out_field_string (uiout, "fullname", s->fullname);
      ui_out_field_string (uiout, "fullname", s->fullname);
 
 
    ui_out_end (uiout, ui_out_type_tuple);
    ui_out_end (uiout, ui_out_type_tuple);
  }
  }
 
 
  /* Look at all of the psymtabs */
  /* Look at all of the psymtabs */
  ALL_PSYMTABS (objfile, ps)
  ALL_PSYMTABS (objfile, ps)
  {
  {
    if (!ps->readin)
    if (!ps->readin)
      {
      {
        ui_out_begin (uiout, ui_out_type_tuple, NULL);
        ui_out_begin (uiout, ui_out_type_tuple, NULL);
 
 
        ui_out_field_string (uiout, "file", ps->filename);
        ui_out_field_string (uiout, "file", ps->filename);
 
 
        /* Extract the fullname if it is not known yet */
        /* Extract the fullname if it is not known yet */
        psymtab_to_fullname (ps);
        psymtab_to_fullname (ps);
 
 
        if (ps->fullname)
        if (ps->fullname)
          ui_out_field_string (uiout, "fullname", ps->fullname);
          ui_out_field_string (uiout, "fullname", ps->fullname);
 
 
        ui_out_end (uiout, ui_out_type_tuple);
        ui_out_end (uiout, ui_out_type_tuple);
      }
      }
  }
  }
 
 
  ui_out_end (uiout, ui_out_type_list);
  ui_out_end (uiout, ui_out_type_list);
 
 
  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.