f4d9badee6
* features/Makefile: Allow sub-platform specific expedite settings. (WHICH): Add rs6000/powerpc-cell32l and rs6000/powerpc-cell64l. (rs6000/powerpc-cell32l-expedite): Define. (rs6000/powerpc-cell64l-expedite): Likewise. * features/rs6000/powerpc-cell32l.xml: New file. * features/rs6000/powerpc-cell64l.xml: New file. * features/rs6000/powerpc-cell32l.c: New generated file. * features/rs6000/powerpc-cell64l.c: New generated file. * regformats/rs6000/powerpc-cell32l.dat: New generated file. * regformats/rs6000/powerpc-cell64l.dat: New generated file. * config/djgpp/fnchange.lst: Add mappings for new files. * ppc-linux-tdep.h (tdesc_powerpc_cell32l): Add prototype. (tdesc_powerpc_cell64l): Likewise. * ppc-linux-tdep.c: Include "features/rs6000/powerpc-cell32l.c" and "features/rs6000/powerpc-cell64l.c". (_initialize_ppc_linux_tdep): Initialize target descriptions. (ppc_linux_spu_section): New function. (ppc_linux_core_read_description): Detect Cell/B.E. core files. * ppc-linux-nat.c (PPC_FEATURE_CELL): Define. (ppc_linux_read_description): Detect Cell/B.E. architecture. * rs6000-tdep.c (rs6000_gdbarch_init): Do not trust BFD wordsize if exec file is not PowerPC architecture. gdbserver/ChangeLog: * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml and rs6000/powerpc-cell64l.xml to srv_xmlfiles. * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules. (powerpc-cell64l.o, powerpc-cell64l.c): Likewise. (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c. * linux-ppc-low.c (PPC_FEATURE_CELL): Define. (init_registers_powerpc_cell32l): Add prototype. (init_registers_powerpc_cell64l): Likewise. (ppc_arch_setup): Detect Cell/B.E. architecture.
59 lines
2.2 KiB
C
59 lines
2.2 KiB
C
/* Target-dependent code for GDB, the GNU debugger.
|
|
|
|
Copyright (C) 2008, 2009 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 3 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, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef PPC_LINUX_TDEP_H
|
|
#define PPC_LINUX_TDEP_H
|
|
|
|
struct regset;
|
|
|
|
/* From ppc-linux-tdep.c ... */
|
|
const struct regset *ppc_linux_gregset (int);
|
|
const struct regset *ppc_linux_fpregset (void);
|
|
|
|
/* Extra register number constants. The Linux kernel stores a
|
|
"trap" code and the original value of r3 into special "registers";
|
|
these need to be saved and restored when performing an inferior
|
|
call while the inferior was interrupted within a system call. */
|
|
enum {
|
|
PPC_ORIG_R3_REGNUM = PPC_NUM_REGS,
|
|
PPC_TRAP_REGNUM,
|
|
};
|
|
|
|
/* Return 1 if PPC_ORIG_R3_REGNUM and PPC_TRAP_REGNUM are usable. */
|
|
int ppc_linux_trap_reg_p (struct gdbarch *gdbarch);
|
|
|
|
/* Linux target descriptions. */
|
|
extern struct target_desc *tdesc_powerpc_32l;
|
|
extern struct target_desc *tdesc_powerpc_altivec32l;
|
|
extern struct target_desc *tdesc_powerpc_cell32l;
|
|
extern struct target_desc *tdesc_powerpc_vsx32l;
|
|
extern struct target_desc *tdesc_powerpc_isa205_32l;
|
|
extern struct target_desc *tdesc_powerpc_isa205_altivec32l;
|
|
extern struct target_desc *tdesc_powerpc_isa205_vsx32l;
|
|
extern struct target_desc *tdesc_powerpc_e500l;
|
|
extern struct target_desc *tdesc_powerpc_64l;
|
|
extern struct target_desc *tdesc_powerpc_altivec64l;
|
|
extern struct target_desc *tdesc_powerpc_cell64l;
|
|
extern struct target_desc *tdesc_powerpc_vsx64l;
|
|
extern struct target_desc *tdesc_powerpc_isa205_64l;
|
|
extern struct target_desc *tdesc_powerpc_isa205_altivec64l;
|
|
extern struct target_desc *tdesc_powerpc_isa205_vsx64l;
|
|
|
|
#endif /* PPC_LINUX_TDEP_H */
|