691c0433df
* mips-tdep.h (deprecated_mips_set_processor_regs_hack): Declare. * remote-mips.c (common_open): Instead of "mips_read_register_type" and "mips_set_processor_type_command" call "deprecated_mips_set_processor_regs_hack". * config/mips/tm-mips.h (mips_read_processor_type): Delete declaration. (mips_set_processor_type_command): Delete declaration. * mips-tdep.c (mips_gdbarch_init): Update comment. (mips_dump_tdep): Do not print MIPS_REGISTER_NAMES. (mips_set_processor_type): Delete function. (NUM_MIPS_PROCESSOR_REGS): Define. (mips_show_processor_type_command): Delete function. (mips_set_processor_type_command): Delete function. (tmp_mips_processor_type): Delete. (mips_processor_type): Delete. (mips_processor_type_table): Delete. (mips_r3051_reg_names): Delete. (mips_r3081_reg_names): Delete. (mips_lsi33k_reg_names): Delete. (mips_processor_reg_names): Delete. (mips_read_processor_type): Delete function. (deprecated_mips_set_processor_regs_hack): New function. (struct gdbarch_tdep): Add member "mips_processor_reg_names". (mips_register_name): Get the processor names from the tdep. (mips_tx39_reg_names): New array. (mips_generic_reg_names): Wire to a standard set of names. (mips_gdbarch_init): Set "mips_processor_reg_names". * config/mips/tm-irix5.h (MIPS_REGISTER_NAMES): Delete macro. * config/mips/tm-mips.h (MIPS_REGISTER_NAMES): Delete macro. * config/mips/tm-tx39.h (MIPS_REGISTER_NAMES): Delete macro.
47 lines
2 KiB
C
47 lines
2 KiB
C
/* Target machine description for SGI Iris under Irix 5, for GDB.
|
|
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1998, 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. */
|
|
|
|
#include "mips/tm-mips.h"
|
|
|
|
/* Offsets for register values in _sigtramp frame.
|
|
sigcontext is immediately above the _sigtramp frame on Irix. */
|
|
#define SIGFRAME_BASE 0x0
|
|
#define SIGFRAME_PC_OFF (SIGFRAME_BASE + 2 * 4)
|
|
#define SIGFRAME_REGSAVE_OFF (SIGFRAME_BASE + 3 * 4)
|
|
#define SIGFRAME_FPREGSAVE_OFF (SIGFRAME_BASE + 3 * 4 + 32 * 4 + 4)
|
|
|
|
/* The signal handler trampoline is called _sigtramp. */
|
|
#undef IN_SIGTRAMP
|
|
#define IN_SIGTRAMP(pc, name) ((name) && STREQ ("_sigtramp", name))
|
|
|
|
/* Irix 5 saves a full 64 bits for each register. We skip 2 * 4 to
|
|
get to the saved PC (the register mask and status register are both
|
|
32 bits) and then another 4 to get to the lower 32 bits. We skip
|
|
the same 4 bytes, plus the 8 bytes for the PC to get to the
|
|
registers, and add another 4 to get to the lower 32 bits. We skip
|
|
8 bytes per register. */
|
|
#undef SIGFRAME_PC_OFF
|
|
#define SIGFRAME_PC_OFF (SIGFRAME_BASE + 2 * 4 + 4)
|
|
#undef SIGFRAME_REGSAVE_OFF
|
|
#define SIGFRAME_REGSAVE_OFF (SIGFRAME_BASE + 2 * 4 + 8 + 4)
|
|
#undef SIGFRAME_FPREGSAVE_OFF
|
|
#define SIGFRAME_FPREGSAVE_OFF (SIGFRAME_BASE + 2 * 4 + 8 + 32 * 8 + 4)
|
|
#define SIGFRAME_REG_SIZE 8
|