Commit | Line | Data |
---|---|---|
1ae3db19 MS |
1 | /* GNU/Linux on AArch64 target support, prototypes. |
2 | ||
e2882c85 | 3 | Copyright (C) 2012-2018 Free Software Foundation, Inc. |
1ae3db19 MS |
4 | Contributed by ARM Ltd. |
5 | ||
6 | This file is part of GDB. | |
7 | ||
8 | This program is free software; you can redistribute it and/or modify | |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 3 of the License, or | |
11 | (at your option) any later version. | |
12 | ||
13 | This program is distributed in the hope that it will be useful, | |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
17 | ||
18 | You should have received a copy of the GNU General Public License | |
19 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ | |
20 | ||
d4d793bf | 21 | #include "regset.h" |
1ae3db19 | 22 | |
d4d793bf AA |
23 | /* The general-purpose regset consists of 31 X registers, plus SP, PC, |
24 | and PSTATE registers, as defined in the AArch64 port of the Linux | |
25 | kernel. */ | |
26 | #define AARCH64_LINUX_SIZEOF_GREGSET (34 * X_REGISTER_SIZE) | |
27 | ||
28 | /* The fp regset consists of 32 V registers, plus FPCR and FPSR which | |
29 | are 4 bytes wide each, and the whole structure is padded to 128 bit | |
30 | alignment. */ | |
31 | #define AARCH64_LINUX_SIZEOF_FPREGSET (33 * V_REGISTER_SIZE) | |
32 | ||
33 | extern const struct regset aarch64_linux_gregset; | |
34 | extern const struct regset aarch64_linux_fpregset; |