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