mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
a616bb9450
In the existing code, when using the regset section iteration functions, the size parameter is used in different ways. With collect, size is used to create the buffer in which to write the regset. (see linux-tdep.c::linux_collect_regset_section_cb). With supply, size is used to confirm the existing regset is the correct size. If REGSET_VARIABLE_SIZE is set then the regset can be bigger than size. Effectively, size is the minimum possible size of the regset. (see corelow.c::get_core_register_section). There are currently no targets with both REGSET_VARIABLE_SIZE and a collect function. In SVE, a corefile can contain one of two formats after the header, both of which are different sizes. However, when writing a core file, we always want to write out the full bigger size. To allow support of collects for REGSET_VARIABLE_SIZE we need two sizes. This is done by adding supply_size and collect_size. gdb/ * aarch64-fbsd-tdep.c (aarch64_fbsd_iterate_over_regset_sections): Add supply_size and collect_size. * aarch64-linux-tdep.c (aarch64_linux_iterate_over_regset_sections): Likewise. * alpha-linux-tdep.c (alpha_linux_iterate_over_regset_sections): * alpha-nbsd-tdep.c (alphanbsd_iterate_over_regset_sections): Likewise. * amd64-fbsd-tdep.c (amd64fbsd_iterate_over_regset_sections): Likewise. * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections): Likewise. * arm-bsd-tdep.c (armbsd_iterate_over_regset_sections): Likewise. * arm-fbsd-tdep.c (arm_fbsd_iterate_over_regset_sections): Likewise. * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections): Likewise. * corelow.c (get_core_registers_cb): Likewise. (core_target::fetch_registers): Likewise. * fbsd-tdep.c (fbsd_collect_regset_section_cb): Likewise. * frv-linux-tdep.c (frv_linux_iterate_over_regset_sections): Likewise. * gdbarch.h (void): Regenerate. * gdbarch.sh: Add supply_size and collect_size. * hppa-linux-tdep.c (hppa_linux_iterate_over_regset_sections): Likewise. * hppa-nbsd-tdep.c (hppanbsd_iterate_over_regset_sections): Likewise. * hppa-obsd-tdep.c (hppaobsd_iterate_over_regset_sections): Likewise. * i386-fbsd-tdep.c (i386fbsd_iterate_over_regset_sections): Likewise. * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections): Likewise. * i386-tdep.c (i386_iterate_over_regset_sections): Likewise. * ia64-linux-tdep.c (ia64_linux_iterate_over_regset_sections): Likewise. * linux-tdep.c (linux_collect_regset_section_cb): Likewise. * m32r-linux-tdep.c (m32r_linux_iterate_over_regset_sections): Likewise. * m68k-bsd-tdep.c (m68kbsd_iterate_over_regset_sections): Likewise. * m68k-linux-tdep.c (m68k_linux_iterate_over_regset_sections): Likewise. * mips-fbsd-tdep.c (mips_fbsd_iterate_over_regset_sections): Likewise. * mips-linux-tdep.c (mips_linux_iterate_over_regset_sections): Likewise. * mips-nbsd-tdep.c (mipsnbsd_iterate_over_regset_sections): Likewise. * mips64-obsd-tdep.c (mips64obsd_iterate_over_regset_sections): Likewise. * mn10300-linux-tdep.c (am33_iterate_over_regset_sections): Likewise. * nios2-linux-tdep.c (nios2_iterate_over_regset_sections): Likewise. * ppc-fbsd-tdep.c (ppcfbsd_iterate_over_regset_sections): Likewise. * ppc-linux-tdep.c (ppc_linux_iterate_over_regset_sections): Likewise. * ppc-nbsd-tdep.c (ppcnbsd_iterate_over_regset_sections): Likewise. * ppc-obsd-tdep.c (ppcobsd_iterate_over_regset_sections): Likewise. * riscv-linux-tdep.c (riscv_linux_iterate_over_regset_sections): Likewise. * rs6000-aix-tdep.c (rs6000_aix_iterate_over_regset_sections): Likewise. * s390-linux-tdep.c (s390_iterate_over_regset_sections): Likewise. * score-tdep.c (score7_linux_iterate_over_regset_sections): Likewise. * sh-tdep.c (sh_iterate_over_regset_sections): Likewise. * sparc-tdep.c (sparc_iterate_over_regset_sections): Likewise. * tilegx-linux-tdep.c (tilegx_iterate_over_regset_sections): Likewise. * vax-tdep.c (vax_iterate_over_regset_sections): Likewise. * xtensa-tdep.c (xtensa_iterate_over_regset_sections): Likewise.
250 lines
7.9 KiB
C
250 lines
7.9 KiB
C
/* Target-dependent code for GNU/Linux on Nios II.
|
|
Copyright (C) 2012-2018 Free Software Foundation, Inc.
|
|
Contributed by Mentor Graphics, 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 3 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, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include "defs.h"
|
|
#include "frame.h"
|
|
#include "osabi.h"
|
|
#include "solib-svr4.h"
|
|
#include "trad-frame.h"
|
|
#include "tramp-frame.h"
|
|
#include "symtab.h"
|
|
#include "regset.h"
|
|
#include "regcache.h"
|
|
#include "linux-tdep.h"
|
|
#include "glibc-tdep.h"
|
|
#include "nios2-tdep.h"
|
|
|
|
/* Core file and register set support. */
|
|
|
|
/* Map from the normal register enumeration order to the order that
|
|
registers appear in core files, which corresponds to the order
|
|
of the register slots in the kernel's struct pt_regs. */
|
|
|
|
static const int reg_offsets[NIOS2_NUM_REGS] =
|
|
{
|
|
-1, 8, 9, 10, 11, 12, 13, 14, /* r0 - r7 */
|
|
0, 1, 2, 3, 4, 5, 6, 7, /* r8 - r15 */
|
|
23, 24, 25, 26, 27, 28, 29, 30, /* r16 - r23 */
|
|
-1, -1, 19, 18, 17, 21, -1, 16, /* et bt gp sp fp ea sstatus ra */
|
|
21, /* pc */
|
|
-1, 20, -1, -1, -1, -1, -1, -1, /* status estatus ... */
|
|
-1, -1, -1, -1, -1, -1, -1, -1
|
|
};
|
|
|
|
/* General register set size. Should match sizeof (struct pt_regs) +
|
|
sizeof (struct switch_stack) from the NIOS2 Linux kernel patch. */
|
|
|
|
#define NIOS2_GREGS_SIZE (4 * 34)
|
|
|
|
/* Implement the supply_regset hook for core files. */
|
|
|
|
static void
|
|
nios2_supply_gregset (const struct regset *regset,
|
|
struct regcache *regcache,
|
|
int regnum, const void *gregs_buf, size_t len)
|
|
{
|
|
const gdb_byte *gregs = (const gdb_byte *) gregs_buf;
|
|
int regno;
|
|
static const gdb_byte zero_buf[4] = {0, 0, 0, 0};
|
|
|
|
for (regno = NIOS2_Z_REGNUM; regno <= NIOS2_MPUACC_REGNUM; regno++)
|
|
if (regnum == -1 || regnum == regno)
|
|
{
|
|
if (reg_offsets[regno] != -1)
|
|
regcache->raw_supply (regno, gregs + 4 * reg_offsets[regno]);
|
|
else
|
|
regcache->raw_supply (regno, zero_buf);
|
|
}
|
|
}
|
|
|
|
/* Implement the collect_regset hook for core files. */
|
|
|
|
static void
|
|
nios2_collect_gregset (const struct regset *regset,
|
|
const struct regcache *regcache,
|
|
int regnum, void *gregs_buf, size_t len)
|
|
{
|
|
gdb_byte *gregs = (gdb_byte *) gregs_buf;
|
|
int regno;
|
|
|
|
for (regno = NIOS2_Z_REGNUM; regno <= NIOS2_MPUACC_REGNUM; regno++)
|
|
if (regnum == -1 || regnum == regno)
|
|
{
|
|
if (reg_offsets[regno] != -1)
|
|
regcache->raw_collect (regno, gregs + 4 * reg_offsets[regno]);
|
|
}
|
|
}
|
|
|
|
static const struct regset nios2_core_regset =
|
|
{
|
|
NULL,
|
|
nios2_supply_gregset,
|
|
nios2_collect_gregset
|
|
};
|
|
|
|
/* Iterate over core file register note sections. */
|
|
|
|
static void
|
|
nios2_iterate_over_regset_sections (struct gdbarch *gdbarch,
|
|
iterate_over_regset_sections_cb *cb,
|
|
void *cb_data,
|
|
const struct regcache *regcache)
|
|
{
|
|
cb (".reg", NIOS2_GREGS_SIZE, NIOS2_GREGS_SIZE, &nios2_core_regset, NULL,
|
|
cb_data);
|
|
}
|
|
|
|
/* Initialize a trad-frame cache corresponding to the tramp-frame.
|
|
FUNC is the address of the instruction TRAMP[0] in memory.
|
|
|
|
This ABI is not documented. It corresponds to rt_setup_ucontext in
|
|
the kernel arch/nios2/kernel/signal.c file.
|
|
|
|
The key points are:
|
|
- The kernel creates a trampoline at the hard-wired address 0x1044.
|
|
- The stack pointer points to an object of type struct rt_sigframe.
|
|
The definition of this structure is not exported from the kernel.
|
|
The register save area is located at offset 152 bytes (as determined
|
|
by inspection of the stack contents in the debugger), and the
|
|
registers are saved as r1-r23, ra, fp, gp, ea, sp.
|
|
|
|
This interface was implemented with kernel version 3.19 (the first
|
|
official mainline kernel). Older unofficial kernel versions used
|
|
incompatible conventions; we do not support those here. */
|
|
|
|
#define NIOS2_SIGRETURN_TRAMP_ADDR 0x1044
|
|
#define NIOS2_SIGRETURN_REGSAVE_OFFSET 152
|
|
|
|
static void
|
|
nios2_linux_rt_sigreturn_init (const struct tramp_frame *self,
|
|
struct frame_info *next_frame,
|
|
struct trad_frame_cache *this_cache,
|
|
CORE_ADDR func)
|
|
{
|
|
CORE_ADDR sp = get_frame_register_unsigned (next_frame, NIOS2_SP_REGNUM);
|
|
CORE_ADDR base = sp + NIOS2_SIGRETURN_REGSAVE_OFFSET;
|
|
int i;
|
|
|
|
for (i = 0; i < 23; i++)
|
|
trad_frame_set_reg_addr (this_cache, i + 1, base + i * 4);
|
|
trad_frame_set_reg_addr (this_cache, NIOS2_RA_REGNUM, base + 23 * 4);
|
|
trad_frame_set_reg_addr (this_cache, NIOS2_FP_REGNUM, base + 24 * 4);
|
|
trad_frame_set_reg_addr (this_cache, NIOS2_GP_REGNUM, base + 25 * 4);
|
|
trad_frame_set_reg_addr (this_cache, NIOS2_PC_REGNUM, base + 27 * 4);
|
|
trad_frame_set_reg_addr (this_cache, NIOS2_SP_REGNUM, base + 28 * 4);
|
|
|
|
/* Save a frame ID. */
|
|
trad_frame_set_id (this_cache, frame_id_build (base, func));
|
|
}
|
|
|
|
/* Trampoline for sigreturn. This has the form
|
|
movi r2, __NR_rt_sigreturn
|
|
trap 0
|
|
appropriately encoded for R1 or R2. */
|
|
|
|
static struct tramp_frame nios2_r1_linux_rt_sigreturn_tramp_frame =
|
|
{
|
|
SIGTRAMP_FRAME,
|
|
4,
|
|
{
|
|
{ MATCH_R1_MOVI | SET_IW_I_B (2) | SET_IW_I_IMM16 (139), -1 },
|
|
{ MATCH_R1_TRAP | SET_IW_R_IMM5 (0), -1},
|
|
{ TRAMP_SENTINEL_INSN }
|
|
},
|
|
nios2_linux_rt_sigreturn_init
|
|
};
|
|
|
|
static struct tramp_frame nios2_r2_linux_rt_sigreturn_tramp_frame =
|
|
{
|
|
SIGTRAMP_FRAME,
|
|
4,
|
|
{
|
|
{ MATCH_R2_MOVI | SET_IW_F2I16_B (2) | SET_IW_F2I16_IMM16 (139), -1 },
|
|
{ MATCH_R2_TRAP | SET_IW_X2L5_IMM5 (0), -1},
|
|
{ TRAMP_SENTINEL_INSN }
|
|
},
|
|
nios2_linux_rt_sigreturn_init
|
|
};
|
|
|
|
/* When FRAME is at a syscall instruction, return the PC of the next
|
|
instruction to be executed. */
|
|
|
|
static CORE_ADDR
|
|
nios2_linux_syscall_next_pc (struct frame_info *frame,
|
|
const struct nios2_opcode *op)
|
|
{
|
|
CORE_ADDR pc = get_frame_pc (frame);
|
|
ULONGEST syscall_nr = get_frame_register_unsigned (frame, NIOS2_R2_REGNUM);
|
|
|
|
/* If we are about to make a sigreturn syscall, use the unwinder to
|
|
decode the signal frame. */
|
|
if (syscall_nr == 139 /* rt_sigreturn */)
|
|
return frame_unwind_caller_pc (frame);
|
|
|
|
return pc + op->size;
|
|
}
|
|
|
|
/* Hook function for gdbarch_register_osabi. */
|
|
|
|
static void
|
|
nios2_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|
{
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
|
|
|
linux_init_abi (info, gdbarch);
|
|
|
|
/* Shared library handling. */
|
|
set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
|
|
set_gdbarch_skip_solib_resolver (gdbarch, glibc_skip_solib_resolver);
|
|
|
|
set_solib_svr4_fetch_link_map_offsets (gdbarch,
|
|
svr4_ilp32_fetch_link_map_offsets);
|
|
/* Enable TLS support. */
|
|
set_gdbarch_fetch_tls_load_module_address (gdbarch,
|
|
svr4_fetch_objfile_link_map);
|
|
/* Core file support. */
|
|
set_gdbarch_iterate_over_regset_sections
|
|
(gdbarch, nios2_iterate_over_regset_sections);
|
|
/* Linux signal frame unwinders. */
|
|
if (gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_nios2r2)
|
|
tramp_frame_prepend_unwinder (gdbarch,
|
|
&nios2_r2_linux_rt_sigreturn_tramp_frame);
|
|
else
|
|
tramp_frame_prepend_unwinder (gdbarch,
|
|
&nios2_r1_linux_rt_sigreturn_tramp_frame);
|
|
|
|
tdep->syscall_next_pc = nios2_linux_syscall_next_pc;
|
|
|
|
/* Index of target address word in glibc jmp_buf. */
|
|
tdep->jb_pc = 10;
|
|
}
|
|
|
|
void
|
|
_initialize_nios2_linux_tdep (void)
|
|
{
|
|
|
|
const struct bfd_arch_info *arch_info;
|
|
|
|
for (arch_info = bfd_lookup_arch (bfd_arch_nios2, 0);
|
|
arch_info != NULL;
|
|
arch_info = arch_info->next)
|
|
gdbarch_register_osabi (bfd_arch_nios2, arch_info->mach,
|
|
GDB_OSABI_LINUX, nios2_linux_init_abi);
|
|
}
|