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