1 /* Target-dependent code for GDB, the GNU debugger.
3 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008
4 Free Software Foundation, Inc.
6 This file is part of GDB.
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.
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.
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/>. */
30 /* From ppc-sysv-tdep.c ... */
31 enum return_value_convention
ppc_sysv_abi_return_value (struct gdbarch
*gdbarch
,
32 struct type
*func_type
,
34 struct regcache
*regcache
,
36 const gdb_byte
*writebuf
);
37 enum return_value_convention
ppc_sysv_abi_broken_return_value (struct gdbarch
*gdbarch
,
38 struct type
*func_type
,
40 struct regcache
*regcache
,
42 const gdb_byte
*writebuf
);
43 CORE_ADDR
ppc_sysv_abi_push_dummy_call (struct gdbarch
*gdbarch
,
44 struct value
*function
,
45 struct regcache
*regcache
,
46 CORE_ADDR bp_addr
, int nargs
,
47 struct value
**args
, CORE_ADDR sp
,
49 CORE_ADDR struct_addr
);
50 CORE_ADDR
ppc64_sysv_abi_push_dummy_call (struct gdbarch
*gdbarch
,
51 struct value
*function
,
52 struct regcache
*regcache
,
53 CORE_ADDR bp_addr
, int nargs
,
54 struct value
**args
, CORE_ADDR sp
,
56 CORE_ADDR struct_addr
);
57 enum return_value_convention
ppc64_sysv_abi_return_value (struct gdbarch
*gdbarch
,
58 struct type
*func_type
,
60 struct regcache
*regcache
,
62 const gdb_byte
*writebuf
);
64 /* From rs6000-tdep.c... */
65 int altivec_register_p (struct gdbarch
*gdbarch
, int regno
);
66 int spe_register_p (struct gdbarch
*gdbarch
, int regno
);
68 /* Return non-zero if the architecture described by GDBARCH has
69 floating-point registers (f0 --- f31 and fpscr). */
70 int ppc_floating_point_unit_p (struct gdbarch
*gdbarch
);
72 /* Return non-zero if the architecture described by GDBARCH has
73 Altivec registers (vr0 --- vr31, vrsave and vscr). */
74 int ppc_altivec_support_p (struct gdbarch
*gdbarch
);
76 int ppc_deal_with_atomic_sequence (struct frame_info
*frame
);
79 /* Register set description. */
81 struct ppc_reg_offsets
83 /* General-purpose registers. */
85 int gpr_size
; /* size for r0-31, pc, ps, lr, ctr. */
86 int xr_size
; /* size for cr, xer, mq. */
95 /* Floating-point registers. */
100 /* AltiVec registers. */
106 extern void ppc_supply_reg (struct regcache
*regcache
, int regnum
,
107 const gdb_byte
*regs
, size_t offset
, int regsize
);
109 extern void ppc_collect_reg (const struct regcache
*regcache
, int regnum
,
110 gdb_byte
*regs
, size_t offset
, int regsize
);
112 /* Supply register REGNUM in the general-purpose register set REGSET
113 from the buffer specified by GREGS and LEN to register cache
114 REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
116 extern void ppc_supply_gregset (const struct regset
*regset
,
117 struct regcache
*regcache
,
118 int regnum
, const void *gregs
, size_t len
);
120 /* Supply register REGNUM in the floating-point register set REGSET
121 from the buffer specified by FPREGS and LEN to register cache
122 REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
124 extern void ppc_supply_fpregset (const struct regset
*regset
,
125 struct regcache
*regcache
,
126 int regnum
, const void *fpregs
, size_t len
);
128 /* Supply register REGNUM in the Altivec register set REGSET
129 from the buffer specified by VRREGS and LEN to register cache
130 REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
132 extern void ppc_supply_vrregset (const struct regset
*regset
,
133 struct regcache
*regcache
,
134 int regnum
, const void *vrregs
, size_t len
);
136 /* Collect register REGNUM in the general-purpose register set
137 REGSET. from register cache REGCACHE into the buffer specified by
138 GREGS and LEN. If REGNUM is -1, do this for all registers in
141 extern void ppc_collect_gregset (const struct regset
*regset
,
142 const struct regcache
*regcache
,
143 int regnum
, void *gregs
, size_t len
);
145 /* Collect register REGNUM in the floating-point register set
146 REGSET. from register cache REGCACHE into the buffer specified by
147 FPREGS and LEN. If REGNUM is -1, do this for all registers in
150 extern void ppc_collect_fpregset (const struct regset
*regset
,
151 const struct regcache
*regcache
,
152 int regnum
, void *fpregs
, size_t len
);
154 /* Collect register REGNUM in the Altivec register set
155 REGSET from register cache REGCACHE into the buffer specified by
156 VRREGS and LEN. If REGNUM is -1, do this for all registers in
159 extern void ppc_collect_vrregset (const struct regset
*regset
,
160 const struct regcache
*regcache
,
161 int regnum
, void *vrregs
, size_t len
);
163 /* Private data that this module attaches to struct gdbarch. */
165 /* Vector ABI used by the inferior. */
166 enum powerpc_vector_abi
177 int wordsize
; /* Size in bytes of fixed-point word. */
178 int soft_float
; /* Avoid FP registers for arguments? */
180 /* How to pass vector arguments. Never set to AUTO or LAST. */
181 enum powerpc_vector_abi vector_abi
;
183 int ppc_gp0_regnum
; /* GPR register 0 */
184 int ppc_toc_regnum
; /* TOC register */
185 int ppc_ps_regnum
; /* Processor (or machine) status (%msr) */
186 int ppc_cr_regnum
; /* Condition register */
187 int ppc_lr_regnum
; /* Link register */
188 int ppc_ctr_regnum
; /* Count register */
189 int ppc_xer_regnum
; /* Integer exception register */
191 /* Not all PPC and RS6000 variants will have the registers
192 represented below. A -1 is used to indicate that the register
193 is not present in this variant. */
195 /* Floating-point registers. */
196 int ppc_fp0_regnum
; /* floating-point register 0 */
197 int ppc_fpscr_regnum
; /* fp status and condition register */
199 /* Multiplier-Quotient Register (older POWER architectures only). */
202 /* Altivec registers. */
203 int ppc_vr0_regnum
; /* First AltiVec register */
204 int ppc_vrsave_regnum
; /* Last AltiVec register */
207 int ppc_ev0_upper_regnum
; /* First GPR upper half register */
208 int ppc_ev0_regnum
; /* First ev register */
209 int ppc_acc_regnum
; /* SPE 'acc' register */
210 int ppc_spefscr_regnum
; /* SPE 'spefscr' register */
212 /* Decimal 128 registers. */
213 int ppc_dl0_regnum
; /* First Decimal128 argument register pair. */
215 /* Offset to ABI specific location where link register is saved. */
218 /* An array of integers, such that sim_regno[I] is the simulator
219 register number for GDB register number I, or -1 if the
220 simulator does not implement that register. */
223 /* ISA-specific types. */
224 struct type
*ppc_builtin_type_vec64
;
228 /* Constants for register set sizes. */
231 ppc_num_gprs
= 32, /* 32 general-purpose registers */
232 ppc_num_fprs
= 32, /* 32 floating-point registers */
233 ppc_num_srs
= 16, /* 16 segment registers */
234 ppc_num_vrs
= 32 /* 32 Altivec vector registers */
238 /* Register number constants. These are GDB internal register
239 numbers; they are not used for the simulator or remote targets.
240 Extra SPRs (those other than MQ, CTR, LR, XER, SPEFSCR) are given
241 numbers above PPC_NUM_REGS. So are segment registers and other
242 target-defined registers. */
252 PPC_FPSCR_REGNUM
= 70,
254 PPC_SPE_UPPER_GP0_REGNUM
= 72,
255 PPC_SPE_ACC_REGNUM
= 104,
256 PPC_SPE_FSCR_REGNUM
= 105,
257 PPC_VR0_REGNUM
= 106,
258 PPC_VSCR_REGNUM
= 138,
259 PPC_VRSAVE_REGNUM
= 139,
264 /* Instruction size. */
265 #define PPC_INSN_SIZE 4
267 /* Estimate for the maximum number of instrctions in a function epilogue. */
268 #define PPC_MAX_EPILOGUE_INSTRUCTIONS 52
270 #endif /* ppc-tdep.h */