* config/djgpp/fnchange.lst: Add translations for cpu-microblaze.c,
elf32-microblaze.c, microblaze-rom.c, microblaze-linux-tdep.c,
microblaze-tdep.h, microblaze-tdep.c, microblaze-opc.h,
microblaze-opcm.h, microblaze-dis.c, microblaze-dis.h, sim/microblaze,
microblaze.h, and microblaze.isa.
* configure.tgt: Add targets microblaze*-linux-*, microblaze*-xilinx-*.
* Makefile.in: Build microblaze-tdep.o, microblaze-linux-tdep.o.
HFILES_NO_SRCDIR: Add microblaze-tdep.h.
* microblaze-linux-tdep.c: New.
* microblaze-tdep.c: New.
* microblaze-tdep.h: New.
* NEWS: Announce Xilinx MicroBlaze support.
2009-10-15 19:28:52 +00:00
|
|
|
/* Target-dependent code for Xilinx MicroBlaze.
|
|
|
|
|
2022-01-01 18:56:03 +04:00
|
|
|
Copyright (C) 2009-2022 Free Software Foundation, Inc.
|
* config/djgpp/fnchange.lst: Add translations for cpu-microblaze.c,
elf32-microblaze.c, microblaze-rom.c, microblaze-linux-tdep.c,
microblaze-tdep.h, microblaze-tdep.c, microblaze-opc.h,
microblaze-opcm.h, microblaze-dis.c, microblaze-dis.h, sim/microblaze,
microblaze.h, and microblaze.isa.
* configure.tgt: Add targets microblaze*-linux-*, microblaze*-xilinx-*.
* Makefile.in: Build microblaze-tdep.o, microblaze-linux-tdep.o.
HFILES_NO_SRCDIR: Add microblaze-tdep.h.
* microblaze-linux-tdep.c: New.
* microblaze-tdep.c: New.
* microblaze-tdep.h: New.
* NEWS: Announce Xilinx MicroBlaze support.
2009-10-15 19:28:52 +00:00
|
|
|
|
|
|
|
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 MICROBLAZE_TDEP_H
|
|
|
|
#define MICROBLAZE_TDEP_H 1
|
|
|
|
|
2021-11-17 12:13:47 -05:00
|
|
|
#include "gdbarch.h"
|
* config/djgpp/fnchange.lst: Add translations for cpu-microblaze.c,
elf32-microblaze.c, microblaze-rom.c, microblaze-linux-tdep.c,
microblaze-tdep.h, microblaze-tdep.c, microblaze-opc.h,
microblaze-opcm.h, microblaze-dis.c, microblaze-dis.h, sim/microblaze,
microblaze.h, and microblaze.isa.
* configure.tgt: Add targets microblaze*-linux-*, microblaze*-xilinx-*.
* Makefile.in: Build microblaze-tdep.o, microblaze-linux-tdep.o.
HFILES_NO_SRCDIR: Add microblaze-tdep.h.
* microblaze-linux-tdep.c: New.
* microblaze-tdep.c: New.
* microblaze-tdep.h: New.
* NEWS: Announce Xilinx MicroBlaze support.
2009-10-15 19:28:52 +00:00
|
|
|
|
|
|
|
/* Microblaze architecture-specific information. */
|
gdb: fix gdbarch_tdep ODR violation
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
2021-11-15 11:29:39 -05:00
|
|
|
struct microblaze_gdbarch_tdep : gdbarch_tdep
|
* config/djgpp/fnchange.lst: Add translations for cpu-microblaze.c,
elf32-microblaze.c, microblaze-rom.c, microblaze-linux-tdep.c,
microblaze-tdep.h, microblaze-tdep.c, microblaze-opc.h,
microblaze-opcm.h, microblaze-dis.c, microblaze-dis.h, sim/microblaze,
microblaze.h, and microblaze.isa.
* configure.tgt: Add targets microblaze*-linux-*, microblaze*-xilinx-*.
* Makefile.in: Build microblaze-tdep.o, microblaze-linux-tdep.o.
HFILES_NO_SRCDIR: Add microblaze-tdep.h.
* microblaze-linux-tdep.c: New.
* microblaze-tdep.c: New.
* microblaze-tdep.h: New.
* NEWS: Announce Xilinx MicroBlaze support.
2009-10-15 19:28:52 +00:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Register numbers. */
|
2014-07-19 17:47:52 -07:00
|
|
|
enum microblaze_regnum
|
* config/djgpp/fnchange.lst: Add translations for cpu-microblaze.c,
elf32-microblaze.c, microblaze-rom.c, microblaze-linux-tdep.c,
microblaze-tdep.h, microblaze-tdep.c, microblaze-opc.h,
microblaze-opcm.h, microblaze-dis.c, microblaze-dis.h, sim/microblaze,
microblaze.h, and microblaze.isa.
* configure.tgt: Add targets microblaze*-linux-*, microblaze*-xilinx-*.
* Makefile.in: Build microblaze-tdep.o, microblaze-linux-tdep.o.
HFILES_NO_SRCDIR: Add microblaze-tdep.h.
* microblaze-linux-tdep.c: New.
* microblaze-tdep.c: New.
* microblaze-tdep.h: New.
* NEWS: Announce Xilinx MicroBlaze support.
2009-10-15 19:28:52 +00:00
|
|
|
{
|
|
|
|
MICROBLAZE_R0_REGNUM,
|
|
|
|
MICROBLAZE_R1_REGNUM, MICROBLAZE_SP_REGNUM = MICROBLAZE_R1_REGNUM,
|
|
|
|
MICROBLAZE_R2_REGNUM,
|
|
|
|
MICROBLAZE_R3_REGNUM, MICROBLAZE_RETVAL_REGNUM = MICROBLAZE_R3_REGNUM,
|
|
|
|
MICROBLAZE_R4_REGNUM,
|
|
|
|
MICROBLAZE_R5_REGNUM, MICROBLAZE_FIRST_ARGREG = MICROBLAZE_R5_REGNUM,
|
|
|
|
MICROBLAZE_R6_REGNUM,
|
|
|
|
MICROBLAZE_R7_REGNUM,
|
|
|
|
MICROBLAZE_R8_REGNUM,
|
|
|
|
MICROBLAZE_R9_REGNUM,
|
|
|
|
MICROBLAZE_R10_REGNUM, MICROBLAZE_LAST_ARGREG = MICROBLAZE_R10_REGNUM,
|
|
|
|
MICROBLAZE_R11_REGNUM,
|
|
|
|
MICROBLAZE_R12_REGNUM,
|
|
|
|
MICROBLAZE_R13_REGNUM,
|
|
|
|
MICROBLAZE_R14_REGNUM,
|
|
|
|
MICROBLAZE_R15_REGNUM,
|
|
|
|
MICROBLAZE_R16_REGNUM,
|
|
|
|
MICROBLAZE_R17_REGNUM,
|
|
|
|
MICROBLAZE_R18_REGNUM,
|
|
|
|
MICROBLAZE_R19_REGNUM,
|
|
|
|
MICROBLAZE_R20_REGNUM,
|
|
|
|
MICROBLAZE_R21_REGNUM,
|
|
|
|
MICROBLAZE_R22_REGNUM,
|
|
|
|
MICROBLAZE_R23_REGNUM,
|
|
|
|
MICROBLAZE_R24_REGNUM,
|
|
|
|
MICROBLAZE_R25_REGNUM,
|
|
|
|
MICROBLAZE_R26_REGNUM,
|
|
|
|
MICROBLAZE_R27_REGNUM,
|
|
|
|
MICROBLAZE_R28_REGNUM,
|
|
|
|
MICROBLAZE_R29_REGNUM,
|
|
|
|
MICROBLAZE_R30_REGNUM,
|
|
|
|
MICROBLAZE_R31_REGNUM,
|
|
|
|
MICROBLAZE_PC_REGNUM,
|
|
|
|
MICROBLAZE_MSR_REGNUM,
|
|
|
|
MICROBLAZE_EAR_REGNUM,
|
|
|
|
MICROBLAZE_ESR_REGNUM,
|
|
|
|
MICROBLAZE_FSR_REGNUM,
|
|
|
|
MICROBLAZE_BTR_REGNUM,
|
|
|
|
MICROBLAZE_PVR0_REGNUM,
|
|
|
|
MICROBLAZE_PVR1_REGNUM,
|
|
|
|
MICROBLAZE_PVR2_REGNUM,
|
|
|
|
MICROBLAZE_PVR3_REGNUM,
|
|
|
|
MICROBLAZE_PVR4_REGNUM,
|
|
|
|
MICROBLAZE_PVR5_REGNUM,
|
|
|
|
MICROBLAZE_PVR6_REGNUM,
|
|
|
|
MICROBLAZE_PVR7_REGNUM,
|
|
|
|
MICROBLAZE_PVR8_REGNUM,
|
|
|
|
MICROBLAZE_PVR9_REGNUM,
|
|
|
|
MICROBLAZE_PVR10_REGNUM,
|
|
|
|
MICROBLAZE_PVR11_REGNUM,
|
|
|
|
MICROBLAZE_REDR_REGNUM,
|
|
|
|
MICROBLAZE_RPID_REGNUM,
|
|
|
|
MICROBLAZE_RZPR_REGNUM,
|
|
|
|
MICROBLAZE_RTLBX_REGNUM,
|
|
|
|
MICROBLAZE_RTLBSX_REGNUM,
|
|
|
|
MICROBLAZE_RTLBLO_REGNUM,
|
2014-07-19 17:47:52 -07:00
|
|
|
MICROBLAZE_RTLBHI_REGNUM,
|
|
|
|
MICROBLAZE_SLR_REGNUM, MICROBLAZE_NUM_CORE_REGS = MICROBLAZE_SLR_REGNUM,
|
|
|
|
MICROBLAZE_SHR_REGNUM,
|
|
|
|
MICROBLAZE_NUM_REGS
|
* config/djgpp/fnchange.lst: Add translations for cpu-microblaze.c,
elf32-microblaze.c, microblaze-rom.c, microblaze-linux-tdep.c,
microblaze-tdep.h, microblaze-tdep.c, microblaze-opc.h,
microblaze-opcm.h, microblaze-dis.c, microblaze-dis.h, sim/microblaze,
microblaze.h, and microblaze.isa.
* configure.tgt: Add targets microblaze*-linux-*, microblaze*-xilinx-*.
* Makefile.in: Build microblaze-tdep.o, microblaze-linux-tdep.o.
HFILES_NO_SRCDIR: Add microblaze-tdep.h.
* microblaze-linux-tdep.c: New.
* microblaze-tdep.c: New.
* microblaze-tdep.h: New.
* NEWS: Announce Xilinx MicroBlaze support.
2009-10-15 19:28:52 +00:00
|
|
|
};
|
|
|
|
|
2014-07-19 17:47:52 -07:00
|
|
|
struct microblaze_frame_cache
|
|
|
|
{
|
|
|
|
/* Base address. */
|
|
|
|
CORE_ADDR base;
|
|
|
|
CORE_ADDR pc;
|
|
|
|
|
|
|
|
/* Do we have a frame? */
|
|
|
|
int frameless_p;
|
|
|
|
|
|
|
|
/* Frame size. */
|
|
|
|
int framesize;
|
|
|
|
|
|
|
|
/* Frame register. */
|
|
|
|
int fp_regnum;
|
|
|
|
|
|
|
|
/* Offsets to saved registers. */
|
|
|
|
int register_offsets[MICROBLAZE_NUM_REGS];
|
|
|
|
|
|
|
|
/* Table of saved registers. */
|
|
|
|
struct trad_frame_saved_reg *saved_regs;
|
|
|
|
};
|
2009-10-16 23:21:23 +00:00
|
|
|
/* All registers are 32 bits. */
|
|
|
|
#define MICROBLAZE_REGISTER_SIZE 4
|
|
|
|
|
* config/djgpp/fnchange.lst: Add translations for cpu-microblaze.c,
elf32-microblaze.c, microblaze-rom.c, microblaze-linux-tdep.c,
microblaze-tdep.h, microblaze-tdep.c, microblaze-opc.h,
microblaze-opcm.h, microblaze-dis.c, microblaze-dis.h, sim/microblaze,
microblaze.h, and microblaze.isa.
* configure.tgt: Add targets microblaze*-linux-*, microblaze*-xilinx-*.
* Makefile.in: Build microblaze-tdep.o, microblaze-linux-tdep.o.
HFILES_NO_SRCDIR: Add microblaze-tdep.h.
* microblaze-linux-tdep.c: New.
* microblaze-tdep.c: New.
* microblaze-tdep.h: New.
* NEWS: Announce Xilinx MicroBlaze support.
2009-10-15 19:28:52 +00:00
|
|
|
/* MICROBLAZE_BREAKPOINT defines the breakpoint that should be used.
|
|
|
|
Only used for native debugging. */
|
|
|
|
#define MICROBLAZE_BREAKPOINT {0xb9, 0xcc, 0x00, 0x60}
|
|
|
|
|
|
|
|
#endif /* microblaze-tdep.h */
|