2000-07-31 22:56:44 +02:00
|
|
|
/* Target-dependent code for GDB, the GNU debugger.
|
|
|
|
Copyright 2000
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
2001-11-01 02:07:35 +01:00
|
|
|
#ifndef PPC_TDEP_H
|
|
|
|
#define PPC_TDEP_H
|
|
|
|
|
2002-05-30 03:21:53 +02:00
|
|
|
#include "osabi.h"
|
|
|
|
|
2001-11-01 02:07:35 +01:00
|
|
|
struct frame_info;
|
|
|
|
struct value;
|
|
|
|
|
2000-07-31 22:56:44 +02:00
|
|
|
/* From ppc-linux-tdep.c... */
|
|
|
|
CORE_ADDR ppc_linux_frame_saved_pc (struct frame_info *fi);
|
|
|
|
void ppc_linux_init_extra_frame_info (int fromleaf, struct frame_info *);
|
|
|
|
int ppc_linux_frameless_function_invocation (struct frame_info *);
|
|
|
|
void ppc_linux_frame_init_saved_regs (struct frame_info *);
|
|
|
|
CORE_ADDR ppc_linux_frame_chain (struct frame_info *);
|
2002-03-22 22:58:16 +01:00
|
|
|
int ppc_sysv_abi_use_struct_convention (int, struct type *);
|
2002-04-29 17:10:06 +02:00
|
|
|
int ppc_sysv_abi_broken_use_struct_convention (int, struct type *);
|
2001-11-01 02:07:35 +01:00
|
|
|
CORE_ADDR ppc_sysv_abi_push_arguments (int, struct value **, CORE_ADDR, int,
|
2000-07-31 22:56:44 +02:00
|
|
|
CORE_ADDR);
|
|
|
|
int ppc_linux_memory_remove_breakpoint (CORE_ADDR addr, char *contents_cache);
|
2001-12-01 01:25:08 +01:00
|
|
|
struct link_map_offsets *ppc_linux_svr4_fetch_link_map_offsets (void);
|
2000-07-31 22:56:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* From rs6000-tdep.c... */
|
|
|
|
CORE_ADDR rs6000_frame_saved_pc (struct frame_info *fi);
|
|
|
|
void rs6000_init_extra_frame_info (int fromleaf, struct frame_info *);
|
|
|
|
int rs6000_frameless_function_invocation (struct frame_info *);
|
|
|
|
void rs6000_frame_init_saved_regs (struct frame_info *);
|
|
|
|
CORE_ADDR rs6000_frame_chain (struct frame_info *);
|
2001-12-30 01:14:50 +01:00
|
|
|
int altivec_register_p (int regno);
|
2000-07-31 22:56:44 +02:00
|
|
|
|
2001-12-09 Elena Zannoni <ezannoni@redhat.com>
* config/rs6000/tm-rs6000.h (STAB_REG_TO_REGNUM): Remove
definition, it is now multiarched.
* ppc-tdep.h (struct gdbarch_tdep): Move from rs6000-tdep.c. Add
fields for special register numbers.
* rs6000-tdep.c (rs6000_gdbarch_init): Initialize new tdep special
regnum fields.
(rs6000_saved_pc_after_call): Use gdbarch_tdep registers fields
instead of hardcoded macros.
(branch_dest, rs6000_pop_frame, rs6000_fix_call_dummy,
ppc_push_return_address, rs6000_frame_saved_pc,
frame_get_saved_regs, rs6000_frame_chain,
rs6000_store_return_value): Ditto.
(rs6000_stab_reg_to_regnum): New function.
* ppcnbsd-nat.c (fetch_inferior_registers,
store_inferior_registers, fetch_core_registers): Ditto.
* ppc-linux-tdep.c (ppc_linux_in_sigtramp,
ppc_linux_frame_init_saved_regs): Ditto.
* ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
fill_gregset): Ditto.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
Ditto.
2001-12-09 22:39:53 +01:00
|
|
|
/* Private data that this module attaches to struct gdbarch. */
|
|
|
|
|
|
|
|
struct gdbarch_tdep
|
|
|
|
{
|
|
|
|
int wordsize; /* size in bytes of fixed-point word */
|
2002-05-30 03:21:53 +02:00
|
|
|
enum gdb_osabi osabi; /* OS / ABI from ELF header */
|
2001-12-09 Elena Zannoni <ezannoni@redhat.com>
* config/rs6000/tm-rs6000.h (STAB_REG_TO_REGNUM): Remove
definition, it is now multiarched.
* ppc-tdep.h (struct gdbarch_tdep): Move from rs6000-tdep.c. Add
fields for special register numbers.
* rs6000-tdep.c (rs6000_gdbarch_init): Initialize new tdep special
regnum fields.
(rs6000_saved_pc_after_call): Use gdbarch_tdep registers fields
instead of hardcoded macros.
(branch_dest, rs6000_pop_frame, rs6000_fix_call_dummy,
ppc_push_return_address, rs6000_frame_saved_pc,
frame_get_saved_regs, rs6000_frame_chain,
rs6000_store_return_value): Ditto.
(rs6000_stab_reg_to_regnum): New function.
* ppcnbsd-nat.c (fetch_inferior_registers,
store_inferior_registers, fetch_core_registers): Ditto.
* ppc-linux-tdep.c (ppc_linux_in_sigtramp,
ppc_linux_frame_init_saved_regs): Ditto.
* ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
fill_gregset): Ditto.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
Ditto.
2001-12-09 22:39:53 +01:00
|
|
|
int *regoff; /* byte offsets in register arrays */
|
|
|
|
const struct reg *regs; /* from current variant */
|
|
|
|
int ppc_gp0_regnum; /* GPR register 0 */
|
|
|
|
int ppc_gplast_regnum; /* GPR register 31 */
|
|
|
|
int ppc_toc_regnum; /* TOC register */
|
|
|
|
int ppc_ps_regnum; /* Processor (or machine) status (%msr) */
|
|
|
|
int ppc_cr_regnum; /* Condition register */
|
|
|
|
int ppc_lr_regnum; /* Link register */
|
|
|
|
int ppc_ctr_regnum; /* Count register */
|
|
|
|
int ppc_xer_regnum; /* Integer exception register */
|
2002-04-11 21:08:56 +02:00
|
|
|
int ppc_fpscr_regnum; /* Floating point status and condition
|
|
|
|
register */
|
2001-12-09 Elena Zannoni <ezannoni@redhat.com>
* config/rs6000/tm-rs6000.h (STAB_REG_TO_REGNUM): Remove
definition, it is now multiarched.
* ppc-tdep.h (struct gdbarch_tdep): Move from rs6000-tdep.c. Add
fields for special register numbers.
* rs6000-tdep.c (rs6000_gdbarch_init): Initialize new tdep special
regnum fields.
(rs6000_saved_pc_after_call): Use gdbarch_tdep registers fields
instead of hardcoded macros.
(branch_dest, rs6000_pop_frame, rs6000_fix_call_dummy,
ppc_push_return_address, rs6000_frame_saved_pc,
frame_get_saved_regs, rs6000_frame_chain,
rs6000_store_return_value): Ditto.
(rs6000_stab_reg_to_regnum): New function.
* ppcnbsd-nat.c (fetch_inferior_registers,
store_inferior_registers, fetch_core_registers): Ditto.
* ppc-linux-tdep.c (ppc_linux_in_sigtramp,
ppc_linux_frame_init_saved_regs): Ditto.
* ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
fill_gregset): Ditto.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
Ditto.
2001-12-09 22:39:53 +01:00
|
|
|
int ppc_mq_regnum; /* Multiply/Divide extension register */
|
2001-12-30 01:14:50 +01:00
|
|
|
int ppc_vr0_regnum; /* First AltiVec register */
|
|
|
|
int ppc_vrsave_regnum; /* Last AltiVec register */
|
2002-04-12 21:48:37 +02:00
|
|
|
int lr_frame_offset; /* Offset to ABI specific location where
|
|
|
|
link register is saved. */
|
2001-12-09 Elena Zannoni <ezannoni@redhat.com>
* config/rs6000/tm-rs6000.h (STAB_REG_TO_REGNUM): Remove
definition, it is now multiarched.
* ppc-tdep.h (struct gdbarch_tdep): Move from rs6000-tdep.c. Add
fields for special register numbers.
* rs6000-tdep.c (rs6000_gdbarch_init): Initialize new tdep special
regnum fields.
(rs6000_saved_pc_after_call): Use gdbarch_tdep registers fields
instead of hardcoded macros.
(branch_dest, rs6000_pop_frame, rs6000_fix_call_dummy,
ppc_push_return_address, rs6000_frame_saved_pc,
frame_get_saved_regs, rs6000_frame_chain,
rs6000_store_return_value): Ditto.
(rs6000_stab_reg_to_regnum): New function.
* ppcnbsd-nat.c (fetch_inferior_registers,
store_inferior_registers, fetch_core_registers): Ditto.
* ppc-linux-tdep.c (ppc_linux_in_sigtramp,
ppc_linux_frame_init_saved_regs): Ditto.
* ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
fill_gregset): Ditto.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
Ditto.
2001-12-09 22:39:53 +01:00
|
|
|
};
|
2001-11-01 02:07:35 +01:00
|
|
|
|
|
|
|
#endif
|