1 /* Generic remote debugging interface for simulators.
2 Copyright 1993, 1994, 1996 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
4 Steve Chamberlain (sac@cygnus.com).
6 This file is part of GDB.
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.
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.
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, Boston, MA 02111-1307, USA. */
26 #include "gdb_string.h"
36 #include "remote-sim.h"
37 #include "remote-utils.h"
41 static void dump_mem PARAMS ((char *buf, int len));
43 static void init_callbacks PARAMS ((void));
45 static void end_callbacks PARAMS ((void));
47 static int gdb_os_write_stdout PARAMS ((host_callback *, const char *, int));
49 static void gdb_os_printf_filtered PARAMS ((host_callback *, const char *, ...));
51 static void gdb_os_error PARAMS ((host_callback *, const char *, ...));
53 static void gdbsim_fetch_register PARAMS ((int regno));
55 static void gdbsim_store_register PARAMS ((int regno));
57 static void gdbsim_kill PARAMS ((void));
59 static void gdbsim_load PARAMS ((char *prog, int fromtty));
61 static void gdbsim_create_inferior PARAMS ((char *exec_file, char *args, char **env));
63 static void gdbsim_open PARAMS ((char *args, int from_tty));
65 static void gdbsim_close PARAMS ((int quitting));
67 static void gdbsim_detach PARAMS ((char *args, int from_tty));
69 static void gdbsim_resume PARAMS ((int pid, int step, enum target_signal siggnal));
71 static int gdbsim_wait PARAMS ((int pid, struct target_waitstatus *status));
73 static void gdbsim_prepare_to_store PARAMS ((void));
75 static int gdbsim_xfer_inferior_memory PARAMS ((CORE_ADDR memaddr,
76 char *myaddr, int len,
78 struct target_ops *target));
80 static void gdbsim_files_info PARAMS ((struct target_ops *target));
82 static void gdbsim_mourn_inferior PARAMS ((void));
84 static void simulator_command PARAMS ((char *args, int from_tty));
88 sim_* are the interface to the simulator (see remote-sim.h).
89 gdbsim_* are stuff which is internal to gdb. */
91 /* Forward data declarations */
92 extern struct target_ops gdbsim_ops;
94 static int program_loaded = 0;
96 /* We must keep track of whether the simulator has been opened or not because
97 GDB can call a target's close routine twice, but sim_close doesn't allow
99 static int gdbsim_open_p = 0;
108 if (len == 8 || len == 4)
111 memcpy (l, buf, len);
112 printf_filtered ("\t0x%x", l[0]);
113 printf_filtered (len == 8 ? " 0x%x\n" : "\n", l[1]);
118 printf_filtered ("\t");
119 for (i = 0; i < len; i++)
120 printf_filtered ("0x%x ", buf[i]);
121 printf_filtered ("\n");
126 static host_callback gdb_callback;
127 static int callbacks_initialized = 0;
129 /* Initialize gdb_callback. */
134 if (! callbacks_initialized)
136 gdb_callback = default_callback;
137 gdb_callback.init (&gdb_callback);
138 gdb_callback.write_stdout = gdb_os_write_stdout;
139 gdb_callback.printf_filtered = gdb_os_printf_filtered;
140 gdb_callback.error = gdb_os_error;
141 sim_set_callbacks (&gdb_callback);
142 callbacks_initialized = 1;
146 /* Release callbacks (free resources used by them). */
151 if (callbacks_initialized)
153 gdb_callback.shutdown (&gdb_callback);
154 callbacks_initialized = 0;
158 /* GDB version of os_write_stdout callback. */
161 gdb_os_write_stdout (p, buf, len)
169 for (i = 0; i < len; i++)
173 if (target_output_hook)
174 target_output_hook (b);
176 fputs_filtered (b, gdb_stdout);
181 /* GDB version of printf_filtered callback. */
185 #ifdef ANSI_PROTOTYPES
186 gdb_os_printf_filtered (host_callback *p, const char *format, ...)
188 gdb_os_printf_filtered (p, va_alist)
194 #ifdef ANSI_PROTOTYPES
195 va_start (args, format);
200 format = va_arg (args, char *);
203 vfprintf_filtered (gdb_stdout, format, args);
208 /* GDB version of error callback. */
212 #ifdef ANSI_PROTOTYPES
213 gdb_os_error (host_callback *p, const char *format, ...)
215 gdb_os_error (p, va_alist)
225 #ifdef ANSI_PROTOTYPES
226 va_start (args, format);
231 format = va_arg (args, char *);
235 vfprintf_filtered (gdb_stderr, format, args);
236 fprintf_filtered (gdb_stderr, "\n");
238 return_to_top_level (RETURN_ERROR);
243 gdbsim_fetch_register (regno)
248 for (regno = 0; regno < NUM_REGS; regno++)
249 gdbsim_fetch_register (regno);
253 char buf[MAX_REGISTER_RAW_SIZE];
255 sim_fetch_register (regno, buf);
256 supply_register (regno, buf);
259 printf_filtered ("gdbsim_fetch_register: %d", regno);
260 /* FIXME: We could print something more intelligible. */
261 dump_mem (buf, REGISTER_RAW_SIZE (regno));
268 gdbsim_store_register (regno)
273 for (regno = 0; regno < NUM_REGS; regno++)
274 gdbsim_store_register (regno);
278 /* FIXME: Until read_register() returns LONGEST, we have this. */
279 char tmp[MAX_REGISTER_RAW_SIZE];
280 read_register_gen (regno, tmp);
281 sim_store_register (regno, tmp);
284 printf_filtered ("gdbsim_store_register: %d", regno);
285 /* FIXME: We could print something more intelligible. */
286 dump_mem (tmp, REGISTER_RAW_SIZE (regno));
291 /* Kill the running program. This may involve closing any open files
292 and releasing other resources acquired by the simulated program. */
298 printf_filtered ("gdbsim_kill\n");
300 sim_kill (); /* close fd's, remove mappings */
304 /* Load an executable file into the target process. This is expected to
305 not only bring new code into the target process, but also to update
306 GDB's symbol tables to match. */
309 gdbsim_load (prog, fromtty)
314 printf_filtered ("gdbsim_load: prog \"%s\"\n", prog);
318 /* This must be done before calling gr_load_image. */
321 if (sim_load (prog, fromtty) != 0)
322 generic_load (prog, fromtty);
326 /* Start an inferior process and set inferior_pid to its pid.
327 EXEC_FILE is the file to run.
328 ARGS is a string containing the arguments to the program.
329 ENV is the environment vector to pass. Errors reported with error().
330 On VxWorks and various standalone systems, we ignore exec_file. */
331 /* This is called not only when we first attach, but also when the
332 user types "run" after having attached. */
335 gdbsim_create_inferior (exec_file, args, env)
341 char *arg_buf,**argv;
344 if (! program_loaded)
345 error ("No program loaded.");
348 printf_filtered ("gdbsim_create_inferior: exec_file \"%s\", args \"%s\"\n",
351 if (exec_file == 0 || exec_bfd == 0)
352 error ("No exec file specified.");
354 entry_pt = (CORE_ADDR) bfd_get_start_address (exec_bfd);
357 remove_breakpoints ();
358 init_wait_for_inferior ();
360 len = strlen (exec_file) + 1 + strlen (args) + 1 + /*slop*/ 10;
361 arg_buf = (char *) alloca (len);
363 strcat (arg_buf, exec_file);
364 strcat (arg_buf, " ");
365 strcat (arg_buf, args);
366 argv = buildargv (arg_buf);
367 make_cleanup (freeargv, (char *) argv);
368 sim_create_inferior (entry_pt, argv, env);
371 insert_breakpoints (); /* Needed to get correct instruction in cache */
372 proceed (entry_pt, TARGET_SIGNAL_DEFAULT, 0);
375 /* The open routine takes the rest of the parameters from the command,
376 and (if successful) pushes a new target onto the stack.
377 Targets should supply this routine, if only to provide an error message. */
378 /* Called when selecting the simulator. EG: (gdb) target sim name. */
381 gdbsim_open (args, from_tty)
386 printf_filtered ("gdbsim_open: args \"%s\"\n", args ? args : "(null)");
388 /* Remove current simulator if one exists. Only do this if the simulator
389 has been opened because sim_close requires it.
390 This is important because the call to push_target below will cause
391 sim_close to be called if the simulator is already open, but push_target
392 is called after sim_open! We can't move the call to push_target before
393 the call to sim_open because sim_open may invoke `error'. */
395 unpush_target (&gdbsim_ops);
402 push_target (&gdbsim_ops);
403 target_fetch_registers (-1);
404 printf_filtered ("Connected to the simulator.\n");
407 /* Does whatever cleanup is required for a target that we are no longer
408 going to be calling. Argument says whether we are quitting gdb and
409 should not get hung in case of errors, or whether we want a clean
410 termination even if it takes a while. This routine is automatically
411 always called just before a routine is popped off the target stack.
412 Closing file descriptors and freeing memory are typical things it should
414 /* Close out all files and local state before this target loses control. */
417 gdbsim_close (quitting)
421 printf_filtered ("gdbsim_close: quitting %d\n", quitting);
427 sim_close (quitting);
434 /* Takes a program previously attached to and detaches it.
435 The program may resume execution (some targets do, some don't) and will
436 no longer stop on signals, etc. We better not have left any breakpoints
437 in the program or it'll die when it hits one. ARGS is arguments
438 typed by the user (e.g. a signal to send the process). FROM_TTY
439 says whether to be verbose or not. */
440 /* Terminate the open connection to the remote debugger.
441 Use this when you want to detach and do something else with your gdb. */
444 gdbsim_detach (args,from_tty)
449 printf_filtered ("gdbsim_detach: args \"%s\"\n", args);
451 pop_target (); /* calls gdbsim_close to do the real work */
453 printf_filtered ("Ending simulator %s debugging\n", target_shortname);
456 /* Resume execution of the target process. STEP says whether to single-step
457 or to run free; SIGGNAL is the signal value (e.g. SIGINT) to be given
458 to the target, or zero for no signal. */
461 gdbsim_resume (pid, step, siggnal)
463 enum target_signal siggnal;
465 if (inferior_pid != 42)
466 error ("The program is not being run.");
469 printf_filtered ("gdbsim_resume: step %d, signal %d\n", step, siggnal);
471 sim_resume (step, target_signal_to_host (siggnal));
474 /* Wait for inferior process to do something. Return pid of child,
475 or -1 in case of error; store status through argument pointer STATUS,
476 just as `wait' would. */
479 gdbsim_wait (pid, status)
481 struct target_waitstatus *status;
484 enum sim_stop reason;
487 printf_filtered ("gdbsim_wait\n");
489 sim_stop_reason (&reason, &sigrc);
493 status->kind = TARGET_WAITKIND_EXITED;
494 status->value.integer = sigrc;
497 status->kind = TARGET_WAITKIND_STOPPED;
498 /* The signal in sigrc is a host signal. That probably
500 status->value.sig = target_signal_from_host (sigrc);
503 status->kind = TARGET_WAITKIND_SIGNALLED;
504 /* The signal in sigrc is a host signal. That probably
506 status->value.sig = target_signal_from_host (sigrc);
513 /* Get ready to modify the registers array. On machines which store
514 individual registers, this doesn't need to do anything. On machines
515 which store all the registers in one fell swoop, this makes sure
516 that registers contains all the registers from the program being
520 gdbsim_prepare_to_store ()
522 /* Do nothing, since we can store individual regs */
526 gdbsim_xfer_inferior_memory (memaddr, myaddr, len, write, target)
531 struct target_ops *target; /* ignored */
533 if (! program_loaded)
534 error ("No program loaded.");
538 printf_filtered ("gdbsim_xfer_inferior_memory: myaddr 0x%x, memaddr 0x%x, len %d, write %d\n",
539 myaddr, memaddr, len, write);
540 if (sr_get_debug () && write)
541 dump_mem(myaddr, len);
546 len = sim_write (memaddr, myaddr, len);
550 len = sim_read (memaddr, myaddr, len);
551 if (sr_get_debug () && len > 0)
552 dump_mem(myaddr, len);
558 gdbsim_files_info (target)
559 struct target_ops *target;
561 char *file = "nothing";
564 file = bfd_get_filename (exec_bfd);
567 printf_filtered ("gdbsim_files_info: file \"%s\"\n", file);
571 printf_filtered ("\tAttached to %s running program %s\n",
572 target_shortname, file);
577 /* Clear the simulator's notion of what the break points are. */
580 gdbsim_mourn_inferior ()
583 printf_filtered ("gdbsim_mourn_inferior:\n");
585 remove_breakpoints ();
586 generic_mourn_inferior ();
589 /* Pass the command argument through to the simulator verbatim. The
590 simulator must do any command interpretation work. */
593 simulator_command (args, from_tty)
597 /* The user may give a command before the simulator is opened, so
598 ensure that the callbacks have been set up. */
601 sim_do_command (args);
604 /* Define the target subroutine names */
606 struct target_ops gdbsim_ops = {
607 "sim", /* to_shortname */
608 "simulator", /* to_longname */
609 "Use the compiled-in simulator.", /* to_doc */
610 gdbsim_open, /* to_open */
611 gdbsim_close, /* to_close */
612 NULL, /* to_attach */
613 gdbsim_detach, /* to_detach */
614 gdbsim_resume, /* to_resume */
615 gdbsim_wait, /* to_wait */
616 gdbsim_fetch_register, /* to_fetch_registers */
617 gdbsim_store_register, /* to_store_registers */
618 gdbsim_prepare_to_store, /* to_prepare_to_store */
619 gdbsim_xfer_inferior_memory, /* to_xfer_memory */
620 gdbsim_files_info, /* to_files_info */
621 memory_insert_breakpoint, /* to_insert_breakpoint */
622 memory_remove_breakpoint, /* to_remove_breakpoint */
623 NULL, /* to_terminal_init */
624 NULL, /* to_terminal_inferior */
625 NULL, /* to_terminal_ours_for_output */
626 NULL, /* to_terminal_ours */
627 NULL, /* to_terminal_info */
628 gdbsim_kill, /* to_kill */
629 gdbsim_load, /* to_load */
630 NULL, /* to_lookup_symbol */
631 gdbsim_create_inferior, /* to_create_inferior */
632 gdbsim_mourn_inferior, /* to_mourn_inferior */
634 0, /* to_notice_signals */
635 0, /* to_thread_alive */
637 process_stratum, /* to_stratum */
639 1, /* to_has_all_memory */
640 1, /* to_has_memory */
641 1, /* to_has_stack */
642 1, /* to_has_registers */
643 1, /* to_has_execution */
645 NULL, /* sections_end */
646 OPS_MAGIC, /* to_magic */
650 _initialize_remote_sim ()
652 add_target (&gdbsim_ops);
654 add_com ("sim <command>", class_obscure, simulator_command,
655 "Send a command to the simulator.");