binutils-gdb/gdb/config/i386
Mark Kettenis c4f35dd8e1 * x86-64-tdep.h (x86_64_num_regs, x86_64_num_gregs): Remove
variable declarations.
(x86_64_register_number, x86_64_register_name): Remove prototypes.
(x86_64_linux_frame_saved_pc, x86_64_linux+saved_pc_after_call,
x86_64_linux_in_sigtramp, x86_64_linux_frame_chain,
x86_64_init_frame_pc, x86_64_init_frame_pc,
x86_64_function_has_prologue): Remove prototypes.
(X86_64_NUM_GREGS): New define.
(x86_64_supply_fxsave, x86_64_fill_fxsave): New prototypes.
* x86-64-tdep.c: Don't include "dwarf2cfi.h".  Include
"dummy_frame.h", "frame.h", "frame-base.h", "frame-unwind.h".
(RAX_REGNUM, RDX_REGNUM, RDI_REGNUM, EFLAGS_REGNUM, ST0_REGNUM,
XMM1_REGNUM): Remove defines.
(X86_64_RAX_REGNUM, X86_64_RDX_REGNUM, X86_64_RDI_REGNUM,
X86_64_RBP_REGNUM, X86_64_RSP_REGNUM, X86_64_RIP_REGNUM,
X86_64_EFLAGS_REGNUM, X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM,
X86_64_XMM1_REGNUM): New defines.
(struct x86_64_register_info): Renamed from `struct
register_info'.  Remove `size' member.
(x86_64_register_info_table): Remove variable.
(x86_64_register_info): New variable.
(X86_64_NUM_REGS): New define.
(X86_64_NUM_GREGS): Remove define.
(x86_64_num_regs, x86_64_num_gregs): Remove variables.
(x86_64_dwarf2gdb_regno_map, x86_64_dwarf2gdb_regno_map_length):
Remove variables.
(x86_54_dwarf2_reg_to_regnum): Remove function.
(x86_64_dwarf_regmap, x86_64_dwarf_regmap_len): New variables.
(x86_64_dwarf_reg_to_regnum): New function.
(x86_64_register_name): Rewrite.
(x86_64_register_raw_size): Remove function.
(x86_64_register_byte_table): Remove variable.
(x86_64_register_byte): Remove function.
(x86_64_register_virtual_type): Remove function.
(x86_64_register_type): New function.
(x86_64_register_convertible, x86_64_register_convert_to_virtual,
x86_64_register_convert_to_raw): Remove functions.
(x86_64_push_return_address, x86_64_pop_frame): Remove functon.
(x86_64_use_struct_convention): Make static.  Adjust for renamed
defines.
(x86_64_frame_init_saved_regs): Remove function.
(x86_64_push_arguments): Make static.  Change to accept a regcache
as argument.
(x86_64_store_return_value, x86_64_extract_return_value): Make
static.  Rewrite based on i386 counterparts.
(x86_64_push_dummy_call): New function.
(X86_64_NUM_SAVED_REGS): New define.
(x86_64_register_number): Remove function.
(x86_64_store_struct_return): Remove function.
(x86_64_frameless_function_invocation,
x86_64_function_has_prologue): Remove functions.
(PROLOG_BUFSIZE): Remove define.
(struct x86_64_frame_cache): New structure.
(x86_64_alloc_frame_cache, x86_64_analyze_prologue,
x86_64_frame_cache, x86_64_frame_this_id,
x86_64_frame_prev_register, x86_64_frame_p,
x86_64_sigtramp_frame_cache, x86_64_sigtramp_frame_this_id,
x86_64_sigtramp_frame_prev_register, x86_sigtramp_frame_p): New
functions.
(x86_64_frame_unwind, x86_64_sigtramp_frame_unwind): New
variables.
(x86_64_skip_prologue): Rewrite in terms of
x86_64_analyze_prologue.
(x86_64_frame_base_address): New function.
(x86_64_frame_base): New variable.
(x86_64_save_dummy_frame_tos, x86_64_unwind_dummy_id): Rewrite.
(x86_64_init_abi): Set register_type and push_dummy_call.  Don't
set deprecated_fp_regnum, deprecated_register_size,
deprecated_register_bytes, register_raw_size, register_byte,
register_virtual_type, register_convertiable,
register_convert_to_virtual, convert_to_raw,
deprecated_get_saved_register, deprecated_target_read_fp,
deprecated_push_arguments, deprecated_push_return_address,
deprecated_pop_frame, deprecated_store_struct_return,
deprecated_frame_init_saved_regs, deprecated_frame_chain,
frameless_function_invocation, deprecated_frame_saved_pc,
deprecated_saved_pc_after_call, frame_num_args, pc_in_sigtramp,
dwarf2_build_frame_info, deprecated_init_extra_frame_info,
deprecated_init_frame_pc and virtual_frame_pointer.  Call
frame_unwind_append_predicate to register x86_64_sigtramp_frame_p
and x86_64_frame_p.  Call frame_base_set_default to register
x86_64_frame_base.
(I387_FISEG_REGNUM, I387_FOSEG_REGNUM): New defines.
(x86_64_supply_fxsave, x86_64_fill_fxsave): New functions.
(_initialize_x86_64_tdep): Remove function.
* x86-64-linux-tdep.c: Don't include "dwarf2cfi.h".
(LINUX_SIGINFO_SIZE, LINUX_UCONTEXT_SIGCONTEXT_OFFSET,
LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONTEXT_FP_OFFSET): Don't
define.
(X86_64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Define.
(x86_64_linux_sigcontext_addr): Rewrite.
(x86_64_linux_sigtramp_saved_pc, x86_64_linux_saved_pc_after_call,
x86_64_linux_frame_saved_pc): Remove functions.
(x86_64_linux_pc_in_sigtramp): Renamed from
x86_64_linux_in_sigtramp.  Try harder to recognize a signal
trampoline.
(x86_64_linux_frame_chain, x86_64_init_frame_pc):
Remove_functions.
(x86_64_linux_init_abi): Set pc_in_sigtramp.  Initialize
TDEP->sigcontext_addr, TDEP->sc_pc_offset and TDEP->sc_sp_offset.
* x86-64-linux-nat.c: Sync with i386-linux-tdep.c.
(x86_64_regmap): Rename to regmap.
(GETREGS_SUPPLIES): Use X86_64_NUM_GREGS instead of
x86_64_num_gregs.
(supply_gregset, fill_gregset): Likewise.  Use regmap instead of
x86_64_regmap.
(x86_64_fxsave_offset): Remove function.
(supply_fpregset): Simply call x86_64_supply_fxsave.
(fill_fpregset): Simply call x86_64_fill_fxsave.
(fetch_inferior_registers, store_inferior_registers): Avoid
asignment in if-statement.
(LINUX_SYSCALL_LEN, LINUX_SYSCALL_REGNUM, SYS_Sigreturn,
SYS_rt_sigreturn, LINUX_SIGCONTEXT_EFLAGS_OFFSET,
LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Remove defines.
(fetch_core_registers): Remove function.
(linux_elf_core_fns): Remove.
(offsetoff): Don't define.
(_initialize_x86_64_linux_nat, kernel_u_size): Remove functions.
* config/i386/x86-64linux.mt (TDEPFILES): Add i386-linux-tdep.o.
* config/i386/x86-64linux.mh (NATDEPFILES): Remove core-aout.o,
add core-regset.o.
* config/i386/nm-x86-64linux.h: Use NM_X86_64_LINUX_H for
protection against multiple includes instead of NM_X86_64_h.  Add
various comments.  Include "config/nm-linux.h".  Don't include
<signal.h>.
(REGISTER_U_ADDR, KERNEL_U_SIZE, U_REGS_OFFSET, KERN_U_ADDR,
GET_THREAD_SIGNALS): Remove defines.
(x86_64_register_u_addr, kernel_u_size,
lin_thread_get_thread_signals): Remove prototypes.
(PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Define to `long'.
[HAVE_LINK_H]: Don't include "solib.h".
[HAVE_LINK_H] (SVR4_SHARED_LIBS): Remove define.
* config/i386/tm-x86-64linux.h: Fix comments.
* Makefile.in (x86-64-linux-nat.o, x86_64-linux-tdep.o,
x86-64-tdep.o): Update dependencies.
2003-05-31 08:15:38 +00:00
..
cygwin.mh 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr> 2002-02-04 11:00:10 +00:00
cygwin.mt * Makefile.in (ALLDEPFILES): Add i386-cygwin-tdep.c. 2003-03-21 10:07:18 +00:00
embed.mt Zap config/i386/tm-embed.h. 2001-11-18 21:28:20 +00:00
fbsd.mh * Makefile.in (ALLDEPFILES): Remove i387-nat.c. 2002-05-11 17:22:27 +00:00
fbsd.mt * i386bsd-nat.c: Include <signal.h>, <stddef.h> and 2001-07-13 18:27:21 +00:00
go32.mh * configure.in: Move code that provides the --enable-tui option 2003-01-02 16:54:56 +00:00
go32.mt import gdb-19990422 snapshot 1999-04-27 01:26:45 +00:00
i386aout.mt * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o 2002-08-18 22:14:24 +00:00
i386bsd.mh Remove XDEPFILES from GDB. 2002-01-18 04:51:10 +00:00
i386bsd.mt Initial creation of sourceware repository 1999-04-16 01:35:26 +00:00
i386gnu.mh * config/i386/nm-gnu.h: Removed. 2002-08-15 22:24:01 +00:00
i386gnu.mt * c-exp.y (THIS): Delete token and grammar rule. 2002-10-11 14:02:39 +00:00
i386lynx.mh * MAINTAINERS: Mark a29k as deleted. 2002-05-04 15:52:42 +00:00
i386lynx.mt Initial creation of sourceware repository 1999-04-16 01:35:26 +00:00
i386nw.mt * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and 2002-06-14 19:42:20 +00:00
i386sco.mh Remove XDEPFILES from GDB. 2002-01-18 04:51:10 +00:00
i386sco4.mh Remove XDEPFILES from GDB. 2002-01-18 04:51:10 +00:00
i386sco5.mh Remove XDEPFILES from GDB. 2002-01-18 04:51:10 +00:00
i386sol2.mh * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and 2002-06-14 19:42:20 +00:00
i386sol2.mt * i386-tdep.h (i386bsd_sigcontext_addr): Remove prototype. 2003-05-30 19:24:30 +00:00
i386v.mh Remove XDEPFILES from GDB. 2002-01-18 04:51:10 +00:00
i386v.mt * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o 2002-08-18 22:14:24 +00:00
i386v4.mh Remove XDEPFILES from GDB. 2002-01-18 04:51:10 +00:00
i386v42mp.mh * Makefile.in (ALLDEPFILES): Remove i387-nat.c. 2002-05-11 17:22:27 +00:00
interix.mh New interix-specific files: 2002-11-01 22:08:44 +00:00
interix.mt New interix-specific files: 2002-11-01 22:08:44 +00:00
linux.mh * Makefile.in (ALLDEPFILES): Remove i387-nat.c. 2002-05-11 17:22:27 +00:00
linux.mt 2002-02-14 Daniel Jacobowitz <drow@mvista.com> 2002-02-14 05:48:40 +00:00
nbsd.mt * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to 2002-09-02 18:09:07 +00:00
nbsdaout.mh * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to 2002-09-02 18:09:07 +00:00
nbsdelf.mh * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to 2002-09-02 18:09:07 +00:00
ncr3000.mh Remove XDEPFILES from GDB. 2002-01-18 04:51:10 +00:00
ncr3000.mt * c-exp.y (THIS): Delete token and grammar rule. 2002-10-11 14:02:39 +00:00
nm-cygwin.h * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define. 2002-05-18 19:29:37 +00:00
nm-fbsd.h 2002-06-28 David O'Brien <obrien@FreeBSD.org> 2002-06-28 18:44:49 +00:00
nm-go32.h * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define. 2002-05-18 19:29:37 +00:00
nm-i386.h add HAVE_CONTINUABLE_WATCHPOINT to target_ops 2003-02-24 21:56:51 +00:00
nm-i386bsd.h * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef. 2002-08-18 17:28:50 +00:00
nm-i386gnu.h * config/i386/nm-gnu.h: Removed. 2002-08-15 22:24:01 +00:00
nm-i386lynx.h * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm 2002-06-05 19:18:29 +00:00
nm-i386sco.h * config/i386/nm-i386sco.h: Add protection against 2002-10-06 18:37:13 +00:00
nm-i386sco4.h import gdb-1999-07-07 post reformat 1999-07-07 20:19:36 +00:00
nm-i386sco5.h add HAVE_CONTINUABLE_WATCHPOINT to target_ops 2003-02-24 21:56:51 +00:00
nm-i386sol2.h add HAVE_CONTINUABLE_WATCHPOINT to target_ops 2003-02-24 21:56:51 +00:00
nm-i386v.h * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define. 2002-08-18 22:17:57 +00:00
nm-i386v4.h * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm 2002-06-05 19:18:29 +00:00
nm-i386v42mp.h * config/i386/tm-i386v42mp.h: Remove file. Move its contents, 2002-11-08 21:00:47 +00:00
nm-interix.h New interix-specific files: 2002-11-01 22:08:44 +00:00
nm-linux.h * i386-linux-nat.c (ORIG_EAX): Define to -1 if not already 2002-11-09 21:31:12 +00:00
nm-nbsd.h * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and 2002-05-22 03:59:55 +00:00
nm-nbsdaout.h * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and 2002-05-22 03:59:55 +00:00
nm-obsd.h Add x86 OpenBSD native configuration. 2001-11-23 23:01:54 +00:00
nm-ptx4.h 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
nm-symmetry.h 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
nm-x86-64linux.h * x86-64-tdep.h (x86_64_num_regs, x86_64_num_gregs): Remove 2003-05-31 08:15:38 +00:00
nto.mt Added i386 QNX Neutrino support. 2003-05-05 13:57:21 +00:00
obsd.mh * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): 2002-07-04 15:13:28 +00:00
obsd.mt * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds. 2002-10-20 11:54:40 +00:00
ptx.mh 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
ptx.mt 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
ptx4.mh 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
ptx4.mt 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
symmetry.mh 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
symmetry.mt 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
tm-cygwin.h * win32-nat.c (psapi_get_dll_name): Fix a compiler warning. 2002-11-22 07:34:55 +00:00
tm-fbsd.h * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and 2002-09-06 20:44:23 +00:00
tm-go32.h * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h, 2002-06-15 18:09:31 +00:00
tm-i386.h * uw-thread.c (SP_ARG0): Define if not already defined. 2002-08-15 19:00:47 +00:00
tm-i386bsd.h Update/correct copyright notices. 2001-03-06 08:22:02 +00:00
tm-i386lynx.h * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define. 2002-06-16 02:19:22 +00:00
tm-i386sol2.h * c-exp.y (THIS): Delete token and grammar rule. 2002-10-11 14:02:39 +00:00
tm-linux.h * config/i386/tm-linux.h (I386_GNULINUX_TARGET): Remove define. 2003-05-10 20:14:43 +00:00
tm-nbsd.h * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to 2002-09-02 18:09:07 +00:00
tm-nto.h Added i386 QNX Neutrino support. 2003-05-05 13:57:21 +00:00
tm-ptx.h 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
tm-ptx4.h 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
tm-symmetry.h 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
tm-vxworks.h * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o 2002-08-18 22:14:24 +00:00
tm-x86-64linux.h * x86-64-tdep.h (x86_64_num_regs, x86_64_num_gregs): Remove 2003-05-31 08:15:38 +00:00
vxworks.mt import gdb-1999-07-19 snapshot 1999-07-19 23:30:11 +00:00
x86-64linux.mh * x86-64-tdep.h (x86_64_num_regs, x86_64_num_gregs): Remove 2003-05-31 08:15:38 +00:00
x86-64linux.mt * x86-64-tdep.h (x86_64_num_regs, x86_64_num_gregs): Remove 2003-05-31 08:15:38 +00:00
xm-cygwin.h * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of GDBINIT_FILENAME. 2002-02-14 16:32:57 +00:00
xm-go32.h * config/i386/xm-go32.h: Include xm-i386.h. 2001-08-02 15:18:15 +00:00
xm-i386.h * config/i386/xm-i386.h (HOST_BYTE_ORDER): Removed. 2001-08-30 21:53:47 +00:00
xm-i386bsd.h Delete HOST_BYTE_ORDER. 2001-12-02 02:57:18 +00:00
xm-i386sco.h * configure.host (i[3456]86-*-isc*): Set gdb_host to i386v. 2003-02-01 12:28:00 +00:00
xm-i386v.h Delete HOST_BYTE_ORDER. 2001-12-02 02:57:18 +00:00
xm-i386v4.h * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm 2002-06-05 19:18:29 +00:00
xm-nbsd.h * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm 2002-06-05 19:18:29 +00:00
xm-ptx.h 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
xm-ptx4.h 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00
xm-symmetry.h 2003-04-09 Andrew Cagney <cagney@redhat.com> 2003-04-09 16:19:52 +00:00