X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Falpha-tdep.h;h=894d7d3dd768a4190715431c5f8dfe28957628d1;hb=4b4477b52eee60ddadd59c36ffd778bbd9ab1c07;hp=87aaf8445a5406922e25d01884815be5c7971a08;hpb=390c15228a6b8663389bed8206e1b6e0f5434194;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/alpha-tdep.h b/gdb/alpha-tdep.h index 87aaf8445a..894d7d3dd7 100644 --- a/gdb/alpha-tdep.h +++ b/gdb/alpha-tdep.h @@ -1,12 +1,11 @@ /* Common target dependent code for GDB on Alpha systems. - Copyright (C) 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2002, 2003, 2007 - Free Software Foundation, Inc. + Copyright (C) 1993-2019 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 + 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, @@ -15,9 +14,7 @@ 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., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ #ifndef ALPHA_TDEP_H #define ALPHA_TDEP_H @@ -32,10 +29,6 @@ struct regcache; /* 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. */ @@ -64,9 +57,9 @@ struct regcache; 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 + 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 + 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. @@ -82,7 +75,7 @@ struct gdbarch_tdep /* 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); + LONGEST (*dynamic_sigtramp_offset) (struct gdbarch *, CORE_ADDR); /* Translate a signal handler stack base address into the address of the sigcontext structure for that signal handler. */ @@ -90,9 +83,10 @@ struct gdbarch_tdep /* 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 + look at tramp-frame.h and other simpler per-architecture sigtramp unwinders. */ - int (*pc_in_sigtramp) (CORE_ADDR pc, char *name); + int (*pc_in_sigtramp) (struct gdbarch *gdbarch, CORE_ADDR pc, + const char *name); /* If TYPE will be returned in memory, return true. */ int (*return_in_memory) (struct type *type); @@ -105,11 +99,12 @@ struct gdbarch_tdep 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. */ + size_t jb_elt_size; /* And the size of each entry in the buf. */ }; -extern unsigned int alpha_read_insn (CORE_ADDR pc); -extern int alpha_software_single_step (struct regcache *regcache); +extern unsigned int alpha_read_insn (struct gdbarch *gdbarch, CORE_ADDR pc); +extern std::vector alpha_software_single_step + (struct regcache *regcache); extern CORE_ADDR alpha_after_prologue (CORE_ADDR pc); extern void alpha_mdebug_init_abi (struct gdbarch_info, struct gdbarch *);