ld: Set non_ir_ref_regular for --undefined SYMBOL
[deliverable/binutils-gdb.git] / gdb / arch / aarch64.h
CommitLineData
cc628f3d
AH
1/* Common target-dependent functionality for AArch64.
2
e2882c85 3 Copyright (C) 2017-2018 Free Software Foundation, Inc.
cc628f3d
AH
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20#ifndef ARCH_AARCH64_H
21#define ARCH_AARCH64_H
22
0c305b61 23#include "common/tdesc.h"
da434ccb 24
95228a0d
AH
25/* Create the aarch64 target description. A non zero VQ value indicates both
26 the presence of SVE and the Vector Quotient - the number of 128bit chunks in
27 an SVE Z register. */
28
39bfb937 29target_desc *aarch64_create_target_description (uint64_t vq);
da434ccb 30
739e8682
AH
31/* Register numbers of various important registers.
32 Note that on SVE, the Z registers reuse the V register numbers and the V
33 registers become pseudo registers. */
cc628f3d
AH
34enum aarch64_regnum
35{
36 AARCH64_X0_REGNUM, /* First integer register. */
37 AARCH64_FP_REGNUM = AARCH64_X0_REGNUM + 29, /* Frame register, if used. */
38 AARCH64_LR_REGNUM = AARCH64_X0_REGNUM + 30, /* Return address. */
39 AARCH64_SP_REGNUM, /* Stack pointer. */
40 AARCH64_PC_REGNUM, /* Program counter. */
41 AARCH64_CPSR_REGNUM, /* Current Program Status Register. */
42 AARCH64_V0_REGNUM, /* First fp/vec register. */
43 AARCH64_V31_REGNUM = AARCH64_V0_REGNUM + 31, /* Last fp/vec register. */
739e8682
AH
44 AARCH64_SVE_Z0_REGNUM = AARCH64_V0_REGNUM, /* First SVE Z register. */
45 AARCH64_SVE_Z31_REGNUM = AARCH64_V31_REGNUM, /* Last SVE Z register. */
cc628f3d
AH
46 AARCH64_FPSR_REGNUM, /* Floating Point Status Register. */
47 AARCH64_FPCR_REGNUM, /* Floating Point Control Register. */
739e8682
AH
48 AARCH64_SVE_P0_REGNUM, /* First SVE predicate register. */
49 AARCH64_SVE_P15_REGNUM = AARCH64_SVE_P0_REGNUM + 15, /* Last SVE predicate
50 register. */
51 AARCH64_SVE_FFR_REGNUM, /* SVE First Fault Register. */
52 AARCH64_SVE_VG_REGNUM, /* SVE Vector Gradient. */
cc628f3d
AH
53
54 /* Other useful registers. */
55 AARCH64_LAST_X_ARG_REGNUM = AARCH64_X0_REGNUM + 7,
56 AARCH64_STRUCT_RETURN_REGNUM = AARCH64_X0_REGNUM + 8,
57 AARCH64_LAST_V_ARG_REGNUM = AARCH64_V0_REGNUM + 7
58};
59
60#define AARCH64_X_REGS_NUM 31
61#define AARCH64_V_REGS_NUM 32
739e8682
AH
62#define AARCH64_SVE_Z_REGS_NUM AARCH64_V_REGS_NUM
63#define AARCH64_SVE_P_REGS_NUM 16
cc628f3d 64#define AARCH64_NUM_REGS AARCH64_FPCR_REGNUM + 1
739e8682
AH
65#define AARCH64_SVE_NUM_REGS AARCH64_SVE_VG_REGNUM + 1
66
cc628f3d 67
122394f1
AH
68/* There are a number of ways of expressing the current SVE vector size:
69
70 VL : Vector Length.
71 The number of bytes in an SVE Z register.
72 VQ : Vector Quotient.
73 The number of 128bit chunks in an SVE Z register.
74 VG : Vector Gradient.
75 The number of 64bit chunks in an SVE Z register. */
76
77#define sve_vg_from_vl(vl) ((vl) / 8)
78#define sve_vl_from_vg(vg) ((vg) * 8)
e5a77256 79#ifndef sve_vq_from_vl
122394f1 80#define sve_vq_from_vl(vl) ((vl) / 0x10)
e5a77256
SDJ
81#endif
82#ifndef sve_vl_from_vq
122394f1 83#define sve_vl_from_vq(vq) ((vq) * 0x10)
e5a77256 84#endif
122394f1
AH
85#define sve_vq_from_vg(vg) (sve_vq_from_vl (sve_vl_from_vg (vg)))
86#define sve_vg_from_vq(vq) (sve_vg_from_vl (sve_vl_from_vq (vq)))
87
88
95228a0d
AH
89/* Maximum supported VQ value. Increase if required. */
90#define AARCH64_MAX_SVE_VQ 16
91
cc628f3d 92#endif /* ARCH_AARCH64_H */
This page took 0.074189 seconds and 4 git commands to generate.