mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
00d7af046f
Rather than using the x86-specific register offset tables, use register maps to describe the layout of the general purpose registers fetched via PT_GETREGS. The sole user-visible difference is that FreeBSD/amd64 will now report additional segment registers ($ds, $es, $fs, and $gs) for both 32-bit and 64-bit processes. As part of these changes, the FreeBSD x86 native targets no longer use amd64-bsd-nat.c or i386-bsd-nat.c. Remove FreeBSD-specific register handling (for $fs_base, $gs_base, and XSAVE state) from these files. Similarly, remove the global x86bsd_xsave_len from x86-bsd-nat.c. The FreeBSD x86 native targets use a static xsave_len instead. While here, rework the probing of PT_GETXMMREGS on FreeBSD/i386. Probe the ptrace op once in the target read_description method and cache the result for the future similar to the way the status of XSAVE support is probed in the read_description method. In addition, return the proper xcr0 mask (X87-only) for old kernels or systems without either XSAVE or XMM support.
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
/* Native-dependent code for x86 BSD's.
|
|
|
|
Copyright (C) 2011-2022 Free Software Foundation, 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/>. */
|
|
|
|
#ifndef X86_BSD_NAT_H
|
|
#define X86_BSD_NAT_H
|
|
|
|
#include "x86-nat.h"
|
|
|
|
/* A prototype *BSD/x86 target. */
|
|
|
|
#ifdef HAVE_PT_GETDBREGS
|
|
template<typename BaseTarget>
|
|
class x86bsd_nat_target : public x86_nat_target<BaseTarget>
|
|
{
|
|
using base_class = x86_nat_target<BaseTarget>;
|
|
public:
|
|
void mourn_inferior () override
|
|
{
|
|
x86_cleanup_dregs ();
|
|
base_class::mourn_inferior ();
|
|
}
|
|
};
|
|
#else /* !HAVE_PT_GETDBREGS */
|
|
template<typename BaseTarget>
|
|
class x86bsd_nat_target : public BaseTarget
|
|
{
|
|
};
|
|
#endif /* HAVE_PT_GETDBREGS */
|
|
|
|
#endif /* x86-bsd-nat.h */
|