X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fm32r-linux-nat.c;h=24beeca3b75cacc2d292aa8b1491cedd34f31f15;hb=a0776b131d7a154125fdc4d22b1dda967c790ae9;hp=e5f755b9010277492d9e046414d38084b6df7525;hpb=28e7fd62340426746f9c896cbc40c5d374ec47aa;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/m32r-linux-nat.c b/gdb/m32r-linux-nat.c index e5f755b901..24beeca3b7 100644 --- a/gdb/m32r-linux-nat.c +++ b/gdb/m32r-linux-nat.c @@ -1,6 +1,6 @@ /* Native-dependent code for GNU/Linux m32r. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2020 Free Software Foundation, Inc. This file is part of GDB. @@ -23,12 +23,10 @@ #include "regcache.h" #include "linux-nat.h" #include "target.h" - -#include "gdb_assert.h" -#include "gdb_string.h" -#include +#include "nat/gdb_ptrace.h" #include #include +#include "inf-ptrace.h" /* Prototypes for supply_gregset etc. */ #include "gregset.h" @@ -36,7 +34,15 @@ #include "m32r-tdep.h" +class m32r_linux_nat_target final : public linux_nat_target +{ +public: + /* Add our register access methods. */ + void fetch_registers (struct regcache *, int) override; + void store_registers (struct regcache *, int) override; +}; +static m32r_linux_nat_target the_m32r_linux_nat_target; /* Since EVB register is not available for native debug, we reduce the number of registers. */ @@ -95,11 +101,11 @@ supply_gregset (struct regcache *regcache, const elf_gregset_t * gregsetp) } if (i != M32R_SP_REGNUM) - regcache_raw_supply (regcache, i, ®val); + regcache->raw_supply (i, ®val); else if (psw & 0x8000) - regcache_raw_supply (regcache, i, regp + SPU_REGMAP); + regcache->raw_supply (i, regp + SPU_REGMAP); else - regcache_raw_supply (regcache, i, regp + SPI_REGMAP); + regcache->raw_supply (i, regp + SPI_REGMAP); } } @@ -144,11 +150,11 @@ fill_gregset (const struct regcache *regcache, continue; if (i != M32R_SP_REGNUM) - regcache_raw_collect (regcache, i, regp + regmap[i]); + regcache->raw_collect (i, regp + regmap[i]); else if (psw & 0x8000) - regcache_raw_collect (regcache, i, regp + SPU_REGMAP); + regcache->raw_collect (i, regp + SPU_REGMAP); else - regcache_raw_collect (regcache, i, regp + SPI_REGMAP); + regcache->raw_collect (i, regp + SPI_REGMAP); } } @@ -193,16 +199,10 @@ fill_fpregset (const struct regcache *regcache, this for all registers (including the floating point and SSE registers). */ -static void -m32r_linux_fetch_inferior_registers (struct target_ops *ops, - struct regcache *regcache, int regno) +void +m32r_linux_nat_target::fetch_registers (struct regcache *regcache, int regno) { - int tid; - - /* GNU/Linux LWP ID's are process ID's. */ - tid = TIDGET (inferior_ptid); - if (tid == 0) - tid = PIDGET (inferior_ptid); /* Not a threaded program. */ + pid_t tid = get_ptrace_pid (regcache->ptid ()); /* Use the PTRACE_GETREGS request whenever possible, since it transfers more registers in one system call, and we'll cache the @@ -220,15 +220,10 @@ m32r_linux_fetch_inferior_registers (struct target_ops *ops, /* Store register REGNO back into the child process. If REGNO is -1, do this for all registers (including the floating point and SSE registers). */ -static void -m32r_linux_store_inferior_registers (struct target_ops *ops, - struct regcache *regcache, int regno) +void +m32r_linux_nat_target::store_registers (struct regcache *regcache, int regno) { - int tid; - - /* GNU/Linux LWP ID's are process ID's. */ - if ((tid = TIDGET (inferior_ptid)) == 0) - tid = PIDGET (inferior_ptid); /* Not a threaded program. */ + pid_t tid = get_ptrace_pid (regcache->ptid ()); /* Use the PTRACE_SETREGS request whenever possible, since it transfers more registers in one system call. */ @@ -242,20 +237,11 @@ m32r_linux_store_inferior_registers (struct target_ops *ops, _("Got request to store bad register number %d."), regno); } -void _initialize_m32r_linux_nat (void); - +void _initialize_m32r_linux_nat (); void -_initialize_m32r_linux_nat (void) +_initialize_m32r_linux_nat () { - struct target_ops *t; - - /* Fill in the generic GNU/Linux methods. */ - t = linux_target (); - - /* Add our register access methods. */ - t->to_fetch_registers = m32r_linux_fetch_inferior_registers; - t->to_store_registers = m32r_linux_store_inferior_registers; - /* Register the target. */ - linux_nat_add_target (t); + linux_target = &the_m32r_linux_nat_target; + add_inf_child_target (&the_m32r_linux_nat_target); }