2009-10-19 Pedro Alves <pedro@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / remote-sim.c
CommitLineData
c906108c 1/* Generic remote debugging interface for simulators.
0a65a603 2
6aba47ca 3 Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
0fb0cc75 4 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
0a65a603 5
c906108c
SS
6 Contributed by Cygnus Support.
7 Steve Chamberlain (sac@cygnus.com).
8
c5aa993b 9 This file is part of GDB.
c906108c 10
c5aa993b
JM
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
a9762ec7 13 the Free Software Foundation; either version 3 of the License, or
c5aa993b 14 (at your option) any later version.
c906108c 15
c5aa993b
JM
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
c906108c 20
c5aa993b 21 You should have received a copy of the GNU General Public License
a9762ec7 22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
23
24#include "defs.h"
25#include "inferior.h"
c906108c
SS
26#include "value.h"
27#include "gdb_string.h"
28#include <ctype.h>
29#include <fcntl.h>
30#include <signal.h>
31#include <setjmp.h>
32#include <errno.h>
33#include "terminal.h"
34#include "target.h"
35#include "gdbcore.h"
3c25f8c7
AC
36#include "gdb/callback.h"
37#include "gdb/remote-sim.h"
c906108c 38#include "command.h"
4e052eda 39#include "regcache.h"
8238d0bf
AC
40#include "gdb_assert.h"
41#include "sim-regno.h"
a8cf2722 42#include "arch-utils.h"
1986bccd 43#include "readline/readline.h"
9de2bdd7 44#include "gdbthread.h"
c906108c
SS
45
46/* Prototypes */
47
a14ed312 48extern void _initialize_remote_sim (void);
392a587b 49
a14ed312 50static void dump_mem (char *buf, int len);
c906108c 51
a14ed312 52static void init_callbacks (void);
c906108c 53
a14ed312 54static void end_callbacks (void);
c906108c 55
a14ed312 56static int gdb_os_write_stdout (host_callback *, const char *, int);
c906108c 57
a14ed312 58static void gdb_os_flush_stdout (host_callback *);
c906108c 59
a14ed312 60static int gdb_os_write_stderr (host_callback *, const char *, int);
c906108c 61
a14ed312 62static void gdb_os_flush_stderr (host_callback *);
c906108c 63
a14ed312 64static int gdb_os_poll_quit (host_callback *);
c906108c
SS
65
66/* printf_filtered is depreciated */
a14ed312 67static void gdb_os_printf_filtered (host_callback *, const char *, ...);
c906108c 68
a14ed312 69static void gdb_os_vprintf_filtered (host_callback *, const char *, va_list);
c906108c 70
a14ed312 71static void gdb_os_evprintf_filtered (host_callback *, const char *, va_list);
c906108c 72
72ee8797 73static void gdb_os_error (host_callback *, const char *, ...) ATTR_NORETURN;
c906108c 74
7d85a9c0 75static void gdbsim_kill (struct target_ops *);
c906108c 76
a14ed312 77static void gdbsim_load (char *prog, int fromtty);
c906108c 78
a14ed312 79static void gdbsim_open (char *args, int from_tty);
c906108c 80
a14ed312 81static void gdbsim_close (int quitting);
c906108c 82
136d6dae 83static void gdbsim_detach (struct target_ops *ops, char *args, int from_tty);
c906108c 84
316f2060 85static void gdbsim_prepare_to_store (struct regcache *regcache);
c906108c 86
a14ed312 87static void gdbsim_files_info (struct target_ops *target);
c906108c 88
3c8b2eda 89static void gdbsim_mourn_inferior (struct target_ops *target);
c906108c 90
f9c72d52 91static void gdbsim_stop (ptid_t ptid);
c906108c 92
a14ed312 93void simulator_command (char *args, int from_tty);
c906108c
SS
94
95/* Naming convention:
96
97 sim_* are the interface to the simulator (see remote-sim.h).
98 gdbsim_* are stuff which is internal to gdb. */
99
100/* Forward data declarations */
101extern struct target_ops gdbsim_ops;
102
103static int program_loaded = 0;
104
105/* We must keep track of whether the simulator has been opened or not because
106 GDB can call a target's close routine twice, but sim_close doesn't allow
107 this. We also need to record the result of sim_open so we can pass it
108 back to the other sim_foo routines. */
109static SIM_DESC gdbsim_desc = 0;
110
9de2bdd7
PA
111/* This is the ptid we use while we're connected to the simulator.
112 Its value is arbitrary, as the simulator target don't have a notion
113 or processes or threads, but we need something non-null to place in
114 inferior_ptid. */
115static ptid_t remote_sim_ptid;
116
c906108c 117static void
fba45db2 118dump_mem (char *buf, int len)
c906108c
SS
119{
120 if (len <= 8)
121 {
122 if (len == 8 || len == 4)
123 {
124 long l[2];
125 memcpy (l, buf, len);
d4f3574e 126 printf_filtered ("\t0x%lx", l[0]);
a6da1910
AC
127 if (len == 8)
128 printf_filtered (" 0x%lx", l[1]);
129 printf_filtered ("\n");
c906108c
SS
130 }
131 else
132 {
133 int i;
134 printf_filtered ("\t");
135 for (i = 0; i < len; i++)
136 printf_filtered ("0x%x ", buf[i]);
137 printf_filtered ("\n");
138 }
139 }
140}
141
142static host_callback gdb_callback;
143static int callbacks_initialized = 0;
144
145/* Initialize gdb_callback. */
146
147static void
fba45db2 148init_callbacks (void)
c906108c 149{
c5aa993b 150 if (!callbacks_initialized)
c906108c
SS
151 {
152 gdb_callback = default_callback;
153 gdb_callback.init (&gdb_callback);
154 gdb_callback.write_stdout = gdb_os_write_stdout;
155 gdb_callback.flush_stdout = gdb_os_flush_stdout;
156 gdb_callback.write_stderr = gdb_os_write_stderr;
157 gdb_callback.flush_stderr = gdb_os_flush_stderr;
158 gdb_callback.printf_filtered = gdb_os_printf_filtered;
159 gdb_callback.vprintf_filtered = gdb_os_vprintf_filtered;
160 gdb_callback.evprintf_filtered = gdb_os_evprintf_filtered;
161 gdb_callback.error = gdb_os_error;
162 gdb_callback.poll_quit = gdb_os_poll_quit;
163 gdb_callback.magic = HOST_CALLBACK_MAGIC;
164 callbacks_initialized = 1;
165 }
166}
167
168/* Release callbacks (free resources used by them). */
169
170static void
fba45db2 171end_callbacks (void)
c906108c
SS
172{
173 if (callbacks_initialized)
174 {
175 gdb_callback.shutdown (&gdb_callback);
176 callbacks_initialized = 0;
177 }
178}
179
180/* GDB version of os_write_stdout callback. */
181
c5aa993b 182static int
fba45db2 183gdb_os_write_stdout (host_callback *p, const char *buf, int len)
c906108c
SS
184{
185 int i;
186 char b[2];
187
d9fcf2fb 188 ui_file_write (gdb_stdtarg, buf, len);
c906108c
SS
189 return len;
190}
191
192/* GDB version of os_flush_stdout callback. */
193
194static void
fba45db2 195gdb_os_flush_stdout (host_callback *p)
c906108c 196{
4ce44c66 197 gdb_flush (gdb_stdtarg);
c906108c
SS
198}
199
200/* GDB version of os_write_stderr callback. */
201
c5aa993b 202static int
fba45db2 203gdb_os_write_stderr (host_callback *p, const char *buf, int len)
c906108c
SS
204{
205 int i;
206 char b[2];
207
c5aa993b 208 for (i = 0; i < len; i++)
c906108c
SS
209 {
210 b[0] = buf[i];
211 b[1] = 0;
22e8e3c7 212 fputs_unfiltered (b, gdb_stdtargerr);
c906108c
SS
213 }
214 return len;
215}
216
217/* GDB version of os_flush_stderr callback. */
218
219static void
fba45db2 220gdb_os_flush_stderr (host_callback *p)
c906108c 221{
22e8e3c7 222 gdb_flush (gdb_stdtargerr);
c906108c
SS
223}
224
225/* GDB version of printf_filtered callback. */
226
c906108c 227static void
c5aa993b 228gdb_os_printf_filtered (host_callback * p, const char *format,...)
c906108c
SS
229{
230 va_list args;
c906108c 231 va_start (args, format);
c906108c
SS
232
233 vfprintf_filtered (gdb_stdout, format, args);
234
235 va_end (args);
236}
237
238/* GDB version of error vprintf_filtered. */
239
c906108c 240static void
c5aa993b 241gdb_os_vprintf_filtered (host_callback * p, const char *format, va_list ap)
c906108c
SS
242{
243 vfprintf_filtered (gdb_stdout, format, ap);
244}
245
246/* GDB version of error evprintf_filtered. */
247
c906108c 248static void
c5aa993b 249gdb_os_evprintf_filtered (host_callback * p, const char *format, va_list ap)
c906108c
SS
250{
251 vfprintf_filtered (gdb_stderr, format, ap);
252}
253
254/* GDB version of error callback. */
255
c906108c 256static void
58d4abe1 257gdb_os_error (host_callback * p, const char *format, ...)
c906108c 258{
58d4abe1
PA
259 va_list args;
260 va_start (args, format);
261 verror (format, args);
262 va_end (args);
c906108c
SS
263}
264
8238d0bf 265int
e7faf938 266one2one_register_sim_regno (struct gdbarch *gdbarch, int regnum)
8238d0bf
AC
267{
268 /* Only makes sense to supply raw registers. */
e7faf938 269 gdb_assert (regnum >= 0 && regnum < gdbarch_num_regs (gdbarch));
8238d0bf
AC
270 return regnum;
271}
272
c906108c 273static void
28439f5e
PA
274gdbsim_fetch_register (struct target_ops *ops,
275 struct regcache *regcache, int regno)
c906108c 276{
40a6adc1 277 struct gdbarch *gdbarch = get_regcache_arch (regcache);
c5aa993b 278 if (regno == -1)
c906108c 279 {
40a6adc1 280 for (regno = 0; regno < gdbarch_num_regs (gdbarch); regno++)
28439f5e 281 gdbsim_fetch_register (ops, regcache, regno);
8238d0bf 282 return;
c906108c 283 }
8238d0bf 284
40a6adc1 285 switch (gdbarch_register_sim_regno (gdbarch, regno))
c906108c 286 {
8238d0bf
AC
287 case LEGACY_SIM_REGNO_IGNORE:
288 break;
289 case SIM_REGNO_DOES_NOT_EXIST:
290 {
291 /* For moment treat a `does not exist' register the same way
292 as an ``unavailable'' register. */
d9d9c31f 293 char buf[MAX_REGISTER_SIZE];
8238d0bf 294 int nr_bytes;
d9d9c31f 295 memset (buf, 0, MAX_REGISTER_SIZE);
56be3814 296 regcache_raw_supply (regcache, regno, buf);
8238d0bf
AC
297 break;
298 }
56be3814 299
8238d0bf
AC
300 default:
301 {
302 static int warn_user = 1;
d9d9c31f 303 char buf[MAX_REGISTER_SIZE];
8238d0bf 304 int nr_bytes;
40a6adc1 305 gdb_assert (regno >= 0 && regno < gdbarch_num_regs (gdbarch));
d9d9c31f 306 memset (buf, 0, MAX_REGISTER_SIZE);
d4f3574e 307 nr_bytes = sim_fetch_register (gdbsim_desc,
474c1661 308 gdbarch_register_sim_regno
40a6adc1 309 (gdbarch, regno),
474c1661 310 buf,
40a6adc1
MD
311 register_size (gdbarch, regno));
312 if (nr_bytes > 0
313 && nr_bytes != register_size (gdbarch, regno) && warn_user)
8238d0bf
AC
314 {
315 fprintf_unfiltered (gdb_stderr,
316 "Size of register %s (%d/%d) incorrect (%d instead of %d))",
40a6adc1 317 gdbarch_register_name (gdbarch, regno),
474c1661
UW
318 regno,
319 gdbarch_register_sim_regno
40a6adc1
MD
320 (gdbarch, regno),
321 nr_bytes, register_size (gdbarch, regno));
8238d0bf
AC
322 warn_user = 0;
323 }
324 /* FIXME: cagney/2002-05-27: Should check `nr_bytes == 0'
278a7cf7 325 indicating that GDB and the SIM have different ideas about
8238d0bf
AC
326 which registers are fetchable. */
327 /* Else if (nr_bytes < 0): an old simulator, that doesn't
328 think to return the register size. Just assume all is ok. */
56be3814 329 regcache_raw_supply (regcache, regno, buf);
ea35711c 330 if (remote_debug)
8238d0bf
AC
331 {
332 printf_filtered ("gdbsim_fetch_register: %d", regno);
333 /* FIXME: We could print something more intelligible. */
40a6adc1 334 dump_mem (buf, register_size (gdbarch, regno));
8238d0bf
AC
335 }
336 break;
337 }
c906108c
SS
338 }
339}
340
341
342static void
28439f5e
PA
343gdbsim_store_register (struct target_ops *ops,
344 struct regcache *regcache, int regno)
c906108c 345{
40a6adc1 346 struct gdbarch *gdbarch = get_regcache_arch (regcache);
c5aa993b 347 if (regno == -1)
c906108c 348 {
40a6adc1 349 for (regno = 0; regno < gdbarch_num_regs (gdbarch); regno++)
28439f5e 350 gdbsim_store_register (ops, regcache, regno);
8238d0bf 351 return;
c906108c 352 }
40a6adc1 353 else if (gdbarch_register_sim_regno (gdbarch, regno) >= 0)
c906108c 354 {
123a958e 355 char tmp[MAX_REGISTER_SIZE];
c906108c 356 int nr_bytes;
56be3814 357 regcache_cooked_read (regcache, regno, tmp);
d4f3574e 358 nr_bytes = sim_store_register (gdbsim_desc,
474c1661 359 gdbarch_register_sim_regno
40a6adc1
MD
360 (gdbarch, regno),
361 tmp, register_size (gdbarch, regno));
362 if (nr_bytes > 0 && nr_bytes != register_size (gdbarch, regno))
8e65ff28 363 internal_error (__FILE__, __LINE__,
e2e0b3e5 364 _("Register size different to expected"));
8238d0bf 365 /* FIXME: cagney/2002-05-27: Should check `nr_bytes == 0'
278a7cf7 366 indicating that GDB and the SIM have different ideas about
8238d0bf 367 which registers are fetchable. */
ea35711c 368 if (remote_debug)
c906108c
SS
369 {
370 printf_filtered ("gdbsim_store_register: %d", regno);
371 /* FIXME: We could print something more intelligible. */
40a6adc1 372 dump_mem (tmp, register_size (gdbarch, regno));
c906108c
SS
373 }
374 }
375}
376
377/* Kill the running program. This may involve closing any open files
378 and releasing other resources acquired by the simulated program. */
379
380static void
7d85a9c0 381gdbsim_kill (struct target_ops *ops)
c906108c 382{
ea35711c 383 if (remote_debug)
c906108c
SS
384 printf_filtered ("gdbsim_kill\n");
385
386 /* There is no need to `kill' running simulator - the simulator is
52bb452f
DJ
387 not running. Mourning it is enough. */
388 target_mourn_inferior ();
c906108c
SS
389}
390
391/* Load an executable file into the target process. This is expected to
392 not only bring new code into the target process, but also to update
393 GDB's symbol tables to match. */
394
395static void
1986bccd 396gdbsim_load (char *args, int fromtty)
c906108c 397{
d1a41061 398 char **argv;
1986bccd
AS
399 char *prog;
400
d1a41061
PP
401 if (args == NULL)
402 error_no_arg (_("program to load"));
1986bccd 403
d1a41061 404 argv = gdb_buildargv (args);
1986bccd
AS
405 make_cleanup_freeargv (argv);
406
407 prog = tilde_expand (argv[0]);
408
409 if (argv[1] != NULL)
410 error (_("GDB sim does not yet support a load offset."));
411
ea35711c 412 if (remote_debug)
c906108c
SS
413 printf_filtered ("gdbsim_load: prog \"%s\"\n", prog);
414
c906108c
SS
415 /* FIXME: We will print two messages on error.
416 Need error to either not print anything if passed NULL or need
417 another routine that doesn't take any arguments. */
418 if (sim_load (gdbsim_desc, prog, NULL, fromtty) == SIM_RC_FAIL)
8a3fe4f8 419 error (_("unable to load program"));
c906108c
SS
420
421 /* FIXME: If a load command should reset the targets registers then
422 a call to sim_create_inferior() should go here. */
423
424 program_loaded = 1;
425}
426
427
39f77062 428/* Start an inferior process and set inferior_ptid to its pid.
c906108c
SS
429 EXEC_FILE is the file to run.
430 ARGS is a string containing the arguments to the program.
431 ENV is the environment vector to pass. Errors reported with error().
432 On VxWorks and various standalone systems, we ignore exec_file. */
433/* This is called not only when we first attach, but also when the
434 user types "run" after having attached. */
435
436static void
3c8b2eda
TJB
437gdbsim_create_inferior (struct target_ops *target, char *exec_file, char *args,
438 char **env, int from_tty)
c906108c
SS
439{
440 int len;
c5aa993b 441 char *arg_buf, **argv;
c906108c
SS
442
443 if (exec_file == 0 || exec_bfd == 0)
8a3fe4f8 444 warning (_("No executable file specified."));
c5aa993b 445 if (!program_loaded)
8a3fe4f8 446 warning (_("No program loaded."));
c906108c 447
ea35711c 448 if (remote_debug)
c906108c 449 printf_filtered ("gdbsim_create_inferior: exec_file \"%s\", args \"%s\"\n",
c5aa993b 450 (exec_file ? exec_file : "(NULL)"),
c906108c
SS
451 args);
452
9de2bdd7 453 if (ptid_equal (inferior_ptid, remote_sim_ptid))
7d85a9c0 454 gdbsim_kill (target);
c906108c
SS
455 remove_breakpoints ();
456 init_wait_for_inferior ();
457
458 if (exec_file != NULL)
459 {
c5aa993b 460 len = strlen (exec_file) + 1 + strlen (args) + 1 + /*slop */ 10;
c906108c
SS
461 arg_buf = (char *) alloca (len);
462 arg_buf[0] = '\0';
463 strcat (arg_buf, exec_file);
464 strcat (arg_buf, " ");
465 strcat (arg_buf, args);
d1a41061 466 argv = gdb_buildargv (arg_buf);
7a292a7a 467 make_cleanup_freeargv (argv);
c906108c
SS
468 }
469 else
470 argv = NULL;
471 sim_create_inferior (gdbsim_desc, exec_bfd, argv, env);
472
9de2bdd7 473 inferior_ptid = remote_sim_ptid;
6c95b8df 474 inferior_appeared_silent (current_inferior (), ptid_get_pid (inferior_ptid));
9de2bdd7
PA
475 add_thread_silent (inferior_ptid);
476
c5aa993b 477 insert_breakpoints (); /* Needed to get correct instruction in cache */
c906108c
SS
478
479 clear_proceed_status ();
c906108c
SS
480}
481
482/* The open routine takes the rest of the parameters from the command,
483 and (if successful) pushes a new target onto the stack.
484 Targets should supply this routine, if only to provide an error message. */
485/* Called when selecting the simulator. EG: (gdb) target sim name. */
486
487static void
fba45db2 488gdbsim_open (char *args, int from_tty)
c906108c
SS
489{
490 int len;
491 char *arg_buf;
492 char **argv;
493
ea35711c 494 if (remote_debug)
c906108c
SS
495 printf_filtered ("gdbsim_open: args \"%s\"\n", args ? args : "(null)");
496
497 /* Remove current simulator if one exists. Only do this if the simulator
498 has been opened because sim_close requires it.
499 This is important because the call to push_target below will cause
500 sim_close to be called if the simulator is already open, but push_target
501 is called after sim_open! We can't move the call to push_target before
502 the call to sim_open because sim_open may invoke `error'. */
503 if (gdbsim_desc != NULL)
504 unpush_target (&gdbsim_ops);
505
c5aa993b 506 len = (7 + 1 /* gdbsim */
c906108c
SS
507 + strlen (" -E little")
508 + strlen (" --architecture=xxxxxxxxxx")
509 + (args ? strlen (args) : 0)
c5aa993b 510 + 50) /* slack */ ;
c906108c 511 arg_buf = (char *) alloca (len);
c5aa993b 512 strcpy (arg_buf, "gdbsim"); /* 7 */
b6d373df
DJ
513 /* Specify the byte order for the target when it is explicitly
514 specified by the user (not auto detected). */
515 switch (selected_byte_order ())
c906108c 516 {
a8cf2722
AC
517 case BFD_ENDIAN_BIG:
518 strcat (arg_buf, " -E big");
519 break;
520 case BFD_ENDIAN_LITTLE:
521 strcat (arg_buf, " -E little");
522 break;
523 case BFD_ENDIAN_UNKNOWN:
524 break;
c906108c
SS
525 }
526 /* Specify the architecture of the target when it has been
527 explicitly specified */
a8cf2722 528 if (selected_architecture_name () != NULL)
c906108c
SS
529 {
530 strcat (arg_buf, " --architecture=");
a8cf2722 531 strcat (arg_buf, selected_architecture_name ());
c906108c
SS
532 }
533 /* finally, any explicit args */
534 if (args)
535 {
c5aa993b 536 strcat (arg_buf, " "); /* 1 */
c906108c
SS
537 strcat (arg_buf, args);
538 }
d1a41061 539 argv = gdb_buildargv (arg_buf);
7a292a7a 540 make_cleanup_freeargv (argv);
c906108c
SS
541
542 init_callbacks ();
543 gdbsim_desc = sim_open (SIM_OPEN_DEBUG, &gdb_callback, exec_bfd, argv);
544
545 if (gdbsim_desc == 0)
8a3fe4f8 546 error (_("unable to create simulator instance"));
c906108c
SS
547
548 push_target (&gdbsim_ops);
c906108c 549 printf_filtered ("Connected to the simulator.\n");
52bb452f
DJ
550
551 /* There's nothing running after "target sim" or "load"; not until
552 "run". */
553 inferior_ptid = null_ptid;
c906108c
SS
554}
555
556/* Does whatever cleanup is required for a target that we are no longer
557 going to be calling. Argument says whether we are quitting gdb and
558 should not get hung in case of errors, or whether we want a clean
559 termination even if it takes a while. This routine is automatically
560 always called just before a routine is popped off the target stack.
561 Closing file descriptors and freeing memory are typical things it should
562 do. */
563/* Close out all files and local state before this target loses control. */
564
565static void
fba45db2 566gdbsim_close (int quitting)
c906108c 567{
ea35711c 568 if (remote_debug)
c906108c
SS
569 printf_filtered ("gdbsim_close: quitting %d\n", quitting);
570
571 program_loaded = 0;
572
573 if (gdbsim_desc != NULL)
574 {
575 sim_close (gdbsim_desc, quitting);
576 gdbsim_desc = NULL;
577 }
578
579 end_callbacks ();
75660bc0 580 generic_mourn_inferior ();
9de2bdd7 581 delete_thread_silent (remote_sim_ptid);
7f9f62ba 582 delete_inferior_silent (ptid_get_pid (remote_sim_ptid));
c906108c
SS
583}
584
585/* Takes a program previously attached to and detaches it.
586 The program may resume execution (some targets do, some don't) and will
587 no longer stop on signals, etc. We better not have left any breakpoints
588 in the program or it'll die when it hits one. ARGS is arguments
589 typed by the user (e.g. a signal to send the process). FROM_TTY
590 says whether to be verbose or not. */
591/* Terminate the open connection to the remote debugger.
592 Use this when you want to detach and do something else with your gdb. */
593
594static void
136d6dae 595gdbsim_detach (struct target_ops *ops, char *args, int from_tty)
c906108c 596{
ea35711c 597 if (remote_debug)
c906108c
SS
598 printf_filtered ("gdbsim_detach: args \"%s\"\n", args);
599
600 pop_target (); /* calls gdbsim_close to do the real work */
601 if (from_tty)
602 printf_filtered ("Ending simulator %s debugging\n", target_shortname);
603}
c5aa993b 604
c906108c
SS
605/* Resume execution of the target process. STEP says whether to single-step
606 or to run free; SIGGNAL is the signal value (e.g. SIGINT) to be given
607 to the target, or zero for no signal. */
608
609static enum target_signal resume_siggnal;
610static int resume_step;
611
612static void
2fb89e62
PA
613gdbsim_resume (struct target_ops *ops,
614 ptid_t ptid, int step, enum target_signal siggnal)
c906108c 615{
9de2bdd7 616 if (!ptid_equal (inferior_ptid, remote_sim_ptid))
8a3fe4f8 617 error (_("The program is not being run."));
c906108c 618
ea35711c 619 if (remote_debug)
c906108c
SS
620 printf_filtered ("gdbsim_resume: step %d, signal %d\n", step, siggnal);
621
622 resume_siggnal = siggnal;
623 resume_step = step;
624}
625
626/* Notify the simulator of an asynchronous request to stop.
c5aa993b 627
c906108c
SS
628 The simulator shall ensure that the stop request is eventually
629 delivered to the simulator. If the call is made while the
630 simulator is not running then the stop request is processed when
631 the simulator is next resumed.
632
633 For simulators that do not support this operation, just abort */
634
635static void
f9c72d52 636gdbsim_stop (ptid_t ptid)
c906108c 637{
c5aa993b 638 if (!sim_stop (gdbsim_desc))
c906108c
SS
639 {
640 quit ();
641 }
642}
643
644/* GDB version of os_poll_quit callback.
8a0ce09a 645 Taken from gdb/util.c - should be in a library. */
c906108c
SS
646
647static int
fba45db2 648gdb_os_poll_quit (host_callback *p)
c906108c 649{
98bbd631
AC
650 if (deprecated_ui_loop_hook != NULL)
651 deprecated_ui_loop_hook (0);
7a292a7a 652
c5aa993b 653 if (quit_flag) /* gdb's idea of quit */
c906108c 654 {
c5aa993b 655 quit_flag = 0; /* we've stolen it */
c906108c
SS
656 return 1;
657 }
658 else if (immediate_quit)
659 {
660 return 1;
661 }
662 return 0;
663}
664
665/* Wait for inferior process to do something. Return pid of child,
666 or -1 in case of error; store status through argument pointer STATUS,
667 just as `wait' would. */
668
669static void
fba45db2 670gdbsim_cntrl_c (int signo)
c906108c 671{
0aef6ba2 672 gdbsim_stop (remote_sim_ptid);
c906108c
SS
673}
674
39f77062 675static ptid_t
117de6a9 676gdbsim_wait (struct target_ops *ops,
47608cb1 677 ptid_t ptid, struct target_waitstatus *status, int options)
c906108c
SS
678{
679 static RETSIGTYPE (*prev_sigint) ();
680 int sigrc = 0;
681 enum sim_stop reason = sim_running;
682
ea35711c 683 if (remote_debug)
c906108c
SS
684 printf_filtered ("gdbsim_wait\n");
685
686#if defined (HAVE_SIGACTION) && defined (SA_RESTART)
687 {
688 struct sigaction sa, osa;
689 sa.sa_handler = gdbsim_cntrl_c;
690 sigemptyset (&sa.sa_mask);
691 sa.sa_flags = 0;
692 sigaction (SIGINT, &sa, &osa);
693 prev_sigint = osa.sa_handler;
694 }
695#else
696 prev_sigint = signal (SIGINT, gdbsim_cntrl_c);
697#endif
aba6488e 698 sim_resume (gdbsim_desc, resume_step, resume_siggnal);
c906108c
SS
699 signal (SIGINT, prev_sigint);
700 resume_step = 0;
701
702 sim_stop_reason (gdbsim_desc, &reason, &sigrc);
703
704 switch (reason)
705 {
706 case sim_exited:
707 status->kind = TARGET_WAITKIND_EXITED;
708 status->value.integer = sigrc;
709 break;
710 case sim_stopped:
711 switch (sigrc)
712 {
aba6488e 713 case TARGET_SIGNAL_ABRT:
c906108c
SS
714 quit ();
715 break;
aba6488e
MM
716 case TARGET_SIGNAL_INT:
717 case TARGET_SIGNAL_TRAP:
c906108c
SS
718 default:
719 status->kind = TARGET_WAITKIND_STOPPED;
aba6488e 720 status->value.sig = sigrc;
c906108c
SS
721 break;
722 }
723 break;
724 case sim_signalled:
725 status->kind = TARGET_WAITKIND_SIGNALLED;
aba6488e 726 status->value.sig = sigrc;
c906108c
SS
727 break;
728 case sim_running:
729 case sim_polling:
730 /* FIXME: Is this correct? */
731 break;
732 }
733
39f77062 734 return inferior_ptid;
c906108c
SS
735}
736
737/* Get ready to modify the registers array. On machines which store
738 individual registers, this doesn't need to do anything. On machines
739 which store all the registers in one fell swoop, this makes sure
740 that registers contains all the registers from the program being
741 debugged. */
742
743static void
316f2060 744gdbsim_prepare_to_store (struct regcache *regcache)
c906108c
SS
745{
746 /* Do nothing, since we can store individual regs */
747}
748
d93bce06
KB
749/* Transfer LEN bytes between GDB address MYADDR and target address
750 MEMADDR. If WRITE is non-zero, transfer them to the target,
751 otherwise transfer them from the target. TARGET is unused.
752
753 Returns the number of bytes transferred. */
754
c906108c 755static int
8d7337bf 756gdbsim_xfer_inferior_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len,
0a65a603
AC
757 int write, struct mem_attrib *attrib,
758 struct target_ops *target)
c906108c 759{
52bb452f
DJ
760 /* If no program is running yet, then ignore the simulator for
761 memory. Pass the request down to the next target, hopefully
762 an exec file. */
763 if (!target_has_execution)
764 return 0;
765
c5aa993b 766 if (!program_loaded)
8a3fe4f8 767 error (_("No program loaded."));
c906108c 768
ea35711c 769 if (remote_debug)
c906108c 770 {
d4f3574e
SS
771 /* FIXME: Send to something other than STDOUT? */
772 printf_filtered ("gdbsim_xfer_inferior_memory: myaddr 0x");
773 gdb_print_host_address (myaddr, gdb_stdout);
5af949e3
UW
774 printf_filtered (", memaddr %s, len %d, write %d\n",
775 paddress (target_gdbarch, memaddr), len, write);
ea35711c 776 if (remote_debug && write)
c5aa993b 777 dump_mem (myaddr, len);
c906108c
SS
778 }
779
780 if (write)
781 {
782 len = sim_write (gdbsim_desc, memaddr, myaddr, len);
783 }
c5aa993b 784 else
c906108c
SS
785 {
786 len = sim_read (gdbsim_desc, memaddr, myaddr, len);
ea35711c 787 if (remote_debug && len > 0)
c5aa993b
JM
788 dump_mem (myaddr, len);
789 }
c906108c
SS
790 return len;
791}
792
793static void
fba45db2 794gdbsim_files_info (struct target_ops *target)
c906108c
SS
795{
796 char *file = "nothing";
797
798 if (exec_bfd)
799 file = bfd_get_filename (exec_bfd);
800
ea35711c 801 if (remote_debug)
c906108c
SS
802 printf_filtered ("gdbsim_files_info: file \"%s\"\n", file);
803
804 if (exec_bfd)
805 {
806 printf_filtered ("\tAttached to %s running program %s\n",
807 target_shortname, file);
808 sim_info (gdbsim_desc, 0);
809 }
810}
811
812/* Clear the simulator's notion of what the break points are. */
813
814static void
3c8b2eda 815gdbsim_mourn_inferior (struct target_ops *target)
c5aa993b 816{
ea35711c 817 if (remote_debug)
c906108c
SS
818 printf_filtered ("gdbsim_mourn_inferior:\n");
819
820 remove_breakpoints ();
821 generic_mourn_inferior ();
9de2bdd7 822 delete_thread_silent (remote_sim_ptid);
c906108c
SS
823}
824
c906108c
SS
825/* Pass the command argument through to the simulator verbatim. The
826 simulator must do any command interpretation work. */
827
828void
fba45db2 829simulator_command (char *args, int from_tty)
c906108c
SS
830{
831 if (gdbsim_desc == NULL)
832 {
833
834 /* PREVIOUSLY: The user may give a command before the simulator
835 is opened. [...] (??? assuming of course one wishes to
836 continue to allow commands to be sent to unopened simulators,
837 which isn't entirely unreasonable). */
838
839 /* The simulator is a builtin abstraction of a remote target.
840 Consistent with that model, access to the simulator, via sim
841 commands, is restricted to the period when the channel to the
842 simulator is open. */
843
8a3fe4f8 844 error (_("Not connected to the simulator target"));
c906108c
SS
845 }
846
847 sim_do_command (gdbsim_desc, args);
848
849 /* Invalidate the register cache, in case the simulator command does
850 something funny. */
c5aa993b 851 registers_changed ();
c906108c
SS
852}
853
9de2bdd7
PA
854/* Check to see if a thread is still alive. */
855
856static int
28439f5e 857gdbsim_thread_alive (struct target_ops *ops, ptid_t ptid)
9de2bdd7
PA
858{
859 if (ptid_equal (ptid, remote_sim_ptid))
860 /* The simulators' task is always alive. */
861 return 1;
862
863 return 0;
864}
865
866/* Convert a thread ID to a string. Returns the string in a static
867 buffer. */
868
869static char *
117de6a9 870gdbsim_pid_to_str (struct target_ops *ops, ptid_t ptid)
9de2bdd7
PA
871{
872 static char buf[64];
873
874 if (ptid_equal (remote_sim_ptid, ptid))
875 {
876 xsnprintf (buf, sizeof buf, "Thread <main>");
877 return buf;
878 }
879
880 return normal_pid_to_str (ptid);
881}
882
c906108c
SS
883/* Define the target subroutine names */
884
c5aa993b
JM
885struct target_ops gdbsim_ops;
886
887static void
888init_gdbsim_ops (void)
889{
890 gdbsim_ops.to_shortname = "sim";
891 gdbsim_ops.to_longname = "simulator";
892 gdbsim_ops.to_doc = "Use the compiled-in simulator.";
893 gdbsim_ops.to_open = gdbsim_open;
894 gdbsim_ops.to_close = gdbsim_close;
c5aa993b 895 gdbsim_ops.to_detach = gdbsim_detach;
c5aa993b
JM
896 gdbsim_ops.to_resume = gdbsim_resume;
897 gdbsim_ops.to_wait = gdbsim_wait;
c5aa993b
JM
898 gdbsim_ops.to_fetch_registers = gdbsim_fetch_register;
899 gdbsim_ops.to_store_registers = gdbsim_store_register;
900 gdbsim_ops.to_prepare_to_store = gdbsim_prepare_to_store;
c8e73a31 901 gdbsim_ops.deprecated_xfer_memory = gdbsim_xfer_inferior_memory;
c5aa993b 902 gdbsim_ops.to_files_info = gdbsim_files_info;
8181d85f
DJ
903 gdbsim_ops.to_insert_breakpoint = memory_insert_breakpoint;
904 gdbsim_ops.to_remove_breakpoint = memory_remove_breakpoint;
c5aa993b
JM
905 gdbsim_ops.to_kill = gdbsim_kill;
906 gdbsim_ops.to_load = gdbsim_load;
c5aa993b 907 gdbsim_ops.to_create_inferior = gdbsim_create_inferior;
c5aa993b 908 gdbsim_ops.to_mourn_inferior = gdbsim_mourn_inferior;
c5aa993b 909 gdbsim_ops.to_stop = gdbsim_stop;
9de2bdd7
PA
910 gdbsim_ops.to_thread_alive = gdbsim_thread_alive;
911 gdbsim_ops.to_pid_to_str = gdbsim_pid_to_str;
c5aa993b 912 gdbsim_ops.to_stratum = process_stratum;
c35b1492
PA
913 gdbsim_ops.to_has_all_memory = default_child_has_all_memory;
914 gdbsim_ops.to_has_memory = default_child_has_memory;
915 gdbsim_ops.to_has_stack = default_child_has_stack;
916 gdbsim_ops.to_has_registers = default_child_has_registers;
917 gdbsim_ops.to_has_execution = default_child_has_execution;
c5aa993b 918 gdbsim_ops.to_magic = OPS_MAGIC;
c906108c
SS
919}
920
921void
fba45db2 922_initialize_remote_sim (void)
c906108c 923{
c5aa993b 924 init_gdbsim_ops ();
c906108c
SS
925 add_target (&gdbsim_ops);
926
24ec834b 927 add_com ("sim", class_obscure, simulator_command,
1bedd215 928 _("Send a command to the simulator."));
9de2bdd7
PA
929
930 /* Yes, 42000 is arbitrary. The only sense out of it, is that it
931 isn't 0. */
932 remote_sim_ptid = ptid_build (42000, 0, 42000);
c906108c 933}
This page took 1.033621 seconds and 4 git commands to generate.