1993-09-17 17:27:43 +00:00
|
|
|
/* Generic remote debugging interface for simulators.
|
1997-03-13 20:28:26 +00:00
|
|
|
Copyright 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
|
1993-09-17 17:27:43 +00:00
|
|
|
Contributed by Cygnus Support.
|
1994-05-18 20:42:06 +00:00
|
|
|
Steve Chamberlain (sac@cygnus.com).
|
1993-01-03 22:36:04 +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 2 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, write to the Free Software
|
1995-08-02 03:41:12 +00:00
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1993-01-03 22:36:04 +00:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "inferior.h"
|
|
|
|
#include "wait.h"
|
|
|
|
#include "value.h"
|
* configure.in: Check for working mmap, ansi headers, string.h,
strings.h, and memory.h.
* configure: Regenerated.
* gdb_stat.h: New file, "portable" <sys/stat.h>.
* gdb_string.h: New file, "portable" <string.h>.
* altos-xdep.c, arm-tdep.c, arm-xdep.c, convex-tdep.c,
convex-xdep.c, coredep.c, cxux-nat.c, dbxread.c, exec.c,
gould-xdep.c, hppa-tdep.c, i386aix-nat.c, i386b-nat.c,
i386mach-nat.c, i386v-nat.c, infptrace.c, m88k-nat.c, main.c,
mdebugread.c, objfiles.c, os9kread.c, procfs.c, pyr-xdep.c,
rs6000-nat.c, source.c, standalone.c, stuff.c, sun386-nat.c,
symfile.c, symm-nat.c, symm-tdep.c, symtab.c, top.c, ultra3-nat.c,
ultra3-xdep.c, umax-xdep.c, xcoffread.c: Include "gdb_stat.h"
instead of <sys/stat.h>.
* alpha-tdep.c, breakpoint.c, buildsym.c, c-typeprint.c,
ch-typeprint.c, coffread.c, command.c, core-sol2.c, core-svr4.c,
core.c, corelow.c, cp-valprint.c, dbxread.c, dcache.c, demangle.c,
dpx2-nat.c, dstread.c, dwarfread.c, elfread.c, environ.c, eval.c,
exec.c, f-lang.c, f-typeprint.c, f-valprint.c, findvar.c,
fork-child.c, gdbtypes.c, hpread.c, i386-tdep.c, infcmd.c,
inflow.c, infptrace.c, infrun.c, irix5-nat.c, language.c,
m2-typeprint.c, main.c, mdebugread.c, minsyms.c, mipsread.c,
monitor.c, nlmread.c, objfiles.c, os9kread.c, osfsolib.c, parse.c,
printcmd.c, procfs.c, regex.c, remote-adapt.c, remote-arc.c,
remote-array.c, remote-bug.c, remote-e7000.c, remote-eb.c,
remote-es.c, remote-hms.c, remote-mm.c, remote-os9k.c,
remote-pa.c, remote-sim.c, remote-st.c, remote-udi.c,
remote-utils.c, remote-vx.c, remote-vx29k.c, remote-vx68.c,
remote-vx960.c, remote-vxmips.c, remote-vxsparc.c, remote.c,
solib.c, somread.c, source.c, stabsread.c, stack.c, symfile.c,
symmisc.c, symtab.c, target.c, top.c, typeprint.c, utils.c,
valarith.c, valops.c, valprint.c, values.c, xcoffread.c: Include
"gdb_string.h" instead of <string.h>.
* gdbtk.c: Likewise.
* config/xm-sysv4.h, i386/xm-ptx.h, m68k/xm-sun3os4.h,
sparc/xm-sun4os4.h (HAVE_MMAP): Removed.
* config/xm-lynx.h, config/i386/xm-ptx.h,
config/m68k/nm-apollo68b.h, config/m68k/xm-hp300hpux.h,
config/mips/xm-irix3.h, config/mips/xm-mips.h,
config/mips/xm-news-mips.h, config/mips/xm-riscos.h,
config/pa/hppah.h, config/rs6000/xm-rs6000.h,
config/sparc/xm-sun4os4.h, config/sparc/xm-sun4sol2.h,
config/vax/xm-vaxbsd.h, config/vax/xm-vaxult.h,
config/vax/xm-vaxult2.h (MEM_FNS_DECLARED): Removed.
* config/mips/xm-irix3.h, config/mips/xm-mips.h,
config/pa/xm-hppah.h (memcpy, memset): Removed declarations.
1995-08-01 20:14:27 +00:00
|
|
|
#include "gdb_string.h"
|
1993-01-03 22:36:04 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include "terminal.h"
|
|
|
|
#include "target.h"
|
|
|
|
#include "gdbcore.h"
|
1996-11-20 08:55:42 +00:00
|
|
|
#include "callback.h"
|
1993-10-12 19:03:59 +00:00
|
|
|
#include "remote-sim.h"
|
1993-10-08 00:37:19 +00:00
|
|
|
#include "remote-utils.h"
|
1997-06-13 17:30:24 +00:00
|
|
|
#include "command.h"
|
1993-09-17 17:27:43 +00:00
|
|
|
|
1996-08-13 00:01:37 +00:00
|
|
|
/* Prototypes */
|
|
|
|
|
|
|
|
static void dump_mem PARAMS ((char *buf, int len));
|
|
|
|
|
1996-11-20 08:55:42 +00:00
|
|
|
static void init_callbacks PARAMS ((void));
|
|
|
|
|
|
|
|
static void end_callbacks PARAMS ((void));
|
|
|
|
|
|
|
|
static int gdb_os_write_stdout PARAMS ((host_callback *, const char *, int));
|
|
|
|
|
1997-03-17 14:23:31 +00:00
|
|
|
static void gdb_os_flush_stdout PARAMS ((host_callback *));
|
|
|
|
|
|
|
|
static int gdb_os_write_stderr PARAMS ((host_callback *, const char *, int));
|
|
|
|
|
|
|
|
static void gdb_os_flush_stderr PARAMS ((host_callback *));
|
|
|
|
|
1997-04-18 12:24:52 +00:00
|
|
|
static int gdb_os_poll_quit PARAMS ((host_callback *));
|
|
|
|
|
1997-03-17 14:23:31 +00:00
|
|
|
/* printf_filtered is depreciated */
|
1996-11-20 08:55:42 +00:00
|
|
|
static void gdb_os_printf_filtered PARAMS ((host_callback *, const char *, ...));
|
|
|
|
|
1997-03-28 20:48:12 +00:00
|
|
|
static void gdb_os_vprintf_filtered PARAMS ((host_callback *, const char *, va_list));
|
1997-03-17 14:23:31 +00:00
|
|
|
|
1997-03-28 20:48:12 +00:00
|
|
|
static void gdb_os_evprintf_filtered PARAMS ((host_callback *, const char *, va_list));
|
1997-03-17 14:23:31 +00:00
|
|
|
|
1996-12-09 02:06:42 +00:00
|
|
|
static void gdb_os_error PARAMS ((host_callback *, const char *, ...));
|
|
|
|
|
1996-08-13 00:01:37 +00:00
|
|
|
static void gdbsim_fetch_register PARAMS ((int regno));
|
|
|
|
|
|
|
|
static void gdbsim_store_register PARAMS ((int regno));
|
|
|
|
|
|
|
|
static void gdbsim_kill PARAMS ((void));
|
|
|
|
|
|
|
|
static void gdbsim_load PARAMS ((char *prog, int fromtty));
|
|
|
|
|
|
|
|
static void gdbsim_create_inferior PARAMS ((char *exec_file, char *args, char **env));
|
|
|
|
|
|
|
|
static void gdbsim_open PARAMS ((char *args, int from_tty));
|
|
|
|
|
|
|
|
static void gdbsim_close PARAMS ((int quitting));
|
|
|
|
|
|
|
|
static void gdbsim_detach PARAMS ((char *args, int from_tty));
|
|
|
|
|
|
|
|
static void gdbsim_resume PARAMS ((int pid, int step, enum target_signal siggnal));
|
|
|
|
|
|
|
|
static int gdbsim_wait PARAMS ((int pid, struct target_waitstatus *status));
|
|
|
|
|
|
|
|
static void gdbsim_prepare_to_store PARAMS ((void));
|
|
|
|
|
|
|
|
static int gdbsim_xfer_inferior_memory PARAMS ((CORE_ADDR memaddr,
|
|
|
|
char *myaddr, int len,
|
|
|
|
int write,
|
|
|
|
struct target_ops *target));
|
|
|
|
|
|
|
|
static void gdbsim_files_info PARAMS ((struct target_ops *target));
|
|
|
|
|
|
|
|
static void gdbsim_mourn_inferior PARAMS ((void));
|
|
|
|
|
1997-04-18 12:24:52 +00:00
|
|
|
static void gdbsim_stop PARAMS ((void));
|
|
|
|
|
1996-08-13 00:01:37 +00:00
|
|
|
static void simulator_command PARAMS ((char *args, int from_tty));
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
/* Naming convention:
|
|
|
|
|
|
|
|
sim_* are the interface to the simulator (see remote-sim.h).
|
|
|
|
gdbsim_* are stuff which is internal to gdb. */
|
1993-01-03 22:36:04 +00:00
|
|
|
|
|
|
|
/* Forward data declarations */
|
1993-09-17 17:27:43 +00:00
|
|
|
extern struct target_ops gdbsim_ops;
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
static int program_loaded = 0;
|
|
|
|
|
1996-12-30 08:34:35 +00:00
|
|
|
/* We must keep track of whether the simulator has been opened or not because
|
|
|
|
GDB can call a target's close routine twice, but sim_close doesn't allow
|
1997-03-13 20:28:26 +00:00
|
|
|
this. We also need to record the result of sim_open so we can pass it
|
|
|
|
back to the other sim_foo routines. */
|
|
|
|
static SIM_DESC gdbsim_desc = 0;
|
1996-12-30 08:34:35 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
static void
|
|
|
|
dump_mem (buf, len)
|
|
|
|
char *buf;
|
1993-01-03 22:36:04 +00:00
|
|
|
int len;
|
|
|
|
{
|
1993-09-17 17:27:43 +00:00
|
|
|
if (len <= 8)
|
|
|
|
{
|
|
|
|
if (len == 8 || len == 4)
|
|
|
|
{
|
|
|
|
long l[2];
|
|
|
|
memcpy (l, buf, len);
|
|
|
|
printf_filtered ("\t0x%x", l[0]);
|
|
|
|
printf_filtered (len == 8 ? " 0x%x\n" : "\n", l[1]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
printf_filtered ("\t");
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
printf_filtered ("0x%x ", buf[i]);
|
|
|
|
printf_filtered ("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1996-11-20 08:55:42 +00:00
|
|
|
static host_callback gdb_callback;
|
|
|
|
static int callbacks_initialized = 0;
|
|
|
|
|
|
|
|
/* Initialize gdb_callback. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_callbacks ()
|
|
|
|
{
|
|
|
|
if (! callbacks_initialized)
|
|
|
|
{
|
|
|
|
gdb_callback = default_callback;
|
1996-12-09 02:06:42 +00:00
|
|
|
gdb_callback.init (&gdb_callback);
|
|
|
|
gdb_callback.write_stdout = gdb_os_write_stdout;
|
1997-03-17 14:23:31 +00:00
|
|
|
gdb_callback.flush_stdout = gdb_os_flush_stdout;
|
|
|
|
gdb_callback.write_stderr = gdb_os_write_stderr;
|
|
|
|
gdb_callback.flush_stderr = gdb_os_flush_stderr;
|
1996-12-09 02:06:42 +00:00
|
|
|
gdb_callback.printf_filtered = gdb_os_printf_filtered;
|
1997-03-17 14:23:31 +00:00
|
|
|
gdb_callback.vprintf_filtered = gdb_os_vprintf_filtered;
|
|
|
|
gdb_callback.evprintf_filtered = gdb_os_evprintf_filtered;
|
1997-02-18 21:05:55 +00:00
|
|
|
gdb_callback.error = gdb_os_error;
|
1997-04-18 12:24:52 +00:00
|
|
|
gdb_callback.poll_quit = gdb_os_poll_quit;
|
|
|
|
gdb_callback.magic = HOST_CALLBACK_MAGIC;
|
1996-11-20 08:55:42 +00:00
|
|
|
callbacks_initialized = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Release callbacks (free resources used by them). */
|
|
|
|
|
|
|
|
static void
|
|
|
|
end_callbacks ()
|
|
|
|
{
|
|
|
|
if (callbacks_initialized)
|
|
|
|
{
|
|
|
|
gdb_callback.shutdown (&gdb_callback);
|
|
|
|
callbacks_initialized = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GDB version of os_write_stdout callback. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
gdb_os_write_stdout (p, buf, len)
|
|
|
|
host_callback *p;
|
|
|
|
const char *buf;
|
|
|
|
int len;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char b[2];
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
{
|
|
|
|
b[0] = buf[i];
|
|
|
|
b[1] = 0;
|
|
|
|
if (target_output_hook)
|
|
|
|
target_output_hook (b);
|
|
|
|
else
|
|
|
|
fputs_filtered (b, gdb_stdout);
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
1997-03-17 14:23:31 +00:00
|
|
|
/* GDB version of os_flush_stdout callback. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdb_os_flush_stdout (p)
|
|
|
|
host_callback *p;
|
|
|
|
{
|
|
|
|
gdb_flush (gdb_stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GDB version of os_write_stderr callback. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
gdb_os_write_stderr (p, buf, len)
|
|
|
|
host_callback *p;
|
|
|
|
const char *buf;
|
|
|
|
int len;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char b[2];
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
{
|
|
|
|
b[0] = buf[i];
|
|
|
|
b[1] = 0;
|
|
|
|
if (target_output_hook)
|
|
|
|
target_output_hook (b);
|
|
|
|
else
|
|
|
|
fputs_filtered (b, gdb_stderr);
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GDB version of os_flush_stderr callback. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdb_os_flush_stderr (p)
|
|
|
|
host_callback *p;
|
|
|
|
{
|
|
|
|
gdb_flush (gdb_stderr);
|
|
|
|
}
|
|
|
|
|
1996-11-20 08:55:42 +00:00
|
|
|
/* GDB version of printf_filtered callback. */
|
|
|
|
|
|
|
|
/* VARARGS */
|
|
|
|
static void
|
|
|
|
#ifdef ANSI_PROTOTYPES
|
|
|
|
gdb_os_printf_filtered (host_callback *p, const char *format, ...)
|
|
|
|
#else
|
|
|
|
gdb_os_printf_filtered (p, va_alist)
|
|
|
|
host_callback *p;
|
|
|
|
va_dcl
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
#ifdef ANSI_PROTOTYPES
|
|
|
|
va_start (args, format);
|
|
|
|
#else
|
|
|
|
char *format;
|
|
|
|
|
|
|
|
va_start (args);
|
|
|
|
format = va_arg (args, char *);
|
|
|
|
#endif
|
|
|
|
|
1996-12-09 02:06:42 +00:00
|
|
|
vfprintf_filtered (gdb_stdout, format, args);
|
1996-11-20 08:55:42 +00:00
|
|
|
|
|
|
|
va_end (args);
|
|
|
|
}
|
|
|
|
|
1997-03-17 14:23:31 +00:00
|
|
|
/* GDB version of error vprintf_filtered. */
|
|
|
|
|
|
|
|
/* VARARGS */
|
|
|
|
static void
|
|
|
|
#ifdef ANSI_PROTOTYPES
|
1997-03-28 20:48:12 +00:00
|
|
|
gdb_os_vprintf_filtered (host_callback *p, const char *format, va_list ap)
|
1997-03-17 14:23:31 +00:00
|
|
|
#else
|
1997-03-21 03:53:59 +00:00
|
|
|
gdb_os_vprintf_filtered (p, format, ap)
|
1997-03-17 14:23:31 +00:00
|
|
|
host_callback *p;
|
1997-03-21 03:53:59 +00:00
|
|
|
char *format;
|
1997-03-28 20:48:12 +00:00
|
|
|
va_list ap;
|
1997-03-17 14:23:31 +00:00
|
|
|
#endif
|
|
|
|
{
|
1997-03-28 20:48:12 +00:00
|
|
|
vfprintf_filtered (gdb_stdout, format, ap);
|
1997-03-17 14:23:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* GDB version of error evprintf_filtered. */
|
|
|
|
|
|
|
|
/* VARARGS */
|
|
|
|
static void
|
|
|
|
#ifdef ANSI_PROTOTYPES
|
1997-03-28 20:48:12 +00:00
|
|
|
gdb_os_evprintf_filtered (host_callback *p, const char *format, va_list ap)
|
1997-03-17 14:23:31 +00:00
|
|
|
#else
|
1997-03-21 03:53:59 +00:00
|
|
|
gdb_os_evprintf_filtered (p, format, ap)
|
1997-03-17 14:23:31 +00:00
|
|
|
host_callback *p;
|
1997-03-21 03:53:59 +00:00
|
|
|
char *format;
|
1997-03-28 20:48:12 +00:00
|
|
|
va_list ap;
|
1997-03-17 14:23:31 +00:00
|
|
|
#endif
|
|
|
|
{
|
1997-03-28 20:48:12 +00:00
|
|
|
vfprintf_filtered (gdb_stderr, format, ap);
|
1997-03-17 14:23:31 +00:00
|
|
|
}
|
|
|
|
|
1996-12-09 02:06:42 +00:00
|
|
|
/* GDB version of error callback. */
|
|
|
|
|
|
|
|
/* VARARGS */
|
|
|
|
static void
|
|
|
|
#ifdef ANSI_PROTOTYPES
|
|
|
|
gdb_os_error (host_callback *p, const char *format, ...)
|
|
|
|
#else
|
|
|
|
gdb_os_error (p, va_alist)
|
|
|
|
host_callback *p;
|
|
|
|
va_dcl
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (error_hook)
|
|
|
|
(*error_hook) ();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
#ifdef ANSI_PROTOTYPES
|
|
|
|
va_start (args, format);
|
|
|
|
#else
|
|
|
|
char *format;
|
|
|
|
|
|
|
|
va_start (args);
|
|
|
|
format = va_arg (args, char *);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
error_begin ();
|
|
|
|
vfprintf_filtered (gdb_stderr, format, args);
|
|
|
|
fprintf_filtered (gdb_stderr, "\n");
|
|
|
|
va_end (args);
|
|
|
|
return_to_top_level (RETURN_ERROR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
static void
|
|
|
|
gdbsim_fetch_register (regno)
|
1998-02-17 04:28:00 +00:00
|
|
|
int regno;
|
1993-09-17 17:27:43 +00:00
|
|
|
{
|
1998-02-23 16:40:34 +00:00
|
|
|
static int warn_user = 1;
|
1993-09-17 17:27:43 +00:00
|
|
|
if (regno == -1)
|
|
|
|
{
|
|
|
|
for (regno = 0; regno < NUM_REGS; regno++)
|
|
|
|
gdbsim_fetch_register (regno);
|
|
|
|
}
|
1997-09-26 19:42:55 +00:00
|
|
|
else if (reg_names[regno] != NULL && *reg_names[regno] != '\0')
|
1993-09-17 17:27:43 +00:00
|
|
|
{
|
|
|
|
char buf[MAX_REGISTER_RAW_SIZE];
|
1998-02-17 04:28:00 +00:00
|
|
|
int nr_bytes = sim_fetch_register (gdbsim_desc, regno, buf, REGISTER_RAW_SIZE (regno));
|
|
|
|
if (nr_bytes == 0)
|
|
|
|
/* register not applicable, supply zero's */
|
|
|
|
memset (buf, 0, MAX_REGISTER_RAW_SIZE);
|
1998-02-23 16:40:34 +00:00
|
|
|
else if (nr_bytes > 0 && nr_bytes != REGISTER_RAW_SIZE (regno)
|
|
|
|
&& warn_user)
|
|
|
|
{
|
|
|
|
printf_unfiltered ("Size of register %s (%d) incorrect (%d instead of %d))",
|
|
|
|
reg_names [regno], regno,
|
|
|
|
nr_bytes, REGISTER_RAW_SIZE (regno));
|
|
|
|
warn_user = 0;
|
|
|
|
}
|
1993-09-17 17:27:43 +00:00
|
|
|
supply_register (regno, buf);
|
|
|
|
if (sr_get_debug ())
|
|
|
|
{
|
|
|
|
printf_filtered ("gdbsim_fetch_register: %d", regno);
|
|
|
|
/* FIXME: We could print something more intelligible. */
|
|
|
|
dump_mem (buf, REGISTER_RAW_SIZE (regno));
|
|
|
|
}
|
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
|
|
|
|
1995-09-20 15:32:41 +00:00
|
|
|
|
1993-01-06 18:22:01 +00:00
|
|
|
static void
|
1993-09-17 17:27:43 +00:00
|
|
|
gdbsim_store_register (regno)
|
1998-02-17 04:28:00 +00:00
|
|
|
int regno;
|
1993-01-03 22:36:04 +00:00
|
|
|
{
|
|
|
|
if (regno == -1)
|
1993-09-17 17:27:43 +00:00
|
|
|
{
|
|
|
|
for (regno = 0; regno < NUM_REGS; regno++)
|
|
|
|
gdbsim_store_register (regno);
|
|
|
|
}
|
1997-09-30 06:20:59 +00:00
|
|
|
else if (reg_names[regno] != NULL && *reg_names[regno] != '\0')
|
1993-09-17 17:27:43 +00:00
|
|
|
{
|
1993-10-29 16:35:22 +00:00
|
|
|
char tmp[MAX_REGISTER_RAW_SIZE];
|
1998-02-17 04:28:00 +00:00
|
|
|
int nr_bytes;
|
1993-10-29 16:35:22 +00:00
|
|
|
read_register_gen (regno, tmp);
|
1998-02-17 04:28:00 +00:00
|
|
|
nr_bytes = sim_store_register (gdbsim_desc, regno, tmp, REGISTER_RAW_SIZE (regno));
|
|
|
|
if (nr_bytes > 0 && nr_bytes != REGISTER_RAW_SIZE (regno))
|
|
|
|
fatal ("Register size different to expected");
|
1993-09-17 17:27:43 +00:00
|
|
|
if (sr_get_debug ())
|
|
|
|
{
|
|
|
|
printf_filtered ("gdbsim_store_register: %d", regno);
|
|
|
|
/* FIXME: We could print something more intelligible. */
|
1993-10-29 16:35:22 +00:00
|
|
|
dump_mem (tmp, REGISTER_RAW_SIZE (regno));
|
1993-09-17 17:27:43 +00:00
|
|
|
}
|
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
|
|
|
|
1994-05-18 20:42:06 +00:00
|
|
|
/* Kill the running program. This may involve closing any open files
|
|
|
|
and releasing other resources acquired by the simulated program. */
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
static void
|
|
|
|
gdbsim_kill ()
|
|
|
|
{
|
|
|
|
if (sr_get_debug ())
|
|
|
|
printf_filtered ("gdbsim_kill\n");
|
|
|
|
|
1997-06-06 03:02:51 +00:00
|
|
|
/* There is no need to `kill' running simulator - the simulator is
|
|
|
|
not running */
|
1993-09-17 17:27:43 +00:00
|
|
|
inferior_pid = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load an executable file into the target process. This is expected to
|
|
|
|
not only bring new code into the target process, but also to update
|
|
|
|
GDB's symbol tables to match. */
|
1993-01-03 22:36:04 +00:00
|
|
|
|
|
|
|
static void
|
1993-09-17 17:27:43 +00:00
|
|
|
gdbsim_load (prog, fromtty)
|
|
|
|
char *prog;
|
|
|
|
int fromtty;
|
1993-01-03 22:36:04 +00:00
|
|
|
{
|
1993-09-17 17:27:43 +00:00
|
|
|
if (sr_get_debug ())
|
|
|
|
printf_filtered ("gdbsim_load: prog \"%s\"\n", prog);
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1994-05-18 20:42:06 +00:00
|
|
|
inferior_pid = 0;
|
|
|
|
|
1997-04-17 09:23:28 +00:00
|
|
|
/* FIXME: We will print two messages on error.
|
|
|
|
Need error to either not print anything if passed NULL or need
|
|
|
|
another routine that doesn't take any arguments. */
|
|
|
|
if (sim_load (gdbsim_desc, prog, NULL, fromtty) == SIM_RC_FAIL)
|
|
|
|
error ("unable to load program");
|
1994-05-18 20:42:06 +00:00
|
|
|
|
1997-08-27 04:44:41 +00:00
|
|
|
/* FIXME: If a load command should reset the targets registers then
|
|
|
|
a call to sim_create_inferior() should go here. */
|
|
|
|
|
1997-04-17 09:23:28 +00:00
|
|
|
program_loaded = 1;
|
1993-09-17 17:27:43 +00:00
|
|
|
}
|
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
/* Start an inferior process and set inferior_pid to its pid.
|
|
|
|
EXEC_FILE is the file to run.
|
1996-12-09 02:06:42 +00:00
|
|
|
ARGS is a string containing the arguments to the program.
|
1993-09-17 17:27:43 +00:00
|
|
|
ENV is the environment vector to pass. Errors reported with error().
|
|
|
|
On VxWorks and various standalone systems, we ignore exec_file. */
|
1993-01-03 22:36:04 +00:00
|
|
|
/* This is called not only when we first attach, but also when the
|
|
|
|
user types "run" after having attached. */
|
1993-09-17 17:27:43 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gdbsim_create_inferior (exec_file, args, env)
|
|
|
|
char *exec_file;
|
1993-01-03 22:36:04 +00:00
|
|
|
char *args;
|
|
|
|
char **env;
|
|
|
|
{
|
1994-05-18 20:42:06 +00:00
|
|
|
int len;
|
1993-09-17 17:27:43 +00:00
|
|
|
char *arg_buf,**argv;
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1997-08-27 04:44:41 +00:00
|
|
|
if (exec_file == 0 || exec_bfd == 0)
|
|
|
|
warning ("No exec file specified.");
|
1993-09-17 17:27:43 +00:00
|
|
|
if (! program_loaded)
|
1997-08-27 04:44:41 +00:00
|
|
|
warning ("No program loaded.");
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
if (sr_get_debug ())
|
|
|
|
printf_filtered ("gdbsim_create_inferior: exec_file \"%s\", args \"%s\"\n",
|
1997-08-27 04:44:41 +00:00
|
|
|
(exec_file ? exec_file: "(NULL)"),
|
|
|
|
args);
|
1993-09-17 17:27:43 +00:00
|
|
|
|
1996-08-13 00:01:37 +00:00
|
|
|
gdbsim_kill ();
|
1993-09-17 17:27:43 +00:00
|
|
|
remove_breakpoints ();
|
1993-01-03 22:36:04 +00:00
|
|
|
init_wait_for_inferior ();
|
|
|
|
|
1997-08-27 04:44:41 +00:00
|
|
|
if (exec_file != NULL)
|
|
|
|
{
|
|
|
|
len = strlen (exec_file) + 1 + strlen (args) + 1 + /*slop*/ 10;
|
|
|
|
arg_buf = (char *) alloca (len);
|
|
|
|
arg_buf[0] = '\0';
|
|
|
|
strcat (arg_buf, exec_file);
|
|
|
|
strcat (arg_buf, " ");
|
|
|
|
strcat (arg_buf, args);
|
|
|
|
argv = buildargv (arg_buf);
|
|
|
|
make_cleanup (freeargv, (char *) argv);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
argv = NULL;
|
|
|
|
sim_create_inferior (gdbsim_desc, exec_bfd, argv, env);
|
1993-09-17 17:27:43 +00:00
|
|
|
|
|
|
|
inferior_pid = 42;
|
1997-08-27 04:44:41 +00:00
|
|
|
insert_breakpoints (); /* Needed to get correct instruction in cache */
|
|
|
|
|
1998-02-06 03:09:59 +00:00
|
|
|
clear_proceed_status ();
|
|
|
|
|
1997-08-27 04:44:41 +00:00
|
|
|
/* NB: Entry point already set by sim_create_inferior. */
|
|
|
|
proceed ((CORE_ADDR)-1, TARGET_SIGNAL_DEFAULT, 0);
|
1993-09-17 17:27:43 +00:00
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
/* The open routine takes the rest of the parameters from the command,
|
|
|
|
and (if successful) pushes a new target onto the stack.
|
|
|
|
Targets should supply this routine, if only to provide an error message. */
|
|
|
|
/* Called when selecting the simulator. EG: (gdb) target sim name. */
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-01-06 18:22:01 +00:00
|
|
|
static void
|
1993-09-17 17:27:43 +00:00
|
|
|
gdbsim_open (args, from_tty)
|
|
|
|
char *args;
|
1993-01-03 22:36:04 +00:00
|
|
|
int from_tty;
|
|
|
|
{
|
1997-03-13 20:28:26 +00:00
|
|
|
int len;
|
|
|
|
char *arg_buf;
|
|
|
|
char **argv;
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
if (sr_get_debug ())
|
1994-05-18 20:42:06 +00:00
|
|
|
printf_filtered ("gdbsim_open: args \"%s\"\n", args ? args : "(null)");
|
1995-10-07 00:31:18 +00:00
|
|
|
|
1996-12-30 08:34:35 +00:00
|
|
|
/* Remove current simulator if one exists. Only do this if the simulator
|
|
|
|
has been opened because sim_close requires it.
|
|
|
|
This is important because the call to push_target below will cause
|
|
|
|
sim_close to be called if the simulator is already open, but push_target
|
|
|
|
is called after sim_open! We can't move the call to push_target before
|
|
|
|
the call to sim_open because sim_open may invoke `error'. */
|
1997-03-13 20:28:26 +00:00
|
|
|
if (gdbsim_desc != NULL)
|
1996-12-30 08:34:35 +00:00
|
|
|
unpush_target (&gdbsim_ops);
|
|
|
|
|
1997-08-28 10:20:21 +00:00
|
|
|
len = (7 + 1 /* gdbsim */
|
|
|
|
+ strlen (" -E little")
|
1997-12-16 10:22:14 +00:00
|
|
|
+ strlen (" --architecture=xxxxxxxxxx")
|
1997-08-28 10:20:21 +00:00
|
|
|
+ (args ? strlen (args) : 0)
|
|
|
|
+ 50) /* slack */;
|
1997-03-13 20:28:26 +00:00
|
|
|
arg_buf = (char *) alloca (len);
|
1997-08-27 07:45:50 +00:00
|
|
|
strcpy (arg_buf, "gdbsim"); /* 7 */
|
|
|
|
/* Specify the byte order for the target when it is both selectable
|
|
|
|
and explicitly specified by the user (not auto detected). */
|
1997-04-18 20:39:38 +00:00
|
|
|
#ifdef TARGET_BYTE_ORDER_SELECTABLE
|
1997-08-27 07:45:50 +00:00
|
|
|
if (!target_byte_order_auto)
|
|
|
|
{
|
|
|
|
switch (TARGET_BYTE_ORDER)
|
|
|
|
{
|
|
|
|
case BIG_ENDIAN:
|
|
|
|
strcat (arg_buf, " -E big");
|
|
|
|
break;
|
|
|
|
case LITTLE_ENDIAN:
|
|
|
|
strcat (arg_buf, " -E little");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fatal ("Value of TARGET_BYTE_ORDER unknown");
|
|
|
|
}
|
|
|
|
}
|
1997-04-18 20:39:38 +00:00
|
|
|
#endif
|
1997-08-28 10:20:21 +00:00
|
|
|
/* Specify the architecture of the target when it has been
|
|
|
|
explicitly specified */
|
|
|
|
if (!target_architecture_auto)
|
|
|
|
{
|
1997-12-16 10:22:14 +00:00
|
|
|
strcat (arg_buf, " --architecture=");
|
1997-08-28 10:20:21 +00:00
|
|
|
strcat (arg_buf, target_architecture->printable_name);
|
|
|
|
}
|
1997-08-27 07:45:50 +00:00
|
|
|
/* finally, any explicit args */
|
|
|
|
if (args)
|
|
|
|
{
|
|
|
|
strcat (arg_buf, " "); /* 1 */
|
|
|
|
strcat (arg_buf, args);
|
|
|
|
}
|
1997-03-13 20:28:26 +00:00
|
|
|
argv = buildargv (arg_buf);
|
|
|
|
if (argv == NULL)
|
|
|
|
error ("Insufficient memory available to allocate simulator arg list.");
|
|
|
|
make_cleanup (freeargv, (char *) argv);
|
|
|
|
|
1997-05-20 00:05:27 +00:00
|
|
|
init_callbacks ();
|
1997-08-25 23:14:25 +00:00
|
|
|
gdbsim_desc = sim_open (SIM_OPEN_DEBUG, &gdb_callback, exec_bfd, argv);
|
1997-05-20 00:05:27 +00:00
|
|
|
|
1997-04-02 22:17:42 +00:00
|
|
|
if (gdbsim_desc == 0)
|
|
|
|
error ("unable to create simulator instance");
|
1995-11-06 11:43:04 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
push_target (&gdbsim_ops);
|
|
|
|
target_fetch_registers (-1);
|
|
|
|
printf_filtered ("Connected to the simulator.\n");
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
/* Does whatever cleanup is required for a target that we are no longer
|
|
|
|
going to be calling. Argument says whether we are quitting gdb and
|
|
|
|
should not get hung in case of errors, or whether we want a clean
|
|
|
|
termination even if it takes a while. This routine is automatically
|
|
|
|
always called just before a routine is popped off the target stack.
|
|
|
|
Closing file descriptors and freeing memory are typical things it should
|
|
|
|
do. */
|
1993-01-03 22:36:04 +00:00
|
|
|
/* Close out all files and local state before this target loses control. */
|
|
|
|
|
1993-01-06 18:22:01 +00:00
|
|
|
static void
|
1993-09-17 17:27:43 +00:00
|
|
|
gdbsim_close (quitting)
|
1993-01-03 22:36:04 +00:00
|
|
|
int quitting;
|
|
|
|
{
|
1993-09-17 17:27:43 +00:00
|
|
|
if (sr_get_debug ())
|
|
|
|
printf_filtered ("gdbsim_close: quitting %d\n", quitting);
|
|
|
|
|
|
|
|
program_loaded = 0;
|
|
|
|
|
1997-03-13 20:28:26 +00:00
|
|
|
if (gdbsim_desc != NULL)
|
1996-12-30 08:34:35 +00:00
|
|
|
{
|
1997-03-13 20:28:26 +00:00
|
|
|
sim_close (gdbsim_desc, quitting);
|
|
|
|
gdbsim_desc = NULL;
|
1996-12-30 08:34:35 +00:00
|
|
|
}
|
1996-11-20 08:55:42 +00:00
|
|
|
|
|
|
|
end_callbacks ();
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
/* Takes a program previously attached to and detaches it.
|
|
|
|
The program may resume execution (some targets do, some don't) and will
|
|
|
|
no longer stop on signals, etc. We better not have left any breakpoints
|
|
|
|
in the program or it'll die when it hits one. ARGS is arguments
|
|
|
|
typed by the user (e.g. a signal to send the process). FROM_TTY
|
|
|
|
says whether to be verbose or not. */
|
1993-01-03 22:36:04 +00:00
|
|
|
/* Terminate the open connection to the remote debugger.
|
1993-09-17 17:27:43 +00:00
|
|
|
Use this when you want to detach and do something else with your gdb. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdbsim_detach (args,from_tty)
|
1993-01-03 22:36:04 +00:00
|
|
|
char *args;
|
|
|
|
int from_tty;
|
|
|
|
{
|
1993-09-17 17:27:43 +00:00
|
|
|
if (sr_get_debug ())
|
|
|
|
printf_filtered ("gdbsim_detach: args \"%s\"\n", args);
|
1993-01-06 18:22:01 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
pop_target (); /* calls gdbsim_close to do the real work */
|
|
|
|
if (from_tty)
|
|
|
|
printf_filtered ("Ending simulator %s debugging\n", target_shortname);
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
/* Resume execution of the target process. STEP says whether to single-step
|
|
|
|
or to run free; SIGGNAL is the signal value (e.g. SIGINT) to be given
|
|
|
|
to the target, or zero for no signal. */
|
|
|
|
|
1997-04-18 12:24:52 +00:00
|
|
|
static enum target_signal resume_siggnal;
|
|
|
|
static int resume_step;
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
static void
|
|
|
|
gdbsim_resume (pid, step, siggnal)
|
* target.h: Add enum target_waitkind, enum target_signal, and
struct target_waitstatus. Change status argument to target_wait to
be struct target_waitstatus * instead of int *.
* target.h, infrun.c, all targets: Change type of signal arguments
to resume(), proceed(), and target_resume() from int to enum
target_signal.
* All targets (*_wait, *_resume): Change accordingly.
* infcmd.c (program_info, signal_command), throughout infrun.c,
* fork-child.c, solib.c, hppa-tdep.c, osfsolib.c: Use this stuff.
* convex-xdep.c, convex-tdep.c: Add FIXME's (getting the Convex
signal code stuff right with the new signals would be non-trivial).
* inferior.h (stop_signal): Make it enum target_signal not int.
* target.c, target.h (target_signal_to_string, target_signal_to_name,
target_signal_from_name): New functions.
* inftarg.c, target.h (target_signal_to_host, target_signal_from_host,
store_waitstatus): New functions.
* procfs.c (procfs_notice_signals): Use them.
* i960-tdep.c (i960_fault_to_signal): New function, to replace
print_fault.
* config/i960/tm-i960.h: Don't define PRINT_RANDOM_SIGNAL.
1994-01-04 21:53:53 +00:00
|
|
|
int pid, step;
|
|
|
|
enum target_signal siggnal;
|
1993-09-17 17:27:43 +00:00
|
|
|
{
|
1996-05-15 14:28:34 +00:00
|
|
|
if (inferior_pid != 42)
|
|
|
|
error ("The program is not being run.");
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
if (sr_get_debug ())
|
|
|
|
printf_filtered ("gdbsim_resume: step %d, signal %d\n", step, siggnal);
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1997-04-18 12:24:52 +00:00
|
|
|
resume_siggnal = siggnal;
|
|
|
|
resume_step = step;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notify the simulator of an asynchronous request to stop.
|
1997-05-08 01:00:39 +00:00
|
|
|
|
|
|
|
The simulator shall ensure that the stop request is eventually
|
|
|
|
delivered to the simulator. If the call is made while the
|
|
|
|
simulator is not running then the stop request is processed when
|
|
|
|
the simulator is next resumed.
|
|
|
|
|
|
|
|
For simulators that do not support this operation, just abort */
|
1997-04-18 12:24:52 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gdbsim_stop ()
|
|
|
|
{
|
|
|
|
if (! sim_stop (gdbsim_desc))
|
|
|
|
{
|
1997-05-08 01:00:39 +00:00
|
|
|
quit ();
|
1997-04-18 12:24:52 +00:00
|
|
|
}
|
1993-09-17 17:27:43 +00:00
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1997-05-08 01:00:39 +00:00
|
|
|
/* GDB version of os_poll_quit callback.
|
|
|
|
Taken from gdb/util.c - should be in a library */
|
|
|
|
|
|
|
|
static int
|
|
|
|
gdb_os_poll_quit (p)
|
|
|
|
host_callback *p;
|
|
|
|
{
|
|
|
|
notice_quit ();
|
|
|
|
if (quit_flag) /* gdb's idea of quit */
|
|
|
|
{
|
|
|
|
quit_flag = 0; /* we've stolen it */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if (immediate_quit)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
/* Wait for inferior process to do something. Return pid of child,
|
|
|
|
or -1 in case of error; store status through argument pointer STATUS,
|
1997-04-18 12:24:52 +00:00
|
|
|
just as `wait' would. */
|
|
|
|
|
|
|
|
static void
|
1997-11-27 06:01:08 +00:00
|
|
|
gdbsim_cntrl_c (signo)
|
|
|
|
int signo;
|
1997-04-18 12:24:52 +00:00
|
|
|
{
|
|
|
|
gdbsim_stop ();
|
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
static int
|
1993-10-16 06:42:02 +00:00
|
|
|
gdbsim_wait (pid, status)
|
|
|
|
int pid;
|
* target.h: Add enum target_waitkind, enum target_signal, and
struct target_waitstatus. Change status argument to target_wait to
be struct target_waitstatus * instead of int *.
* target.h, infrun.c, all targets: Change type of signal arguments
to resume(), proceed(), and target_resume() from int to enum
target_signal.
* All targets (*_wait, *_resume): Change accordingly.
* infcmd.c (program_info, signal_command), throughout infrun.c,
* fork-child.c, solib.c, hppa-tdep.c, osfsolib.c: Use this stuff.
* convex-xdep.c, convex-tdep.c: Add FIXME's (getting the Convex
signal code stuff right with the new signals would be non-trivial).
* inferior.h (stop_signal): Make it enum target_signal not int.
* target.c, target.h (target_signal_to_string, target_signal_to_name,
target_signal_from_name): New functions.
* inftarg.c, target.h (target_signal_to_host, target_signal_from_host,
store_waitstatus): New functions.
* procfs.c (procfs_notice_signals): Use them.
* i960-tdep.c (i960_fault_to_signal): New function, to replace
print_fault.
* config/i960/tm-i960.h: Don't define PRINT_RANDOM_SIGNAL.
1994-01-04 21:53:53 +00:00
|
|
|
struct target_waitstatus *status;
|
1993-01-03 22:36:04 +00:00
|
|
|
{
|
1997-05-08 01:00:39 +00:00
|
|
|
static RETSIGTYPE (*prev_sigint) ();
|
1997-04-18 12:24:52 +00:00
|
|
|
int sigrc = 0;
|
|
|
|
enum sim_stop reason = sim_running;
|
1993-10-23 21:56:47 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
if (sr_get_debug ())
|
* target.h: Add enum target_waitkind, enum target_signal, and
struct target_waitstatus. Change status argument to target_wait to
be struct target_waitstatus * instead of int *.
* target.h, infrun.c, all targets: Change type of signal arguments
to resume(), proceed(), and target_resume() from int to enum
target_signal.
* All targets (*_wait, *_resume): Change accordingly.
* infcmd.c (program_info, signal_command), throughout infrun.c,
* fork-child.c, solib.c, hppa-tdep.c, osfsolib.c: Use this stuff.
* convex-xdep.c, convex-tdep.c: Add FIXME's (getting the Convex
signal code stuff right with the new signals would be non-trivial).
* inferior.h (stop_signal): Make it enum target_signal not int.
* target.c, target.h (target_signal_to_string, target_signal_to_name,
target_signal_from_name): New functions.
* inftarg.c, target.h (target_signal_to_host, target_signal_from_host,
store_waitstatus): New functions.
* procfs.c (procfs_notice_signals): Use them.
* i960-tdep.c (i960_fault_to_signal): New function, to replace
print_fault.
* config/i960/tm-i960.h: Don't define PRINT_RANDOM_SIGNAL.
1994-01-04 21:53:53 +00:00
|
|
|
printf_filtered ("gdbsim_wait\n");
|
|
|
|
|
1997-12-15 12:38:05 +00:00
|
|
|
#if defined (HAVE_SIGACTION) && defined (SA_RESTART)
|
|
|
|
{
|
|
|
|
struct sigaction sa, osa;
|
|
|
|
sa.sa_handler = gdbsim_cntrl_c;
|
|
|
|
sigemptyset (&sa.sa_mask);
|
|
|
|
sa.sa_flags = 0;
|
|
|
|
sigaction (SIGINT, &sa, &osa);
|
|
|
|
prev_sigint = osa.sa_handler;
|
|
|
|
}
|
|
|
|
#else
|
1997-04-18 12:24:52 +00:00
|
|
|
prev_sigint = signal (SIGINT, gdbsim_cntrl_c);
|
1997-12-15 12:59:55 +00:00
|
|
|
#endif
|
1997-04-18 12:24:52 +00:00
|
|
|
sim_resume (gdbsim_desc, resume_step,
|
|
|
|
target_signal_to_host (resume_siggnal));
|
|
|
|
signal (SIGINT, prev_sigint);
|
|
|
|
resume_step = 0;
|
|
|
|
|
1997-03-13 20:28:26 +00:00
|
|
|
sim_stop_reason (gdbsim_desc, &reason, &sigrc);
|
1997-04-18 12:24:52 +00:00
|
|
|
|
* target.h: Add enum target_waitkind, enum target_signal, and
struct target_waitstatus. Change status argument to target_wait to
be struct target_waitstatus * instead of int *.
* target.h, infrun.c, all targets: Change type of signal arguments
to resume(), proceed(), and target_resume() from int to enum
target_signal.
* All targets (*_wait, *_resume): Change accordingly.
* infcmd.c (program_info, signal_command), throughout infrun.c,
* fork-child.c, solib.c, hppa-tdep.c, osfsolib.c: Use this stuff.
* convex-xdep.c, convex-tdep.c: Add FIXME's (getting the Convex
signal code stuff right with the new signals would be non-trivial).
* inferior.h (stop_signal): Make it enum target_signal not int.
* target.c, target.h (target_signal_to_string, target_signal_to_name,
target_signal_from_name): New functions.
* inftarg.c, target.h (target_signal_to_host, target_signal_from_host,
store_waitstatus): New functions.
* procfs.c (procfs_notice_signals): Use them.
* i960-tdep.c (i960_fault_to_signal): New function, to replace
print_fault.
* config/i960/tm-i960.h: Don't define PRINT_RANDOM_SIGNAL.
1994-01-04 21:53:53 +00:00
|
|
|
switch (reason)
|
|
|
|
{
|
|
|
|
case sim_exited:
|
|
|
|
status->kind = TARGET_WAITKIND_EXITED;
|
|
|
|
status->value.integer = sigrc;
|
|
|
|
break;
|
|
|
|
case sim_stopped:
|
1997-04-18 12:24:52 +00:00
|
|
|
switch (sigrc)
|
|
|
|
{
|
|
|
|
case SIGABRT:
|
|
|
|
quit ();
|
|
|
|
break;
|
|
|
|
case SIGINT:
|
|
|
|
case SIGTRAP:
|
|
|
|
default:
|
|
|
|
status->kind = TARGET_WAITKIND_STOPPED;
|
|
|
|
/* The signal in sigrc is a host signal. That probably
|
|
|
|
should be fixed. */
|
|
|
|
status->value.sig = target_signal_from_host (sigrc);
|
|
|
|
break;
|
|
|
|
}
|
* target.h: Add enum target_waitkind, enum target_signal, and
struct target_waitstatus. Change status argument to target_wait to
be struct target_waitstatus * instead of int *.
* target.h, infrun.c, all targets: Change type of signal arguments
to resume(), proceed(), and target_resume() from int to enum
target_signal.
* All targets (*_wait, *_resume): Change accordingly.
* infcmd.c (program_info, signal_command), throughout infrun.c,
* fork-child.c, solib.c, hppa-tdep.c, osfsolib.c: Use this stuff.
* convex-xdep.c, convex-tdep.c: Add FIXME's (getting the Convex
signal code stuff right with the new signals would be non-trivial).
* inferior.h (stop_signal): Make it enum target_signal not int.
* target.c, target.h (target_signal_to_string, target_signal_to_name,
target_signal_from_name): New functions.
* inftarg.c, target.h (target_signal_to_host, target_signal_from_host,
store_waitstatus): New functions.
* procfs.c (procfs_notice_signals): Use them.
* i960-tdep.c (i960_fault_to_signal): New function, to replace
print_fault.
* config/i960/tm-i960.h: Don't define PRINT_RANDOM_SIGNAL.
1994-01-04 21:53:53 +00:00
|
|
|
break;
|
|
|
|
case sim_signalled:
|
|
|
|
status->kind = TARGET_WAITKIND_SIGNALLED;
|
|
|
|
/* The signal in sigrc is a host signal. That probably
|
|
|
|
should be fixed. */
|
|
|
|
status->value.sig = target_signal_from_host (sigrc);
|
|
|
|
break;
|
1997-06-13 17:30:24 +00:00
|
|
|
case sim_running:
|
|
|
|
case sim_polling:
|
|
|
|
/* FIXME: Is this correct? */
|
|
|
|
break;
|
* target.h: Add enum target_waitkind, enum target_signal, and
struct target_waitstatus. Change status argument to target_wait to
be struct target_waitstatus * instead of int *.
* target.h, infrun.c, all targets: Change type of signal arguments
to resume(), proceed(), and target_resume() from int to enum
target_signal.
* All targets (*_wait, *_resume): Change accordingly.
* infcmd.c (program_info, signal_command), throughout infrun.c,
* fork-child.c, solib.c, hppa-tdep.c, osfsolib.c: Use this stuff.
* convex-xdep.c, convex-tdep.c: Add FIXME's (getting the Convex
signal code stuff right with the new signals would be non-trivial).
* inferior.h (stop_signal): Make it enum target_signal not int.
* target.c, target.h (target_signal_to_string, target_signal_to_name,
target_signal_from_name): New functions.
* inftarg.c, target.h (target_signal_to_host, target_signal_from_host,
store_waitstatus): New functions.
* procfs.c (procfs_notice_signals): Use them.
* i960-tdep.c (i960_fault_to_signal): New function, to replace
print_fault.
* config/i960/tm-i960.h: Don't define PRINT_RANDOM_SIGNAL.
1994-01-04 21:53:53 +00:00
|
|
|
}
|
|
|
|
|
1993-10-07 23:21:02 +00:00
|
|
|
return inferior_pid;
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
/* Get ready to modify the registers array. On machines which store
|
|
|
|
individual registers, this doesn't need to do anything. On machines
|
|
|
|
which store all the registers in one fell swoop, this makes sure
|
|
|
|
that registers contains all the registers from the program being
|
|
|
|
debugged. */
|
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
static void
|
1993-09-17 17:27:43 +00:00
|
|
|
gdbsim_prepare_to_store ()
|
1993-01-03 22:36:04 +00:00
|
|
|
{
|
1993-09-17 17:27:43 +00:00
|
|
|
/* Do nothing, since we can store individual regs */
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
static int
|
|
|
|
gdbsim_xfer_inferior_memory (memaddr, myaddr, len, write, target)
|
1993-01-03 22:36:04 +00:00
|
|
|
CORE_ADDR memaddr;
|
|
|
|
char *myaddr;
|
|
|
|
int len;
|
|
|
|
int write;
|
|
|
|
struct target_ops *target; /* ignored */
|
|
|
|
{
|
1993-09-17 17:27:43 +00:00
|
|
|
if (! program_loaded)
|
|
|
|
error ("No program loaded.");
|
|
|
|
|
|
|
|
if (sr_get_debug ())
|
|
|
|
{
|
|
|
|
printf_filtered ("gdbsim_xfer_inferior_memory: myaddr 0x%x, memaddr 0x%x, len %d, write %d\n",
|
|
|
|
myaddr, memaddr, len, write);
|
|
|
|
if (sr_get_debug () && write)
|
|
|
|
dump_mem(myaddr, len);
|
|
|
|
}
|
|
|
|
|
1993-01-03 22:36:04 +00:00
|
|
|
if (write)
|
1993-09-17 17:27:43 +00:00
|
|
|
{
|
1997-03-13 20:28:26 +00:00
|
|
|
len = sim_write (gdbsim_desc, memaddr, myaddr, len);
|
1993-09-17 17:27:43 +00:00
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
else
|
1993-09-17 17:27:43 +00:00
|
|
|
{
|
1997-03-13 20:28:26 +00:00
|
|
|
len = sim_read (gdbsim_desc, memaddr, myaddr, len);
|
1993-09-17 17:27:43 +00:00
|
|
|
if (sr_get_debug () && len > 0)
|
|
|
|
dump_mem(myaddr, len);
|
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
static void
|
|
|
|
gdbsim_files_info (target)
|
|
|
|
struct target_ops *target;
|
|
|
|
{
|
|
|
|
char *file = "nothing";
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
if (exec_bfd)
|
|
|
|
file = bfd_get_filename (exec_bfd);
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
if (sr_get_debug ())
|
|
|
|
printf_filtered ("gdbsim_files_info: file \"%s\"\n", file);
|
|
|
|
|
|
|
|
if (exec_bfd)
|
|
|
|
{
|
|
|
|
printf_filtered ("\tAttached to %s running program %s\n",
|
|
|
|
target_shortname, file);
|
1997-03-13 20:28:26 +00:00
|
|
|
sim_info (gdbsim_desc, 0);
|
1993-09-17 17:27:43 +00:00
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
|
|
|
|
* config/h8300/h8300.mt: Renamed from h8300hms.mt.
* config/h8500/h8500.mt: Renamed from h8500hms.mt.
* config/z8k/z8k.mt: Renamed from z8ksim.mt.
* configure, configure.in: Update to reflect renamings.
* remote-sim.c (sim): New command, passes commands to simulator.
(simulator_command): New function.
(gdbsim_ops): Clean up.
* remote-sim.h (sim_do_command): Declare.
* sh-tdep.c (memory_size): Remove command.
* Makefile.in (SIM, SIM_OBS): New variables.
(CLIBS, CDEPS): Add value of SIM.
(DEPFILES): Add value of SIM_OBS
* config/arm/arm.mt, config/h8300/h8300.mt, config/h8500/h8500.mt,
config/sh/sh.mt, config/sparc/sp64sim.mt, config/w65/w65.mt,
config/z8k/z8k.mt: Remove simulator files from TDEPFILES,
define in SIM_OBS and SIM.
config/sparc/sp64sim.mt (SIMFILES): Remove.
* remote-z8k.c: Remove, was superseded by remote-sim.c
* Makefile.in, mpw-make.in: Remove references to remote-z8k.c.
1995-07-01 00:22:57 +00:00
|
|
|
/* Clear the simulator's notion of what the break points are. */
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
static void
|
|
|
|
gdbsim_mourn_inferior ()
|
|
|
|
{
|
|
|
|
if (sr_get_debug ())
|
|
|
|
printf_filtered ("gdbsim_mourn_inferior:\n");
|
1993-01-03 22:36:04 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
remove_breakpoints ();
|
|
|
|
generic_mourn_inferior ();
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|
1993-09-17 17:27:43 +00:00
|
|
|
|
1997-09-25 01:26:36 +00:00
|
|
|
static int
|
|
|
|
gdbsim_insert_breakpoint (addr, contents_cache)
|
|
|
|
CORE_ADDR addr;
|
|
|
|
char *contents_cache;
|
|
|
|
{
|
|
|
|
#ifdef SIM_HAS_BREAKPOINTS
|
|
|
|
SIM_RC retcode;
|
|
|
|
|
|
|
|
retcode = sim_set_breakpoint (gdbsim_desc, addr);
|
|
|
|
|
|
|
|
switch (retcode)
|
|
|
|
{
|
|
|
|
case SIM_RC_OK:
|
|
|
|
return 0;
|
|
|
|
case SIM_RC_INSUFFICIENT_RESOURCES:
|
|
|
|
return ENOMEM;
|
|
|
|
default:
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
return memory_insert_breakpoint (addr, contents_cache);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
gdbsim_remove_breakpoint (addr, contents_cache)
|
|
|
|
CORE_ADDR addr;
|
|
|
|
char *contents_cache;
|
|
|
|
{
|
|
|
|
#ifdef SIM_HAS_BREAKPOINTS
|
|
|
|
SIM_RC retcode;
|
|
|
|
|
|
|
|
retcode = sim_clear_breakpoint (gdbsim_desc, addr);
|
|
|
|
|
|
|
|
switch (retcode)
|
|
|
|
{
|
|
|
|
case SIM_RC_OK:
|
|
|
|
case SIM_RC_UNKNOWN_BREAKPOINT:
|
|
|
|
return 0;
|
|
|
|
case SIM_RC_INSUFFICIENT_RESOURCES:
|
|
|
|
return ENOMEM;
|
|
|
|
default:
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
return memory_remove_breakpoint (addr, contents_cache);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1996-11-08 20:38:07 +00:00
|
|
|
/* Pass the command argument through to the simulator verbatim. The
|
|
|
|
simulator must do any command interpretation work. */
|
1993-01-03 22:36:04 +00:00
|
|
|
|
* config/h8300/h8300.mt: Renamed from h8300hms.mt.
* config/h8500/h8500.mt: Renamed from h8500hms.mt.
* config/z8k/z8k.mt: Renamed from z8ksim.mt.
* configure, configure.in: Update to reflect renamings.
* remote-sim.c (sim): New command, passes commands to simulator.
(simulator_command): New function.
(gdbsim_ops): Clean up.
* remote-sim.h (sim_do_command): Declare.
* sh-tdep.c (memory_size): Remove command.
* Makefile.in (SIM, SIM_OBS): New variables.
(CLIBS, CDEPS): Add value of SIM.
(DEPFILES): Add value of SIM_OBS
* config/arm/arm.mt, config/h8300/h8300.mt, config/h8500/h8500.mt,
config/sh/sh.mt, config/sparc/sp64sim.mt, config/w65/w65.mt,
config/z8k/z8k.mt: Remove simulator files from TDEPFILES,
define in SIM_OBS and SIM.
config/sparc/sp64sim.mt (SIMFILES): Remove.
* remote-z8k.c: Remove, was superseded by remote-sim.c
* Makefile.in, mpw-make.in: Remove references to remote-z8k.c.
1995-07-01 00:22:57 +00:00
|
|
|
static void
|
|
|
|
simulator_command (args, from_tty)
|
|
|
|
char *args;
|
|
|
|
int from_tty;
|
1993-01-03 22:36:04 +00:00
|
|
|
{
|
1997-05-22 04:59:25 +00:00
|
|
|
if (gdbsim_desc == NULL)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* PREVIOUSLY: The user may give a command before the simulator
|
|
|
|
is opened. [...] (??? assuming of course one wishes to
|
|
|
|
continue to allow commands to be sent to unopened simulators,
|
|
|
|
which isn't entirely unreasonable). */
|
|
|
|
|
|
|
|
/* The simulator is a builtin abstraction of a remote target.
|
|
|
|
Consistent with that model, access to the simulator, via sim
|
|
|
|
commands, is restricted to the period when the channel to the
|
|
|
|
simulator is open. */
|
|
|
|
|
|
|
|
error ("Not connected to the simulator target");
|
|
|
|
}
|
1996-11-08 20:38:07 +00:00
|
|
|
|
1997-03-13 20:28:26 +00:00
|
|
|
sim_do_command (gdbsim_desc, args);
|
* config/h8300/h8300.mt: Renamed from h8300hms.mt.
* config/h8500/h8500.mt: Renamed from h8500hms.mt.
* config/z8k/z8k.mt: Renamed from z8ksim.mt.
* configure, configure.in: Update to reflect renamings.
* remote-sim.c (sim): New command, passes commands to simulator.
(simulator_command): New function.
(gdbsim_ops): Clean up.
* remote-sim.h (sim_do_command): Declare.
* sh-tdep.c (memory_size): Remove command.
* Makefile.in (SIM, SIM_OBS): New variables.
(CLIBS, CDEPS): Add value of SIM.
(DEPFILES): Add value of SIM_OBS
* config/arm/arm.mt, config/h8300/h8300.mt, config/h8500/h8500.mt,
config/sh/sh.mt, config/sparc/sp64sim.mt, config/w65/w65.mt,
config/z8k/z8k.mt: Remove simulator files from TDEPFILES,
define in SIM_OBS and SIM.
config/sparc/sp64sim.mt (SIMFILES): Remove.
* remote-z8k.c: Remove, was superseded by remote-sim.c
* Makefile.in, mpw-make.in: Remove references to remote-z8k.c.
1995-07-01 00:22:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Define the target subroutine names */
|
|
|
|
|
1998-05-21 20:20:39 +00:00
|
|
|
struct target_ops gdbsim_ops ;
|
|
|
|
static void init_gdbsim_ops(void)
|
|
|
|
{
|
|
|
|
gdbsim_ops.to_shortname = "sim";
|
|
|
|
gdbsim_ops.to_longname = "simulator";
|
|
|
|
gdbsim_ops.to_doc = "Use the compiled-in simulator.";
|
|
|
|
gdbsim_ops.to_open = gdbsim_open;
|
|
|
|
gdbsim_ops.to_close = gdbsim_close;
|
|
|
|
gdbsim_ops.to_attach = NULL;
|
|
|
|
gdbsim_ops.to_detach = gdbsim_detach;
|
|
|
|
gdbsim_ops.to_resume = gdbsim_resume;
|
|
|
|
gdbsim_ops.to_wait = gdbsim_wait;
|
|
|
|
gdbsim_ops.to_fetch_registers = gdbsim_fetch_register;
|
|
|
|
gdbsim_ops.to_store_registers = gdbsim_store_register;
|
|
|
|
gdbsim_ops.to_prepare_to_store = gdbsim_prepare_to_store;
|
|
|
|
gdbsim_ops.to_xfer_memory = gdbsim_xfer_inferior_memory;
|
|
|
|
gdbsim_ops.to_files_info = gdbsim_files_info;
|
|
|
|
gdbsim_ops.to_insert_breakpoint = gdbsim_insert_breakpoint;
|
|
|
|
gdbsim_ops.to_remove_breakpoint = gdbsim_remove_breakpoint;
|
|
|
|
gdbsim_ops.to_terminal_init = NULL;
|
|
|
|
gdbsim_ops.to_terminal_inferior = NULL;
|
|
|
|
gdbsim_ops.to_terminal_ours_for_output = NULL;
|
|
|
|
gdbsim_ops.to_terminal_ours = NULL;
|
|
|
|
gdbsim_ops.to_terminal_info = NULL;
|
|
|
|
gdbsim_ops.to_kill = gdbsim_kill;
|
|
|
|
gdbsim_ops.to_load = gdbsim_load;
|
|
|
|
gdbsim_ops.to_lookup_symbol = NULL;
|
|
|
|
gdbsim_ops.to_create_inferior = gdbsim_create_inferior;
|
|
|
|
gdbsim_ops.to_mourn_inferior = gdbsim_mourn_inferior;
|
|
|
|
gdbsim_ops.to_can_run = 0;
|
|
|
|
gdbsim_ops.to_notice_signals = 0;
|
|
|
|
gdbsim_ops.to_thread_alive = 0;
|
|
|
|
gdbsim_ops.to_stop = gdbsim_stop;
|
|
|
|
gdbsim_ops.to_stratum = process_stratum;
|
|
|
|
gdbsim_ops.DONT_USE = NULL;
|
|
|
|
gdbsim_ops.to_has_all_memory = 1;
|
|
|
|
gdbsim_ops.to_has_memory = 1;
|
|
|
|
gdbsim_ops.to_has_stack = 1;
|
|
|
|
gdbsim_ops.to_has_registers = 1;
|
|
|
|
gdbsim_ops.to_has_execution = 1;
|
|
|
|
gdbsim_ops.to_sections = NULL;
|
|
|
|
gdbsim_ops.to_sections_end = NULL;
|
|
|
|
gdbsim_ops.to_magic = OPS_MAGIC;
|
1998-06-16 20:38:10 +00:00
|
|
|
|
|
|
|
#ifdef TARGET_REDEFINE_DEFAULT_OPS
|
|
|
|
TARGET_REDEFINE_DEFAULT_OPS (&gdbsim_ops);
|
|
|
|
#endif
|
1998-05-21 20:20:39 +00:00
|
|
|
}
|
1993-01-03 22:36:04 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
_initialize_remote_sim ()
|
|
|
|
{
|
1998-05-21 20:20:39 +00:00
|
|
|
init_gdbsim_ops() ;
|
1998-06-16 20:38:10 +00:00
|
|
|
|
1993-09-17 17:27:43 +00:00
|
|
|
add_target (&gdbsim_ops);
|
* config/h8300/h8300.mt: Renamed from h8300hms.mt.
* config/h8500/h8500.mt: Renamed from h8500hms.mt.
* config/z8k/z8k.mt: Renamed from z8ksim.mt.
* configure, configure.in: Update to reflect renamings.
* remote-sim.c (sim): New command, passes commands to simulator.
(simulator_command): New function.
(gdbsim_ops): Clean up.
* remote-sim.h (sim_do_command): Declare.
* sh-tdep.c (memory_size): Remove command.
* Makefile.in (SIM, SIM_OBS): New variables.
(CLIBS, CDEPS): Add value of SIM.
(DEPFILES): Add value of SIM_OBS
* config/arm/arm.mt, config/h8300/h8300.mt, config/h8500/h8500.mt,
config/sh/sh.mt, config/sparc/sp64sim.mt, config/w65/w65.mt,
config/z8k/z8k.mt: Remove simulator files from TDEPFILES,
define in SIM_OBS and SIM.
config/sparc/sp64sim.mt (SIMFILES): Remove.
* remote-z8k.c: Remove, was superseded by remote-sim.c
* Makefile.in, mpw-make.in: Remove references to remote-z8k.c.
1995-07-01 00:22:57 +00:00
|
|
|
|
|
|
|
add_com ("sim <command>", class_obscure, simulator_command,
|
|
|
|
"Send a command to the simulator.");
|
1993-01-03 22:36:04 +00:00
|
|
|
}
|