GDB (xrefs)
/tmp/gdb-8.1/gdb/ppc-tdep.h
Go to the documentation of this file.
1 /* Target-dependent code for GDB, the GNU debugger.
2 
3  Copyright (C) 2000-2018 Free Software Foundation, Inc.
4 
5  This file is part of GDB.
6 
7  This program is free software; you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 3 of the License, or
10  (at your option) any later version.
11 
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 
20 #ifndef PPC_TDEP_H
21 #define PPC_TDEP_H
22 
23 struct gdbarch;
24 struct frame_info;
25 struct value;
26 struct regcache;
27 struct type;
28 
29 /* From ppc-sysv-tdep.c ... */
31  struct value *function,
32  struct type *valtype,
33  struct regcache *regcache,
34  gdb_byte *readbuf,
35  const gdb_byte *writebuf);
37  struct value *function,
38  struct type *valtype,
39  struct regcache *regcache,
40  gdb_byte *readbuf,
41  const gdb_byte *writebuf);
43  struct value *function,
44  struct regcache *regcache,
45  CORE_ADDR bp_addr, int nargs,
46  struct value **args, CORE_ADDR sp,
47  int struct_return,
48  CORE_ADDR struct_addr);
50  struct value *function,
51  struct regcache *regcache,
52  CORE_ADDR bp_addr, int nargs,
53  struct value **args, CORE_ADDR sp,
54  int struct_return,
55  CORE_ADDR struct_addr);
57  struct value *function,
58  struct type *valtype,
59  struct regcache *regcache,
60  gdb_byte *readbuf,
61  const gdb_byte *writebuf);
62 
63 /* From rs6000-tdep.c... */
64 int altivec_register_p (struct gdbarch *gdbarch, int regno);
65 int vsx_register_p (struct gdbarch *gdbarch, int regno);
66 int spe_register_p (struct gdbarch *gdbarch, int regno);
67 
68 /* Return non-zero if the architecture described by GDBARCH has
69  floating-point registers (f0 --- f31 and fpscr). */
71 
72 /* Return non-zero if the architecture described by GDBARCH has
73  Altivec registers (vr0 --- vr31, vrsave and vscr). */
75 
76 /* Return non-zero if the architecture described by GDBARCH has
77  VSX registers (vsr0 --- vsr63). */
78 int vsx_support_p (struct gdbarch *gdbarch);
79 std::vector<CORE_ADDR> ppc_deal_with_atomic_sequence
80  (struct regcache *regcache);
81 
82 
83 /* Register set description. */
84 
86 {
87  /* General-purpose registers. */
88  int r0_offset;
89  int gpr_size; /* size for r0-31, pc, ps, lr, ctr. */
90  int xr_size; /* size for cr, xer, mq. */
91  int pc_offset;
92  int ps_offset;
93  int cr_offset;
94  int lr_offset;
97  int mq_offset;
98 
99  /* Floating-point registers. */
103 
104  /* AltiVec registers. */
108 };
109 
110 extern void ppc_supply_reg (struct regcache *regcache, int regnum,
111  const gdb_byte *regs, size_t offset, int regsize);
112 
113 extern void ppc_collect_reg (const struct regcache *regcache, int regnum,
114  gdb_byte *regs, size_t offset, int regsize);
115 
116 /* Supply register REGNUM in the general-purpose register set REGSET
117  from the buffer specified by GREGS and LEN to register cache
118  REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
119 
120 extern void ppc_supply_gregset (const struct regset *regset,
121  struct regcache *regcache,
122  int regnum, const void *gregs, size_t len);
123 
124 /* Supply register REGNUM in the floating-point register set REGSET
125  from the buffer specified by FPREGS and LEN to register cache
126  REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
127 
128 extern void ppc_supply_fpregset (const struct regset *regset,
129  struct regcache *regcache,
130  int regnum, const void *fpregs, size_t len);
131 
132 /* Supply register REGNUM in the Altivec register set REGSET
133  from the buffer specified by VRREGS and LEN to register cache
134  REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
135 
136 extern void ppc_supply_vrregset (const struct regset *regset,
137  struct regcache *regcache,
138  int regnum, const void *vrregs, size_t len);
139 
140 /* Supply register REGNUM in the VSX register set REGSET
141  from the buffer specified by VSXREGS and LEN to register cache
142  REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
143 
144 extern void ppc_supply_vsxregset (const struct regset *regset,
145  struct regcache *regcache,
146  int regnum, const void *vsxregs, size_t len);
147 
148 /* Collect register REGNUM in the general-purpose register set
149  REGSET, from register cache REGCACHE into the buffer specified by
150  GREGS and LEN. If REGNUM is -1, do this for all registers in
151  REGSET. */
152 
153 extern void ppc_collect_gregset (const struct regset *regset,
154  const struct regcache *regcache,
155  int regnum, void *gregs, size_t len);
156 
157 /* Collect register REGNUM in the floating-point register set
158  REGSET, from register cache REGCACHE into the buffer specified by
159  FPREGS and LEN. If REGNUM is -1, do this for all registers in
160  REGSET. */
161 
162 extern void ppc_collect_fpregset (const struct regset *regset,
163  const struct regcache *regcache,
164  int regnum, void *fpregs, size_t len);
165 
166 /* Collect register REGNUM in the Altivec register set
167  REGSET from register cache REGCACHE into the buffer specified by
168  VRREGS and LEN. If REGNUM is -1, do this for all registers in
169  REGSET. */
170 
171 extern void ppc_collect_vrregset (const struct regset *regset,
172  const struct regcache *regcache,
173  int regnum, void *vrregs, size_t len);
174 
175 /* Collect register REGNUM in the VSX register set
176  REGSET from register cache REGCACHE into the buffer specified by
177  VSXREGS and LEN. If REGNUM is -1, do this for all registers in
178  REGSET. */
179 
180 extern void ppc_collect_vsxregset (const struct regset *regset,
181  const struct regcache *regcache,
182  int regnum, void *vsxregs, size_t len);
183 
184 /* Private data that this module attaches to struct gdbarch. */
185 
186 /* ELF ABI version used by the inferior. */
188 {
193 };
194 
195 /* Vector ABI used by the inferior. */
197 {
203 };
204 
205 /* long double ABI version used by the inferior. */
207 {
212 };
213 
214 struct gdbarch_tdep
215  {
216  int wordsize; /* Size in bytes of fixed-point word. */
217  int soft_float; /* Avoid FP registers for arguments? */
218 
219  enum powerpc_elf_abi elf_abi; /* ELF ABI version. */
220 
221  /* Format to use for the "long double" data type. */
223 
224  /* How to pass vector arguments. Never set to AUTO or LAST. */
226 
227  int ppc_gp0_regnum; /* GPR register 0 */
228  int ppc_toc_regnum; /* TOC register */
229  int ppc_ps_regnum; /* Processor (or machine) status (%msr) */
230  int ppc_cr_regnum; /* Condition register */
231  int ppc_lr_regnum; /* Link register */
232  int ppc_ctr_regnum; /* Count register */
233  int ppc_xer_regnum; /* Integer exception register */
234 
235  /* Not all PPC and RS6000 variants will have the registers
236  represented below. A -1 is used to indicate that the register
237  is not present in this variant. */
238 
239  /* Floating-point registers. */
240  int ppc_fp0_regnum; /* Floating-point register 0. */
241  int ppc_fpscr_regnum; /* fp status and condition register. */
242 
243  /* Multiplier-Quotient Register (older POWER architectures only). */
245 
246  /* POWER7 VSX registers. */
247  int ppc_vsr0_regnum; /* First VSX register. */
248  int ppc_vsr0_upper_regnum; /* First right most dword vsx register. */
249  int ppc_efpr0_regnum; /* First Extended FP register. */
250 
251  /* Altivec registers. */
252  int ppc_vr0_regnum; /* First AltiVec register. */
253  int ppc_vrsave_regnum; /* Last AltiVec register. */
254 
255  /* SPE registers. */
256  int ppc_ev0_upper_regnum; /* First GPR upper half register. */
257  int ppc_ev0_regnum; /* First ev register. */
258  int ppc_acc_regnum; /* SPE 'acc' register. */
259  int ppc_spefscr_regnum; /* SPE 'spefscr' register. */
260 
261  /* Decimal 128 registers. */
262  int ppc_dl0_regnum; /* First Decimal128 argument register pair. */
263 
264  /* Offset to ABI specific location where link register is saved. */
266 
267  /* An array of integers, such that sim_regno[I] is the simulator
268  register number for GDB register number I, or -1 if the
269  simulator does not implement that register. */
270  int *sim_regno;
271 
272  /* ISA-specific types. */
275 
277 };
278 
279 
280 /* Constants for register set sizes. */
281 enum
282  {
283  ppc_num_gprs = 32, /* 32 general-purpose registers. */
284  ppc_num_fprs = 32, /* 32 floating-point registers. */
285  ppc_num_srs = 16, /* 16 segment registers. */
286  ppc_num_vrs = 32, /* 32 Altivec vector registers. */
287  ppc_num_vshrs = 32, /* 32 doublewords (dword 1 of vs0~vs31). */
288  ppc_num_vsrs = 64, /* 64 VSX vector registers. */
289  ppc_num_efprs = 32 /* 32 Extended FP registers. */
290  };
291 
292 
293 /* Register number constants. These are GDB internal register
294  numbers; they are not used for the simulator or remote targets.
295  Extra SPRs (those other than MQ, CTR, LR, XER, SPEFSCR) are given
296  numbers above PPC_NUM_REGS. So are segment registers and other
297  target-defined registers. */
298 enum {
318 };
319 
320 /* Big enough to hold the size of the largest register in bytes. */
321 #define PPC_MAX_REGISTER_SIZE 64
322 
323 /* An instruction to match. */
324 
326 {
327  unsigned int mask; /* mask the insn with this... */
328  unsigned int data; /* ...and see if it matches this. */
329  int optional; /* If non-zero, this insn may be absent. */
330 };
331 
332 extern int ppc_insns_match_pattern (struct frame_info *frame, CORE_ADDR pc,
333  struct ppc_insn_pattern *pattern,
334  unsigned int *insns);
335 extern CORE_ADDR ppc_insn_d_field (unsigned int insn);
336 
337 extern CORE_ADDR ppc_insn_ds_field (unsigned int insn);
338 
339 extern int ppc_process_record (struct gdbarch *gdbarch,
340  struct regcache *regcache, CORE_ADDR addr);
341 
342 /* Instruction size. */
343 #define PPC_INSN_SIZE 4
344 
345 /* Estimate for the maximum number of instrctions in a function epilogue. */
346 #define PPC_MAX_EPILOGUE_INSTRUCTIONS 52
347 
348 #endif /* ppc-tdep.h */
enum return_value_convention ppc64_sysv_abi_return_value(struct gdbarch *gdbarch, struct value *function, struct type *valtype, struct regcache *regcache, gdb_byte *readbuf, const gdb_byte *writebuf)
powerpc_vector_abi
Definition: ppc-tdep.h:196
int ppc_vsr0_regnum
Definition: ppc-tdep.h:247
int ppc_ev0_regnum
Definition: ppc-tdep.h:257
int * sim_regno
Definition: ppc-tdep.h:270
bfd_vma CORE_ADDR
Definition: common-types.h:41
int ppc_lr_regnum
Definition: ppc-tdep.h:231
int ppc_altivec_support_p(struct gdbarch *gdbarch)
Definition: rs6000-tdep.c:239
void ppc_supply_fpregset(const struct regset *regset, struct regcache *regcache, int regnum, const void *fpregs, size_t len)
Definition: rs6000-tdep.c:561
regcache(gdbarch *gdbarch)
Definition: regcache.h:235
int ppc_efpr0_regnum
Definition: ppc-tdep.h:249
int ppc_fpscr_regnum
Definition: ppc-tdep.h:241
int lr_frame_offset
Definition: ppc-tdep.h:265
int ppc_process_record(struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR addr)
Definition: rs6000-tdep.c:5638
return_value_convention
Definition: defs.h:247
void ppc_supply_reg(struct regcache *regcache, int regnum, const gdb_byte *regs, size_t offset, int regsize)
Definition: rs6000-tdep.c:389
int ppc_spefscr_regnum
Definition: ppc-tdep.h:259
enum powerpc_long_double_abi long_double_abi
Definition: ppc-tdep.h:222
int vsx_register_p(struct gdbarch *gdbarch, int regno)
Definition: rs6000-tdep.c:162
int ppc_cr_regnum
Definition: ppc-tdep.h:230
powerpc_long_double_abi
Definition: ppc-tdep.h:206
enum powerpc_vector_abi vector_abi
Definition: ppc-tdep.h:225
Definition: regset.h:34
void ppc_collect_gregset(const struct regset *regset, const struct regcache *regcache, int regnum, void *gregs, size_t len)
Definition: rs6000-tdep.c:675
int ppc_vsr0_upper_regnum
Definition: ppc-tdep.h:248
int ppc_toc_regnum
Definition: ppc-tdep.h:228
int ppc_vrsave_regnum
Definition: ppc-tdep.h:253
void ppc_collect_reg(const struct regcache *regcache, int regnum, gdb_byte *regs, size_t offset, int regsize)
Definition: rs6000-tdep.c:410
void ppc_collect_vrregset(const struct regset *regset, const struct regcache *regcache, int regnum, void *vrregs, size_t len)
Definition: rs6000-tdep.c:800
std::vector< CORE_ADDR > ppc_deal_with_atomic_sequence(struct regcache *regcache)
Definition: rs6000-tdep.c:1171
int ppc_gp0_regnum
Definition: ppc-tdep.h:227
int ppc_acc_regnum
Definition: ppc-tdep.h:258
struct_return
Definition: arm-tdep.h:88
CORE_ADDR ppc_insn_ds_field(unsigned int insn)
Definition: rs6000-tdep.c:6768
Definition: gdbtypes.h:749
int ppc_dl0_regnum
Definition: ppc-tdep.h:262
void ppc_collect_fpregset(const struct regset *regset, const struct regcache *regcache, int regnum, void *fpregs, size_t len)
Definition: rs6000-tdep.c:726
int(* ppc_syscall_record)(struct regcache *regcache)
Definition: ppc-tdep.h:276
CORE_ADDR ppc_sysv_abi_push_dummy_call(struct gdbarch *gdbarch, struct value *function, struct regcache *regcache, CORE_ADDR bp_addr, int nargs, struct value **args, CORE_ADDR sp, int struct_return, CORE_ADDR struct_addr)
Definition: ppc-sysv-tdep.c:62
int vsx_support_p(struct gdbarch *gdbarch)
int soft_float
Definition: ppc-tdep.h:217
void ppc_supply_vrregset(const struct regset *regset, struct regcache *regcache, int regnum, const void *vrregs, size_t len)
Definition: rs6000-tdep.c:630
int regnum
Definition: aarch64-tdep.c:77
int ppc_insns_match_pattern(struct frame_info *frame, CORE_ADDR pc, struct ppc_insn_pattern *pattern, unsigned int *insns)
Definition: rs6000-tdep.c:6729
Definition: value.c:169
enum return_value_convention ppc_sysv_abi_return_value(struct gdbarch *gdbarch, struct value *function, struct type *valtype, struct regcache *regcache, gdb_byte *readbuf, const gdb_byte *writebuf)
struct type * ppc_builtin_type_vec128
Definition: ppc-tdep.h:274
bfd_byte gdb_byte
Definition: common-types.h:38
int ppc_ctr_regnum
Definition: ppc-tdep.h:232
int ppc_vr0_regnum
Definition: ppc-tdep.h:252
void ppc_collect_vsxregset(const struct regset *regset, const struct regcache *regcache, int regnum, void *vsxregs, size_t len)
Definition: rs6000-tdep.c:766
CORE_ADDR ppc_insn_d_field(unsigned int insn)
Definition: rs6000-tdep.c:6758
int wordsize
Definition: ppc-tdep.h:216
int ppc_ev0_upper_regnum
Definition: ppc-tdep.h:256
int ppc_ps_regnum
Definition: ppc-tdep.h:229
int offset
Definition: agent.c:65
int ppc_xer_regnum
Definition: ppc-tdep.h:233
struct type * ppc_builtin_type_vec64
Definition: ppc-tdep.h:273
int ppc_mq_regnum
Definition: ppc-tdep.h:244
powerpc_elf_abi
Definition: ppc-tdep.h:187
CORE_ADDR ppc64_sysv_abi_push_dummy_call(struct gdbarch *gdbarch, struct value *function, struct regcache *regcache, CORE_ADDR bp_addr, int nargs, struct value **args, CORE_ADDR sp, int struct_return, CORE_ADDR struct_addr)
unsigned int mask
Definition: ppc-tdep.h:327
int altivec_register_p(struct gdbarch *gdbarch, int regno)
Definition: rs6000-tdep.c:174
enum return_value_convention ppc_sysv_abi_broken_return_value(struct gdbarch *gdbarch, struct value *function, struct type *valtype, struct regcache *regcache, gdb_byte *readbuf, const gdb_byte *writebuf)
int spe_register_p(struct gdbarch *gdbarch, int regno)
Definition: rs6000-tdep.c:186
unsigned int data
Definition: ppc-tdep.h:328
void ppc_supply_vsxregset(const struct regset *regset, struct regcache *regcache, int regnum, const void *vsxregs, size_t len)
Definition: rs6000-tdep.c:599
int ppc_floating_point_unit_p(struct gdbarch *gdbarch)
Definition: rs6000-tdep.c:218
int ppc_fp0_regnum
Definition: ppc-tdep.h:240
void ppc_supply_gregset(const struct regset *regset, struct regcache *regcache, int regnum, const void *gregs, size_t len)
Definition: rs6000-tdep.c:511