mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
345bd07cce
I would like to be able to use non-trivial types in gdbarch_tdep types. This is not possible at the moment (in theory), because of the one definition rule. To allow it, rename all gdbarch_tdep types to <arch>_gdbarch_tdep, and make them inherit from a gdbarch_tdep base class. The inheritance is necessary to be able to pass pointers to all these <arch>_gdbarch_tdep objects to gdbarch_alloc, which takes a pointer to gdbarch_tdep. These objects are never deleted through a base class pointer, so I didn't include a virtual destructor. In the future, if gdbarch objects deletable, I could imagine that the gdbarch_tdep objects could become owned by the gdbarch objects, and then it would become useful to have a virtual destructor (so that the gdbarch object can delete the owned gdbarch_tdep object). But that's not necessary right now. It turns out that RISC-V already has a gdbarch_tdep that is non-default-constructible, so that provides a good motivation for this change. Most changes are fairly straightforward, mostly needing to add some casts all over the place. There is however the xtensa architecture, doing its own little weird thing to define its gdbarch_tdep. I did my best to adapt it, but I can't test those changes. Change-Id: Ic001903f91ddd106bd6ca09a79dabe8df2d69f3b
113 lines
3.3 KiB
C
113 lines
3.3 KiB
C
/* Target-dependent code for the Motorola 68000 series.
|
||
|
||
Copyright (C) 1990-2021 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 M68K_TDEP_H
|
||
#define M68K_TDEP_H
|
||
|
||
struct frame_info;
|
||
|
||
/* Register numbers of various important registers. */
|
||
|
||
enum m68k_regnum
|
||
{
|
||
M68K_D0_REGNUM = 0,
|
||
M68K_D1_REGNUM = 1,
|
||
M68K_D2_REGNUM = 2,
|
||
M68K_D7_REGNUM = 7,
|
||
M68K_A0_REGNUM = 8,
|
||
M68K_A1_REGNUM = 9,
|
||
M68K_A2_REGNUM = 10,
|
||
M68K_FP_REGNUM = 14, /* Address of executing stack frame. */
|
||
M68K_SP_REGNUM = 15, /* Address of top of stack. */
|
||
M68K_PS_REGNUM = 16, /* Processor status. */
|
||
M68K_PC_REGNUM = 17, /* Program counter. */
|
||
M68K_FP0_REGNUM = 18, /* Floating point register 0. */
|
||
M68K_FPC_REGNUM = 26, /* 68881 control register. */
|
||
M68K_FPS_REGNUM = 27, /* 68881 status register. */
|
||
M68K_FPI_REGNUM = 28
|
||
};
|
||
|
||
/* Number of machine registers. */
|
||
#define M68K_NUM_REGS (M68K_FPI_REGNUM + 1)
|
||
|
||
/* Size of the largest register. */
|
||
#define M68K_MAX_REGISTER_SIZE 12
|
||
|
||
/* Convention for returning structures. */
|
||
|
||
enum struct_return
|
||
{
|
||
pcc_struct_return, /* Return "short" structures in memory. */
|
||
reg_struct_return /* Return "short" structures in registers. */
|
||
};
|
||
|
||
/* Particular flavour of m68k. */
|
||
enum m68k_flavour
|
||
{
|
||
m68k_no_flavour,
|
||
m68k_coldfire_flavour,
|
||
m68k_fido_flavour
|
||
};
|
||
|
||
/* Target-dependent structure in gdbarch. */
|
||
|
||
struct m68k_gdbarch_tdep : gdbarch_tdep
|
||
{
|
||
/* Offset to PC value in the jump buffer. If this is negative,
|
||
longjmp support will be disabled. */
|
||
int jb_pc = 0;
|
||
/* The size of each entry in the jump buffer. */
|
||
size_t jb_elt_size = 0;
|
||
|
||
/* Register in which the address to store a structure value is
|
||
passed to a function. */
|
||
int struct_value_regnum = 0;
|
||
|
||
/* Register in which a pointer value is returned. In the SVR4 ABI,
|
||
this is %a0, but in GCC's "embedded" ABI, this is %d0. */
|
||
int pointer_result_regnum = 0;
|
||
|
||
/* Convention for returning structures. */
|
||
enum struct_return struct_return {};
|
||
|
||
/* Convention for returning floats. zero in int regs, non-zero in float. */
|
||
int float_return = 0;
|
||
|
||
/* The particular flavour of m68k. */
|
||
enum m68k_flavour flavour {};
|
||
|
||
/* Flag set if the floating point registers are present, or assumed
|
||
to be present. */
|
||
int fpregs_present = 0;
|
||
|
||
/* ISA-specific data types. */
|
||
struct type *m68k_ps_type = nullptr;
|
||
struct type *m68881_ext_type = nullptr;
|
||
};
|
||
|
||
/* Initialize a SVR4 architecture variant. */
|
||
extern void m68k_svr4_init_abi (struct gdbarch_info, struct gdbarch *);
|
||
|
||
|
||
/* Functions exported from m68k-bsd-tdep.c. */
|
||
|
||
extern int m68kbsd_fpreg_offset (struct gdbarch *gdbarch, int regnum);
|
||
|
||
#endif /* m68k-tdep.h */
|