* 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 21:28:52 +02:00
|
|
|
|
/* Target-dependent code for Xilinx MicroBlaze.
|
|
|
|
|
|
2017-01-01 07:50:51 +01:00
|
|
|
|
Copyright (C) 2009-2017 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 21:28:52 +02: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/>. */
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "arch-utils.h"
|
|
|
|
|
#include "dis-asm.h"
|
|
|
|
|
#include "frame.h"
|
|
|
|
|
#include "trad-frame.h"
|
|
|
|
|
#include "symtab.h"
|
|
|
|
|
#include "value.h"
|
|
|
|
|
#include "gdbcmd.h"
|
|
|
|
|
#include "breakpoint.h"
|
|
|
|
|
#include "inferior.h"
|
|
|
|
|
#include "regcache.h"
|
|
|
|
|
#include "target.h"
|
|
|
|
|
#include "frame-base.h"
|
|
|
|
|
#include "frame-unwind.h"
|
|
|
|
|
#include "dwarf2-frame.h"
|
|
|
|
|
#include "osabi.h"
|
|
|
|
|
#include "target-descriptions.h"
|
|
|
|
|
#include "opcodes/microblaze-opcm.h"
|
|
|
|
|
#include "opcodes/microblaze-dis.h"
|
|
|
|
|
#include "microblaze-tdep.h"
|
2014-07-20 02:47:52 +02:00
|
|
|
|
#include "remote.h"
|
|
|
|
|
|
|
|
|
|
#include "features/microblaze-with-stack-protect.c"
|
|
|
|
|
#include "features/microblaze.c"
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
/* Instruction macros used for analyzing the prologue. */
|
|
|
|
|
/* This set of instruction macros need to be changed whenever the
|
|
|
|
|
prologue generated by the compiler could have more instructions or
|
|
|
|
|
different type of instructions.
|
|
|
|
|
This set also needs to be verified if it is complete. */
|
|
|
|
|
#define IS_RETURN(op) (op == rtsd || op == rtid)
|
|
|
|
|
#define IS_UPDATE_SP(op, rd, ra) \
|
2011-01-09 04:20:33 +01:00
|
|
|
|
((op == addik || op == addi) && rd == REG_SP && ra == REG_SP)
|
* 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 21:28:52 +02:00
|
|
|
|
#define IS_SPILL_SP(op, rd, ra) \
|
2011-01-09 04:20:33 +01:00
|
|
|
|
((op == swi || op == sw) && rd == REG_SP && ra == REG_SP)
|
* 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 21:28:52 +02:00
|
|
|
|
#define IS_SPILL_REG(op, rd, ra) \
|
2011-01-09 04:20:33 +01:00
|
|
|
|
((op == swi || op == sw) && rd != REG_SP && ra == REG_SP)
|
* 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 21:28:52 +02:00
|
|
|
|
#define IS_ALSO_SPILL_REG(op, rd, ra, rb) \
|
2011-01-09 04:20:33 +01:00
|
|
|
|
((op == swi || op == sw) && rd != REG_SP && ra == 0 && rb == REG_SP)
|
* 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 21:28:52 +02:00
|
|
|
|
#define IS_SETUP_FP(op, ra, rb) \
|
2011-01-09 04:20:33 +01:00
|
|
|
|
((op == add || op == addik || op == addk) && ra == REG_SP && rb == 0)
|
* 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 21:28:52 +02:00
|
|
|
|
#define IS_SPILL_REG_FP(op, rd, ra, fpregnum) \
|
2011-01-09 04:20:33 +01:00
|
|
|
|
((op == swi || op == sw) && rd != REG_SP && ra == fpregnum && ra != 0)
|
* 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 21:28:52 +02:00
|
|
|
|
#define IS_SAVE_HIDDEN_PTR(op, rd, ra, rb) \
|
2011-01-09 04:20:33 +01:00
|
|
|
|
((op == add || op == addik) && ra == MICROBLAZE_FIRST_ARGREG && rb == 0)
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
/* The registers of the Xilinx microblaze processor. */
|
|
|
|
|
|
|
|
|
|
static const char *microblaze_register_names[] =
|
|
|
|
|
{
|
|
|
|
|
"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
|
|
|
|
|
"r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
|
|
|
|
|
"r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
|
|
|
|
|
"r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
|
|
|
|
|
"rpc", "rmsr", "rear", "resr", "rfsr", "rbtr",
|
|
|
|
|
"rpvr0", "rpvr1", "rpvr2", "rpvr3", "rpvr4", "rpvr5", "rpvr6",
|
|
|
|
|
"rpvr7", "rpvr8", "rpvr9", "rpvr10", "rpvr11",
|
2014-07-20 02:47:52 +02:00
|
|
|
|
"redr", "rpid", "rzpr", "rtlbx", "rtlbsx", "rtlblo", "rtlbhi",
|
|
|
|
|
"rslr", "rshr"
|
* 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 21:28:52 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define MICROBLAZE_NUM_REGS ARRAY_SIZE (microblaze_register_names)
|
|
|
|
|
|
2012-08-02 11:36:40 +02:00
|
|
|
|
static unsigned int microblaze_debug_flag = 0;
|
* 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 21:28:52 +02:00
|
|
|
|
|
2012-03-02 01:06:13 +01:00
|
|
|
|
static void
|
* 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 21:28:52 +02:00
|
|
|
|
microblaze_debug (const char *fmt, ...)
|
|
|
|
|
{
|
|
|
|
|
if (microblaze_debug_flag)
|
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
|
|
va_start (args, fmt);
|
|
|
|
|
printf_unfiltered ("MICROBLAZE: ");
|
|
|
|
|
vprintf_unfiltered (fmt, args);
|
|
|
|
|
va_end (args);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return the name of register REGNUM. */
|
|
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
|
microblaze_register_name (struct gdbarch *gdbarch, int regnum)
|
|
|
|
|
{
|
|
|
|
|
if (regnum >= 0 && regnum < MICROBLAZE_NUM_REGS)
|
|
|
|
|
return microblaze_register_names[regnum];
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct type *
|
|
|
|
|
microblaze_register_type (struct gdbarch *gdbarch, int regnum)
|
|
|
|
|
{
|
|
|
|
|
if (regnum == MICROBLAZE_SP_REGNUM)
|
|
|
|
|
return builtin_type (gdbarch)->builtin_data_ptr;
|
|
|
|
|
|
|
|
|
|
if (regnum == MICROBLAZE_PC_REGNUM)
|
|
|
|
|
return builtin_type (gdbarch)->builtin_func_ptr;
|
|
|
|
|
|
|
|
|
|
return builtin_type (gdbarch)->builtin_int;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Fetch the instruction at PC. */
|
|
|
|
|
|
2012-03-02 01:06:13 +01:00
|
|
|
|
static unsigned long
|
* 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 21:28:52 +02:00
|
|
|
|
microblaze_fetch_instruction (CORE_ADDR pc)
|
|
|
|
|
{
|
* gdbarch.sh (target_gdbarch): Remove macro.
(get_target_gdbarch): Rename to target_gdbarch.
* gdbarch.c, gdbarch.h: Rebuild.
* ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
procfs.c, progspace.c, ravenscar-thread.c, record.c,
remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
target-descriptions.c, target.c, target.h, tracepoint.c,
windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
python/py-inferior.c, python/python.c: Update.
2012-11-09 20:58:03 +01:00
|
|
|
|
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
|
* 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 21:28:52 +02:00
|
|
|
|
gdb_byte buf[4];
|
|
|
|
|
|
|
|
|
|
/* If we can't read the instruction at PC, return zero. */
|
2014-07-24 04:27:20 +02:00
|
|
|
|
if (target_read_code (pc, buf, sizeof (buf)))
|
* 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 21:28:52 +02:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return extract_unsigned_integer (buf, 4, byte_order);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-03 15:35:14 +01:00
|
|
|
|
constexpr gdb_byte microblaze_break_insn[] = MICROBLAZE_BREAKPOINT;
|
2016-11-03 15:35:13 +01:00
|
|
|
|
|
2016-11-03 15:35:14 +01:00
|
|
|
|
typedef BP_MANIPULATION (microblaze_break_insn) microblaze_breakpoint;
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Allocate and initialize a frame cache. */
|
|
|
|
|
|
|
|
|
|
static struct microblaze_frame_cache *
|
|
|
|
|
microblaze_alloc_frame_cache (void)
|
|
|
|
|
{
|
|
|
|
|
struct microblaze_frame_cache *cache;
|
|
|
|
|
|
|
|
|
|
cache = FRAME_OBSTACK_ZALLOC (struct microblaze_frame_cache);
|
|
|
|
|
|
|
|
|
|
/* Base address. */
|
|
|
|
|
cache->base = 0;
|
|
|
|
|
cache->pc = 0;
|
|
|
|
|
|
|
|
|
|
/* Frameless until proven otherwise. */
|
|
|
|
|
cache->frameless_p = 1;
|
|
|
|
|
|
|
|
|
|
return cache;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The base of the current frame is actually in the stack pointer.
|
|
|
|
|
This happens when there is no frame pointer (microblaze ABI does not
|
|
|
|
|
require a frame pointer) or when we're stopped in the prologue or
|
|
|
|
|
epilogue itself. In these cases, microblaze_analyze_prologue will need
|
|
|
|
|
to update fi->frame before returning or analyzing the register
|
|
|
|
|
save instructions. */
|
|
|
|
|
#define MICROBLAZE_MY_FRAME_IN_SP 0x1
|
|
|
|
|
|
|
|
|
|
/* The base of the current frame is in a frame pointer register.
|
|
|
|
|
This register is noted in frame_extra_info->fp_regnum.
|
|
|
|
|
|
|
|
|
|
Note that the existance of an FP might also indicate that the
|
|
|
|
|
function has called alloca. */
|
|
|
|
|
#define MICROBLAZE_MY_FRAME_IN_FP 0x2
|
|
|
|
|
|
|
|
|
|
/* Function prologues on the Xilinx microblaze processors consist of:
|
|
|
|
|
|
|
|
|
|
- adjustments to the stack pointer (r1) (addi r1, r1, imm)
|
|
|
|
|
- making a copy of r1 into another register (a "frame" pointer)
|
|
|
|
|
(add r?, r1, r0)
|
|
|
|
|
- store word/multiples that use r1 or the frame pointer as the
|
|
|
|
|
base address (swi r?, r1, imm OR swi r?, fp, imm)
|
|
|
|
|
|
|
|
|
|
Note that microblaze really doesn't have a real frame pointer.
|
|
|
|
|
Instead, the compiler may copy the SP into a register (usually
|
|
|
|
|
r19) to act as an arg pointer. For our target-dependent purposes,
|
|
|
|
|
the frame info's "frame" member will be the beginning of the
|
|
|
|
|
frame. The SP could, in fact, point below this.
|
|
|
|
|
|
|
|
|
|
The prologue ends when an instruction fails to meet either of
|
|
|
|
|
these criteria. */
|
|
|
|
|
|
|
|
|
|
/* Analyze the prologue to determine where registers are saved,
|
|
|
|
|
the end of the prologue, etc. Return the address of the first line
|
2011-01-09 04:20:33 +01:00
|
|
|
|
of "real" code (i.e., the end of the prologue). */
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
static CORE_ADDR
|
|
|
|
|
microblaze_analyze_prologue (struct gdbarch *gdbarch, CORE_ADDR pc,
|
|
|
|
|
CORE_ADDR current_pc,
|
|
|
|
|
struct microblaze_frame_cache *cache)
|
|
|
|
|
{
|
2012-02-02 21:19:17 +01:00
|
|
|
|
const char *name;
|
* 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 21:28:52 +02:00
|
|
|
|
CORE_ADDR func_addr, func_end, addr, stop, prologue_end_addr = 0;
|
|
|
|
|
unsigned long insn;
|
2012-05-18 23:02:52 +02:00
|
|
|
|
int rd, ra, rb, imm;
|
* 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 21:28:52 +02:00
|
|
|
|
enum microblaze_instr op;
|
|
|
|
|
int flags = 0;
|
|
|
|
|
int save_hidden_pointer_found = 0;
|
|
|
|
|
int non_stack_instruction_found = 0;
|
|
|
|
|
|
2011-01-09 04:20:33 +01:00
|
|
|
|
/* Find the start of this function. */
|
* 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 21:28:52 +02:00
|
|
|
|
find_pc_partial_function (pc, &name, &func_addr, &func_end);
|
|
|
|
|
if (func_addr < pc)
|
|
|
|
|
pc = func_addr;
|
|
|
|
|
|
|
|
|
|
if (current_pc < pc)
|
|
|
|
|
return current_pc;
|
|
|
|
|
|
|
|
|
|
/* Initialize info about frame. */
|
|
|
|
|
cache->framesize = 0;
|
|
|
|
|
cache->fp_regnum = MICROBLAZE_SP_REGNUM;
|
|
|
|
|
cache->frameless_p = 1;
|
|
|
|
|
|
|
|
|
|
/* Start decoding the prologue. We start by checking two special cases:
|
|
|
|
|
|
|
|
|
|
1. We're about to return
|
|
|
|
|
2. We're at the first insn of the prologue.
|
|
|
|
|
|
|
|
|
|
If we're about to return, our frame has already been deallocated.
|
|
|
|
|
If we are stopped at the first instruction of a prologue,
|
2011-01-09 04:20:33 +01:00
|
|
|
|
then our frame has not yet been set up. */
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
/* Get the first insn from memory. */
|
|
|
|
|
|
|
|
|
|
insn = microblaze_fetch_instruction (pc);
|
|
|
|
|
op = microblaze_decode_insn (insn, &rd, &ra, &rb, &imm);
|
|
|
|
|
|
|
|
|
|
if (IS_RETURN(op))
|
|
|
|
|
return pc;
|
|
|
|
|
|
|
|
|
|
/* Start at beginning of function and analyze until we get to the
|
|
|
|
|
current pc, or the end of the function, whichever is first. */
|
|
|
|
|
stop = (current_pc < func_end ? current_pc : func_end);
|
|
|
|
|
|
|
|
|
|
microblaze_debug ("Scanning prologue: name=%s, func_addr=%s, stop=%s\n",
|
|
|
|
|
name, paddress (gdbarch, func_addr),
|
|
|
|
|
paddress (gdbarch, stop));
|
|
|
|
|
|
|
|
|
|
for (addr = func_addr; addr < stop; addr += INST_WORD_SIZE)
|
|
|
|
|
{
|
|
|
|
|
insn = microblaze_fetch_instruction (addr);
|
|
|
|
|
op = microblaze_decode_insn (insn, &rd, &ra, &rb, &imm);
|
|
|
|
|
microblaze_debug ("%s %08lx\n", paddress (gdbarch, pc), insn);
|
|
|
|
|
|
|
|
|
|
/* This code is very sensitive to what functions are present in the
|
|
|
|
|
prologue. It assumes that the (addi, addik, swi, sw) can be the
|
|
|
|
|
only instructions in the prologue. */
|
|
|
|
|
if (IS_UPDATE_SP(op, rd, ra))
|
|
|
|
|
{
|
|
|
|
|
microblaze_debug ("got addi r1,r1,%d; contnuing\n", imm);
|
|
|
|
|
if (cache->framesize)
|
|
|
|
|
break; /* break if framesize already computed. */
|
|
|
|
|
cache->framesize = -imm; /* stack grows towards low memory. */
|
|
|
|
|
cache->frameless_p = 0; /* Frame found. */
|
|
|
|
|
save_hidden_pointer_found = 0;
|
|
|
|
|
non_stack_instruction_found = 0;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (IS_SPILL_SP(op, rd, ra))
|
|
|
|
|
{
|
|
|
|
|
/* Spill stack pointer. */
|
|
|
|
|
cache->register_offsets[rd] = imm; /* SP spilled before updating. */
|
|
|
|
|
|
|
|
|
|
microblaze_debug ("swi r1 r1 %d, continuing\n", imm);
|
|
|
|
|
save_hidden_pointer_found = 0;
|
|
|
|
|
if (!cache->framesize)
|
|
|
|
|
non_stack_instruction_found = 0;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (IS_SPILL_REG(op, rd, ra))
|
|
|
|
|
{
|
|
|
|
|
/* Spill register. */
|
|
|
|
|
cache->register_offsets[rd] = imm - cache->framesize;
|
|
|
|
|
|
|
|
|
|
microblaze_debug ("swi %d r1 %d, continuing\n", rd, imm);
|
|
|
|
|
save_hidden_pointer_found = 0;
|
|
|
|
|
if (!cache->framesize)
|
|
|
|
|
non_stack_instruction_found = 0;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (IS_ALSO_SPILL_REG(op, rd, ra, rb))
|
|
|
|
|
{
|
|
|
|
|
/* Spill register. */
|
|
|
|
|
cache->register_offsets[rd] = 0 - cache->framesize;
|
|
|
|
|
|
|
|
|
|
microblaze_debug ("sw %d r0 r1, continuing\n", rd);
|
|
|
|
|
save_hidden_pointer_found = 0;
|
|
|
|
|
if (!cache->framesize)
|
|
|
|
|
non_stack_instruction_found = 0;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (IS_SETUP_FP(op, ra, rb))
|
|
|
|
|
{
|
|
|
|
|
/* We have a frame pointer. Note the register which is
|
2011-01-09 04:20:33 +01:00
|
|
|
|
acting as the frame pointer. */
|
* 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 21:28:52 +02:00
|
|
|
|
flags |= MICROBLAZE_MY_FRAME_IN_FP;
|
|
|
|
|
flags &= ~MICROBLAZE_MY_FRAME_IN_SP;
|
|
|
|
|
cache->fp_regnum = rd;
|
|
|
|
|
microblaze_debug ("Found a frame pointer: r%d\n", cache->fp_regnum);
|
|
|
|
|
save_hidden_pointer_found = 0;
|
|
|
|
|
if (!cache->framesize)
|
|
|
|
|
non_stack_instruction_found = 0;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (IS_SPILL_REG_FP(op, rd, ra, cache->fp_regnum))
|
|
|
|
|
{
|
|
|
|
|
/* reg spilled after updating. */
|
|
|
|
|
cache->register_offsets[rd] = imm - cache->framesize;
|
|
|
|
|
|
|
|
|
|
microblaze_debug ("swi %d %d %d, continuing\n", rd, ra, imm);
|
|
|
|
|
save_hidden_pointer_found = 0;
|
|
|
|
|
if (!cache->framesize)
|
|
|
|
|
non_stack_instruction_found = 0;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (IS_SAVE_HIDDEN_PTR(op, rd, ra, rb))
|
|
|
|
|
{
|
|
|
|
|
/* If the first argument is a hidden pointer to the area where the
|
|
|
|
|
return structure is to be saved, then it is saved as part of the
|
|
|
|
|
prologue. */
|
|
|
|
|
|
|
|
|
|
microblaze_debug ("add %d %d %d, continuing\n", rd, ra, rb);
|
|
|
|
|
save_hidden_pointer_found = 1;
|
|
|
|
|
if (!cache->framesize)
|
|
|
|
|
non_stack_instruction_found = 0;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* As a result of the modification in the next step where we continue
|
|
|
|
|
to analyze the prologue till we reach a control flow instruction,
|
|
|
|
|
we need another variable to store when exactly a non-stack
|
|
|
|
|
instruction was encountered, which is the current definition
|
|
|
|
|
of a prologue. */
|
|
|
|
|
if (!non_stack_instruction_found)
|
|
|
|
|
prologue_end_addr = addr;
|
|
|
|
|
non_stack_instruction_found = 1;
|
|
|
|
|
|
|
|
|
|
/* When optimizations are enabled, it is not guaranteed that prologue
|
|
|
|
|
instructions are not mixed in with other instructions from the
|
2011-01-09 04:20:33 +01:00
|
|
|
|
program. Some programs show this behavior at -O2. This can be
|
* 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 21:28:52 +02:00
|
|
|
|
avoided by adding -fno-schedule-insns2 switch as of now (edk 8.1)
|
|
|
|
|
In such cases, we scan the function until we see the first control
|
|
|
|
|
instruction. */
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
unsigned op = (unsigned)insn >> 26;
|
|
|
|
|
|
|
|
|
|
/* continue if not control flow (branch, return). */
|
|
|
|
|
if (op != 0x26 && op != 0x27 && op != 0x2d && op != 0x2e && op != 0x2f)
|
|
|
|
|
continue;
|
|
|
|
|
else if (op == 0x2c)
|
|
|
|
|
continue; /* continue if imm. */
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-09 04:20:33 +01:00
|
|
|
|
/* This is not a prologue insn, so stop here. */
|
* 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 21:28:52 +02:00
|
|
|
|
microblaze_debug ("insn is not a prologue insn -- ending scan\n");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
microblaze_debug ("done analyzing prologue\n");
|
|
|
|
|
microblaze_debug ("prologue end = 0x%x\n", (int) addr);
|
|
|
|
|
|
|
|
|
|
/* If the last instruction was an add rd, r5, r0 then don't count it as
|
|
|
|
|
part of the prologue. */
|
|
|
|
|
if (save_hidden_pointer_found)
|
|
|
|
|
prologue_end_addr -= INST_WORD_SIZE;
|
|
|
|
|
|
|
|
|
|
return prologue_end_addr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static CORE_ADDR
|
|
|
|
|
microblaze_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
|
|
|
|
|
{
|
|
|
|
|
gdb_byte buf[4];
|
|
|
|
|
CORE_ADDR pc;
|
|
|
|
|
|
|
|
|
|
frame_unwind_register (next_frame, MICROBLAZE_PC_REGNUM, buf);
|
|
|
|
|
pc = extract_typed_address (buf, builtin_type (gdbarch)->builtin_func_ptr);
|
|
|
|
|
/* For sentinel frame, return address is actual PC. For other frames,
|
|
|
|
|
return address is pc+8. This is a workaround because gcc does not
|
|
|
|
|
generate correct return address in CIE. */
|
|
|
|
|
if (frame_relative_level (next_frame) >= 0)
|
|
|
|
|
pc += 8;
|
|
|
|
|
return pc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return PC of first real instruction of the function starting at
|
|
|
|
|
START_PC. */
|
|
|
|
|
|
2012-03-02 01:06:13 +01:00
|
|
|
|
static CORE_ADDR
|
* 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 21:28:52 +02:00
|
|
|
|
microblaze_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR start_pc)
|
|
|
|
|
{
|
|
|
|
|
struct symtab_and_line sal;
|
|
|
|
|
CORE_ADDR func_start, func_end, ostart_pc;
|
|
|
|
|
struct microblaze_frame_cache cache;
|
|
|
|
|
|
|
|
|
|
/* This is the preferred method, find the end of the prologue by
|
|
|
|
|
using the debugging information. Debugging info does not always
|
|
|
|
|
give the right answer since parameters are stored on stack after this.
|
|
|
|
|
Always analyze the prologue. */
|
|
|
|
|
if (find_pc_partial_function (start_pc, NULL, &func_start, &func_end))
|
|
|
|
|
{
|
|
|
|
|
sal = find_pc_line (func_start, 0);
|
|
|
|
|
|
|
|
|
|
if (sal.end < func_end
|
|
|
|
|
&& start_pc <= sal.end)
|
|
|
|
|
start_pc = sal.end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ostart_pc = microblaze_analyze_prologue (gdbarch, func_start, 0xffffffffUL,
|
|
|
|
|
&cache);
|
|
|
|
|
|
|
|
|
|
if (ostart_pc > start_pc)
|
|
|
|
|
return ostart_pc;
|
|
|
|
|
return start_pc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Normal frames. */
|
|
|
|
|
|
2012-03-02 01:06:13 +01:00
|
|
|
|
static struct microblaze_frame_cache *
|
* 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 21:28:52 +02:00
|
|
|
|
microblaze_frame_cache (struct frame_info *next_frame, void **this_cache)
|
|
|
|
|
{
|
|
|
|
|
struct microblaze_frame_cache *cache;
|
|
|
|
|
struct gdbarch *gdbarch = get_frame_arch (next_frame);
|
|
|
|
|
int rn;
|
|
|
|
|
|
|
|
|
|
if (*this_cache)
|
2015-09-25 20:08:07 +02:00
|
|
|
|
return (struct microblaze_frame_cache *) *this_cache;
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
cache = microblaze_alloc_frame_cache ();
|
|
|
|
|
*this_cache = cache;
|
|
|
|
|
cache->saved_regs = trad_frame_alloc_saved_regs (next_frame);
|
|
|
|
|
|
|
|
|
|
/* Clear offsets to saved regs in frame. */
|
|
|
|
|
for (rn = 0; rn < gdbarch_num_regs (gdbarch); rn++)
|
|
|
|
|
cache->register_offsets[rn] = -1;
|
|
|
|
|
|
2016-06-06 22:18:23 +02:00
|
|
|
|
/* Call for side effects. */
|
|
|
|
|
get_frame_func (next_frame);
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
cache->pc = get_frame_address_in_block (next_frame);
|
|
|
|
|
|
|
|
|
|
return cache;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
microblaze_frame_this_id (struct frame_info *next_frame, void **this_cache,
|
|
|
|
|
struct frame_id *this_id)
|
|
|
|
|
{
|
|
|
|
|
struct microblaze_frame_cache *cache =
|
|
|
|
|
microblaze_frame_cache (next_frame, this_cache);
|
|
|
|
|
|
|
|
|
|
/* This marks the outermost frame. */
|
|
|
|
|
if (cache->base == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
(*this_id) = frame_id_build (cache->base, cache->pc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct value *
|
|
|
|
|
microblaze_frame_prev_register (struct frame_info *this_frame,
|
|
|
|
|
void **this_cache, int regnum)
|
|
|
|
|
{
|
|
|
|
|
struct microblaze_frame_cache *cache =
|
|
|
|
|
microblaze_frame_cache (this_frame, this_cache);
|
|
|
|
|
|
|
|
|
|
if (cache->frameless_p)
|
|
|
|
|
{
|
|
|
|
|
if (regnum == MICROBLAZE_PC_REGNUM)
|
|
|
|
|
regnum = 15;
|
|
|
|
|
if (regnum == MICROBLAZE_SP_REGNUM)
|
|
|
|
|
regnum = 1;
|
2011-01-09 04:20:33 +01:00
|
|
|
|
return trad_frame_get_prev_register (this_frame,
|
|
|
|
|
cache->saved_regs, 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 21:28:52 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return trad_frame_get_prev_register (this_frame, cache->saved_regs,
|
|
|
|
|
regnum);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct frame_unwind microblaze_frame_unwind =
|
|
|
|
|
{
|
|
|
|
|
NORMAL_FRAME,
|
gdb/
* frame.c (frame_unwind_register): Throw an error if unwinding the
register failed.
* get_prev_frame_1 (get_prev_frame_1): Ask the unwinder if there's
an unwind stop reason.
(frame_stop_reason_string): Handle UNWIND_UNAVAILABLE.
* frame.h (enum unwind_stop_reason) <UNWIND_OUTERMOST,
UNWIND_UNAVAILABLE>: New.
* inline-frame.c (inline_frame_unwind): Install
default_frame_unwind_stop_reason.
* frame-unwind.c: Include "exceptions.h".
(frame_unwind_find_by_frame): Swallow NOT_AVAILABLE_ERROR errors.
(default_frame_unwind_stop_reason): New.
* frame-unwind.h (frame_unwind_stop_reason_ftype): New typedef.
(default_frame_unwind_stop_reason): Declare.
(struct frame_unwind) <stop_reason>: New function pointer.
* dummy-frame.c: Install default_frame_unwind_stop_reason.
* dwarf2-frame.c: Include exceptions.h.
(struct dwarf2_frame_cache) <unavailable_retaddr>: New field.
(dwarf2_frame_cache): Swallow NOT_AVAILABLE_ERROR errors when
computing the CFA. If such an error was thrown, set
unavailable_retaddr.
(dwarf2_frame_unwind_stop_reason): New.
(dwarf2_frame_this_id): Don't build a frame id if the CFA was
unavailable.
(dwarf2_frame_unwind): Install dwarf2_frame_unwind_stop_reason.
(dwarf2_signal_frame_unwind): Ditto.
* amd64-tdep.c: Include "exceptions.h".
(struct amd64_frame_cache): New field "base_p".
(amd64_init_frame_cache): Clear it.
(amd64_frame_cache_1): New, factored out from amd64_frame_cache.
Avoid reading registers with functions that throw if the register
is not necessary to compute the frame base.
(amd64_frame_cache): Reimplement wrapping amd64_frame_cache_1, and
swallowing NOT_AVAILABLE_ERROR.
(amd64_frame_unwind_stop_reason): New.
(amd64_frame_this_id): Don't build a frame id if the frame base
was unavailable.
(amd64_frame_unwind): Install amd64_frame_unwind_stop_reason.
(amd64_sigtramp_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
base_p if the frame base was computable.
(amd64_sigtramp_frame_unwind_stop_reason): New.
(amd64_sigtramp_frame_this_id): Don't build a frame id if the
frame base was unavailable.
(amd64_sigtramp_frame_unwind): Install
amd64_sigtramp_frame_unwind_stop_reason.
(amd64_epilogue_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
base_p if the frame base was computable.
(amd64_epilogue_frame_unwind_stop_reason): New.
(amd64_epilogue_frame_this_id): Don't build a frame id if the
frame base was unavailable.
(amd64_epilogue_frame_unwind): Install
amd64_epilogue_frame_unwind_stop_reason.
* i386-tdep.c: Include "exceptions.h".
(struct i386_frame_cache): New field "base_p".
(i386_init_frame_cache): Clear it.
(i386_frame_cache_1): New, factored out from amd64_frame_cache.
Avoid reading registers with functions that throw if the register
is not necessary to compute the frame base.
(i386_frame_cache): Reimplement wrapping amd64_frame_cache_1, and
swallowing NOT_AVAILABLE_ERROR.
(i386_frame_unwind_stop_reason): New.
(i386_frame_this_id): Don't build a frame id if the frame base was
unavailable.
(i386_frame_prev_register): Handle unavailable SP.
(i386_frame_unwind): Install i386_frame_unwind_stop_reason.
(i386_epilogue_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
base_p if the frame base was computable.
(i386_epilogue_frame_unwind_stop_reason): New.
(i386_epilogue_frame_this_id): Don't build a frame id if the frame
base was unavailable.
(i386_epilogue_frame_unwind): Install
i386_epilogue_frame_unwind_stop_reason.
(i386_sigtramp_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
base_p if the frame base was computable.
(i386_sigtramp_frame_unwind_stop_reason): New.
(i386_sigtramp_frame_this_id): Don't build a frame id if the frame
base was unavailable.
(i386_sigtramp_frame_unwind): Install
i386_sigtramp_frame_unwind_stop_reason.
* sentinel-frame.c (sentinel_frame_prev_register): Use the value
type's size, not the register's.
(sentinel_frame_unwind): Install default_frame_unwind_stop_reason.
* alpha-mdebug-tdep.c (alpha_mdebug_frame_unwind): Install
default_frame_unwind_stop_reason.
* alpha-tdep.c (alpha_sigtramp_frame_unwind)
(alpha_heuristic_frame_unwind): Ditto.
* amd64obsd-tdep.c (amd64obsd_trapframe_unwind): Ditto.
* arm-tdep.c (arm_prologue_unwind, arm_stub_unwind): Ditto.
* avr-tdep.c (avr_frame_unwind): Ditto.
* cris-tdep.c (cris_sigtramp_frame_unwind, cris_frame_unwind):
Ditto.
* frv-linux-tdep.c (frv_linux_sigtramp_frame_unwind): Ditto.
* frv-tdep.c (frv_frame_unwind): Ditto.
* h8300-tdep.c (h8300_frame_unwind): Ditto.
* hppa-hpux-tdep.c (hppa_hpux_sigtramp_frame_unwind): Ditto.
* hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind): Ditto.
* hppa-tdep.c (hppa_frame_unwind, hppa_fallback_frame_unwind)
(hppa_stub_frame_unwind): Ditto.
* i386obsd-tdep.c (i386obsd_trapframe_unwind): Ditto.
* ia64-tdep.c (ia64_frame_unwind, ia64_sigtramp_frame_unwind)
(ia64_libunwind_frame_unwind)
(ia64_libunwind_sigtramp_frame_unwind): Ditto.
* iq2000-tdep.c (iq2000_frame_unwind): Ditto.
* lm32-tdep.c (lm32_frame_unwind): Ditto.
* m32c-tdep.c (m32c_unwind): Ditto.
* m32r-linux-tdep.c (m32r_linux_sigtramp_frame_unwind): Ditto.
* m32r-tdep.c (m32r_frame_unwind): Ditto.
* m68hc11-tdep.c (m68hc11_frame_unwind): Ditto.
* m68k-tdep.c (m68k_frame_unwind): Ditto.
* m68klinux-tdep.c (m68k_linux_sigtramp_frame_unwind): Ditto.
* m88k-tdep.c (m88k_frame_unwind): Ditto.
* mep-tdep.c (mep_frame_unwind): Ditto.
* microblaze-tdep.c (microblaze_frame_unwind): Ditto.
* mips-tdep.c (mips_insn16_frame_unwind, mips_insn32_frame_unwind)
(mips_stub_frame_unwind): Ditto.
* mn10300-tdep.c (mn10300_frame_unwind): Ditto.
* moxie-tdep.c (moxie_frame_unwind): Ditto.
* mt-tdep.c (mt_frame_unwind): Ditto.
* ppc-linux-tdep.c (ppu2spu_unwind): Ditto.
* ppcobsd-tdep.c (ppcobsd_sigtramp_frame_unwind): Ditto.
* rs6000-tdep.c (rs6000_frame_unwind): Ditto.
* s390-tdep.c (s390_frame_unwind, s390_stub_frame_unwind)
(s390_sigtramp_frame_unwind): Ditto.
* score-tdep.c (score_prologue_unwind): Ditto.
* sh-tdep.c (sh_frame_unwind): Ditto.
* sh64-tdep.c (sh64_frame_unwind): Ditto.
* sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_unwind): Ditto.
* sparc-tdep.c (sparc32_frame_unwind): Ditto.
* sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_unwind): Ditto.
* sparc64-tdep.c (sparc64_frame_unwind): Ditto.
* sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_unwind): Ditto.
* sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_unwind): Ditto.
* sparc64obsd-tdep.c (sparc64obsd_frame_unwind)
(sparc64obsd_trapframe_unwind): Ditto.
* sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_unwind): Ditto.
* sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_unwind): Ditto.
* spu-tdep.c (spu_frame_unwind, spu2ppu_unwind): Ditto.
* v850-tdep.c (v850_frame_unwind): Ditto.
* vax-tdep.c (vax_frame_unwind): Ditto.
* vaxobsd-tdep.c (vaxobsd_sigtramp_frame_unwind): Ditto.
* xstormy16-tdep.c (frame_unwind xstormy16_frame_unwind): Ditto.
* xtensa-tdep.c (xtensa_unwind): Ditto.
2011-03-18 19:52:32 +01:00
|
|
|
|
default_frame_unwind_stop_reason,
|
* 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 21:28:52 +02:00
|
|
|
|
microblaze_frame_this_id,
|
|
|
|
|
microblaze_frame_prev_register,
|
|
|
|
|
NULL,
|
|
|
|
|
default_frame_sniffer
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static CORE_ADDR
|
2011-01-09 04:20:33 +01:00
|
|
|
|
microblaze_frame_base_address (struct frame_info *next_frame,
|
|
|
|
|
void **this_cache)
|
* 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 21:28:52 +02:00
|
|
|
|
{
|
|
|
|
|
struct microblaze_frame_cache *cache =
|
|
|
|
|
microblaze_frame_cache (next_frame, this_cache);
|
|
|
|
|
|
|
|
|
|
return cache->base;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct frame_base microblaze_frame_base =
|
|
|
|
|
{
|
|
|
|
|
µblaze_frame_unwind,
|
|
|
|
|
microblaze_frame_base_address,
|
|
|
|
|
microblaze_frame_base_address,
|
|
|
|
|
microblaze_frame_base_address
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Extract from an array REGBUF containing the (raw) register state, a
|
|
|
|
|
function return value of TYPE, and copy that into VALBUF. */
|
|
|
|
|
static void
|
|
|
|
|
microblaze_extract_return_value (struct type *type, struct regcache *regcache,
|
|
|
|
|
gdb_byte *valbuf)
|
|
|
|
|
{
|
|
|
|
|
gdb_byte buf[8];
|
|
|
|
|
|
|
|
|
|
/* Copy the return value (starting) in RETVAL_REGNUM to VALBUF. */
|
|
|
|
|
switch (TYPE_LENGTH (type))
|
|
|
|
|
{
|
|
|
|
|
case 1: /* return last byte in the register. */
|
|
|
|
|
regcache_cooked_read (regcache, MICROBLAZE_RETVAL_REGNUM, buf);
|
|
|
|
|
memcpy(valbuf, buf + MICROBLAZE_REGISTER_SIZE - 1, 1);
|
|
|
|
|
return;
|
|
|
|
|
case 2: /* return last 2 bytes in register. */
|
2012-02-28 09:14:11 +01:00
|
|
|
|
regcache_cooked_read (regcache, MICROBLAZE_RETVAL_REGNUM, buf);
|
* 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 21:28:52 +02:00
|
|
|
|
memcpy(valbuf, buf + MICROBLAZE_REGISTER_SIZE - 2, 2);
|
|
|
|
|
return;
|
|
|
|
|
case 4: /* for sizes 4 or 8, copy the required length. */
|
|
|
|
|
case 8:
|
|
|
|
|
regcache_cooked_read (regcache, MICROBLAZE_RETVAL_REGNUM, buf);
|
|
|
|
|
regcache_cooked_read (regcache, MICROBLAZE_RETVAL_REGNUM+1, buf+4);
|
|
|
|
|
memcpy (valbuf, buf, TYPE_LENGTH (type));
|
|
|
|
|
return;
|
|
|
|
|
default:
|
|
|
|
|
internal_error (__FILE__, __LINE__,
|
|
|
|
|
_("Unsupported return value size requested"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Store the return value in VALBUF (of type TYPE) where the caller
|
|
|
|
|
expects to see it.
|
|
|
|
|
|
|
|
|
|
Integers up to four bytes are stored in r3.
|
|
|
|
|
|
|
|
|
|
Longs are stored in r3 (most significant word) and r4 (least
|
|
|
|
|
significant word).
|
|
|
|
|
|
2011-01-09 04:20:33 +01:00
|
|
|
|
Small structures are always returned on stack. */
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
microblaze_store_return_value (struct type *type, struct regcache *regcache,
|
|
|
|
|
const gdb_byte *valbuf)
|
|
|
|
|
{
|
2012-09-27 12:40:01 +02:00
|
|
|
|
int len = TYPE_LENGTH (type);
|
* 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 21:28:52 +02:00
|
|
|
|
gdb_byte buf[8];
|
|
|
|
|
|
|
|
|
|
memset (buf, 0, sizeof(buf));
|
|
|
|
|
|
|
|
|
|
/* Integral and pointer return values. */
|
|
|
|
|
|
2012-09-27 12:40:01 +02:00
|
|
|
|
if (len > 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 21:28:52 +02:00
|
|
|
|
{
|
2012-09-27 12:40:01 +02:00
|
|
|
|
gdb_assert (len == 8);
|
* 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 21:28:52 +02:00
|
|
|
|
memcpy (buf, valbuf, 8);
|
|
|
|
|
regcache_cooked_write (regcache, MICROBLAZE_RETVAL_REGNUM+1, buf + 4);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
/* ??? Do we need to do any sign-extension here? */
|
2012-09-27 12:40:01 +02:00
|
|
|
|
memcpy (buf + 4 - len, valbuf, len);
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
regcache_cooked_write (regcache, MICROBLAZE_RETVAL_REGNUM, buf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum return_value_convention
|
2012-05-16 16:35:09 +02:00
|
|
|
|
microblaze_return_value (struct gdbarch *gdbarch, struct value *function,
|
* 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 21:28:52 +02:00
|
|
|
|
struct type *type, struct regcache *regcache,
|
|
|
|
|
gdb_byte *readbuf, const gdb_byte *writebuf)
|
|
|
|
|
{
|
|
|
|
|
if (readbuf)
|
|
|
|
|
microblaze_extract_return_value (type, regcache, readbuf);
|
|
|
|
|
if (writebuf)
|
|
|
|
|
microblaze_store_return_value (type, regcache, writebuf);
|
|
|
|
|
|
|
|
|
|
return RETURN_VALUE_REGISTER_CONVENTION;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
microblaze_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
|
|
|
|
|
{
|
|
|
|
|
return (TYPE_LENGTH (type) == 16);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
microblaze_write_pc (struct regcache *regcache, CORE_ADDR pc)
|
|
|
|
|
{
|
|
|
|
|
regcache_cooked_write_unsigned (regcache, MICROBLAZE_PC_REGNUM, pc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int dwarf2_to_reg_map[78] =
|
|
|
|
|
{ 0 /* r0 */, 1 /* r1 */, 2 /* r2 */, 3 /* r3 */, /* 0- 3 */
|
|
|
|
|
4 /* r4 */, 5 /* r5 */, 6 /* r6 */, 7 /* r7 */, /* 4- 7 */
|
|
|
|
|
8 /* r8 */, 9 /* r9 */, 10 /* r10 */, 11 /* r11 */, /* 8-11 */
|
|
|
|
|
12 /* r12 */, 13 /* r13 */, 14 /* r14 */, 15 /* r15 */, /* 12-15 */
|
|
|
|
|
16 /* r16 */, 17 /* r17 */, 18 /* r18 */, 19 /* r19 */, /* 16-19 */
|
|
|
|
|
20 /* r20 */, 21 /* r21 */, 22 /* r22 */, 23 /* r23 */, /* 20-23 */
|
|
|
|
|
24 /* r24 */, 25 /* r25 */, 26 /* r26 */, 27 /* r27 */, /* 24-25 */
|
|
|
|
|
28 /* r28 */, 29 /* r29 */, 30 /* r30 */, 31 /* r31 */, /* 28-31 */
|
|
|
|
|
-1 /* $f0 */, -1 /* $f1 */, -1 /* $f2 */, -1 /* $f3 */, /* 32-35 */
|
|
|
|
|
-1 /* $f4 */, -1 /* $f5 */, -1 /* $f6 */, -1 /* $f7 */, /* 36-39 */
|
|
|
|
|
-1 /* $f8 */, -1 /* $f9 */, -1 /* $f10 */, -1 /* $f11 */, /* 40-43 */
|
|
|
|
|
-1 /* $f12 */, -1 /* $f13 */, -1 /* $f14 */, -1 /* $f15 */, /* 44-47 */
|
|
|
|
|
-1 /* $f16 */, -1 /* $f17 */, -1 /* $f18 */, -1 /* $f19 */, /* 48-51 */
|
|
|
|
|
-1 /* $f20 */, -1 /* $f21 */, -1 /* $f22 */, -1 /* $f23 */, /* 52-55 */
|
|
|
|
|
-1 /* $f24 */, -1 /* $f25 */, -1 /* $f26 */, -1 /* $f27 */, /* 56-59 */
|
|
|
|
|
-1 /* $f28 */, -1 /* $f29 */, -1 /* $f30 */, -1 /* $f31 */, /* 60-63 */
|
|
|
|
|
-1 /* hi */, -1 /* lo */, -1 /* accum*/, 33 /* rmsr */, /* 64-67 */
|
|
|
|
|
-1 /* $fcc1*/, -1 /* $fcc2*/, -1 /* $fcc3*/, -1 /* $fcc4*/, /* 68-71 */
|
|
|
|
|
-1 /* $fcc5*/, -1 /* $fcc6*/, -1 /* $fcc7*/, -1 /* $ap */, /* 72-75 */
|
|
|
|
|
-1 /* $rap */, -1 /* $frp */ /* 76-77 */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
microblaze_dwarf2_reg_to_regnum (struct gdbarch *gdbarch, int reg)
|
|
|
|
|
{
|
2015-10-27 00:05:21 +01:00
|
|
|
|
if (reg >= 0 && reg < sizeof (dwarf2_to_reg_map))
|
|
|
|
|
return dwarf2_to_reg_map[reg];
|
|
|
|
|
return -1;
|
* 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 21:28:52 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-20 02:47:52 +02:00
|
|
|
|
static void
|
|
|
|
|
microblaze_register_g_packet_guesses (struct gdbarch *gdbarch)
|
|
|
|
|
{
|
|
|
|
|
register_remote_g_packet_guess (gdbarch,
|
|
|
|
|
4 * MICROBLAZE_NUM_CORE_REGS,
|
|
|
|
|
tdesc_microblaze);
|
|
|
|
|
|
|
|
|
|
register_remote_g_packet_guess (gdbarch,
|
|
|
|
|
4 * MICROBLAZE_NUM_REGS,
|
|
|
|
|
tdesc_microblaze_with_stack_protect);
|
|
|
|
|
}
|
|
|
|
|
|
* 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 21:28:52 +02:00
|
|
|
|
static struct gdbarch *
|
|
|
|
|
microblaze_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
|
|
|
|
{
|
|
|
|
|
struct gdbarch_tdep *tdep;
|
|
|
|
|
struct gdbarch *gdbarch;
|
2014-07-20 02:47:52 +02:00
|
|
|
|
struct tdesc_arch_data *tdesc_data = NULL;
|
|
|
|
|
const struct target_desc *tdesc = info.target_desc;
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
/* If there is already a candidate, use it. */
|
|
|
|
|
arches = gdbarch_list_lookup_by_info (arches, &info);
|
|
|
|
|
if (arches != NULL)
|
|
|
|
|
return arches->gdbarch;
|
2014-07-20 02:47:52 +02:00
|
|
|
|
if (tdesc == NULL)
|
|
|
|
|
tdesc = tdesc_microblaze;
|
|
|
|
|
|
|
|
|
|
/* Check any target description for validity. */
|
|
|
|
|
if (tdesc_has_registers (tdesc))
|
|
|
|
|
{
|
|
|
|
|
const struct tdesc_feature *feature;
|
|
|
|
|
int valid_p;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
feature = tdesc_find_feature (tdesc,
|
|
|
|
|
"org.gnu.gdb.microblaze.core");
|
|
|
|
|
if (feature == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
tdesc_data = tdesc_data_alloc ();
|
|
|
|
|
|
|
|
|
|
valid_p = 1;
|
|
|
|
|
for (i = 0; i < MICROBLAZE_NUM_CORE_REGS; i++)
|
|
|
|
|
valid_p &= tdesc_numbered_register (feature, tdesc_data, i,
|
|
|
|
|
microblaze_register_names[i]);
|
|
|
|
|
feature = tdesc_find_feature (tdesc,
|
|
|
|
|
"org.gnu.gdb.microblaze.stack-protect");
|
|
|
|
|
if (feature != NULL)
|
|
|
|
|
{
|
|
|
|
|
valid_p = 1;
|
|
|
|
|
valid_p &= tdesc_numbered_register (feature, tdesc_data,
|
|
|
|
|
MICROBLAZE_SLR_REGNUM,
|
|
|
|
|
"rslr");
|
|
|
|
|
valid_p &= tdesc_numbered_register (feature, tdesc_data,
|
|
|
|
|
MICROBLAZE_SHR_REGNUM,
|
|
|
|
|
"rshr");
|
|
|
|
|
}
|
2014-10-10 19:07:06 +02:00
|
|
|
|
|
|
|
|
|
if (!valid_p)
|
|
|
|
|
{
|
|
|
|
|
tdesc_data_cleanup (tdesc_data);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
/* Allocate space for the new architecture. */
|
2013-12-28 23:31:23 +01:00
|
|
|
|
tdep = XNEW (struct 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 21:28:52 +02:00
|
|
|
|
gdbarch = gdbarch_alloc (&info, tdep);
|
|
|
|
|
|
|
|
|
|
set_gdbarch_long_double_bit (gdbarch, 128);
|
|
|
|
|
|
|
|
|
|
set_gdbarch_num_regs (gdbarch, MICROBLAZE_NUM_REGS);
|
|
|
|
|
set_gdbarch_register_name (gdbarch, microblaze_register_name);
|
|
|
|
|
set_gdbarch_register_type (gdbarch, microblaze_register_type);
|
|
|
|
|
|
|
|
|
|
/* Register numbers of various important registers. */
|
|
|
|
|
set_gdbarch_sp_regnum (gdbarch, MICROBLAZE_SP_REGNUM);
|
|
|
|
|
set_gdbarch_pc_regnum (gdbarch, MICROBLAZE_PC_REGNUM);
|
|
|
|
|
|
|
|
|
|
/* Map Dwarf2 registers to GDB registers. */
|
|
|
|
|
set_gdbarch_dwarf2_reg_to_regnum (gdbarch, microblaze_dwarf2_reg_to_regnum);
|
|
|
|
|
|
|
|
|
|
/* Call dummy code. */
|
|
|
|
|
set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
|
|
|
|
|
|
|
|
|
|
set_gdbarch_return_value (gdbarch, microblaze_return_value);
|
|
|
|
|
set_gdbarch_stabs_argument_has_addr
|
|
|
|
|
(gdbarch, microblaze_stabs_argument_has_addr);
|
|
|
|
|
|
|
|
|
|
set_gdbarch_skip_prologue (gdbarch, microblaze_skip_prologue);
|
|
|
|
|
|
|
|
|
|
/* Stack grows downward. */
|
|
|
|
|
set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
|
|
|
|
|
|
2016-11-03 15:35:14 +01:00
|
|
|
|
set_gdbarch_breakpoint_kind_from_pc (gdbarch,
|
|
|
|
|
microblaze_breakpoint::kind_from_pc);
|
|
|
|
|
set_gdbarch_sw_breakpoint_from_kind (gdbarch,
|
|
|
|
|
microblaze_breakpoint::bp_from_kind);
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
set_gdbarch_frame_args_skip (gdbarch, 8);
|
|
|
|
|
|
|
|
|
|
set_gdbarch_print_insn (gdbarch, print_insn_microblaze);
|
|
|
|
|
|
|
|
|
|
set_gdbarch_write_pc (gdbarch, microblaze_write_pc);
|
|
|
|
|
|
|
|
|
|
set_gdbarch_unwind_pc (gdbarch, microblaze_unwind_pc);
|
|
|
|
|
|
2014-07-20 02:47:52 +02:00
|
|
|
|
microblaze_register_g_packet_guesses (gdbarch);
|
|
|
|
|
|
* 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 21:28:52 +02:00
|
|
|
|
frame_base_set_default (gdbarch, µblaze_frame_base);
|
|
|
|
|
|
|
|
|
|
/* Hook in ABI-specific overrides, if they have been registered. */
|
|
|
|
|
gdbarch_init_osabi (info, gdbarch);
|
|
|
|
|
|
2011-01-09 04:20:33 +01:00
|
|
|
|
/* Unwind the frame. */
|
* 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 21:28:52 +02:00
|
|
|
|
dwarf2_append_unwinders (gdbarch);
|
|
|
|
|
frame_unwind_append_unwinder (gdbarch, µblaze_frame_unwind);
|
|
|
|
|
frame_base_append_sniffer (gdbarch, dwarf2_frame_base_sniffer);
|
2014-07-20 02:47:52 +02:00
|
|
|
|
if (tdesc_data != NULL)
|
|
|
|
|
tdesc_use_registers (gdbarch, tdesc, tdesc_data);
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
return gdbarch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Provide a prototype to silence -Wmissing-prototypes. */
|
|
|
|
|
void _initialize_microblaze_tdep (void);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_initialize_microblaze_tdep (void)
|
|
|
|
|
{
|
|
|
|
|
register_gdbarch_init (bfd_arch_microblaze, microblaze_gdbarch_init);
|
|
|
|
|
|
2014-07-20 02:47:52 +02:00
|
|
|
|
initialize_tdesc_microblaze_with_stack_protect ();
|
|
|
|
|
initialize_tdesc_microblaze ();
|
* 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 21:28:52 +02:00
|
|
|
|
/* Debug this files internals. */
|
2012-08-02 11:36:40 +02:00
|
|
|
|
add_setshow_zuinteger_cmd ("microblaze", class_maintenance,
|
|
|
|
|
µblaze_debug_flag, _("\
|
* 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 21:28:52 +02:00
|
|
|
|
Set microblaze debugging."), _("\
|
|
|
|
|
Show microblaze debugging."), _("\
|
|
|
|
|
When non-zero, microblaze specific debugging is enabled."),
|
2012-08-02 11:36:40 +02:00
|
|
|
|
NULL,
|
|
|
|
|
NULL,
|
|
|
|
|
&setdebuglist, &showdebuglist);
|
* 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 21:28:52 +02:00
|
|
|
|
|
|
|
|
|
}
|