]>
Commit | Line | Data |
---|---|---|
d1973055 KB |
1 | /* Target-dependent header for the MIPS architecture, for GDB, the GNU Debugger. |
2 | ||
4c38e0a4 JB |
3 | Copyright (C) 2002, 2003, 2007, 2008, 2009, 2010 |
4 | Free Software Foundation, Inc. | |
d1973055 KB |
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 | |
a9762ec7 | 10 | the Free Software Foundation; either version 3 of the License, or |
d1973055 KB |
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 | |
a9762ec7 | 19 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
d1973055 KB |
20 | |
21 | #ifndef MIPS_TDEP_H | |
22 | #define MIPS_TDEP_H | |
23 | ||
da3331ec AC |
24 | struct gdbarch; |
25 | ||
d1973055 KB |
26 | /* All the possible MIPS ABIs. */ |
27 | enum mips_abi | |
28 | { | |
29 | MIPS_ABI_UNKNOWN = 0, | |
30 | MIPS_ABI_N32, | |
31 | MIPS_ABI_O32, | |
32 | MIPS_ABI_N64, | |
33 | MIPS_ABI_O64, | |
34 | MIPS_ABI_EABI32, | |
35 | MIPS_ABI_EABI64, | |
36 | MIPS_ABI_LAST | |
37 | }; | |
38 | ||
39 | /* Return the MIPS ABI associated with GDBARCH. */ | |
40 | enum mips_abi mips_abi (struct gdbarch *gdbarch); | |
41 | ||
1b13c4f6 | 42 | /* Return the MIPS ISA's register size. Just a short cut to the BFD |
4246e332 | 43 | architecture's word size. */ |
1b13c4f6 | 44 | extern int mips_isa_regsize (struct gdbarch *gdbarch); |
4246e332 | 45 | |
56cea623 AC |
46 | /* Return the current index for various MIPS registers. */ |
47 | struct mips_regnum | |
48 | { | |
49 | int pc; | |
50 | int fp0; | |
51 | int fp_implementation_revision; | |
52 | int fp_control_status; | |
53 | int badvaddr; /* Bad vaddr for addressing exception. */ | |
54 | int cause; /* Describes last exception. */ | |
55 | int hi; /* Multiply/divide temp. */ | |
56 | int lo; /* ... */ | |
57 | }; | |
58 | extern const struct mips_regnum *mips_regnum (struct gdbarch *gdbarch); | |
59 | ||
e38d4e1a DJ |
60 | /* Some MIPS boards don't support floating point while others only |
61 | support single-precision floating-point operations. */ | |
62 | ||
63 | enum mips_fpu_type | |
64 | { | |
65 | MIPS_FPU_DOUBLE, /* Full double precision floating point. */ | |
66 | MIPS_FPU_SINGLE, /* Single precision floating point (R4650). */ | |
67 | MIPS_FPU_NONE /* No floating point. */ | |
68 | }; | |
69 | ||
70 | /* MIPS specific per-architecture information */ | |
71 | struct gdbarch_tdep | |
72 | { | |
73 | /* from the elf header */ | |
74 | int elf_flags; | |
75 | ||
76 | /* mips options */ | |
77 | enum mips_abi mips_abi; | |
78 | enum mips_abi found_abi; | |
79 | enum mips_fpu_type mips_fpu_type; | |
80 | int mips_last_arg_regnum; | |
81 | int mips_last_fp_arg_regnum; | |
82 | int default_mask_address_p; | |
83 | /* Is the target using 64-bit raw integer registers but only | |
84 | storing a left-aligned 32-bit value in each? */ | |
85 | int mips64_transfers_32bit_regs_p; | |
86 | /* Indexes for various registers. IRIX and embedded have | |
87 | different values. This contains the "public" fields. Don't | |
88 | add any that do not need to be public. */ | |
89 | const struct mips_regnum *regnum; | |
90 | /* Register names table for the current register set. */ | |
91 | const char **mips_processor_reg_names; | |
92 | ||
93 | /* The size of register data available from the target, if known. | |
94 | This doesn't quite obsolete the manual | |
95 | mips64_transfers_32bit_regs_p, since that is documented to force | |
96 | left alignment even for big endian (very strange). */ | |
97 | int register_size_valid_p; | |
98 | int register_size; | |
99 | ||
100 | /* Return the expected next PC if FRAME is stopped at a syscall | |
101 | instruction. */ | |
102 | CORE_ADDR (*syscall_next_pc) (struct frame_info *frame); | |
103 | }; | |
104 | ||
7157eed4 | 105 | /* Register numbers of various important registers. */ |
613e114f | 106 | |
9c46b6f0 MK |
107 | enum |
108 | { | |
613e114f | 109 | MIPS_ZERO_REGNUM = 0, /* Read-only register, always 0. */ |
9c46b6f0 | 110 | MIPS_AT_REGNUM = 1, |
613e114f AC |
111 | MIPS_V0_REGNUM = 2, /* Function integer return value. */ |
112 | MIPS_A0_REGNUM = 4, /* Loc of first arg during a subr call */ | |
113 | MIPS_T9_REGNUM = 25, /* Contains address of callee in PIC. */ | |
f10683bb | 114 | MIPS_SP_REGNUM = 29, |
9c46b6f0 | 115 | MIPS_RA_REGNUM = 31, |
24e05951 | 116 | MIPS_PS_REGNUM = 32, /* Contains processor status. */ |
56cea623 AC |
117 | MIPS_EMBED_LO_REGNUM = 33, |
118 | MIPS_EMBED_HI_REGNUM = 34, | |
119 | MIPS_EMBED_BADVADDR_REGNUM = 35, | |
120 | MIPS_EMBED_CAUSE_REGNUM = 36, | |
121 | MIPS_EMBED_PC_REGNUM = 37, | |
613e114f | 122 | MIPS_EMBED_FP0_REGNUM = 38, |
607fc93c AC |
123 | MIPS_UNUSED_REGNUM = 73, /* Never used, FIXME */ |
124 | MIPS_FIRST_EMBED_REGNUM = 74, /* First CP0 register for embedded use. */ | |
a5c9623c | 125 | MIPS_PRID_REGNUM = 89, /* Processor ID. */ |
607fc93c | 126 | MIPS_LAST_EMBED_REGNUM = 89 /* Last one. */ |
56cea623 AC |
127 | }; |
128 | ||
691c0433 AC |
129 | /* Defined in mips-tdep.c and used in remote-mips.c */ |
130 | extern void deprecated_mips_set_processor_regs_hack (void); | |
131 | ||
95ac2dcf AC |
132 | /* Instruction sizes and other useful constants. */ |
133 | enum | |
9c46b6f0 | 134 | { |
95ac2dcf AC |
135 | MIPS_INSN16_SIZE = 2, |
136 | MIPS_INSN32_SIZE = 4, | |
137 | /* The number of floating-point or integer registers. */ | |
138 | MIPS_NUMREGS = 32 | |
9c46b6f0 MK |
139 | }; |
140 | ||
0d0266c6 | 141 | /* Single step based on where the current instruction will take us. */ |
0b1b3e42 | 142 | extern int mips_software_single_step (struct frame_info *frame); |
691c0433 | 143 | |
0fe7e7c8 AC |
144 | /* Tell if the program counter value in MEMADDR is in a MIPS16 |
145 | function. */ | |
146 | extern int mips_pc_is_mips16 (bfd_vma memaddr); | |
147 | ||
e6bc2e8a AC |
148 | /* Return the currently configured (or set) saved register size. */ |
149 | extern unsigned int mips_abi_regsize (struct gdbarch *gdbarch); | |
150 | ||
4eb0ad19 DJ |
151 | /* Target descriptions which only indicate the size of general |
152 | registers. */ | |
153 | extern struct target_desc *mips_tdesc_gp32; | |
154 | extern struct target_desc *mips_tdesc_gp64; | |
155 | ||
d1973055 | 156 | #endif /* MIPS_TDEP_H */ |