2000-04-25 14:36:52 +08:00
|
|
|
/* Target-dependent code for the IA-64 for GDB, the GNU debugger.
|
2004-02-18 00:23:23 +08:00
|
|
|
|
2007-01-10 01:59:20 +08:00
|
|
|
Copyright (C) 2000, 2004, 2005, 2007 Free Software Foundation, Inc.
|
2000-04-25 14:36:52 +08:00
|
|
|
|
|
|
|
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
|
2005-12-18 06:34:03 +08:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
2000-04-25 14:36:52 +08:00
|
|
|
|
|
|
|
#include "defs.h"
|
2004-02-18 00:23:23 +08:00
|
|
|
#include "ia64-tdep.h"
|
2000-04-26 15:16:15 +08:00
|
|
|
#include "arch-utils.h"
|
2003-10-16 06:55:32 +08:00
|
|
|
#include "gdbcore.h"
|
2004-02-25 06:35:01 +08:00
|
|
|
#include "regcache.h"
|
2005-01-06 06:51:47 +08:00
|
|
|
#include "osabi.h"
|
2005-04-01 03:58:26 +08:00
|
|
|
#include "solib-svr4.h"
|
2006-11-29 05:41:03 +08:00
|
|
|
#include "symtab.h"
|
2000-04-25 14:36:52 +08:00
|
|
|
|
|
|
|
/* The sigtramp code is in a non-readable (executable-only) region
|
|
|
|
of memory called the ``gate page''. The addresses in question
|
|
|
|
were determined by examining the system headers. They are
|
|
|
|
overly generous to allow for different pages sizes. */
|
|
|
|
|
|
|
|
#define GATE_AREA_START 0xa000000000000100LL
|
2004-01-09 00:46:27 +08:00
|
|
|
#define GATE_AREA_END 0xa000000000020000LL
|
2000-04-25 14:36:52 +08:00
|
|
|
|
|
|
|
/* Offset to sigcontext structure from frame of handler */
|
2001-06-01 10:22:01 +08:00
|
|
|
#define IA64_LINUX_SIGCONTEXT_OFFSET 192
|
2000-04-25 14:36:52 +08:00
|
|
|
|
* arch-utils.c (legacy_pc_in_sigtramp): Remove.
* arch-utils.h (legacy_pc_in_sigtramp): Remove.
* config/ia64/linux.mt (DEPRECATED_TM_FILE): Remove.
* config/ia64/tm-linux.h: Remove file.
* ia64-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp callback.
* ia64-tdep.c (ia64_sigtramp_frame_sniffer): Use it instead of
legacy_pc_in_sigtramp.
(ia64_gdbarch_init): Initialize tdep->pc_in_sigtramp.
* ia64-linux-tdep.c (ia64_linux_pc_in_sigtramp): Make static.
Remove func_name argument.
(ia64_linux_init_abi): Install it as tdep->pc_in_sigtramp.
* infrun.c (HAVE_STEPPABLE_WATCHPOINT): Do not redefine.
* target.c (update_current_target): Add to_have_steppable_watchpoint.
* target.h (struct target_ops): Add to_have_steppable_watchpoint.
(HAVE_STEPPABLE_WATCHPOINT): Define.
* config/ia64/linux.mh (NATDEPFILES): Remove core-aout.o.
* config/ia64/nm-linux.h (KERNEL_U_ADDR, U_REGS_OFFSET,
CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER,
TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_STEPPABLE_WATCHPOINT,
STOPPED_BY_WATCHPOINT, target_stopped_data_address,
target_insert_watchpoint, target_remove_watchpoint): Remove.
(FETCH_INFERIOR_REGISTERS): Define.
* ia64-linux-nat.c (ia64_register_addr): Make static.
(ia64_cannot_fetch_register, ia64_cannot_store_register): Likewise.
(ia64_linux_insert_watchpoint): Make static. Remove ptid_p argument.
(ia64_linux_remove_watchpoint): Likewise. Add type argument.
(ia64_linux_stopped_data_address): Make static. Add target_ops.
(ia64_linux_stopped_by_watchpoint): Make static.
(ia64_linux_can_use_hw_breakpoint): New function.
(ia64_linux_fetch_register, ia64_linux_fetch_registers): Likewise.
(ia64_linux_store_register, ia64_linux_store_registers): Likewise.
(_initialize_ia64_linux_nat): Install register and watchpoint ops.
2007-03-29 02:56:07 +08:00
|
|
|
static int
|
|
|
|
ia64_linux_pc_in_sigtramp (CORE_ADDR pc)
|
2000-04-25 14:36:52 +08:00
|
|
|
{
|
|
|
|
return (pc >= (CORE_ADDR) GATE_AREA_START && pc < (CORE_ADDR) GATE_AREA_END);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IA-64 GNU/Linux specific function which, given a frame address and
|
|
|
|
a register number, returns the address at which that register may be
|
|
|
|
found. 0 is returned for registers which aren't stored in the the
|
|
|
|
sigcontext structure. */
|
|
|
|
|
2005-01-06 06:51:47 +08:00
|
|
|
static CORE_ADDR
|
2000-04-25 14:36:52 +08:00
|
|
|
ia64_linux_sigcontext_register_address (CORE_ADDR sp, int regno)
|
|
|
|
{
|
2003-10-16 06:55:32 +08:00
|
|
|
char buf[8];
|
|
|
|
CORE_ADDR sigcontext_addr = 0;
|
|
|
|
|
|
|
|
/* The address of the sigcontext area is found at offset 16 in the sigframe. */
|
|
|
|
read_memory (sp + 16, buf, 8);
|
|
|
|
sigcontext_addr = extract_unsigned_integer (buf, 8);
|
|
|
|
|
2000-04-25 14:36:52 +08:00
|
|
|
if (IA64_GR0_REGNUM <= regno && regno <= IA64_GR31_REGNUM)
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 200 + 8 * (regno - IA64_GR0_REGNUM);
|
2000-04-25 14:36:52 +08:00
|
|
|
else if (IA64_BR0_REGNUM <= regno && regno <= IA64_BR7_REGNUM)
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 136 + 8 * (regno - IA64_BR0_REGNUM);
|
2000-04-25 14:36:52 +08:00
|
|
|
else if (IA64_FR0_REGNUM <= regno && regno <= IA64_FR127_REGNUM)
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 464 + 16 * (regno - IA64_FR0_REGNUM);
|
2000-04-25 14:36:52 +08:00
|
|
|
else
|
|
|
|
switch (regno)
|
|
|
|
{
|
|
|
|
case IA64_IP_REGNUM :
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 40;
|
2000-04-25 14:36:52 +08:00
|
|
|
case IA64_CFM_REGNUM :
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 48;
|
2000-04-25 14:36:52 +08:00
|
|
|
case IA64_PSR_REGNUM :
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 56; /* user mask only */
|
2000-04-25 14:36:52 +08:00
|
|
|
/* sc_ar_rsc is provided, from which we could compute bspstore, but
|
|
|
|
I don't think it's worth it. Anyway, if we want it, it's at offset
|
|
|
|
64 */
|
|
|
|
case IA64_BSP_REGNUM :
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 72;
|
2000-04-25 14:36:52 +08:00
|
|
|
case IA64_RNAT_REGNUM :
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 80;
|
2000-04-25 14:36:52 +08:00
|
|
|
case IA64_CCV_REGNUM :
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 88;
|
2000-04-25 14:36:52 +08:00
|
|
|
case IA64_UNAT_REGNUM :
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 96;
|
2000-04-25 14:36:52 +08:00
|
|
|
case IA64_FPSR_REGNUM :
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 104;
|
2000-04-25 14:36:52 +08:00
|
|
|
case IA64_PFS_REGNUM :
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 112;
|
2000-04-25 14:36:52 +08:00
|
|
|
case IA64_LC_REGNUM :
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 120;
|
2000-04-25 14:36:52 +08:00
|
|
|
case IA64_PR_REGNUM :
|
2003-10-16 06:55:32 +08:00
|
|
|
return sigcontext_addr + 128;
|
2000-04-25 14:36:52 +08:00
|
|
|
default :
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2004-02-25 06:35:01 +08:00
|
|
|
|
2005-01-06 06:51:47 +08:00
|
|
|
static void
|
2007-06-16 06:44:56 +08:00
|
|
|
ia64_linux_write_pc (struct regcache *regcache, CORE_ADDR pc)
|
2004-02-25 06:35:01 +08:00
|
|
|
{
|
2007-06-16 06:44:56 +08:00
|
|
|
ia64_write_pc (regcache, pc);
|
2004-02-25 06:35:01 +08:00
|
|
|
|
|
|
|
/* We must be careful with modifying the instruction-pointer: if we
|
|
|
|
just interrupt a system call, the kernel would ordinarily try to
|
|
|
|
restart it when we resume the inferior, which typically results
|
|
|
|
in SIGSEGV or SIGILL. We prevent this by clearing r10, which
|
|
|
|
will tell the kernel that r8 does NOT contain a valid error code
|
|
|
|
and hence it will skip system-call restart.
|
|
|
|
|
|
|
|
The clearing of r10 is safe as long as ia64_write_pc() is only
|
|
|
|
called as part of setting up an inferior call. */
|
2007-06-16 06:44:56 +08:00
|
|
|
regcache_cooked_write_unsigned (regcache, IA64_GR10_REGNUM, 0);
|
2004-02-25 06:35:01 +08:00
|
|
|
}
|
2005-01-06 06:51:47 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
ia64_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|
|
|
{
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
|
|
|
|
|
|
|
/* Set the method of obtaining the sigcontext addresses at which
|
|
|
|
registers are saved. */
|
|
|
|
tdep->sigcontext_register_address = ia64_linux_sigcontext_register_address;
|
|
|
|
|
* arch-utils.c (legacy_pc_in_sigtramp): Remove.
* arch-utils.h (legacy_pc_in_sigtramp): Remove.
* config/ia64/linux.mt (DEPRECATED_TM_FILE): Remove.
* config/ia64/tm-linux.h: Remove file.
* ia64-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp callback.
* ia64-tdep.c (ia64_sigtramp_frame_sniffer): Use it instead of
legacy_pc_in_sigtramp.
(ia64_gdbarch_init): Initialize tdep->pc_in_sigtramp.
* ia64-linux-tdep.c (ia64_linux_pc_in_sigtramp): Make static.
Remove func_name argument.
(ia64_linux_init_abi): Install it as tdep->pc_in_sigtramp.
* infrun.c (HAVE_STEPPABLE_WATCHPOINT): Do not redefine.
* target.c (update_current_target): Add to_have_steppable_watchpoint.
* target.h (struct target_ops): Add to_have_steppable_watchpoint.
(HAVE_STEPPABLE_WATCHPOINT): Define.
* config/ia64/linux.mh (NATDEPFILES): Remove core-aout.o.
* config/ia64/nm-linux.h (KERNEL_U_ADDR, U_REGS_OFFSET,
CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER,
TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_STEPPABLE_WATCHPOINT,
STOPPED_BY_WATCHPOINT, target_stopped_data_address,
target_insert_watchpoint, target_remove_watchpoint): Remove.
(FETCH_INFERIOR_REGISTERS): Define.
* ia64-linux-nat.c (ia64_register_addr): Make static.
(ia64_cannot_fetch_register, ia64_cannot_store_register): Likewise.
(ia64_linux_insert_watchpoint): Make static. Remove ptid_p argument.
(ia64_linux_remove_watchpoint): Likewise. Add type argument.
(ia64_linux_stopped_data_address): Make static. Add target_ops.
(ia64_linux_stopped_by_watchpoint): Make static.
(ia64_linux_can_use_hw_breakpoint): New function.
(ia64_linux_fetch_register, ia64_linux_fetch_registers): Likewise.
(ia64_linux_store_register, ia64_linux_store_registers): Likewise.
(_initialize_ia64_linux_nat): Install register and watchpoint ops.
2007-03-29 02:56:07 +08:00
|
|
|
/* Set the pc_in_sigtramp method. */
|
|
|
|
tdep->pc_in_sigtramp = ia64_linux_pc_in_sigtramp;
|
|
|
|
|
2005-01-06 06:51:47 +08:00
|
|
|
set_gdbarch_write_pc (gdbarch, ia64_linux_write_pc);
|
2005-04-01 03:58:26 +08:00
|
|
|
|
2006-11-29 05:41:03 +08:00
|
|
|
set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
|
|
|
|
|
2005-04-01 03:58:26 +08:00
|
|
|
/* Enable TLS support. */
|
|
|
|
set_gdbarch_fetch_tls_load_module_address (gdbarch,
|
|
|
|
svr4_fetch_objfile_link_map);
|
2005-01-06 06:51:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_initialize_ia64_linux_tdep (void)
|
|
|
|
{
|
|
|
|
gdbarch_register_osabi (bfd_arch_ia64, 0, GDB_OSABI_LINUX,
|
|
|
|
ia64_linux_init_abi);
|
|
|
|
}
|