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