diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-16 15:31:12 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-16 15:31:12 +0000 |
commit | 190dce0965f152d147a0a57a65719c004bbe4648 (patch) | |
tree | 2b8dba5f5e16bedf398823e0a3f6a790cdd5fa2d /gdb/config | |
parent | bb63802a4f72c2aa632a3118d307a1b8ec934c9a (diff) | |
download | gdb-190dce0965f152d147a0a57a65719c004bbe4648.zip gdb-190dce0965f152d147a0a57a65719c004bbe4648.tar.gz gdb-190dce0965f152d147a0a57a65719c004bbe4648.tar.bz2 |
* config/arm/embed.mt (DEPRECATED_TM_FILE): Set to tm-arm.h.
* config/arm/tm-embed.h: Delete file.
* arm-tdep.h (arm_software_single_step): Declare.
* arm-tdep.c (arm_software_single_step): Make global.
(arm_gdbarch_init): Move set_gdbarch_software_single_step call
from here to ...
* arm-linux-tdep.c (arm_linux_init_abi): ... here ...
* armnbsd-tdep.c (arm_netbsd_init_abi_common): ... here ...
* armobsd-tdep.c (armobsd_init_abi): ... here ...
* arm-wince-tdep.c (arm_wince_init_abi): ... and here.
* arm-tdep.c (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT): No longer
allow defines to be overriden by TM file.
(THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Likewise. Also,
change default to {0xbe,0xbe}.
* armobsd-tdep.c (arm_obsd_thumb_le_breakpoint,
arm_obsd_thumb_be_breakpoint): New global variables.
(armobsd_init_abi): Override tdep->thumb_breakpoint and
tdep->thumb_breakpoint_size.
* arm-wince-tdep.c (arm_wince_thumb_le_breakpoint): New variable.
(arm_wince_init_abi): Override tdep->thumb_breakpoint and
tdep->thumb_breakpoint_size.
* arm-tdep.c (arm_gdbarch_init): Add set_gdbarch_skip_trampoline_code.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/arm/embed.mt | 2 | ||||
-rw-r--r-- | gdb/config/arm/tm-embed.h | 48 |
2 files changed, 1 insertions, 49 deletions
diff --git a/gdb/config/arm/embed.mt b/gdb/config/arm/embed.mt index 45f09c8..1fe3524 100644 --- a/gdb/config/arm/embed.mt +++ b/gdb/config/arm/embed.mt @@ -1,6 +1,6 @@ # Target: ARM embedded system TDEPFILES= arm-tdep.o -DEPRECATED_TM_FILE= tm-embed.h +DEPRECATED_TM_FILE= tm-arm.h SIM_OBS = remote-sim.o SIM = ../sim/arm/libsim.a diff --git a/gdb/config/arm/tm-embed.h b/gdb/config/arm/tm-embed.h deleted file mode 100644 index baaecf5..0000000 --- a/gdb/config/arm/tm-embed.h +++ /dev/null @@ -1,48 +0,0 @@ -/* Definitions to target GDB to ARM embedded systems. - Copyright 1986, 1987, 1988, 1989, 1991, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2007 Free Software Foundation, Inc. - - This file is part of GDB. - - 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 - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ - -#ifndef TM_ARMEMBED_H -#define TM_ARMEMBED_H - -/* Include the common ARM definitions. */ -#include "arm/tm-arm.h" - -/* The remote stub should be able to single-step. */ -#undef SOFTWARE_SINGLE_STEP_P -#define SOFTWARE_SINGLE_STEP_P() 0 - -/* The first 0x20 bytes are the trap vectors. */ -#undef LOWEST_PC -#define LOWEST_PC 0x20 - -/* Override defaults. */ - -#undef THUMB_LE_BREAKPOINT -#define THUMB_LE_BREAKPOINT {0xbe,0xbe} -#undef THUMB_BE_BREAKPOINT -#define THUMB_BE_BREAKPOINT {0xbe,0xbe} - -/* Functions for dealing with Thumb call thunks. */ -#define SKIP_TRAMPOLINE_CODE(pc) arm_skip_stub (pc) -extern int arm_in_call_stub (CORE_ADDR pc, char *name); -extern CORE_ADDR arm_skip_stub (CORE_ADDR pc); - -#endif /* TM_ARMEMBED_H */ |