mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
Introduce corresponding C pseudo registers that contain the following
fields:
type = struct __gdb_builtin_type_capability {
uint64_t l;
uint64_t u;
bool t;
}
For each register of the C set, users can reference the pseudo registers by
adding a 'p' prefix. For example, the pseudo register of c0 and pcc are pc0
and ppcc.
Users can set the entire 129 bits of the capability this way, if the
cheri.ptrace_forge_cap flag is enabled.
176 lines
4.9 KiB
C
176 lines
4.9 KiB
C
/* Common target dependent code for GDB on AArch64 systems.
|
|
|
|
Copyright (C) 2009-2020 Free Software Foundation, Inc.
|
|
Contributed by ARM Ltd.
|
|
|
|
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 AARCH64_TDEP_H
|
|
#define AARCH64_TDEP_H
|
|
|
|
#include "arch/aarch64.h"
|
|
#include "infrun.h"
|
|
|
|
/* Forward declarations. */
|
|
struct gdbarch;
|
|
struct regset;
|
|
|
|
/* AArch64 Dwarf register numbering. */
|
|
#define AARCH64_DWARF_X0 0
|
|
#define AARCH64_DWARF_SP 31
|
|
#define AARCH64_DWARF_PAUTH_RA_STATE 34
|
|
#define AARCH64_DWARF_PAUTH_DMASK 35
|
|
#define AARCH64_DWARF_PAUTH_CMASK 36
|
|
#define AARCH64_DWARF_V0 64
|
|
#define AARCH64_DWARF_SVE_VG 46
|
|
#define AARCH64_DWARF_SVE_FFR 47
|
|
#define AARCH64_DWARF_SVE_P0 48
|
|
#define AARCH64_DWARF_SVE_Z0 96
|
|
#define AARCH64_DWARF_C0 198
|
|
#define AARCH64_DWARF_CLR 228
|
|
#define AARCH64_DWARF_CSP 229
|
|
#define AARCH64_DWARF_PCC 230
|
|
#define AARCH64_DWARF_DDC 231
|
|
#define AARCH64_DWARF_RESERVED_1 232
|
|
#define AARCH64_DWARF_RESERVED_2 233
|
|
|
|
/* Size of integer registers. */
|
|
#define X_REGISTER_SIZE 8
|
|
#define B_REGISTER_SIZE 1
|
|
#define H_REGISTER_SIZE 2
|
|
#define S_REGISTER_SIZE 4
|
|
#define D_REGISTER_SIZE 8
|
|
#define V_REGISTER_SIZE 16
|
|
#define Q_REGISTER_SIZE 16
|
|
#define C_REGISTER_SIZE 16
|
|
|
|
/* Total number of general (X) registers. */
|
|
#define AARCH64_X_REGISTER_COUNT 32
|
|
/* Total number of D registers. */
|
|
#define AARCH64_D_REGISTER_COUNT 32
|
|
/* Total number of Morello pseudo registers. */
|
|
#define AARCH64_C_PSEUDO_COUNT 39
|
|
|
|
/* The maximum number of modified instructions generated for one
|
|
single-stepped instruction. */
|
|
#define AARCH64_DISPLACED_MODIFIED_INSNS 1
|
|
|
|
/* AArch64 ABI used by the inferior. */
|
|
enum aarch64_abi_kind
|
|
{
|
|
AARCH64_ABI_AUTO,
|
|
/* Procedure Call Standard for the Arm 64-bit Architecture. */
|
|
AARCH64_ABI_AAPCS64,
|
|
/* The pure capability Procedure Call Standard for the Arm 64-bit
|
|
Architecture (AArch64). */
|
|
AARCH64_ABI_AAPCS64_CAP,
|
|
AARCH64_ABI_LAST
|
|
};
|
|
|
|
/* Target-dependent structure in gdbarch. */
|
|
struct gdbarch_tdep
|
|
{
|
|
/* The current ABI. */
|
|
aarch64_abi_kind abi;
|
|
|
|
/* Lowest address at which instructions will appear. */
|
|
CORE_ADDR lowest_pc;
|
|
|
|
/* Offset to PC value in jump buffer. If this is negative, longjmp
|
|
support will be disabled. */
|
|
int jb_pc;
|
|
|
|
/* And the size of each entry in the buf. */
|
|
size_t jb_elt_size;
|
|
|
|
/* Types for AdvSISD registers. */
|
|
struct type *vnq_type;
|
|
struct type *vnd_type;
|
|
struct type *vns_type;
|
|
struct type *vnh_type;
|
|
struct type *vnb_type;
|
|
struct type *vnv_type;
|
|
|
|
/* syscall record. */
|
|
int (*aarch64_syscall_record) (struct regcache *regcache, unsigned long svc_number);
|
|
|
|
/* The VQ value for SVE targets, or zero if SVE is not supported. */
|
|
uint64_t vq;
|
|
|
|
/* Returns true if the target supports SVE. */
|
|
bool has_sve () const
|
|
{
|
|
return vq != 0;
|
|
}
|
|
|
|
int pauth_reg_base;
|
|
int pauth_ra_state_regnum;
|
|
|
|
/* Returns true if the target supports pauth. */
|
|
bool has_pauth () const
|
|
{
|
|
return pauth_reg_base != -1;
|
|
}
|
|
|
|
/* First register from the capability set. */
|
|
int cap_reg_base;
|
|
/* Last register from the capability set. */
|
|
int cap_reg_last;
|
|
/* CLR register number. */
|
|
int cap_reg_clr;
|
|
/* CSP register numbers. */
|
|
int cap_reg_csp;
|
|
/* PCC register number. */
|
|
int cap_reg_pcc;
|
|
/* RCSP register number. */
|
|
int cap_reg_rcsp;
|
|
/* First capability pseudo register. */
|
|
int cap_pseudo_base;
|
|
/* Number of capability pseudo registers. */
|
|
int cap_pseudo_count;
|
|
|
|
/* Types for Morello. */
|
|
struct type *morello_capability_pseudo_type;
|
|
|
|
/* Returns true if the target supports capabilities. */
|
|
bool has_capability () const
|
|
{
|
|
return cap_reg_base != -1;
|
|
}
|
|
};
|
|
|
|
const target_desc *aarch64_read_description (uint64_t vq, bool pauth_p,
|
|
bool capability_p);
|
|
|
|
extern int aarch64_process_record (struct gdbarch *gdbarch,
|
|
struct regcache *regcache, CORE_ADDR addr);
|
|
|
|
displaced_step_closure_up
|
|
aarch64_displaced_step_copy_insn (struct gdbarch *gdbarch,
|
|
CORE_ADDR from, CORE_ADDR to,
|
|
struct regcache *regs);
|
|
|
|
void aarch64_displaced_step_fixup (struct gdbarch *gdbarch,
|
|
struct displaced_step_closure *dsc,
|
|
CORE_ADDR from, CORE_ADDR to,
|
|
struct regcache *regs);
|
|
|
|
int aarch64_displaced_step_hw_singlestep (struct gdbarch *gdbarch,
|
|
struct displaced_step_closure *closure);
|
|
|
|
#endif /* aarch64-tdep.h */
|