2004-04-03 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ppc-tdep.h
CommitLineData
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 26struct gdbarch;
3a1c5313
AC
27struct frame_info;
28struct value;
4a4b3fed 29struct regcache;
221c12ff 30struct type;
3a1c5313 31
9aa1e687 32/* From ppc-linux-tdep.c... */
05580c65
AC
33enum 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
38enum 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
AC
43CORE_ADDR ppc_sysv_abi_push_dummy_call (struct gdbarch *gdbarch,
44 CORE_ADDR func_addr,
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
AC
50CORE_ADDR ppc64_sysv_abi_push_dummy_call (struct gdbarch *gdbarch,
51 CORE_ADDR func_addr,
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
57CORE_ADDR ppc64_sysv_abi_adjust_breakpoint_address (struct gdbarch *gdbarch,
58 CORE_ADDR bpaddr);
9aa1e687 59int ppc_linux_memory_remove_breakpoint (CORE_ADDR addr, char *contents_cache);
6ded7999 60struct link_map_offsets *ppc_linux_svr4_fetch_link_map_offsets (void);
f9be684a
AC
61void ppc_linux_supply_gregset (struct regcache *regcache,
62 int regnum, const void *gregs, size_t size,
63 int wordsize);
64void 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
68enum 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 75int altivec_register_p (int regno);
9aa1e687 76
0a613259
AC
77
78/* Return non-zero when the architecture has an FPU (or at least when
79 the ABI is using the FPU). */
80int ppc_floating_point_unit_p (struct gdbarch *gdbarch);
81
2188cbdd
EZ
82/* Private data that this module attaches to struct gdbarch. */
83
84struct gdbarch_tdep
85 {
86 int wordsize; /* size in bytes of fixed-point word */
2188cbdd
EZ
87 int *regoff; /* byte offsets in register arrays */
88 const struct reg *regs; /* from current variant */
89 int ppc_gp0_regnum; /* GPR register 0 */
90 int ppc_gplast_regnum; /* GPR register 31 */
91 int ppc_toc_regnum; /* TOC register */
92 int ppc_ps_regnum; /* Processor (or machine) status (%msr) */
93 int ppc_cr_regnum; /* Condition register */
94 int ppc_lr_regnum; /* Link register */
95 int ppc_ctr_regnum; /* Count register */
96 int ppc_xer_regnum; /* Integer exception register */
e3f36dbd
KB
97 int ppc_fpscr_regnum; /* Floating point status and condition
98 register */
2188cbdd 99 int ppc_mq_regnum; /* Multiply/Divide extension register */
1fcc0bb8
EZ
100 int ppc_vr0_regnum; /* First AltiVec register */
101 int ppc_vrsave_regnum; /* Last AltiVec register */
c8001721
EZ
102 int ppc_ev0_regnum; /* First ev register */
103 int ppc_ev31_regnum; /* Last ev register */
a88376a3
KB
104 int lr_frame_offset; /* Offset to ABI specific location where
105 link register is saved. */
2188cbdd 106};
3a1c5313
AC
107
108#endif
This page took 0.600627 seconds and 4 git commands to generate.