binutils-gdb/gdb/sparclet-rom.c

317 lines
11 KiB
C
Raw Normal View History

/* Remote target glue for the SPARC Sparclet ROM monitor.
Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free
Software Foundation, Inc.
1999-07-07 22:19:36 +02:00
This file is part of GDB.
1999-07-07 22:19:36 +02:00
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.
1999-07-07 22:19:36 +02:00
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.
1999-07-07 22:19:36 +02:00
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. */
#include "defs.h"
#include "gdbcore.h"
#include "target.h"
#include "monitor.h"
#include "serial.h"
#include "srec.h"
#include "symtab.h"
1999-07-07 22:19:36 +02:00
#include "symfile.h" /* for generic_load */
#include "regcache.h"
#include <time.h>
2000-05-28 03:12:42 +02:00
extern void report_transfer_performance (unsigned long, time_t, time_t);
static struct target_ops sparclet_ops;
2000-05-28 03:12:42 +02:00
static void sparclet_open (char *args, int from_tty);
/* This array of registers need to match the indexes used by GDB.
This exists because the various ROM monitors use different strings
than does GDB, and don't necessarily support all the registers
either. So, typing "info reg sp" becomes a "r30". */
/*PSR 0x00000080 impl ver icc AW LE EE EC EF PIL S PS ET CWP WIM
1999-07-07 22:19:36 +02:00
0x0 0x0 0x0 0 0 0 0 0 0x0 1 0 0 0x00 0x2
0000010
INS LOCALS OUTS GLOBALS
0 0x00000000 0x00000000 0x00000000 0x00000000
1 0x00000000 0x00000000 0x00000000 0x00000000
2 0x00000000 0x00000000 0x00000000 0x00000000
3 0x00000000 0x00000000 0x00000000 0x00000000
4 0x00000000 0x00000000 0x00000000 0x00000000
5 0x00000000 0x00001000 0x00000000 0x00000000
6 0x00000000 0x00000000 0x123f0000 0x00000000
7 0x00000000 0x00000000 0x00000000 0x00000000
pc: 0x12010000 0x00000000 unimp
npc: 0x12010004 0x00001000 unimp 0x1000
tbr: 0x00000000
y: 0x00000000
*/
/* these correspond to the offsets from tm-* files from config directories */
/* is wim part of psr?? */
/* monitor wants lower case */
2000-05-10 Michael Snyder <msnyder@seadog.cygnus.com> Make Sparc a Multi-Arch target. Discard PARAMS macro (require ANSI). * sparc-tdep.c: include arch-utils.h. (SPARC_HAS_FPU, FP_REGISTER_BYTES, FP_MAX_REG NUM, SPARC_INTREG_SIZE, DUMMY_REG_SAVE_OFFSET): provide multi-arch-compatible definitions. (GDB_TARGET_IS_SPARC64): make into a runtime test. (struct frame_extra_info): Define, use instead of the macro. (Many places): Use alloca instead of statically allocated buffers that depend on a multi-arch variable such as MAX_REGISTER_RAW_SIZE. (sparc_extract_struct_value_address): Accept a pointer arg instead of an array sized by REGISTER_BYTES. (examine_prologue): Accept a pointer to an array of CORE_ADDR, instead of the defunct struct frame_saved_regs. Recognize new Sparc64 store instructions as part of the prologue. Ignore the destination of a frame store when parsing the prologue (so long as it's on the stack). (sparc_push_dummy_frame): Fix incorrect buffer offset for PSTATE. (sparc_frame_find_saved_regs): Accept a ptr to an array of CORE_ADDR instead of the defunct struct frame_saved_regs. (supply_gregset): Discard unnecessary 'zerobuf': just send NULL to supply_register. Provide 4-byte offset to compensate for diff between size of the prgreg_t elements on a 64-bit host and size of the registers for a 32-bit target. Fill all inaccessible regs with zero so they won't keep being requested again and again. (fill_gregset): Handle 32/64 size difference between registers and prgreg_t. Handle as many new 64-bit regs as possible. (supply_fpregset, fill_fpregset): Attempt to handle 64-bit world. (sparc_push_arguments): Rename to sparc32_push_arguments. Copy arguments into registers as well as onto stack, so that the CALL_DUMMY (code pushed onto the target stack) is not required. (sparc_extract_return_value): Rename to sparc32_extract_return_value. (sparc_store_return_value): Use memset instead of bzero. Use write_register_gen instead of write_register_bytes. (sparclet_store_return_value): New function. (_initialize_sparc_tdep): Call register_gdbarch_init to activate the gdbarch multi-architecture system. (sp64_push_arguments): Rename to sparc64_push_arguments. Extend to store arguments in general registers as well as on stack. (sparc64_extract_return_value): Rename to sp64_extract_return_value. Use as a private function, to be called by the new external function sparc64_extract_return_value. (sparclet_extract_return_value): New function. (sparc32_stack_align, sparc64_stack_align, sparc32_register_name, sparc64_register_name, sparc_print_extra_frame_info, sparclite_register_name, sparclet_register_name, sparc_push_return_address, sparc64_use_struct_convention, sparc32_store_struct_return, sparc64_store_struct_return, sparc32_register_virtual_type, sparc64_register_virtual_type, sparc32_register_size, sparc64_register_size, sparc32_register_byte, sparc64_register_byte, sparc_gdbarch_skip_prologue, sparc_convert_to_virtual, sparc_convert_to_raw, sparc_frame_init_saved_regs, sparc_frame_address, sparc_gdbarch_fix_call_dummy, sparc_coerce_float_to_double, sparc_call_dummy_address, sparc_y_regnum, sparc_reg_struct_has_addr, sparc_intreg_size, sparc_return_value_on_stack): New functions supporting multi-arch. (sparc_gdbarch_init): New function; initialize multi-arch. (struct gdbarch_tdep): Define, use for private multi-arch data. * config/sparc/tm-sparc.h: Move definitions around, enclose with #ifdef GDB_MULTI_ARCH tests, provide some multi-arch alternate definitions. Add enums for register names, to help debugging gdb. This header file must work for non-multi-arch and for multi-arch. * config/sparc/tm-sp64.h: Add GDB_MULTI_ARCH configuration. Also add AT_ENTRY_POINT definitions for CALL_DUMMY, for non-multi-arch case. Define GDB_MULTI_ARCH. * config/sparc/tm-sparclet.h: Add GDB_MULTI_ARCH configuration. Do not define GDB_MULTI_ARCH (bfd does not correctly identify target). * config/sparc/tm-sparclite.h: Ditto. * config/sparc/tm-sun4sol2.h: Define GDB_MULTI_ARCH. * sparclet-rom.c (sparclet_regnames): Initialize explicitly, to avoid using deprecated REGISTER_NAMES macro. * Makefile.in: Let sparc-tdep.c depend on arch-utils.h.
2000-05-10 22:07:25 +02:00
static char *sparclet_regnames[] = {
"g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
"o0", "o1", "o2", "o3", "o4", "o5", "o6", "o7",
"l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
"i0", "i1", "i2", "i3", "i4", "i5", "i6", "i7",
"", "", "", "", "", "", "", "", /* no FPU regs */
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
/* no CPSR, FPSR */
"y", "psr", "wim", "tbr", "pc", "npc", "", "",
"ccsr", "ccpr", "cccrcr", "ccor", "ccobr", "ccibr", "ccir", "",
/* ASR15 ASR19 (don't display them) */
"asr1", "", "asr17", "asr18", "", "asr20", "asr21", "asr22",
/*
"awr0", "awr1", "awr2", "awr3", "awr4", "awr5", "awr6", "awr7",
"awr8", "awr9", "awr10", "awr11", "awr12", "awr13", "awr14", "awr15",
"awr16", "awr17", "awr18", "awr19", "awr20", "awr21", "awr22", "awr23",
"awr24", "awr25", "awr26", "awr27", "awr28", "awr29", "awr30", "awr31",
"apsr",
*/
};
/* Function: sparclet_supply_register
Just returns with no action.
This function is required, because parse_register_dump (monitor.c)
expects to be able to call it. If we don't supply something, it will
call a null pointer and core-dump. Since this function does not
actually do anything, GDB will request the registers individually. */
static void
2000-07-30 03:48:28 +02:00
sparclet_supply_register (char *regname, int regnamelen, char *val, int vallen)
{
return;
}
static void
2001-07-11 19:52:32 +02:00
sparclet_load (struct serial *desc, char *file, int hashmark)
{
bfd *abfd;
asection *s;
int i;
CORE_ADDR load_offset;
time_t start_time, end_time;
unsigned long data_count = 0;
/* enable user to specify address for downloading as 2nd arg to load */
1999-07-07 22:19:36 +02:00
i = sscanf (file, "%*s 0x%lx", &load_offset);
if (i >= 1)
{
char *p;
for (p = file; *p != '\000' && !isspace (*p); p++);
*p = '\000';
}
else
load_offset = 0;
abfd = bfd_openr (file, 0);
if (!abfd)
{
printf_filtered ("Unable to open file %s\n", file);
return;
}
if (bfd_check_format (abfd, bfd_object) == 0)
{
printf_filtered ("File is not an object file\n");
return;
}
1999-07-07 22:19:36 +02:00
start_time = time (NULL);
for (s = abfd->sections; s; s = s->next)
if (s->flags & SEC_LOAD)
{
bfd_size_type section_size;
bfd_vma vma;
vma = bfd_get_section_vma (abfd, s) + load_offset;
section_size = bfd_section_size (abfd, s);
data_count += section_size;
printf_filtered ("%s\t: 0x%4x .. 0x%4x ",
bfd_get_section_name (abfd, s), vma,
vma + section_size);
gdb_flush (gdb_stdout);
monitor_printf ("load c r %x %x\r", vma, section_size);
monitor_expect ("load: loading ", NULL, 0);
monitor_expect ("\r", NULL, 0);
for (i = 0; i < section_size; i += 2048)
{
int numbytes;
char buf[2048];
numbytes = min (sizeof buf, section_size - i);
bfd_get_section_contents (abfd, s, buf, i, numbytes);
serial_write (desc, buf, numbytes);
if (hashmark)
{
putchar_unfiltered ('#');
gdb_flush (gdb_stdout);
}
} /* Per-packet (or S-record) loop */
monitor_expect_prompt (NULL, 0);
putchar_unfiltered ('\n');
} /* Loadable sections */
monitor_printf ("reg pc %x\r", bfd_get_start_address (abfd));
monitor_expect_prompt (NULL, 0);
monitor_printf ("reg npc %x\r", bfd_get_start_address (abfd) + 4);
monitor_expect_prompt (NULL, 0);
monitor_printf ("run\r");
end_time = time (NULL);
1999-07-07 22:19:36 +02:00
if (hashmark)
putchar_unfiltered ('\n');
report_transfer_performance (data_count, start_time, end_time);
pop_target ();
push_remote_target (monitor_get_dev_name (), 1);
throw_exception (RETURN_QUIT);
}
/* Define the monitor command strings. Since these are passed directly
through to a printf style function, we may include formatting
strings. We also need a CR or LF on the end. */
/* need to pause the monitor for timing reasons, so slow it down */
1999-07-07 22:19:36 +02:00
static char *sparclet_inits[] =
{"\n\r\r\n", NULL};
1999-07-07 22:19:36 +02:00
static struct monitor_ops sparclet_cmds;
1999-07-07 22:19:36 +02:00
static void
init_sparclet_cmds (void)
{
1999-07-07 22:19:36 +02:00
sparclet_cmds.flags = MO_CLR_BREAK_USES_ADDR |
MO_HEX_PREFIX |
MO_NO_ECHO_ON_OPEN |
MO_NO_ECHO_ON_SETMEM |
MO_RUN_FIRST_TIME |
MO_GETMEM_READ_SINGLE; /* flags */
sparclet_cmds.init = sparclet_inits; /* Init strings */
sparclet_cmds.cont = "cont\r"; /* continue command */
sparclet_cmds.step = "step\r"; /* single step */
sparclet_cmds.stop = "\r"; /* break interrupts the program */
sparclet_cmds.set_break = "+bp %x\r"; /* set a breakpoint */
sparclet_cmds.clr_break = "-bp %x\r"; /* can't use "br" because only 2 hw bps are supported */
sparclet_cmds.clr_all_break = "-bp %x\r"; /* clear a breakpoint */
"-bp\r"; /* clear all breakpoints */
sparclet_cmds.fill = "fill %x -n %x -v %x -b\r"; /* fill (start length val) */
/* can't use "fi" because it takes words, not bytes */
/* ex [addr] [-n count] [-b|-s|-l] default: ex cur -n 1 -b */
1999-07-07 22:19:36 +02:00
sparclet_cmds.setmem.cmdb = "ex %x -b\r%x\rq\r"; /* setmem.cmdb (addr, value) */
sparclet_cmds.setmem.cmdw = "ex %x -s\r%x\rq\r"; /* setmem.cmdw (addr, value) */
sparclet_cmds.setmem.cmdl = "ex %x -l\r%x\rq\r"; /* setmem.cmdl (addr, value) */
sparclet_cmds.setmem.cmdll = NULL; /* setmem.cmdll (addr, value) */
sparclet_cmds.setmem.resp_delim = NULL; /*": " *//* setmem.resp_delim */
sparclet_cmds.setmem.term = NULL; /*"? " *//* setmem.term */
sparclet_cmds.setmem.term_cmd = NULL; /*"q\r" *//* setmem.term_cmd */
/* since the parsing of multiple bytes is difficult due to
interspersed addresses, we'll only read 1 value at a time,
even tho these can handle a count */
/* we can use -n to set count to read, but may have to parse? */
1999-07-07 22:19:36 +02:00
sparclet_cmds.getmem.cmdb = "ex %x -n 1 -b\r"; /* getmem.cmdb (addr, #bytes) */
sparclet_cmds.getmem.cmdw = "ex %x -n 1 -s\r"; /* getmem.cmdw (addr, #swords) */
sparclet_cmds.getmem.cmdl = "ex %x -n 1 -l\r"; /* getmem.cmdl (addr, #words) */
sparclet_cmds.getmem.cmdll = NULL; /* getmem.cmdll (addr, #dwords) */
sparclet_cmds.getmem.resp_delim = ": "; /* getmem.resp_delim */
sparclet_cmds.getmem.term = NULL; /* getmem.term */
sparclet_cmds.getmem.term_cmd = NULL; /* getmem.term_cmd */
sparclet_cmds.setreg.cmd = "reg %s 0x%x\r"; /* setreg.cmd (name, value) */
sparclet_cmds.setreg.resp_delim = NULL; /* setreg.resp_delim */
sparclet_cmds.setreg.term = NULL; /* setreg.term */
sparclet_cmds.setreg.term_cmd = NULL; /* setreg.term_cmd */
sparclet_cmds.getreg.cmd = "reg %s\r"; /* getreg.cmd (name) */
sparclet_cmds.getreg.resp_delim = " "; /* getreg.resp_delim */
sparclet_cmds.getreg.term = NULL; /* getreg.term */
sparclet_cmds.getreg.term_cmd = NULL; /* getreg.term_cmd */
sparclet_cmds.dump_registers = "reg\r"; /* dump_registers */
sparclet_cmds.register_pattern = "\\(\\w+\\)=\\([0-9a-fA-F]+\\)"; /* register_pattern */
sparclet_cmds.supply_register = sparclet_supply_register; /* supply_register */
sparclet_cmds.load_routine = sparclet_load; /* load_routine */
sparclet_cmds.load = NULL; /* download command (srecs on console) */
sparclet_cmds.loadresp = NULL; /* load response */
sparclet_cmds.prompt = "monitor>"; /* monitor command prompt */
/* yikes! gdb core dumps without this delimitor!! */
1999-07-07 22:19:36 +02:00
sparclet_cmds.line_term = "\r"; /* end-of-command delimitor */
sparclet_cmds.cmd_end = NULL; /* optional command terminator */
sparclet_cmds.target = &sparclet_ops; /* target operations */
sparclet_cmds.stopbits = SERIAL_1_STOPBITS; /* number of stop bits */
sparclet_cmds.regnames = sparclet_regnames; /* registers names */
sparclet_cmds.magic = MONITOR_OPS_MAGIC; /* magic */
};
static void
2000-07-30 03:48:28 +02:00
sparclet_open (char *args, int from_tty)
{
monitor_open (args, &sparclet_cmds, from_tty);
}
void
2000-07-30 03:48:28 +02:00
_initialize_sparclet (void)
{
int i;
1999-07-07 22:19:36 +02:00
init_sparclet_cmds ();
for (i = 0; i < NUM_REGS; i++)
if (sparclet_regnames[i][0] == 'c' ||
sparclet_regnames[i][0] == 'a')
1999-07-07 22:19:36 +02:00
sparclet_regnames[i] = 0; /* mon can't report c* or a* regs */
1999-07-07 22:19:36 +02:00
sparclet_regnames[0] = 0; /* mon won't report %G0 */
init_monitor_ops (&sparclet_ops);
1999-07-07 22:19:36 +02:00
sparclet_ops.to_shortname = "sparclet"; /* for the target command */
sparclet_ops.to_longname = "SPARC Sparclet monitor";
/* use SW breaks; target only supports 2 HW breakpoints */
1999-07-07 22:19:36 +02:00
sparclet_ops.to_insert_breakpoint = memory_insert_breakpoint;
sparclet_ops.to_remove_breakpoint = memory_remove_breakpoint;
1999-07-07 22:19:36 +02:00
sparclet_ops.to_doc =
"Use a board running the Sparclet debug monitor.\n\
Specify the serial device it is connected to (e.g. /dev/ttya).";
sparclet_ops.to_open = sparclet_open;
add_target (&sparclet_ops);
}