Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Walfred Tedeschi <walfred.tedeschi@intel.com>
To: palves@redhat.com, eliz@gnu.org, brobecker@adacore.com
Cc: gdb-patches@sourceware.org,
	Walfred Tedeschi <walfred.tedeschi@intel.com>
Subject: [PATCH 0/2] amd64: add fs_base and gs_base
Date: Thu, 03 Nov 2016 09:47:00 -0000	[thread overview]
Message-ID: <1478166445-21370-1-git-send-email-walfred.tedeschi@intel.com> (raw)

The next two patches add Linux system registers fs_base and gs_base
in GDB and gdbserver.

First commit align the gdbserver with GDB code  in terms of
HAVE_STRUCT_USER_REGS_STRUCT_(GS|FS)_BASE.

Second patch introduces the registers into GDB and gdbserver.


Walfred Tedeschi (2):
  gdbserver-amd64: add HAVE_STRUCT_USER_REGS_STRUCT_(GS|FS)_BASE for
    gdbserver.
  amd64-linux: expose system register FS_BASE and GS_BASE for Linux.

 gdb/amd64-linux-nat.c                       |  53 ++++++++
 gdb/amd64-linux-tdep.c                      |  35 ++++-
 gdb/amd64-linux-tdep.h                      |   2 +-
 gdb/amd64-tdep.h                            |   6 +-
 gdb/doc/gdb.texinfo                         |   3 +
 gdb/features/Makefile                       |  17 +--
 gdb/features/i386/64bit-segments.xml        |  12 ++
 gdb/features/i386/amd64-avx-linux.c         |  36 +++---
 gdb/features/i386/amd64-avx-linux.xml       |   1 +
 gdb/features/i386/amd64-avx-mpx-linux.c     |  48 +++----
 gdb/features/i386/amd64-avx-mpx-linux.xml   |   1 +
 gdb/features/i386/amd64-avx512-linux.c      | 192 ++++++++++++++--------------
 gdb/features/i386/amd64-avx512-linux.xml    |   1 +
 gdb/features/i386/amd64-linux.c             |   4 +
 gdb/features/i386/amd64-linux.xml           |   1 +
 gdb/features/i386/amd64-mpx-linux.c         |  16 ++-
 gdb/features/i386/amd64-mpx-linux.xml       |   1 +
 gdb/features/i386/x32-avx-linux.c           |  36 +++---
 gdb/features/i386/x32-avx-linux.xml         |   1 +
 gdb/features/i386/x32-avx512-linux.c        | 192 ++++++++++++++--------------
 gdb/features/i386/x32-avx512-linux.xml      |   1 +
 gdb/features/i386/x32-linux.c               |   4 +
 gdb/features/i386/x32-linux.xml             |   1 +
 gdb/gdbserver/config.in                     |   6 +
 gdb/gdbserver/configure                     |  26 ++++
 gdb/gdbserver/configure.ac                  |   7 +
 gdb/gdbserver/configure.srv                 |   2 +-
 gdb/gdbserver/linux-x86-low.c               |  32 +++++
 gdb/regformats/i386/amd64-avx-linux.dat     |   2 +
 gdb/regformats/i386/amd64-avx-mpx-linux.dat |   2 +
 gdb/regformats/i386/amd64-avx512-linux.dat  |   2 +
 gdb/regformats/i386/amd64-linux.dat         |   2 +
 gdb/regformats/i386/amd64-mpx-linux.dat     |   2 +
 gdb/regformats/i386/x32-avx-linux.dat       |   2 +
 gdb/regformats/i386/x32-avx512-linux.dat    |   2 +
 gdb/regformats/i386/x32-linux.dat           |   2 +
 gdb/testsuite/gdb.arch/amd64-gs_base.c      |  33 +++++
 gdb/testsuite/gdb.arch/amd64-gs_base.exp    |  57 +++++++++
 38 files changed, 582 insertions(+), 261 deletions(-)
 create mode 100644 gdb/features/i386/64bit-segments.xml
 create mode 100644 gdb/testsuite/gdb.arch/amd64-gs_base.c
 create mode 100644 gdb/testsuite/gdb.arch/amd64-gs_base.exp

-- 
2.9.3




             reply	other threads:[~2016-11-03  9:47 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-03  9:47 Walfred Tedeschi [this message]
2016-11-03  9:47 ` [PATCH 2/2] amd64-linux: expose system register FS_BASE and GS_BASE for Linux Walfred Tedeschi
2016-11-05 14:55   ` John Baldwin
2016-11-07 14:40     ` Tedeschi, Walfred
2016-11-10 12:36   ` Gary Benson
2016-11-30 13:31     ` Tedeschi, Walfred
2016-11-23 12:02   ` Pedro Alves
2016-11-30 10:29     ` Tedeschi, Walfred
2016-12-07 16:37       ` Pedro Alves
     [not found] ` <1478166445-21370-2-git-send-email-walfred.tedeschi@intel.com>
2016-11-10 12:37   ` [PATCH 1/2] gdbserver-amd64: add HAVE_STRUCT_USER_REGS_STRUCT_(GS|FS)_BASE for gdbserver Gary Benson
2016-11-23 12:02     ` Pedro Alves
2016-11-30 14:20 ` [PATCH 0/2] amd64: add fs_base and gs_base Gary Benson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1478166445-21370-1-git-send-email-walfred.tedeschi@intel.com \
    --to=walfred.tedeschi@intel.com \
    --cc=brobecker@adacore.com \
    --cc=eliz@gnu.org \
    --cc=gdb-patches@sourceware.org \
    --cc=palves@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox