mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-12 22:46:16 +00:00
d2427a719b
(alpha_linux_sigtramp_offset): Use it. Make static. (alpha_linux_sigcontext_addr): Handle __NR_rt_sigreturn; update for new frame model. * alpha-mdebug-tdep.c: New file. * alpha-osf1-tdep.c (alpha_call_dummy_address): Move from alpha-tdep.c. (alpha_osf1_init_abi): Install it. * alpha-tdep.c (PROC_*): Move to alpha-mdebug-tdep.c. (linked_proc_desc_table): Remove. (alpha_frame_past_sigtramp_frame): Remove. (alpha_dynamic_sigtramp_offset): Remove. (ALPHA_PROC_SIGTRAMP_MAGIC): Remove. (alpha_proc_desc_is_dyn_sigtramp): Remove. (alpha_set_proc_desc_is_dyn_sigtramp): Remove. (push_sigtramp_desc): Remove. (alpha_cannot_fetch_register): Use ALPHA_FP_REGNUM. (alpha_cannot_store_register): Likewise. (alpha_sigcontext_addr): Remove. (alpha_find_saved_regs): Remove. (alpha_frame_init_saved_regs): Remove. (alpha_init_frame_pc_first): Remove. (read_next_frame_reg): Remove. (alpha_frame_saved_pc): Remove. (alpha_saved_pc_after_call): Remove. (temp_proc_desc, temp_saved_regs): Remove. (alpha_about_to_return): Remove. (cached_proc_desc): Remove. (alpha_frame_chain): Remove. (alpha_print_extra_frame_info): Remove. (alpha_init_extra_frame_info): Remove. (alpha_frame_locals_address): Remove. (alpha_frame_args_address): Remove. (alpha_push_arguments): Use ALPHA_REGISTER_BYTES not sizeof CORE_ADDR. (alpha_push_dummy_frame): Remove. (alpha_pop_frame): Remove. (alpha_after_prologue): Rename from after_prologue; remove mdebug bits. (alpha_read_insn): New. (alpha_skip_prologue): Merge alpha_skip_prologue_internal; adjust for different insn encodings. (alpha_in_lenient_prologue): Remove. (struct alpha_sigtramp_unwind_cache): New. (alpha_sigtramp_frame_unwind_cache): New. (alpha_sigtramp_register_address): New. (alpha_sigtramp_frame_this_id): New. (alpha_sigtramp_frame_prev_register): New. (alpha_sigtramp_frame_unwind): New. (alpha_sigtramp_frame_p): New. (struct alpha_heuristic_unwind_cache): New. (alpha_heuristic_proc_start): Rename from heuristic_proc_start; don't count nop insns that occur between functions. (alpha_heuristic_frame_unwind_cache): New; incorporate much of heuristic_proc_desc, but without the mdebug wrapping. (alpha_heuristic_frame_this_id): New. (alpha_heuristic_frame_prev_register): New. (alpha_heuristic_frame_unwind): New. (alpha_heuristic_frame_p): New. (alpha_heuristic_frame_base_address): New. (alpha_heuristic_frame_base): New. (alpha_unwind_dummy_id): New. (alpha_unwind_pc): New. (alpha_gdbarch_init): Don't set skip_sigtramp_frame. Kill use of frame related deprecated initializations; install replacements. (alpha_dump_tdep): Remove. * alpha-tdep.h (struct gdbarch_tdep): Remove skip_sigtramp_frame. (alpha_read_insn, alpha_after_prologue, alpha_heuristic_frame_unwind_cache, alpha_heuristic_frame_this_id, alpha_heuristic_frame_prev_register, alpha_heuristic_frame_base_address, alpha_mdebug_init_abi): Declare. * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-mdebug-tdep.o. * config/alpha/tm-alpha.h (PRINT_EXTRA_FRAME_INFO): Remove. * config/alpha/tm-alphalinux.h (SIGTRAMP_START, SIGTRAMP_END): Remove.
82 lines
3.1 KiB
C
82 lines
3.1 KiB
C
/* Definitions to make GDB run on an Alpha box under OSF1. This is
|
|
also used by the Alpha/Netware and Alpha GNU/Linux targets.
|
|
|
|
Copyright 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2002 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 TM_ALPHA_H
|
|
#define TM_ALPHA_H
|
|
|
|
#define GDB_MULTI_ARCH GDB_MULTI_ARCH_PARTIAL
|
|
|
|
#include "bfd.h"
|
|
#include "coff/sym.h" /* Needed for PDR below. */
|
|
#include "coff/symconst.h"
|
|
|
|
struct frame_info;
|
|
struct symbol;
|
|
|
|
/* Number of traps that happen between exec'ing the shell
|
|
to run an inferior, and when we finally get to
|
|
the inferior code. This is 2 on most implementations. */
|
|
#define START_INFERIOR_TRAPS_EXPECTED 3
|
|
|
|
/* Special symbol found in blocks associated with routines. We can hang
|
|
alpha_extra_func_info_t's off of this. */
|
|
|
|
#define MIPS_EFI_SYMBOL_NAME "__GDB_EFI_INFO__"
|
|
extern void ecoff_relocate_efi (struct symbol *, CORE_ADDR);
|
|
|
|
#define RA_REGNUM 26 /* XXXJRT needed by mdebugread.c */
|
|
|
|
/* Specific information about a procedure.
|
|
This overlays the ALPHA's PDR records,
|
|
alpharead.c (ab)uses this to save memory */
|
|
|
|
typedef struct alpha_extra_func_info
|
|
{
|
|
long numargs; /* number of args to procedure (was iopt) */
|
|
PDR pdr; /* Procedure descriptor record */
|
|
}
|
|
*alpha_extra_func_info_t;
|
|
|
|
/* Define the extra_func_info that mipsread.c needs.
|
|
FIXME: We should define our own PDR interface, perhaps in a separate
|
|
header file. This would get rid of the <bfd.h> inclusion in all sources
|
|
and would abstract the mips/alpha interface from ecoff. */
|
|
#define mips_extra_func_info alpha_extra_func_info
|
|
#define mips_extra_func_info_t alpha_extra_func_info_t
|
|
|
|
/* It takes two values to specify a frame on the ALPHA. Sigh.
|
|
|
|
In fact, at the moment, the *PC* is the primary value that sets up
|
|
a frame. The PC is looked up to see what function it's in; symbol
|
|
information from that function tells us which register is the frame
|
|
pointer base, and what offset from there is the "virtual frame pointer".
|
|
(This is usually an offset from SP.) FIXME -- this should be cleaned
|
|
up so that the primary value is the SP, and the PC is used to disambiguate
|
|
multiple functions with the same SP that are at different stack levels. */
|
|
|
|
#define SETUP_ARBITRARY_FRAME(argc, argv) \
|
|
alpha_setup_arbitrary_frame (argc, argv)
|
|
extern struct frame_info *alpha_setup_arbitrary_frame (int, CORE_ADDR *);
|
|
|
|
#endif /* TM_ALPHA_H */
|