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