]>
Commit | Line | Data |
---|---|---|
27fd2f50 Q |
1 | /* Target-dependent code for the S+core architecture, for GDB, |
2 | the GNU Debugger. | |
3 | ||
32d0add0 | 4 | Copyright (C) 2006-2015 Free Software Foundation, Inc. |
27fd2f50 Q |
5 | |
6 | Contributed by Qinwei ([email protected]) | |
7 | Contributed by Ching-Peng Lin ([email protected]) | |
8 | ||
9 | This file is part of GDB. | |
10 | ||
11 | This program is free software; you can redistribute it and/or modify | |
12 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 13 | the Free Software Foundation; either version 3 of the License, or |
27fd2f50 Q |
14 | (at your option) any later version. |
15 | ||
16 | This program is distributed in the hope that it will be useful, | |
17 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 | GNU General Public License for more details. | |
20 | ||
21 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 22 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
27fd2f50 Q |
23 | |
24 | #ifndef SCORE_TDEP_H | |
25 | #define SCORE_TDEP_H | |
26 | #include "math.h" | |
27 | ||
28 | enum gdb_regnum | |
29 | { | |
30 | SCORE_SP_REGNUM = 0, | |
31 | SCORE_FP_REGNUM = 2, | |
32 | SCORE_RA_REGNUM = 3, | |
33 | SCORE_A0_REGNUM = 4, | |
34 | SCORE_AL_REGNUM = 7, | |
c5741217 | 35 | SCORE_EPC_REGNUM = 37, |
27fd2f50 Q |
36 | SCORE_PC_REGNUM = 49, |
37 | }; | |
38 | ||
39 | #define SCORE_A0_REGNUM 4 | |
40 | #define SCORE_A1_REGNUM 5 | |
41 | #define SCORE_REGSIZE 4 | |
5f814c3b DL |
42 | #define SCORE7_NUM_REGS 56 |
43 | #define SCORE3_NUM_REGS 50 | |
27fd2f50 Q |
44 | #define SCORE_BEGIN_ARG_REGNUM 4 |
45 | #define SCORE_LAST_ARG_REGNUM 7 | |
46 | ||
47 | #define SCORE_INSTLEN 4 | |
48 | #define SCORE16_INSTLEN 2 | |
49 | ||
50 | #endif /* SCORE_TDEP_H */ |