Commit | Line | Data |
---|---|---|
9aa1e687 | 1 | /* Target-dependent code for GDB, the GNU debugger. |
f9be684a AC |
2 | |
3 | Copyright 2000, 2001, 2002, 2003, 2004 Free Software Foundation, | |
4 | Inc. | |
9aa1e687 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 | |
10 | the Free Software Foundation; either version 2 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, write to the Free Software | |
20 | Foundation, Inc., 59 Temple Place - Suite 330, | |
21 | Boston, MA 02111-1307, USA. */ | |
22 | ||
3a1c5313 AC |
23 | #ifndef PPC_TDEP_H |
24 | #define PPC_TDEP_H | |
25 | ||
da3331ec | 26 | struct gdbarch; |
3a1c5313 AC |
27 | struct frame_info; |
28 | struct value; | |
4a4b3fed | 29 | struct regcache; |
221c12ff | 30 | struct type; |
3a1c5313 | 31 | |
9aa1e687 | 32 | /* From ppc-linux-tdep.c... */ |
05580c65 AC |
33 | enum return_value_convention ppc_sysv_abi_return_value (struct gdbarch *gdbarch, |
34 | struct type *valtype, | |
35 | struct regcache *regcache, | |
963e2bb7 AC |
36 | void *readbuf, |
37 | const void *writebuf); | |
05580c65 AC |
38 | enum return_value_convention ppc_sysv_abi_broken_return_value (struct gdbarch *gdbarch, |
39 | struct type *valtype, | |
40 | struct regcache *regcache, | |
963e2bb7 AC |
41 | void *readbuf, |
42 | const void *writebuf); | |
77b2b6d4 | 43 | CORE_ADDR ppc_sysv_abi_push_dummy_call (struct gdbarch *gdbarch, |
7d9b040b | 44 | struct value *function, |
77b2b6d4 AC |
45 | struct regcache *regcache, |
46 | CORE_ADDR bp_addr, int nargs, | |
47 | struct value **args, CORE_ADDR sp, | |
48 | int struct_return, | |
49 | CORE_ADDR struct_addr); | |
8be9034a | 50 | CORE_ADDR ppc64_sysv_abi_push_dummy_call (struct gdbarch *gdbarch, |
7d9b040b | 51 | struct value *function, |
8be9034a AC |
52 | struct regcache *regcache, |
53 | CORE_ADDR bp_addr, int nargs, | |
54 | struct value **args, CORE_ADDR sp, | |
55 | int struct_return, | |
56 | CORE_ADDR struct_addr); | |
6066c3de AC |
57 | CORE_ADDR ppc64_sysv_abi_adjust_breakpoint_address (struct gdbarch *gdbarch, |
58 | CORE_ADDR bpaddr); | |
9aa1e687 | 59 | int ppc_linux_memory_remove_breakpoint (CORE_ADDR addr, char *contents_cache); |
6ded7999 | 60 | struct link_map_offsets *ppc_linux_svr4_fetch_link_map_offsets (void); |
f9be684a AC |
61 | void ppc_linux_supply_gregset (struct regcache *regcache, |
62 | int regnum, const void *gregs, size_t size, | |
63 | int wordsize); | |
64 | void ppc_linux_supply_fpregset (const struct regset *regset, | |
65 | struct regcache *regcache, | |
66 | int regnum, const void *gregs, size_t size); | |
9aa1e687 | 67 | |
05580c65 AC |
68 | enum return_value_convention ppc64_sysv_abi_return_value (struct gdbarch *gdbarch, |
69 | struct type *valtype, | |
70 | struct regcache *regcache, | |
963e2bb7 AC |
71 | void *readbuf, |
72 | const void *writebuf); | |
9aa1e687 KB |
73 | |
74 | /* From rs6000-tdep.c... */ | |
1fcc0bb8 | 75 | int altivec_register_p (int regno); |
867e2dc5 | 76 | int spe_register_p (int regno); |
9aa1e687 | 77 | |
383f0f5b JB |
78 | /* Return non-zero if the architecture described by GDBARCH has |
79 | floating-point registers (f0 --- f31 and fpscr). */ | |
0a613259 AC |
80 | int ppc_floating_point_unit_p (struct gdbarch *gdbarch); |
81 | ||
d195bc9f MK |
82 | /* Register set description. */ |
83 | ||
84 | struct ppc_reg_offsets | |
85 | { | |
86 | /* General-purpose registers. */ | |
87 | int r0_offset; | |
88 | int pc_offset; | |
89 | int ps_offset; | |
90 | int cr_offset; | |
91 | int lr_offset; | |
92 | int ctr_offset; | |
93 | int xer_offset; | |
94 | int mq_offset; | |
95 | ||
96 | /* Floating-point registers. */ | |
97 | int f0_offset; | |
98 | int fpscr_offset; | |
99 | ||
100 | /* AltiVec registers. */ | |
101 | int vr0_offset; | |
102 | int vscr_offset; | |
103 | int vrsave_offset; | |
104 | }; | |
105 | ||
106 | /* Supply register REGNUM in the general-purpose register set REGSET | |
107 | from the buffer specified by GREGS and LEN to register cache | |
108 | REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */ | |
109 | ||
110 | extern void ppc_supply_gregset (const struct regset *regset, | |
111 | struct regcache *regcache, | |
112 | int regnum, const void *gregs, size_t len); | |
113 | ||
114 | /* Supply register REGNUM in the floating-point register set REGSET | |
115 | from the buffer specified by FPREGS and LEN to register cache | |
116 | REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */ | |
117 | ||
118 | extern void ppc_supply_fpregset (const struct regset *regset, | |
119 | struct regcache *regcache, | |
120 | int regnum, const void *fpregs, size_t len); | |
121 | ||
122 | /* Collect register REGNUM in the general-purpose register set | |
123 | REGSET. from register cache REGCACHE into the buffer specified by | |
124 | GREGS and LEN. If REGNUM is -1, do this for all registers in | |
125 | REGSET. */ | |
126 | ||
127 | extern void ppc_collect_gregset (const struct regset *regset, | |
128 | const struct regcache *regcache, | |
129 | int regnum, void *gregs, size_t len); | |
130 | ||
131 | /* Collect register REGNUM in the floating-point register set | |
132 | REGSET. from register cache REGCACHE into the buffer specified by | |
133 | FPREGS and LEN. If REGNUM is -1, do this for all registers in | |
134 | REGSET. */ | |
135 | ||
136 | extern void ppc_collect_fpregset (const struct regset *regset, | |
137 | const struct regcache *regcache, | |
138 | int regnum, void *fpregs, size_t len); | |
139 | ||
2188cbdd EZ |
140 | /* Private data that this module attaches to struct gdbarch. */ |
141 | ||
142 | struct gdbarch_tdep | |
143 | { | |
144 | int wordsize; /* size in bytes of fixed-point word */ | |
2188cbdd EZ |
145 | const struct reg *regs; /* from current variant */ |
146 | int ppc_gp0_regnum; /* GPR register 0 */ | |
2188cbdd EZ |
147 | int ppc_toc_regnum; /* TOC register */ |
148 | int ppc_ps_regnum; /* Processor (or machine) status (%msr) */ | |
149 | int ppc_cr_regnum; /* Condition register */ | |
150 | int ppc_lr_regnum; /* Link register */ | |
151 | int ppc_ctr_regnum; /* Count register */ | |
152 | int ppc_xer_regnum; /* Integer exception register */ | |
383f0f5b JB |
153 | |
154 | /* On PPC and RS6000 variants that have no floating-point | |
155 | registers, the next two members will be -1. */ | |
366f009f | 156 | int ppc_fp0_regnum; /* floating-point register 0 */ |
e3f36dbd KB |
157 | int ppc_fpscr_regnum; /* Floating point status and condition |
158 | register */ | |
383f0f5b | 159 | |
f86a7158 JB |
160 | int ppc_sr0_regnum; /* segment register 0, or -1 on |
161 | variants that have no segment | |
162 | registers. */ | |
163 | ||
2188cbdd | 164 | int ppc_mq_regnum; /* Multiply/Divide extension register */ |
1fcc0bb8 EZ |
165 | int ppc_vr0_regnum; /* First AltiVec register */ |
166 | int ppc_vrsave_regnum; /* Last AltiVec register */ | |
6ced10dd | 167 | int ppc_ev0_upper_regnum; /* First GPR upper half register */ |
c8001721 EZ |
168 | int ppc_ev0_regnum; /* First ev register */ |
169 | int ppc_ev31_regnum; /* Last ev register */ | |
867e2dc5 JB |
170 | int ppc_acc_regnum; /* SPE 'acc' register */ |
171 | int ppc_spefscr_regnum; /* SPE 'spefscr' register */ | |
a88376a3 KB |
172 | int lr_frame_offset; /* Offset to ABI specific location where |
173 | link register is saved. */ | |
9f643768 JB |
174 | |
175 | /* An array of integers, such that sim_regno[I] is the simulator | |
176 | register number for GDB register number I, or -1 if the | |
177 | simulator does not implement that register. */ | |
178 | int *sim_regno; | |
2188cbdd | 179 | }; |
3a1c5313 | 180 | |
b967e06f JB |
181 | |
182 | /* Constants for register set sizes. */ | |
183 | enum | |
184 | { | |
8bf659e8 | 185 | ppc_num_gprs = 32, /* 32 general-purpose registers */ |
cc98b5cc | 186 | ppc_num_fprs = 32, /* 32 floating-point registers */ |
8f088af7 | 187 | ppc_num_srs = 16, /* 16 segment registers */ |
cc98b5cc | 188 | ppc_num_vrs = 32 /* 32 Altivec vector registers */ |
b967e06f JB |
189 | }; |
190 | ||
0ea0ec5f JB |
191 | |
192 | /* Constants for SPR register numbers. These are *not* GDB register | |
193 | numbers: they are the numbers used in the PowerPC ISA itself to | |
194 | refer to these registers. | |
195 | ||
196 | This table includes all the SPRs from all the variants I could find | |
197 | documentation for. | |
198 | ||
199 | There may be registers from different PowerPC variants assigned the | |
200 | same number, but that's fine: GDB and the SIM always use the | |
201 | numbers in the context of a particular variant, so it's not | |
202 | ambiguous. | |
203 | ||
204 | We need to deviate from the naming pattern when variants have | |
205 | special-purpose registers of the same name, but with different | |
206 | numbers. Fortunately, this is rare: look below to see how we | |
207 | handle the 'tcr' registers on the 403/403GX and 602. */ | |
208 | ||
209 | enum | |
210 | { | |
211 | ppc_spr_mq = 0, | |
212 | ppc_spr_xer = 1, | |
213 | ppc_spr_rtcu = 4, | |
214 | ppc_spr_rtcl = 5, | |
215 | ppc_spr_lr = 8, | |
216 | ppc_spr_ctr = 9, | |
217 | ppc_spr_cnt = 9, | |
218 | ppc_spr_dsisr = 18, | |
219 | ppc_spr_dar = 19, | |
220 | ppc_spr_dec = 22, | |
221 | ppc_spr_sdr1 = 25, | |
222 | ppc_spr_srr0 = 26, | |
223 | ppc_spr_srr1 = 27, | |
224 | ppc_spr_eie = 80, | |
225 | ppc_spr_eid = 81, | |
226 | ppc_spr_nri = 82, | |
227 | ppc_spr_sp = 102, | |
228 | ppc_spr_cmpa = 144, | |
229 | ppc_spr_cmpb = 145, | |
230 | ppc_spr_cmpc = 146, | |
231 | ppc_spr_cmpd = 147, | |
232 | ppc_spr_icr = 148, | |
233 | ppc_spr_der = 149, | |
234 | ppc_spr_counta = 150, | |
235 | ppc_spr_countb = 151, | |
236 | ppc_spr_cmpe = 152, | |
237 | ppc_spr_cmpf = 153, | |
238 | ppc_spr_cmpg = 154, | |
239 | ppc_spr_cmph = 155, | |
240 | ppc_spr_lctrl1 = 156, | |
241 | ppc_spr_lctrl2 = 157, | |
242 | ppc_spr_ictrl = 158, | |
243 | ppc_spr_bar = 159, | |
244 | ppc_spr_vrsave = 256, | |
245 | ppc_spr_sprg0 = 272, | |
246 | ppc_spr_sprg1 = 273, | |
247 | ppc_spr_sprg2 = 274, | |
248 | ppc_spr_sprg3 = 275, | |
5109a438 | 249 | ppc_spr_asr = 280, |
0ea0ec5f JB |
250 | ppc_spr_ear = 282, |
251 | ppc_spr_tbl = 284, | |
252 | ppc_spr_tbu = 285, | |
253 | ppc_spr_pvr = 287, | |
254 | ppc_spr_spefscr = 512, | |
255 | ppc_spr_ibat0u = 528, | |
256 | ppc_spr_ibat0l = 529, | |
257 | ppc_spr_ibat1u = 530, | |
258 | ppc_spr_ibat1l = 531, | |
259 | ppc_spr_ibat2u = 532, | |
260 | ppc_spr_ibat2l = 533, | |
261 | ppc_spr_ibat3u = 534, | |
262 | ppc_spr_ibat3l = 535, | |
263 | ppc_spr_dbat0u = 536, | |
264 | ppc_spr_dbat0l = 537, | |
265 | ppc_spr_dbat1u = 538, | |
266 | ppc_spr_dbat1l = 539, | |
267 | ppc_spr_dbat2u = 540, | |
268 | ppc_spr_dbat2l = 541, | |
269 | ppc_spr_dbat3u = 542, | |
270 | ppc_spr_dbat3l = 543, | |
271 | ppc_spr_ic_cst = 560, | |
272 | ppc_spr_ic_adr = 561, | |
273 | ppc_spr_ic_dat = 562, | |
274 | ppc_spr_dc_cst = 568, | |
275 | ppc_spr_dc_adr = 569, | |
276 | ppc_spr_dc_dat = 570, | |
277 | ppc_spr_dpdr = 630, | |
278 | ppc_spr_dpir = 631, | |
279 | ppc_spr_immr = 638, | |
280 | ppc_spr_mi_ctr = 784, | |
281 | ppc_spr_mi_ap = 786, | |
282 | ppc_spr_mi_epn = 787, | |
283 | ppc_spr_mi_twc = 789, | |
284 | ppc_spr_mi_rpn = 790, | |
285 | ppc_spr_mi_cam = 816, | |
286 | ppc_spr_mi_ram0 = 817, | |
287 | ppc_spr_mi_ram1 = 818, | |
288 | ppc_spr_md_ctr = 792, | |
289 | ppc_spr_m_casid = 793, | |
290 | ppc_spr_md_ap = 794, | |
291 | ppc_spr_md_epn = 795, | |
5109a438 | 292 | ppc_spr_m_twb = 796, |
0ea0ec5f JB |
293 | ppc_spr_md_twc = 797, |
294 | ppc_spr_md_rpn = 798, | |
295 | ppc_spr_m_tw = 799, | |
5109a438 JB |
296 | ppc_spr_mi_dbcam = 816, |
297 | ppc_spr_mi_dbram0 = 817, | |
298 | ppc_spr_mi_dbram1 = 818, | |
0ea0ec5f | 299 | ppc_spr_md_dbcam = 824, |
5109a438 | 300 | ppc_spr_md_cam = 824, |
0ea0ec5f | 301 | ppc_spr_md_dbram0 = 825, |
5109a438 | 302 | ppc_spr_md_ram0 = 825, |
0ea0ec5f | 303 | ppc_spr_md_dbram1 = 826, |
5109a438 | 304 | ppc_spr_md_ram1 = 826, |
0ea0ec5f JB |
305 | ppc_spr_ummcr0 = 936, |
306 | ppc_spr_upmc1 = 937, | |
307 | ppc_spr_upmc2 = 938, | |
308 | ppc_spr_usia = 939, | |
309 | ppc_spr_ummcr1 = 940, | |
310 | ppc_spr_upmc3 = 941, | |
311 | ppc_spr_upmc4 = 942, | |
312 | ppc_spr_zpr = 944, | |
313 | ppc_spr_pid = 945, | |
314 | ppc_spr_mmcr0 = 952, | |
315 | ppc_spr_pmc1 = 953, | |
316 | ppc_spr_sgr = 953, | |
317 | ppc_spr_pmc2 = 954, | |
318 | ppc_spr_dcwr = 954, | |
319 | ppc_spr_sia = 955, | |
320 | ppc_spr_mmcr1 = 956, | |
321 | ppc_spr_pmc3 = 957, | |
322 | ppc_spr_pmc4 = 958, | |
323 | ppc_spr_sda = 959, | |
324 | ppc_spr_tbhu = 972, | |
325 | ppc_spr_tblu = 973, | |
326 | ppc_spr_dmiss = 976, | |
327 | ppc_spr_dcmp = 977, | |
328 | ppc_spr_hash1 = 978, | |
329 | ppc_spr_hash2 = 979, | |
330 | ppc_spr_icdbdr = 979, | |
331 | ppc_spr_imiss = 980, | |
332 | ppc_spr_esr = 980, | |
333 | ppc_spr_icmp = 981, | |
334 | ppc_spr_dear = 981, | |
335 | ppc_spr_rpa = 982, | |
336 | ppc_spr_evpr = 982, | |
337 | ppc_spr_cdbcr = 983, | |
338 | ppc_spr_tsr = 984, | |
339 | ppc_spr_602_tcr = 984, | |
340 | ppc_spr_403_tcr = 986, | |
341 | ppc_spr_ibr = 986, | |
342 | ppc_spr_pit = 987, | |
343 | ppc_spr_esasrr = 988, | |
344 | ppc_spr_tbhi = 988, | |
345 | ppc_spr_tblo = 989, | |
346 | ppc_spr_srr2 = 990, | |
347 | ppc_spr_sebr = 990, | |
348 | ppc_spr_srr3 = 991, | |
349 | ppc_spr_ser = 991, | |
350 | ppc_spr_hid0 = 1008, | |
351 | ppc_spr_dbsr = 1008, | |
352 | ppc_spr_hid1 = 1009, | |
353 | ppc_spr_iabr = 1010, | |
354 | ppc_spr_dbcr = 1010, | |
355 | ppc_spr_iac1 = 1012, | |
356 | ppc_spr_dabr = 1013, | |
357 | ppc_spr_iac2 = 1013, | |
358 | ppc_spr_dac1 = 1014, | |
359 | ppc_spr_dac2 = 1015, | |
360 | ppc_spr_l2cr = 1017, | |
361 | ppc_spr_dccr = 1018, | |
362 | ppc_spr_ictc = 1019, | |
363 | ppc_spr_iccr = 1019, | |
364 | ppc_spr_thrm1 = 1020, | |
365 | ppc_spr_pbl1 = 1020, | |
366 | ppc_spr_thrm2 = 1021, | |
367 | ppc_spr_pbu1 = 1021, | |
368 | ppc_spr_thrm3 = 1022, | |
369 | ppc_spr_pbl2 = 1022, | |
370 | ppc_spr_fpecr = 1022, | |
371 | ppc_spr_lt = 1022, | |
372 | ppc_spr_pir = 1023, | |
373 | ppc_spr_pbu2 = 1023 | |
374 | }; | |
375 | ||
3a1c5313 | 376 | #endif |