Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH v4 0/6] GDB: aarch64-linux: Some header fixes
@ 2026-03-03  5:06 Thiago Jung Bauermann
  2026-03-03  5:06 ` [PATCH v4 1/6] GDB: Add aarch64-pauth-linux.h to gdb/arch/ and gdb/nat/ Thiago Jung Bauermann
                   ` (6 more replies)
  0 siblings, 7 replies; 25+ messages in thread
From: Thiago Jung Bauermann @ 2026-03-03  5:06 UTC (permalink / raw)
  To: gdb-patches
  Cc: Chris Packham, Luis, Tom Tromey, Simon Marchi, sunilkumar.dora

v4 adds two new patches, reorganizing MTE and SME definitions.

With this series, I think the AArch64 definitions are correctly organized
between the headers in gdb/arch/ and gdb/nat/.

if the series is approved I will propose a version of the last patch for
the GDB 17 branch which doesn't depend on the previous patches, so that the
build failure on aarch64-linux-musl can be fixed with minimal changes.

I didn't include Luis' Approved-by to patches, since they have some changes
in them.

I also build-tested this version on aarch64-freebsd14.3 in addition to
aarch64-linux-gnu and aarch64-linux-musl.

Previous versions of the patches:

v1: https://inbox.sourceware.org/gdb-patches/20260211045853.1436881-1-thiago.bauermann@linaro.org/
v2: https://inbox.sourceware.org/gdb-patches/20260214045504.361392-1-thiago.bauermann@linaro.org/
v3: https://inbox.sourceware.org/gdb-patches/20260217060106.1906312-1-thiago.bauermann@linaro.org/

Thiago Jung Bauermann (6):
  GDB: Add aarch64-pauth-linux.h to gdb/arch/ and gdb/nat/
  GDB: Add aarch64-fpmr-linux.h to gdb/arch/ and gdb/nat/
  GDB: aarch64-linux: Reorganize MTE-related definitions
  GDB: aarch64-linux: Reorganize SME-related definitions
  GDB: aarch64-linux: Reorganize GCS-related definitions
  GDB: aarch64-linux: Fix build failure on musl systems

 gdb/Makefile.in                         |  5 +++
 gdb/aarch64-linux-nat.c                 | 12 +++----
 gdb/aarch64-linux-tdep.c                | 23 +++++++------
 gdb/aarch64-linux-tdep.h                |  9 -----
 gdb/arch/aarch64-fpmr-linux.h           | 26 +++++++++++++++
 gdb/arch/aarch64-gcs-linux.h            | 24 +++++---------
 gdb/arch/aarch64-mte-linux.h            | 23 +++----------
 gdb/arch/aarch64-pauth-linux.h          | 29 ++++++++++++++++
 gdb/arch/aarch64-scalable-linux.h       | 11 -------
 gdb/arch/aarch64.h                      |  8 -----
 gdb/linux-tdep.h                        | 11 -------
 gdb/nat/aarch64-fpmr-linux.h            | 28 ++++++++++++++++
 gdb/nat/aarch64-gcs-linux.h             | 44 +++++++++++++++++++++++++
 gdb/nat/aarch64-mte-linux-ptrace.c      |  1 -
 gdb/nat/aarch64-mte-linux-ptrace.h      | 14 ++++++++
 gdb/nat/aarch64-pauth-linux.h           | 26 +++++++++++++++
 gdb/nat/aarch64-scalable-linux-ptrace.h | 11 +++++++
 gdbserver/linux-aarch64-low.cc          | 15 ++++-----
 gdbsupport/config.in                    |  3 ++
 gdbsupport/configure                    | 36 ++++++++++++++++++++
 gdbsupport/configure.ac                 | 19 +++++++++++
 21 files changed, 278 insertions(+), 100 deletions(-)
 create mode 100644 gdb/arch/aarch64-fpmr-linux.h
 create mode 100644 gdb/arch/aarch64-pauth-linux.h
 create mode 100644 gdb/nat/aarch64-fpmr-linux.h
 create mode 100644 gdb/nat/aarch64-gcs-linux.h
 create mode 100644 gdb/nat/aarch64-pauth-linux.h


^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2026-03-17 23:43 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-03-03  5:06 [PATCH v4 0/6] GDB: aarch64-linux: Some header fixes Thiago Jung Bauermann
2026-03-03  5:06 ` [PATCH v4 1/6] GDB: Add aarch64-pauth-linux.h to gdb/arch/ and gdb/nat/ Thiago Jung Bauermann
2026-03-03 15:51   ` Simon Marchi
2026-03-04  4:04     ` Thiago Jung Bauermann
2026-03-10 14:18       ` Luis
2026-03-04  3:59   ` Thiago Jung Bauermann
2026-03-03  5:06 ` [PATCH v4 2/6] GDB: Add aarch64-fpmr-linux.h " Thiago Jung Bauermann
2026-03-04  4:14   ` Thiago Jung Bauermann
2026-03-10 14:14     ` Luis
2026-03-03  5:06 ` [PATCH v4 3/6] GDB: aarch64-linux: Reorganize MTE-related definitions Thiago Jung Bauermann
2026-03-04  4:17   ` Thiago Jung Bauermann
2026-03-10 14:12     ` Luis
2026-03-03  5:06 ` [PATCH v4 4/6] GDB: aarch64-linux: Reorganize SME-related definitions Thiago Jung Bauermann
2026-03-04  4:21   ` Thiago Jung Bauermann
2026-03-10 14:07     ` Luis
2026-03-03  5:06 ` [PATCH v4 5/6] GDB: aarch64-linux: Reorganize GCS-related definitions Thiago Jung Bauermann
2026-03-04  4:27   ` Thiago Jung Bauermann
2026-03-10 14:05     ` Luis
2026-03-03  5:06 ` [PATCH v4 6/6] GDB: aarch64-linux: Fix build failure on musl systems Thiago Jung Bauermann
2026-03-03 16:14 ` [PATCH v4 0/6] GDB: aarch64-linux: Some header fixes Simon Marchi
2026-03-04  3:52   ` Thiago Jung Bauermann
2026-03-10 14:19     ` Luis
2026-03-17  2:29       ` Thiago Jung Bauermann
2026-03-17  2:49         ` Simon Marchi
2026-03-17 23:43           ` Thiago Jung Bauermann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox