mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-23 20:19:49 +00:00
2b863f512d
The current MPX target descriptions assume that MPX is always combined with AVX, however that's not correct. We can have machines with MPX and without AVX; or machines with AVX and without MPX. This patch adds new target descriptions for machines that support both MPX and AVX, as duplicates of the existing MPX descriptions. The following commit will remove AVX from the MPX-only descriptions. 2016-04-16 Walfred Tedeschi <walfred.tedeschi@intel.com> gdb/ChangeLog: * amd64-linux-tdep.c (features/i386/amd64-avx-mpx-linux.c): New include. (amd64_linux_core_read_description): Add case for X86_XSTATE_AVX_MPX_MASK. (_initialize_amd64_linux_tdep): Call initialize_tdesc_amd64_avx_mpx_linux. * amd64-linux-tdep.h (tdesc_amd64_avx_mpx_linux): New definition. * amd64-tdep.c (features/i386/amd64-avx-mpx.c): New include. (amd64_target_description): Add case for X86_XSTATE_AVX_MPX_MASK. (_initialize_amd64_tdep): Call initialize_tdesc_amd64_avx_mpx. * common/x86-xstate.h (X86_XSTATE_MPX_MASK): Remove AVX bits. (X86_XSTATE_AVX_MPX_MASK): New case. * features/Makefile (i386/i386-avx-mpx, i386/i386-avx-mpx-linux) (i386/amd64-avx-mpx, i386/amd64-avx-mpx-linux): New rules. (i386/i386-avx-mpx-expedite, i386/i386-avx-mpx-linux-expedite) (i386/amd64-avx-mpx-expedite, i386/amd64-avx-mpx-linux-expedite): New expedites. * i386-linux-tdep.c (features/i386/i386-avx-mpx-linux.c): New include. (i386_linux_core_read_description): Add case X86_XSTATE_AVX_MPX_MASK. (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_avx_mpx_linux. * i386-linux-tdep.h (tdesc_i386_avx_mpx_linux): New include. * i386-tdep.c (features/i386/i386-avx-mpx.c): New include. (i386_target_description): Add case for X86_XSTATE_AVX_MPX_MASK. * x86-linux-nat.c (x86_linux_read_description): Add case for X86_XSTATE_AVX_MPX_MASK. * features/i386/amd64-avx-mpx-linux.xml: New file. * features/i386/i386-avx-mpx-linux.xml: New file. * features/i386/i386-avx-mpx.xml: New file. * features/i386/amd64-avx-mpx.xml: New file. * features/i386/amd64-avx-mpx-linux.c: Generated. * features/i386/amd64-avx-mpx.c: Generated. * features/i386/i386-avx-mpx-linux.c: Generated. * features/i386/i386-avx-mpx.c: Generated. * regformats/i386/amd64-avx-mpx-linux.dat: Generated. * regformats/i386/amd64-avx-mpx.dat: Generated. * regformats/i386/i386-avx-mpx-linux.dat: Generated. * regformats/i386/i386-avx-mpx.dat: Generated. gdb/gdbserver/ChangeLog: * Makefile.in (clean): Add removal for i386-avx-mpx.c, i386-avx-mpx-linux.c, amd64-avx-mpx.c and amd64-avx-mpx-linux.c. (i386-avx-mpx.c, i386-avx-mpx-linux.c, amd64-avx-mpx.c) (amd64-avx-mpx-linux.c): New rules. (amd64-avx-mpx-linux-ipa.o, i386-avx-mpx-linux-ipa.o): New rule. * configure.srv (srv_i386_regobj): Add i386-avx-mpx.o. (srv_i386_linux_regobj): Add i386-avx-mpx-linux.o. (srv_amd64_regobj): Add amd64-avx-mpx.o. (srv_amd64_linux_regobj): Add amd64-avx-mpx-linux.o. (srv_i386_xmlfiles): Add i386/i386-avx-mpx.xml. (srv_amd64_xmlfiles): Add i386/amd64-avx-mpx.xml. (srv_i386_linux_xmlfiles): Add i386/i386-avx-mpx-linux.xml. (srv_amd64_linux_xmlfiles): Add i386/amd64-avx-mpx-linux.xml. (ipa_i386_linux_regobj): Add i386-avx-mpx-linux-ipa.o. (ipa_amd64_linux_regobj): Add amd64-avx-mpx-linux-ipa.o. * linux-x86-low.c (x86_linux_read_description): Add case for X86_XSTATE_AVX_MPX_MASK. (x86_get_ipa_tdesc_idx): Add cases for avx_mpx. (initialize_low_arch): Call init_registers_amd64_avx_mpx_linux and init_registers_i386_avx_mpx_linux. * linux-i386-ipa.c (get_ipa_tdesc): Add case for avx_mpx. (initialize_low_tracepoint): Call init_registers_i386_avx_mpx_linux. * linux-amd64-ipa.c (get_ipa_tdesc): Add case for avx_mpx. (initialize_low_tracepoint): Call init_registers_amd64_avx_mpx_linux. * linux-x86-tdesc.h (X86_TDESC_AVX_MPX): New enum value. (init_registers_amd64_avx_mpx_linux, tdesc_amd64_avx_mpx_linux) (init_registers_i386_avx_mpx_linux, tdesc_i386_avx_mpx_linux): New declarations.
85 lines
3.1 KiB
C
85 lines
3.1 KiB
C
/* Target-dependent code for GNU/Linux x86.
|
|
|
|
Copyright (C) 2002-2016 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 I386_LINUX_TDEP_H
|
|
#define I386_LINUX_TDEP_H
|
|
|
|
/* The Linux kernel pretends there is an additional "orig_eax"
|
|
register. Since GDB needs access to that register to be able to
|
|
properly restart system calls when necessary (see
|
|
i386-linux-tdep.c) we need our own versions of a number of
|
|
functions that deal with GDB's register cache. */
|
|
|
|
/* Register number for the "orig_eax" pseudo-register. If this
|
|
pseudo-register contains a value >= 0 it is interpreted as the
|
|
system call number that the kernel is supposed to restart. */
|
|
#define I386_LINUX_ORIG_EAX_REGNUM (I386_ZMM7H_REGNUM + 1)
|
|
|
|
/* Total number of registers for GNU/Linux. */
|
|
#define I386_LINUX_NUM_REGS (I386_LINUX_ORIG_EAX_REGNUM + 1)
|
|
|
|
/* Get XSAVE extended state xcr0 from core dump. */
|
|
extern uint64_t i386_linux_core_read_xcr0 (bfd *abfd);
|
|
|
|
/* Handle and display information related to the MPX bound violation
|
|
to the user. */
|
|
extern void i386_linux_handle_segmentation_fault (struct gdbarch *gdbarch,
|
|
struct ui_out *uiout);
|
|
|
|
/* Linux target description. */
|
|
extern struct target_desc *tdesc_i386_linux;
|
|
extern struct target_desc *tdesc_i386_mmx_linux;
|
|
extern struct target_desc *tdesc_i386_avx_linux;
|
|
extern struct target_desc *tdesc_i386_mpx_linux;
|
|
extern struct target_desc *tdesc_i386_avx_mpx_linux;
|
|
extern struct target_desc *tdesc_i386_avx512_linux;
|
|
|
|
/* Format of XSAVE extended state is:
|
|
struct
|
|
{
|
|
fxsave_bytes[0..463]
|
|
sw_usable_bytes[464..511]
|
|
xstate_hdr_bytes[512..575]
|
|
avx_bytes[576..831]
|
|
mpx_bytes [960..1032]
|
|
avx512_k_regs[1088..1152]
|
|
avx512_zmmh_regs0-7[1153..1407]
|
|
avx512_zmmh_regs8-15[1408..1663]
|
|
avx512_zmm_regs16-31[1664..2687]
|
|
future_state etc
|
|
};
|
|
|
|
Same memory layout will be used for the coredump NT_X86_XSTATE
|
|
representing the XSAVE extended state registers.
|
|
|
|
The first 8 bytes of the sw_usable_bytes[464..467] is the OS enabled
|
|
extended state mask, which is the same as the extended control register
|
|
0 (the XFEATURE_ENABLED_MASK register), XCR0. We can use this mask
|
|
together with the mask saved in the xstate_hdr_bytes to determine what
|
|
states the processor/OS supports and what state, used or initialized,
|
|
the process/thread is in. */
|
|
#define I386_LINUX_XSAVE_XCR0_OFFSET 464
|
|
|
|
extern int i386_linux_gregset_reg_offset[];
|
|
|
|
/* Return x86 siginfo type. */
|
|
extern struct type *x86_linux_get_siginfo_type (struct gdbarch *gdbarch);
|
|
|
|
#endif /* i386-linux-tdep.h */
|