3acba33923
Replace DEPRECATED_REGISTER_RAW_SIZE with register_size. * rs6000-tdep.c (rs6000_push_dummy_call) (rs6000_extract_return_value): Use register_size. * xstormy16-tdep.c (xstormy16_get_saved_register) (xstormy16_extract_return_value): Ditto. * valops.c (value_assign): Ditto. * v850ice.c (v850ice_fetch_registers, v850ice_store_registers): * v850-tdep.c (v850_extract_return_value): Ditto. * tracepoint.c (collect_symbol): Ditto. * target.c (debug_print_register): Ditto. * stack.c (frame_info): Ditto. * rs6000-nat.c (ARCH64, fetch_register, store_register): Ditto. * rom68k-rom.c (rom68k_supply_one_register): Ditto. * remote.c (struct packet_reg, remote_wait, remote_async_wait) (store_register_using_P): Ditto. * remote-vxmips.c (vx_read_register, vx_write_register): Ditto. * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Ditto. * remote-mips.c (mips_wait, mips_fetch_registers): Ditto. * remote-e7000.c (fetch_regs_from_dump, sub2_from_pc): Ditto. * regcache.c (deprecated_read_register_bytes) (deprecated_write_register_bytes, read_register) (write_register): Ditto. * ppc-linux-nat.c (fetch_altivec_register, fetch_register) (supply_vrregset, store_altivec_register, fill_vrregset): Ditto. * monitor.c (monitor_supply_register, monitor_fetch_register) (monitor_store_register): Ditto. * mn10300-tdep.c (mn10300_pop_frame_regular) (mn10300_print_register): Ditto. * mipsv4-nat.c (fill_fpregset): Ditto. * mips-linux-tdep.c (supply_32bit_reg, fill_fpregset) (mips64_fill_fpregset): Ditto. * mi/mi-main.c (register_changed_p, get_register) (mi_cmd_data_write_register_values): Ditto. * lynx-nat.c (fetch_inferior_registers, store_inferior_registers): * irix5-nat.c (fill_gregset, fetch_core_registers): * infrun.c (write_inferior_status_register): Ditto. * infptrace.c (fetch_register, store_register): Ditto. * infcmd.c (default_print_registers_info): Ditto. * ia64-linux-nat.c (COPY_REG, fill_fpregset): Ditto. * ia64-aix-nat.c (COPY_REG, fill_gregset): Ditto. * i386gnu-nat.c (gnu_store_registers, fill): Ditto. * hpux-thread.c (hpux_thread_fetch_registers) (hpux_thread_store_registers): Ditto. * hppah-nat.c (store_inferior_registers, fetch_register): * findvar.c (value_from_register): Ditto. * dve3900-rom.c (fetch_bitmapped_register): * cris-tdep.c (cris_gdbarch_init): Ditto. * alpha-tdep.h: Ditto. * aix-thread.c (pd_enable, fill_sprs64, fill_sprs32): Ditto.
116 lines
5.0 KiB
C
116 lines
5.0 KiB
C
/* Common target dependent code for GDB on Alpha systems.
|
|
Copyright 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2002, 2003 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. */
|
|
|
|
#ifndef ALPHA_TDEP_H
|
|
#define ALPHA_TDEP_H
|
|
|
|
/* Say how long (ordinary) registers are. This is a piece of bogosity
|
|
used in push_word and a few other places; register_size() is the
|
|
real way to know how big a register is. */
|
|
#define ALPHA_REGISTER_SIZE 8
|
|
|
|
/* Number of machine registers. */
|
|
#define ALPHA_NUM_REGS 67
|
|
|
|
/* Total amount of space needed to store our copies of the machine's
|
|
register state. */
|
|
#define ALPHA_REGISTER_BYTES (ALPHA_NUM_REGS * 8)
|
|
|
|
/* Register numbers of various important registers. Note that most of
|
|
these values are "real" register numbers, and correspond to the
|
|
general registers of the machine. */
|
|
|
|
#define ALPHA_V0_REGNUM 0 /* Function integer return value */
|
|
#define ALPHA_T7_REGNUM 8 /* Return address register for OSF/1 __add* */
|
|
#define ALPHA_GCC_FP_REGNUM 15 /* Used by gcc as frame register */
|
|
#define ALPHA_A0_REGNUM 16 /* Loc of first arg during a subr call */
|
|
#define ALPHA_T9_REGNUM 23 /* Return address register for OSF/1 __div* */
|
|
#define ALPHA_RA_REGNUM 26 /* Contains return address value */
|
|
#define ALPHA_T12_REGNUM 27 /* Contains start addr of current proc */
|
|
#define ALPHA_GP_REGNUM 29 /* Contains the global pointer */
|
|
#define ALPHA_SP_REGNUM 30 /* Contains address of top of stack */
|
|
#define ALPHA_ZERO_REGNUM 31 /* Read-only register, always 0 */
|
|
#define ALPHA_FP0_REGNUM 32 /* Floating point register 0 */
|
|
#define ALPHA_FPA0_REGNUM 48 /* First float arg during a subr call */
|
|
#define ALPHA_FPCR_REGNUM 63 /* Floating point control register */
|
|
#define ALPHA_PC_REGNUM 64 /* Contains program counter */
|
|
#define ALPHA_UNIQUE_REGNUM 66 /* PAL_rduniq value */
|
|
|
|
/* The alpha has two different virtual pointers for arguments and locals.
|
|
|
|
The virtual argument pointer is pointing to the bottom of the argument
|
|
transfer area, which is located immediately below the virtual frame
|
|
pointer. Its size is fixed for the native compiler, it is either zero
|
|
(for the no arguments case) or large enough to hold all argument registers.
|
|
gcc uses a variable sized argument transfer area. As it has
|
|
to stay compatible with the native debugging tools it has to use the same
|
|
virtual argument pointer and adjust the argument offsets accordingly.
|
|
|
|
The virtual local pointer is localoff bytes below the virtual frame
|
|
pointer, the value of localoff is obtained from the PDR. */
|
|
#define ALPHA_NUM_ARG_REGS 6
|
|
|
|
/* Target-dependent structure in gdbarch. */
|
|
struct gdbarch_tdep
|
|
{
|
|
CORE_ADDR vm_min_address; /* Used by alpha_heuristic_proc_start. */
|
|
|
|
/* If PC is inside a dynamically-generated signal trampoline function
|
|
(i.e. one copied onto the user stack at run-time), return how many
|
|
bytes PC is beyond the start of that function. Otherwise, return -1. */
|
|
LONGEST (*dynamic_sigtramp_offset) (CORE_ADDR);
|
|
|
|
/* Translate a signal handler stack base address into the address of
|
|
the sigcontext structure for that signal handler. */
|
|
CORE_ADDR (*sigcontext_addr) (struct frame_info *);
|
|
|
|
/* Does the PC fall in a signal trampoline. */
|
|
/* NOTE: cagney/2004-04-30: Do not copy/clone this code. Instead
|
|
look at tramp-frame.h and other simplier per-architecture
|
|
sigtramp unwinders. */
|
|
int (*pc_in_sigtramp) (CORE_ADDR pc, char *name);
|
|
|
|
/* Offset of registers in `struct sigcontext'. */
|
|
int sc_pc_offset;
|
|
int sc_regs_offset;
|
|
int sc_fpregs_offset;
|
|
|
|
int jb_pc; /* Offset to PC value in jump buffer.
|
|
If htis is negative, longjmp support
|
|
will be disabled. */
|
|
size_t jb_elt_size; /* And the size of each entry in the buf. */
|
|
};
|
|
|
|
extern unsigned int alpha_read_insn (CORE_ADDR pc);
|
|
extern void alpha_software_single_step (enum target_signal, int);
|
|
extern CORE_ADDR alpha_after_prologue (CORE_ADDR pc);
|
|
|
|
extern void alpha_mdebug_init_abi (struct gdbarch_info, struct gdbarch *);
|
|
extern void alpha_dwarf2_init_abi (struct gdbarch_info, struct gdbarch *);
|
|
|
|
extern void alpha_supply_int_regs (int, const void *, const void *,
|
|
const void *);
|
|
extern void alpha_fill_int_regs (int, void *, void *, void *);
|
|
extern void alpha_supply_fp_regs (int, const void *, const void *);
|
|
extern void alpha_fill_fp_regs (int, void *, void *);
|
|
|
|
#endif /* ALPHA_TDEP_H */
|