Files
binutils-gdb/gdb/arch/aarch64-gcs-linux.h
Thiago Jung Bauermann 11d6498015 GDB: aarch64-linux: Define HWCAP_GCS as unsigned long long value
On platforms where long is 32 bits, this change fixes a build failure:

/home/linux/arm/gdb/src/gdb/aarch64-linux-tdep.c: In function ‘const target_desc* aarch64_linux_core_read_description(gdbarch*, target_ops*, bfd*)’:
/home/linux/arm/gdb/src/gdb/arch/aarch64-gcs-linux.h:27:24: error: left shift count >= width of type [-Werror=shift-count-overflow]
   27 | #define HWCAP_GCS (1UL << 32)
      |                    ~~~~^~~~~
/home/linux/arm/gdb/src/gdb/aarch64-linux-tdep.c:1714:47: note: in expansion of macro ‘HWCAP_GCS’
 1714 |   features.gcs = features.gcs_linux = hwcap & HWCAP_GCS;
      |                                               ^~~~~~~~~

Suggested-by: Tom de Vries <tdevries@suse.de>
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=33372
2025-09-04 19:54:31 -03:00

45 lines
1.3 KiB
C

/* Common Linux target-dependent definitions for AArch64 GCS
Copyright (C) 2025 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 GDB_ARCH_AARCH64_GCS_LINUX_H
#define GDB_ARCH_AARCH64_GCS_LINUX_H
#include <stdint.h>
/* Feature check for Guarded Control Stack. */
#ifndef HWCAP_GCS
#define HWCAP_GCS (1ULL << 32)
#endif
/* Make sure we only define these if the kernel header doesn't. */
#ifndef GCS_MAGIC
/* GCS state (NT_ARM_GCS). */
struct user_gcs
{
uint64_t features_enabled;
uint64_t features_locked;
uint64_t gcspr_el0;
};
#endif /* GCS_MAGIC */
#endif /* GDB_ARCH_AARCH64_GCS_LINUX_H */