1 /* Common Linux target-dependent definitions for AArch64 MTE
3 Copyright (C) 2021-2022 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #ifndef ARCH_AARCH64_LINUX_H
21 #define ARCH_AARCH64_LINUX_H
23 #include "gdbsupport/common-defs.h"
25 /* Feature check for Memory Tagging Extension. */
27 #define HWCAP2_MTE (1 << 18)
30 /* The MTE regset consists of a single 64-bit register. */
31 #define AARCH64_LINUX_SIZEOF_MTE 8
33 /* We have one tag per 16 bytes of memory. */
34 #define AARCH64_MTE_GRANULE_SIZE 16
35 #define AARCH64_MTE_LOGICAL_TAG_START_BIT 56
36 #define AARCH64_MTE_LOGICAL_MAX_VALUE 0xf
38 /* Memory tagging definitions. */
40 # define SEGV_MTEAERR 8
41 # define SEGV_MTESERR 9
44 /* Memory tag types for AArch64. */
45 enum class aarch64_memtag_type
47 /* MTE logical tag contained in pointers. */
49 /* MTE allocation tag stored in memory tag granules. */
53 /* Return the number of tag granules in the memory range
54 [ADDR, ADDR + LEN) given GRANULE_SIZE. */
55 extern size_t aarch64_mte_get_tag_granules (CORE_ADDR addr
, size_t len
,
58 /* Return the 4-bit tag made from VALUE. */
59 extern CORE_ADDR
aarch64_mte_make_ltag_bits (CORE_ADDR value
);
61 /* Return the 4-bit tag that can be OR-ed to an address. */
62 extern CORE_ADDR
aarch64_mte_make_ltag (CORE_ADDR value
);
64 /* Helper to set the logical TAG for a 64-bit ADDRESS.
66 It is always possible to set the logical tag. */
67 extern CORE_ADDR
aarch64_mte_set_ltag (CORE_ADDR address
, CORE_ADDR tag
);
69 /* Helper to get the logical tag from a 64-bit ADDRESS.
71 It is always possible to get the logical tag. */
72 extern CORE_ADDR
aarch64_mte_get_ltag (CORE_ADDR address
);
74 #endif /* ARCH_AARCH64_LINUX_H */