OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [gdb/] [dicos-tdep.c] - Diff between revs 834 and 842

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

Rev 834 Rev 842
/* Target-dependent, architecture-independent code for DICOS, for GDB.
/* Target-dependent, architecture-independent code for DICOS, for GDB.
 
 
   Copyright (C) 2009, 2010 Free Software Foundation, Inc.
   Copyright (C) 2009, 2010 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 "osabi.h"
#include "osabi.h"
#include "gdb_string.h"
#include "gdb_string.h"
#include "solib.h"
#include "solib.h"
#include "solib-target.h"
#include "solib-target.h"
#include "inferior.h"
#include "inferior.h"
#include "dicos-tdep.h"
#include "dicos-tdep.h"
 
 
void
void
dicos_init_abi (struct gdbarch *gdbarch)
dicos_init_abi (struct gdbarch *gdbarch)
{
{
  struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
 
 
  set_solib_ops (gdbarch, &solib_target_so_ops);
  set_solib_ops (gdbarch, &solib_target_so_ops);
 
 
  /* Every process, although has its own address space, sees the same
  /* Every process, although has its own address space, sees the same
     list of shared libraries.  There's no "main executable" in DICOS,
     list of shared libraries.  There's no "main executable" in DICOS,
     so this accounts for all code.  */
     so this accounts for all code.  */
  set_gdbarch_has_global_solist (gdbarch, 1);
  set_gdbarch_has_global_solist (gdbarch, 1);
 
 
  /* The DICOS breakpoint API takes care of magically making
  /* The DICOS breakpoint API takes care of magically making
     breakpoints visible to all inferiors.  */
     breakpoints visible to all inferiors.  */
  set_gdbarch_has_global_breakpoints (gdbarch, 1);
  set_gdbarch_has_global_breakpoints (gdbarch, 1);
 
 
  /* There's no (standard definition of) entry point or a guaranteed
  /* There's no (standard definition of) entry point or a guaranteed
     text location with a symbol where to place the call dummy, so we
     text location with a symbol where to place the call dummy, so we
     put it on the stack.  */
     put it on the stack.  */
  set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
  set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
 
 
  /* DICOS rewinds the PC itself.  */
  /* DICOS rewinds the PC itself.  */
  set_gdbarch_decr_pc_after_break (gdbarch, 0);
  set_gdbarch_decr_pc_after_break (gdbarch, 0);
}
}
 
 
/* Return true if ABFD is a dicos load module.  HEADER_SIZE is the
/* Return true if ABFD is a dicos load module.  HEADER_SIZE is the
   expected size of the "header" section in bytes.  */
   expected size of the "header" section in bytes.  */
 
 
int
int
dicos_load_module_p (bfd *abfd, int header_size)
dicos_load_module_p (bfd *abfd, int header_size)
{
{
  long storage_needed;
  long storage_needed;
  int ret = 0;
  int ret = 0;
  asymbol **symbol_table = NULL;
  asymbol **symbol_table = NULL;
  const char *symname = "Dicos_loadModuleInfo";
  const char *symname = "Dicos_loadModuleInfo";
  asection *section;
  asection *section;
 
 
  /* DICOS files don't have a .note.ABI-tag marker or something
  /* DICOS files don't have a .note.ABI-tag marker or something
     similar.  We do know there's always a "header" section of
     similar.  We do know there's always a "header" section of
     HEADER_SIZE bytes (size depends on architecture), and there's
     HEADER_SIZE bytes (size depends on architecture), and there's
     always a "Dicos_loadModuleInfo" symbol defined.  Look for the
     always a "Dicos_loadModuleInfo" symbol defined.  Look for the
     section first, as that should be cheaper.  */
     section first, as that should be cheaper.  */
 
 
  section = bfd_get_section_by_name (abfd, "header");
  section = bfd_get_section_by_name (abfd, "header");
  if (!section)
  if (!section)
    return 0;
    return 0;
 
 
  if (bfd_section_size (abfd, section) != header_size)
  if (bfd_section_size (abfd, section) != header_size)
    return 0;
    return 0;
 
 
  /* Dicos LMs always have a "Dicos_loadModuleInfo" symbol
  /* Dicos LMs always have a "Dicos_loadModuleInfo" symbol
     defined.  Look for it.  */
     defined.  Look for it.  */
 
 
  storage_needed = bfd_get_symtab_upper_bound (abfd);
  storage_needed = bfd_get_symtab_upper_bound (abfd);
  if (storage_needed < 0)
  if (storage_needed < 0)
    {
    {
      warning (_("Can't read elf symbols from %s: %s"), bfd_get_filename (abfd),
      warning (_("Can't read elf symbols from %s: %s"), bfd_get_filename (abfd),
               bfd_errmsg (bfd_get_error ()));
               bfd_errmsg (bfd_get_error ()));
      return 0;
      return 0;
    }
    }
 
 
  if (storage_needed > 0)
  if (storage_needed > 0)
    {
    {
      long i, symcount;
      long i, symcount;
 
 
      symbol_table = xmalloc (storage_needed);
      symbol_table = xmalloc (storage_needed);
      symcount = bfd_canonicalize_symtab (abfd, symbol_table);
      symcount = bfd_canonicalize_symtab (abfd, symbol_table);
 
 
      if (symcount < 0)
      if (symcount < 0)
        warning (_("Can't read elf symbols from %s: %s"),
        warning (_("Can't read elf symbols from %s: %s"),
                 bfd_get_filename (abfd),
                 bfd_get_filename (abfd),
                 bfd_errmsg (bfd_get_error ()));
                 bfd_errmsg (bfd_get_error ()));
      else
      else
        {
        {
          for (i = 0; i < symcount; i++)
          for (i = 0; i < symcount; i++)
            {
            {
              asymbol *sym = symbol_table[i];
              asymbol *sym = symbol_table[i];
              if (sym->name != NULL
              if (sym->name != NULL
                  && symname[0] == sym->name[0]
                  && symname[0] == sym->name[0]
                  && strcmp (symname + 1, sym->name + 1) == 0)
                  && strcmp (symname + 1, sym->name + 1) == 0)
                {
                {
                  ret = 1;
                  ret = 1;
                  break;
                  break;
                }
                }
            }
            }
        }
        }
    }
    }
 
 
  xfree (symbol_table);
  xfree (symbol_table);
  return ret;
  return ret;
}
}
 
 

powered by: WebSVN 2.1.0

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