[0/2] Add Intel APX support

Message ID 20260602111122.3187712-1-christina.schimpe@intel.com
Headers
Series Add Intel APX support |

Message

Schimpe, Christina June 2, 2026, 11:11 a.m. UTC
  Hi all, 

this is a patch series to add Intel APX support on amd64 architecture.

I am looking forward to your feedback!
Christina

Felix Willgerodt (1):
  gdb: add maintenance set/show gcore xml-target-description command

H.J. Lu (1):
  gdb, gdbserver: Add Intel APX register support

 gdb/NEWS                                      |  10 +
 gdb/amd64-linux-tdep.c                        |   2 +
 gdb/amd64-tdep.c                              | 262 ++++++++++++++----
 gdb/amd64-tdep.h                              |   2 +
 gdb/arch/amd64.c                              |   4 +
 gdb/arch/x86-linux-tdesc-features.c           |   1 +
 gdb/doc/gdb.texinfo                           |  11 +
 gdb/elf-none-tdep.c                           |  16 +-
 gdb/fbsd-tdep.c                               |  15 +-
 gdb/features/Makefile                         |   1 +
 gdb/features/i386/64bit-apx.c                 |  29 ++
 gdb/features/i386/64bit-apx.xml               |  26 ++
 gdb/gcore.c                                   |  40 +++
 gdb/gcore.h                                   |   3 +
 gdb/i386-tdep.c                               |  32 ++-
 gdb/i386-tdep.h                               |  26 ++
 gdb/i387-tdep.c                               | 105 ++++++-
 gdb/i387-tdep.h                               |   6 +
 gdb/linux-tdep.c                              |  15 +-
 gdb/nat/x86-xstate.c                          |   1 +
 gdb/target-debug.h                            |   1 +
 gdb/testsuite/gdb.arch/amd64-apx-corefile.exp |  87 ++++++
 gdb/testsuite/gdb.arch/amd64-apx.c            |  83 ++++++
 gdb/testsuite/gdb.arch/amd64-apx.exp          | 106 +++++++
 gdb/testsuite/lib/gdb.exp                     |  59 ++++
 gdbserver/i387-fp.cc                          |  43 +++
 gdbserver/linux-x86-low.cc                    |   4 +-
 gdbsupport/x86-xstate.h                       |  12 +-
 28 files changed, 921 insertions(+), 81 deletions(-)
 create mode 100644 gdb/features/i386/64bit-apx.c
 create mode 100644 gdb/features/i386/64bit-apx.xml
 create mode 100644 gdb/testsuite/gdb.arch/amd64-apx-corefile.exp
 create mode 100644 gdb/testsuite/gdb.arch/amd64-apx.c
 create mode 100644 gdb/testsuite/gdb.arch/amd64-apx.exp