X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Famd64-bsd-nat.c;h=cf3c3b34cdfcdfebecf5933ffa5fc5958daf3f05;hb=e98ee8c458f3a8405eb93e71b00f801b4bbe3635;hp=ca61a3551b76f7fc4d6e786bde05b2b9c81548e8;hpb=499079343549348e270047ffa2687a8a76523700;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/amd64-bsd-nat.c b/gdb/amd64-bsd-nat.c index ca61a3551b..cf3c3b34cd 100644 --- a/gdb/amd64-bsd-nat.c +++ b/gdb/amd64-bsd-nat.c @@ -1,6 +1,6 @@ /* Native-dependent code for AMD64 BSD's. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. This file is part of GDB. @@ -38,12 +38,11 @@ /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this for all registers (including the floating-point registers). */ -static void -amd64bsd_fetch_inferior_registers (struct target_ops *ops, - struct regcache *regcache, int regnum) +void +amd64bsd_fetch_inferior_registers (struct regcache *regcache, int regnum) { - struct gdbarch *gdbarch = get_regcache_arch (regcache); - pid_t pid = get_ptrace_pid (regcache_get_ptid (regcache)); + struct gdbarch *gdbarch = regcache->arch (); + pid_t pid = get_ptrace_pid (regcache->ptid ()); if (regnum == -1 || amd64_native_gregset_supplies_p (gdbarch, regnum)) { @@ -57,6 +56,33 @@ amd64bsd_fetch_inferior_registers (struct target_ops *ops, return; } +#ifdef PT_GETFSBASE + if (regnum == -1 || regnum == AMD64_FSBASE_REGNUM) + { + register_t base; + + if (ptrace (PT_GETFSBASE, pid, (PTRACE_TYPE_ARG3) &base, 0) == -1) + perror_with_name (_("Couldn't get segment register fs_base")); + + regcache->raw_supply (AMD64_FSBASE_REGNUM, &base); + if (regnum != -1) + return; + } +#endif +#ifdef PT_GETGSBASE + if (regnum == -1 || regnum == AMD64_GSBASE_REGNUM) + { + register_t base; + + if (ptrace (PT_GETGSBASE, pid, (PTRACE_TYPE_ARG3) &base, 0) == -1) + perror_with_name (_("Couldn't get segment register gs_base")); + + regcache->raw_supply (AMD64_GSBASE_REGNUM, &base); + if (regnum != -1) + return; + } +#endif + if (regnum == -1 || !amd64_native_gregset_supplies_p (gdbarch, regnum)) { struct fpreg fpregs; @@ -85,12 +111,11 @@ amd64bsd_fetch_inferior_registers (struct target_ops *ops, /* Store register REGNUM back into the inferior. If REGNUM is -1, do this for all registers (including the floating-point registers). */ -static void -amd64bsd_store_inferior_registers (struct target_ops *ops, - struct regcache *regcache, int regnum) +void +amd64bsd_store_inferior_registers (struct regcache *regcache, int regnum) { - struct gdbarch *gdbarch = get_regcache_arch (regcache); - pid_t pid = get_ptrace_pid (regcache_get_ptid (regcache)); + struct gdbarch *gdbarch = regcache->arch (); + pid_t pid = get_ptrace_pid (regcache->ptid ()); if (regnum == -1 || amd64_native_gregset_supplies_p (gdbarch, regnum)) { @@ -108,6 +133,33 @@ amd64bsd_store_inferior_registers (struct target_ops *ops, return; } +#ifdef PT_SETFSBASE + if (regnum == -1 || regnum == AMD64_FSBASE_REGNUM) + { + register_t base; + + regcache->raw_collect (AMD64_FSBASE_REGNUM, &base); + + if (ptrace (PT_SETFSBASE, pid, (PTRACE_TYPE_ARG3) &base, 0) == -1) + perror_with_name (_("Couldn't write segment register fs_base")); + if (regnum != -1) + return; + } +#endif +#ifdef PT_SETGSBASE + if (regnum == -1 || regnum == AMD64_GSBASE_REGNUM) + { + register_t base; + + regcache->raw_collect (AMD64_GSBASE_REGNUM, &base); + + if (ptrace (PT_SETGSBASE, pid, (PTRACE_TYPE_ARG3) &base, 0) == -1) + perror_with_name (_("Couldn't write segment register gs_base")); + if (regnum != -1) + return; + } +#endif + if (regnum == -1 || !amd64_native_gregset_supplies_p (gdbarch, regnum)) { struct fpreg fpregs; @@ -139,17 +191,3 @@ amd64bsd_store_inferior_registers (struct target_ops *ops, perror_with_name (_("Couldn't write floating point status")); } } - -/* Create a prototype *BSD/amd64 target. The client can override it - with local methods. */ - -struct target_ops * -amd64bsd_target (void) -{ - struct target_ops *t; - - t = x86bsd_target (); - t->to_fetch_registers = amd64bsd_fetch_inferior_registers; - t->to_store_registers = amd64bsd_store_inferior_registers; - return t; -}