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

Subversion Repositories openrisc

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

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 834 Rev 842
/* Target-dependent code for OpenBSD/arm.
/* Target-dependent code for OpenBSD/arm.
 
 
   Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
   Copyright (C) 2006, 2007, 2008, 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 "trad-frame.h"
#include "trad-frame.h"
#include "tramp-frame.h"
#include "tramp-frame.h"
 
 
#include "gdb_string.h"
#include "gdb_string.h"
 
 
#include "obsd-tdep.h"
#include "obsd-tdep.h"
#include "arm-tdep.h"
#include "arm-tdep.h"
#include "solib-svr4.h"
#include "solib-svr4.h"
 
 
/* Signal trampolines.  */
/* Signal trampolines.  */
 
 
static void
static void
armobsd_sigframe_init (const struct tramp_frame *self,
armobsd_sigframe_init (const struct tramp_frame *self,
                       struct frame_info *this_frame,
                       struct frame_info *this_frame,
                       struct trad_frame_cache *cache,
                       struct trad_frame_cache *cache,
                       CORE_ADDR func)
                       CORE_ADDR func)
{
{
  CORE_ADDR sp, sigcontext_addr, addr;
  CORE_ADDR sp, sigcontext_addr, addr;
  int regnum;
  int regnum;
 
 
  /* We find the appropriate instance of `struct sigcontext' at a
  /* We find the appropriate instance of `struct sigcontext' at a
     fixed offset in the signal frame.  */
     fixed offset in the signal frame.  */
  sp = get_frame_register_signed (this_frame, ARM_SP_REGNUM);
  sp = get_frame_register_signed (this_frame, ARM_SP_REGNUM);
  sigcontext_addr = sp + 16;
  sigcontext_addr = sp + 16;
 
 
  /* PC.  */
  /* PC.  */
  trad_frame_set_reg_addr (cache, ARM_PC_REGNUM, sigcontext_addr + 76);
  trad_frame_set_reg_addr (cache, ARM_PC_REGNUM, sigcontext_addr + 76);
 
 
  /* GPRs.  */
  /* GPRs.  */
  for (regnum = ARM_A1_REGNUM, addr = sigcontext_addr + 12;
  for (regnum = ARM_A1_REGNUM, addr = sigcontext_addr + 12;
       regnum <= ARM_LR_REGNUM; regnum++, addr += 4)
       regnum <= ARM_LR_REGNUM; regnum++, addr += 4)
    trad_frame_set_reg_addr (cache, regnum, addr);
    trad_frame_set_reg_addr (cache, regnum, addr);
 
 
  trad_frame_set_id (cache, frame_id_build (sp, func));
  trad_frame_set_id (cache, frame_id_build (sp, func));
}
}
 
 
static const struct tramp_frame armobsd_sigframe =
static const struct tramp_frame armobsd_sigframe =
{
{
  SIGTRAMP_FRAME,
  SIGTRAMP_FRAME,
  4,
  4,
  {
  {
    { 0xe28d0010, -1 },         /* add     r0, sp, #16 */
    { 0xe28d0010, -1 },         /* add     r0, sp, #16 */
    { 0xef000067, -1 },         /* swi     SYS_sigreturn */
    { 0xef000067, -1 },         /* swi     SYS_sigreturn */
    { 0xef000001, -1 },         /* swi     SYS_exit */
    { 0xef000001, -1 },         /* swi     SYS_exit */
    { 0xeafffffc, -1 },         /* b       . - 8 */
    { 0xeafffffc, -1 },         /* b       . - 8 */
    { TRAMP_SENTINEL_INSN, -1 }
    { TRAMP_SENTINEL_INSN, -1 }
  },
  },
  armobsd_sigframe_init
  armobsd_sigframe_init
};
};


 
 
/* Override default thumb breakpoints.  */
/* Override default thumb breakpoints.  */
static const char arm_obsd_thumb_le_breakpoint[] = {0xfe, 0xdf};
static const char arm_obsd_thumb_le_breakpoint[] = {0xfe, 0xdf};
static const char arm_obsd_thumb_be_breakpoint[] = {0xdf, 0xfe};
static const char arm_obsd_thumb_be_breakpoint[] = {0xdf, 0xfe};
 
 
static void
static void
armobsd_init_abi (struct gdbarch_info info,
armobsd_init_abi (struct gdbarch_info info,
                  struct gdbarch *gdbarch)
                  struct gdbarch *gdbarch)
{
{
  struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
 
 
  if (tdep->fp_model == ARM_FLOAT_AUTO)
  if (tdep->fp_model == ARM_FLOAT_AUTO)
    tdep->fp_model = ARM_FLOAT_SOFT_VFP;
    tdep->fp_model = ARM_FLOAT_SOFT_VFP;
 
 
  tramp_frame_prepend_unwinder (gdbarch, &armobsd_sigframe);
  tramp_frame_prepend_unwinder (gdbarch, &armobsd_sigframe);
 
 
  /* OpenBSD/arm uses SVR4-style shared libraries.  */
  /* OpenBSD/arm uses SVR4-style shared libraries.  */
  set_solib_svr4_fetch_link_map_offsets
  set_solib_svr4_fetch_link_map_offsets
    (gdbarch, svr4_ilp32_fetch_link_map_offsets);
    (gdbarch, svr4_ilp32_fetch_link_map_offsets);
  set_gdbarch_skip_solib_resolver (gdbarch, obsd_skip_solib_resolver);
  set_gdbarch_skip_solib_resolver (gdbarch, obsd_skip_solib_resolver);
 
 
  tdep->jb_pc = 24;
  tdep->jb_pc = 24;
  tdep->jb_elt_size = 4;
  tdep->jb_elt_size = 4;
 
 
  set_gdbarch_regset_from_core_section
  set_gdbarch_regset_from_core_section
    (gdbarch, armbsd_regset_from_core_section);
    (gdbarch, armbsd_regset_from_core_section);
 
 
  /* OpenBSD/arm uses -fpcc-struct-return by default.  */
  /* OpenBSD/arm uses -fpcc-struct-return by default.  */
  tdep->struct_return = pcc_struct_return;
  tdep->struct_return = pcc_struct_return;
 
 
  /* Single stepping.  */
  /* Single stepping.  */
  set_gdbarch_software_single_step (gdbarch, arm_software_single_step);
  set_gdbarch_software_single_step (gdbarch, arm_software_single_step);
 
 
  /* Breakpoints.  */
  /* Breakpoints.  */
  switch (info.byte_order)
  switch (info.byte_order)
    {
    {
    case BFD_ENDIAN_BIG:
    case BFD_ENDIAN_BIG:
      tdep->thumb_breakpoint = arm_obsd_thumb_be_breakpoint;
      tdep->thumb_breakpoint = arm_obsd_thumb_be_breakpoint;
      tdep->thumb_breakpoint_size = sizeof (arm_obsd_thumb_be_breakpoint);
      tdep->thumb_breakpoint_size = sizeof (arm_obsd_thumb_be_breakpoint);
      break;
      break;
 
 
    case BFD_ENDIAN_LITTLE:
    case BFD_ENDIAN_LITTLE:
      tdep->thumb_breakpoint = arm_obsd_thumb_le_breakpoint;
      tdep->thumb_breakpoint = arm_obsd_thumb_le_breakpoint;
      tdep->thumb_breakpoint_size = sizeof (arm_obsd_thumb_le_breakpoint);
      tdep->thumb_breakpoint_size = sizeof (arm_obsd_thumb_le_breakpoint);
      break;
      break;
    }
    }
}
}


 
 
static enum gdb_osabi
static enum gdb_osabi
armobsd_core_osabi_sniffer (bfd *abfd)
armobsd_core_osabi_sniffer (bfd *abfd)
{
{
  if (strcmp (bfd_get_target (abfd), "netbsd-core") == 0)
  if (strcmp (bfd_get_target (abfd), "netbsd-core") == 0)
    return GDB_OSABI_OPENBSD_ELF;
    return GDB_OSABI_OPENBSD_ELF;
 
 
  return GDB_OSABI_UNKNOWN;
  return GDB_OSABI_UNKNOWN;
}
}
 
 
/* Provide a prototype to silence -Wmissing-prototypes.  */
/* Provide a prototype to silence -Wmissing-prototypes.  */
extern initialize_file_ftype _initialize_armobsd_tdep;
extern initialize_file_ftype _initialize_armobsd_tdep;
 
 
void
void
_initialize_armobsd_tdep (void)
_initialize_armobsd_tdep (void)
{
{
  /* BFD doesn't set a flavour for NetBSD style a.out core files.  */
  /* BFD doesn't set a flavour for NetBSD style a.out core files.  */
  gdbarch_register_osabi_sniffer (bfd_arch_arm, bfd_target_unknown_flavour,
  gdbarch_register_osabi_sniffer (bfd_arch_arm, bfd_target_unknown_flavour,
                                  armobsd_core_osabi_sniffer);
                                  armobsd_core_osabi_sniffer);
 
 
  gdbarch_register_osabi (bfd_arch_arm, 0, GDB_OSABI_OPENBSD_ELF,
  gdbarch_register_osabi (bfd_arch_arm, 0, GDB_OSABI_OPENBSD_ELF,
                          armobsd_init_abi);
                          armobsd_init_abi);
}
}
 
 

powered by: WebSVN 2.1.0

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