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