X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fmips-fbsd-nat.c;h=04fbb2ad1a7d23a929d5f2fd3933c983368bfaa3;hb=10b2ded43caa3298cded1df8b620caaaee3f9209;hp=c3811865354678f2876ccb02eea85612944a0309;hpb=7755ddb77d227d1d5c1b211e989fafb17e26765d;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/mips-fbsd-nat.c b/gdb/mips-fbsd-nat.c index c381186535..04fbb2ad1a 100644 --- a/gdb/mips-fbsd-nat.c +++ b/gdb/mips-fbsd-nat.c @@ -1,6 +1,6 @@ /* Native-dependent code for FreeBSD/mips. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. This file is part of GDB. @@ -31,6 +31,14 @@ #include "mips-fbsd-tdep.h" #include "inf-ptrace.h" +struct mips_fbsd_nat_target final : public fbsd_nat_target +{ + void fetch_registers (struct regcache *, int) override; + void store_registers (struct regcache *, int) override; +}; + +static mips_fbsd_nat_target the_mips_fbsd_nat_target; + /* Determine if PT_GETREGS fetches REGNUM. */ static bool @@ -52,13 +60,12 @@ getfpregs_supplies (struct gdbarch *gdbarch, int regnum) /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this for all registers. */ -static void -mips_fbsd_fetch_inferior_registers (struct target_ops *ops, - struct regcache *regcache, int regnum) +void +mips_fbsd_nat_target::fetch_registers (struct regcache *regcache, int regnum) { pid_t pid = get_ptrace_pid (regcache_get_ptid (regcache)); - struct gdbarch *gdbarch = get_regcache_arch (regcache); + struct gdbarch *gdbarch = regcache->arch (); if (regnum == -1 || getregs_supplies (gdbarch, regnum)) { struct reg regs; @@ -84,13 +91,12 @@ mips_fbsd_fetch_inferior_registers (struct target_ops *ops, /* Store register REGNUM back into the inferior. If REGNUM is -1, do this for all registers. */ -static void -mips_fbsd_store_inferior_registers (struct target_ops *ops, - struct regcache *regcache, int regnum) +void +mips_fbsd_nat_target::store_registers (struct regcache *regcache, int regnum) { pid_t pid = get_ptrace_pid (regcache_get_ptid (regcache)); - struct gdbarch *gdbarch = get_regcache_arch (regcache); + struct gdbarch *gdbarch = regcache->arch (); if (regnum == -1 || getregs_supplies (gdbarch, regnum)) { struct reg regs; @@ -119,18 +125,9 @@ mips_fbsd_store_inferior_registers (struct target_ops *ops, perror_with_name (_("Couldn't write floating point status")); } } - - -/* Provide a prototype to silence -Wmissing-prototypes. */ -void _initialize_mips_fbsd_nat (void); void _initialize_mips_fbsd_nat (void) { - struct target_ops *t; - - t = inf_ptrace_target (); - t->to_fetch_registers = mips_fbsd_fetch_inferior_registers; - t->to_store_registers = mips_fbsd_store_inferior_registers; - fbsd_nat_add_target (t); + add_inf_child_target (&the_mips_fbsd_nat_target); }