aboutsummaryrefslogtreecommitdiff
path: root/gdb/i386-darwin-tdep.h
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2009-07-03 12:06:36 +0000
committerTristan Gingold <gingold@adacore.com>2009-07-03 12:06:36 +0000
commit5cd226f27555deecd8cb96019e0e915c7c7c2a3c (patch)
treea67d86fe25c6c31f36d5463127163a2ae5752570 /gdb/i386-darwin-tdep.h
parent27505b5d0fc279055b9d27c5f45b199192422f16 (diff)
2009-06-29 Tristan Gingold <gingold@adacore.com>
* i386-darwin-tdep.c (amd64_darwin_thread_state_reg_offset) (amd64_darwin_thread_state_num_regs) (amd64_darwin_sigcontext_addr, x86_darwin_init_abi_64): Moved to amd64-darwin-tdep.c (_initialize_i386_darwin_tdep): Remove 64 bits parts. (darwin_dwarf_signal_frame_p): Make public. * amd64-darwin-tdep.c: New file with most chunks from i386-darwin-tdep.c * i386-darwin-tdep.h: Add a prototype for darwin_dwarf_signal_frame_p. (amd64_darwin_thread_state_reg_offset) (amd64_darwin_thread_state_num_regs): Moved to amd64-darwin-tdep.h * amd64-darwin-tdep.h: New file. * i386-darwin-nat.c: Only includes amd64-nat.h and amd64-darwin-tdep.h if BFD64 is defined. (i386_darwin_fetch_inferior_registers): Add #ifdef BFD64/#endif around 64 bits parts. (i386_darwin_store_inferior_registers): Ditto. (darwin_set_sstep): Ditto. (darwin_complete_target): Ditto. (amd64_darwin_sstep_at_sigreturn): Ditto. * configure.tgt: Create a separate entry for x86_64-*-darwin. Add 64 bits support for i386-*-darwin if --enable-64-bit-bfd. * Makefile.in (ALLDEPFILES): Add amd64-darwin-tdep.c, darwin-nat.c, i386-darwin-tdep.c i386-darwin-nat.c (ALL_64_TARGET_OBS): Add amd64-darwin-tdep.o
Diffstat (limited to 'gdb/i386-darwin-tdep.h')
-rw-r--r--gdb/i386-darwin-tdep.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/gdb/i386-darwin-tdep.h b/gdb/i386-darwin-tdep.h
index 4d16ceff17..d0de560d61 100644
--- a/gdb/i386-darwin-tdep.h
+++ b/gdb/i386-darwin-tdep.h
@@ -19,15 +19,14 @@
#ifndef __I386_DARWIN_TDEP_H__
#define __I386_DARWIN_TDEP_H__
+#include "defs.h"
+#include "frame.h"
+
/* Mapping between the general-purpose registers in Darwin x86 thread_state
struct and GDB's register cache layout. */
extern int i386_darwin_thread_state_reg_offset[];
extern const int i386_darwin_thread_state_num_regs;
-/* Mapping between the general-purpose registers in Darwin x86-64 thread
- state and GDB's register cache layout.
- Indexed by amd64_regnum. */
-extern int amd64_darwin_thread_state_reg_offset[];
-extern const int amd64_darwin_thread_state_num_regs;
+int darwin_dwarf_signal_frame_p (struct gdbarch *, struct frame_info *);
#endif /* __I386_DARWIN_TDEP_H__ */