diff options
author | Stan Shebs <shebs@codesourcery.com> | 1996-04-05 04:14:11 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1996-04-05 04:14:11 +0000 |
commit | 72c9954b87f955fa8a62ff70a29c2f8a3aa7ece4 (patch) | |
tree | d432ddbffa3050db7d3094a23241ab93d79b8640 /gdb/config/arm | |
parent | 67c1413d7f56cc04f7dba8b64cac364cbfa11e42 (diff) | |
download | gdb-72c9954b87f955fa8a62ff70a29c2f8a3aa7ece4.zip gdb-72c9954b87f955fa8a62ff70a29c2f8a3aa7ece4.tar.gz gdb-72c9954b87f955fa8a62ff70a29c2f8a3aa7ece4.tar.bz2 |
* arm-xdep.c: Move native-specific code to here from arm-tdep.c.
* arm-tdep.c (arm_apcs_32): New global.
(arm_addr_bits_remove, arm_saved_pc_after_call,
arm_push_dummy_frame, arm_pop_frame): New functions.
(arm_skip_prologue): Updated version from Richard Earnshaw.
(_initialize_arm_tdep): Add set/show "apcs32".
* config/arm/tm-arm.h (ADDR_BITS_REMOVE): Call
arm_addr_bits_remove.
(SAVED_PC_AFTER_CALL): Call arm_saved_pc_after_call.
(frame_find_saved_regs): Declare properly.
(PUSH_DUMMY_FRAME): Call arm_push_dummy_frame.
(POP_FRAME): Call arm_pop_frame, use ADDR_BITS_REMOVE instead of
explicit mask.
* config/arm/nm-arm.h: New file.
* config/arm/xm-arm.h (KERNEL_U_ADDR, FETCH_INFERIOR_REGISTERS):
Move definitions to nm-arm.h.
* config/arm/arm.mh (NAT_FILE): Define.
PR 8941
Diffstat (limited to 'gdb/config/arm')
-rw-r--r-- | gdb/config/arm/nm-arm.h | 27 | ||||
-rw-r--r-- | gdb/config/arm/xm-arm.h | 8 |
2 files changed, 27 insertions, 8 deletions
diff --git a/gdb/config/arm/nm-arm.h b/gdb/config/arm/nm-arm.h new file mode 100644 index 0000000..970a885 --- /dev/null +++ b/gdb/config/arm/nm-arm.h @@ -0,0 +1,27 @@ +/* Definitions to make GDB run on an ARM under RISCiX (4.3bsd). + Copyright (C) 1986, 1987, 1989 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. */ + +/* This is the amount to subtract from u.u_ar0 + to get the offset in the core file of the register values. */ + +#define KERNEL_U_ADDR (0x01000000 - (UPAGES * NBPG)) + +/* Override copies of {fetch,store}_inferior_registers in infptrace.c. */ +#define FETCH_INFERIOR_REGISTERS +#define HOST_BYTE_ORDER LITTLE_ENDIAN diff --git a/gdb/config/arm/xm-arm.h b/gdb/config/arm/xm-arm.h index 001caae..34c0bd3 100644 --- a/gdb/config/arm/xm-arm.h +++ b/gdb/config/arm/xm-arm.h @@ -19,14 +19,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define HOST_BYTE_ORDER LITTLE_ENDIAN -/* This is the amount to subtract from u.u_ar0 - to get the offset in the core file of the register values. */ - -#define KERNEL_U_ADDR (0x01000000 - (UPAGES * NBPG)) - -/* Override copies of {fetch,store}_inferior_registers in infptrace.c. */ -#define FETCH_INFERIOR_REGISTERS - #if 0 /* Interface definitions for kernel debugger KDB. */ |