use gnulib's update-copyright script to update copyright years
[deliverable/binutils-gdb.git] / gdb / remote-sim.c
CommitLineData
c906108c 1/* Generic remote debugging interface for simulators.
0a65a603 2
6aba47ca 3 Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7b6bb8da
JB
4 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
5 Free Software Foundation, Inc.
0a65a603 6
c906108c
SS
7 Contributed by Cygnus Support.
8 Steve Chamberlain (sac@cygnus.com).
9
c5aa993b 10 This file is part of GDB.
c906108c 11
c5aa993b
JM
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
a9762ec7 14 the Free Software Foundation; either version 3 of the License, or
c5aa993b 15 (at your option) any later version.
c906108c 16
c5aa993b
JM
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
c906108c 21
c5aa993b 22 You should have received a copy of the GNU General Public License
a9762ec7 23 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
24
25#include "defs.h"
26#include "inferior.h"
c906108c
SS
27#include "value.h"
28#include "gdb_string.h"
29#include <ctype.h>
30#include <fcntl.h>
31#include <signal.h>
32#include <setjmp.h>
33#include <errno.h>
34#include "terminal.h"
35#include "target.h"
36#include "gdbcore.h"
3c25f8c7
AC
37#include "gdb/callback.h"
38#include "gdb/remote-sim.h"
c906108c 39#include "command.h"
4e052eda 40#include "regcache.h"
8238d0bf
AC
41#include "gdb_assert.h"
42#include "sim-regno.h"
a8cf2722 43#include "arch-utils.h"
1986bccd 44#include "readline/readline.h"
9de2bdd7 45#include "gdbthread.h"
c906108c
SS
46
47/* Prototypes */
48
a14ed312 49extern void _initialize_remote_sim (void);
392a587b 50
a14ed312 51static void dump_mem (char *buf, int len);
c906108c 52
a14ed312 53static void init_callbacks (void);
c906108c 54
a14ed312 55static void end_callbacks (void);
c906108c 56
a14ed312 57static int gdb_os_write_stdout (host_callback *, const char *, int);
c906108c 58
a14ed312 59static void gdb_os_flush_stdout (host_callback *);
c906108c 60
a14ed312 61static int gdb_os_write_stderr (host_callback *, const char *, int);
c906108c 62
a14ed312 63static void gdb_os_flush_stderr (host_callback *);
c906108c 64
a14ed312 65static int gdb_os_poll_quit (host_callback *);
c906108c 66
0df8b418 67/* printf_filtered is depreciated. */
a14ed312 68static void gdb_os_printf_filtered (host_callback *, const char *, ...);
c906108c 69
a14ed312 70static void gdb_os_vprintf_filtered (host_callback *, const char *, va_list);
c906108c 71
a14ed312 72static void gdb_os_evprintf_filtered (host_callback *, const char *, va_list);
c906108c 73
c25c4a8b
JK
74static void gdb_os_error (host_callback *, const char *, ...)
75 ATTRIBUTE_NORETURN;
c906108c 76
7d85a9c0 77static void gdbsim_kill (struct target_ops *);
c906108c 78
a14ed312 79static void gdbsim_load (char *prog, int fromtty);
c906108c 80
a14ed312 81static void gdbsim_open (char *args, int from_tty);
c906108c 82
a14ed312 83static void gdbsim_close (int quitting);
c906108c 84
136d6dae 85static void gdbsim_detach (struct target_ops *ops, char *args, int from_tty);
c906108c 86
316f2060 87static void gdbsim_prepare_to_store (struct regcache *regcache);
c906108c 88
a14ed312 89static void gdbsim_files_info (struct target_ops *target);
c906108c 90
3c8b2eda 91static void gdbsim_mourn_inferior (struct target_ops *target);
c906108c 92
f9c72d52 93static void gdbsim_stop (ptid_t ptid);
c906108c 94
a14ed312 95void simulator_command (char *args, int from_tty);
c906108c
SS
96
97/* Naming convention:
98
99 sim_* are the interface to the simulator (see remote-sim.h).
100 gdbsim_* are stuff which is internal to gdb. */
101
102/* Forward data declarations */
103extern struct target_ops gdbsim_ops;
104
db04efe6
KB
105static const struct inferior_data *sim_inferior_data_key;
106
107/* Simulator-specific, per-inferior state. */
108struct sim_inferior_data {
109 /* Flag which indicates whether or not the program has been loaded. */
110 int program_loaded;
111
112 /* Simulator descriptor for this inferior. */
113 SIM_DESC gdbsim_desc;
114
115 /* This is the ptid we use for this particular simulator instance. Its
116 value is somewhat arbitrary, as the simulator target don't have a
117 notion of tasks or threads, but we need something non-null to place
118 in inferior_ptid. For simulators which permit multiple instances,
119 we also need a unique identifier to use for each inferior. */
120 ptid_t remote_sim_ptid;
121
122 /* Signal with which to resume. */
123 enum target_signal resume_siggnal;
124
125 /* Flag which indicates whether resume should step or not. */
126 int resume_step;
127};
128
129/* Flag indicating the "open" status of this module. It's set to 1
130 in gdbsim_open() and 0 in gdbsim_close(). */
131static int gdbsim_is_open = 0;
132
133/* Value of the next pid to allocate for an inferior. As indicated
134 elsewhere, its initial value is somewhat arbitrary; it's critical
135 though that it's not zero or negative. */
136static int next_pid;
137#define INITIAL_PID 42000
138
139/* Argument list to pass to sim_open(). It is allocated in gdbsim_open()
140 and deallocated in gdbsim_close(). The lifetime needs to extend beyond
141 the call to gdbsim_open() due to the fact that other sim instances other
142 than the first will be allocated after the gdbsim_open() call. */
143static char **sim_argv = NULL;
144
145/* OS-level callback functions for write, flush, etc. */
146static host_callback gdb_callback;
147static int callbacks_initialized = 0;
148
149/* Callback for iterate_over_inferiors. It checks to see if the sim
150 descriptor passed via ARG is the same as that for the inferior
151 designated by INF. Return true if so; false otherwise. */
152
153static int
154check_for_duplicate_sim_descriptor (struct inferior *inf, void *arg)
155{
156 struct sim_inferior_data *sim_data;
157 SIM_DESC new_sim_desc = arg;
158
159 sim_data = inferior_data (inf, sim_inferior_data_key);
160
161 return (sim_data != NULL && sim_data->gdbsim_desc == new_sim_desc);
162}
163
164/* Flags indicating whether or not a sim instance is needed. One of these
165 flags should be passed to get_sim_inferior_data(). */
166
167enum {SIM_INSTANCE_NOT_NEEDED = 0, SIM_INSTANCE_NEEDED = 1};
168
169/* Obtain pointer to per-inferior simulator data, allocating it if necessary.
170 Attempt to open the sim if SIM_INSTANCE_NEEDED is true. */
171
172static struct sim_inferior_data *
173get_sim_inferior_data (struct inferior *inf, int sim_instance_needed)
174{
175 SIM_DESC sim_desc = NULL;
176 struct sim_inferior_data *sim_data
177 = inferior_data (inf, sim_inferior_data_key);
178
179 /* Try to allocate a new sim instance, if needed. We do this ahead of
180 a potential allocation of a sim_inferior_data struct in order to
181 avoid needlessly allocating that struct in the event that the sim
182 instance allocation fails. */
183 if (sim_instance_needed == SIM_INSTANCE_NEEDED
184 && (sim_data == NULL || sim_data->gdbsim_desc == NULL))
185 {
186 struct inferior *idup;
187 sim_desc = sim_open (SIM_OPEN_DEBUG, &gdb_callback, exec_bfd, sim_argv);
188 if (sim_desc == NULL)
189 error (_("Unable to create simulator instance for inferior %d."),
190 inf->num);
191
192 idup = iterate_over_inferiors (check_for_duplicate_sim_descriptor,
193 sim_desc);
194 if (idup != NULL)
195 {
196 /* We don't close the descriptor due to the fact that it's
197 shared with some other inferior. If we were to close it,
198 that might needlessly muck up the other inferior. Of
199 course, it's possible that the damage has already been
200 done... Note that it *will* ultimately be closed during
201 cleanup of the other inferior. */
202 sim_desc = NULL;
203 error (
204 _("Inferior %d and inferior %d would have identical simulator state.\n"
205 "(This simulator does not support the running of more than one inferior.)"),
206 inf->num, idup->num);
207 }
208 }
209
210 if (sim_data == NULL)
211 {
212 sim_data = XZALLOC(struct sim_inferior_data);
213 set_inferior_data (inf, sim_inferior_data_key, sim_data);
214
215 /* Allocate a ptid for this inferior. */
216 sim_data->remote_sim_ptid = ptid_build (next_pid, 0, next_pid);
217 next_pid++;
218
219 /* Initialize the other instance variables. */
220 sim_data->program_loaded = 0;
221 sim_data->gdbsim_desc = sim_desc;
222 sim_data->resume_siggnal = TARGET_SIGNAL_0;
223 sim_data->resume_step = 0;
224 }
225 else if (sim_desc)
226 {
227 /* This handles the case where sim_data was allocated prior to
228 needing a sim instance. */
229 sim_data->gdbsim_desc = sim_desc;
230 }
c906108c 231
c906108c 232
db04efe6
KB
233 return sim_data;
234}
235
236/* Return pointer to per-inferior simulator data using PTID to find the
237 inferior in question. Return NULL when no inferior is found or
238 when ptid has a zero or negative pid component. */
239
240static struct sim_inferior_data *
241get_sim_inferior_data_by_ptid (ptid_t ptid, int sim_instance_needed)
242{
243 struct inferior *inf;
244 int pid = ptid_get_pid (ptid);
245
246 if (pid <= 0)
247 return NULL;
248
249 inf = find_inferior_pid (pid);
250
251 if (inf)
252 return get_sim_inferior_data (inf, sim_instance_needed);
253 else
254 return NULL;
255}
256
257/* Free the per-inferior simulator data. */
258
259static void
260sim_inferior_data_cleanup (struct inferior *inf, void *data)
261{
262 struct sim_inferior_data *sim_data = data;
263
264 if (sim_data != NULL)
265 {
266 if (sim_data->gdbsim_desc)
267 {
268 sim_close (sim_data->gdbsim_desc, 0);
269 sim_data->gdbsim_desc = NULL;
270 }
271 xfree (sim_data);
272 }
273}
9de2bdd7 274
c906108c 275static void
fba45db2 276dump_mem (char *buf, int len)
c906108c
SS
277{
278 if (len <= 8)
279 {
280 if (len == 8 || len == 4)
281 {
282 long l[2];
123f5f96 283
c906108c 284 memcpy (l, buf, len);
d4f3574e 285 printf_filtered ("\t0x%lx", l[0]);
a6da1910
AC
286 if (len == 8)
287 printf_filtered (" 0x%lx", l[1]);
288 printf_filtered ("\n");
c906108c
SS
289 }
290 else
291 {
292 int i;
123f5f96 293
c906108c
SS
294 printf_filtered ("\t");
295 for (i = 0; i < len; i++)
296 printf_filtered ("0x%x ", buf[i]);
297 printf_filtered ("\n");
298 }
299 }
300}
301
c906108c
SS
302/* Initialize gdb_callback. */
303
304static void
fba45db2 305init_callbacks (void)
c906108c 306{
c5aa993b 307 if (!callbacks_initialized)
c906108c
SS
308 {
309 gdb_callback = default_callback;
310 gdb_callback.init (&gdb_callback);
311 gdb_callback.write_stdout = gdb_os_write_stdout;
312 gdb_callback.flush_stdout = gdb_os_flush_stdout;
313 gdb_callback.write_stderr = gdb_os_write_stderr;
314 gdb_callback.flush_stderr = gdb_os_flush_stderr;
315 gdb_callback.printf_filtered = gdb_os_printf_filtered;
316 gdb_callback.vprintf_filtered = gdb_os_vprintf_filtered;
317 gdb_callback.evprintf_filtered = gdb_os_evprintf_filtered;
318 gdb_callback.error = gdb_os_error;
319 gdb_callback.poll_quit = gdb_os_poll_quit;
320 gdb_callback.magic = HOST_CALLBACK_MAGIC;
321 callbacks_initialized = 1;
322 }
323}
324
325/* Release callbacks (free resources used by them). */
326
327static void
fba45db2 328end_callbacks (void)
c906108c
SS
329{
330 if (callbacks_initialized)
331 {
332 gdb_callback.shutdown (&gdb_callback);
333 callbacks_initialized = 0;
334 }
335}
336
337/* GDB version of os_write_stdout callback. */
338
c5aa993b 339static int
fba45db2 340gdb_os_write_stdout (host_callback *p, const char *buf, int len)
c906108c
SS
341{
342 int i;
343 char b[2];
344
d9fcf2fb 345 ui_file_write (gdb_stdtarg, buf, len);
c906108c
SS
346 return len;
347}
348
349/* GDB version of os_flush_stdout callback. */
350
351static void
fba45db2 352gdb_os_flush_stdout (host_callback *p)
c906108c 353{
4ce44c66 354 gdb_flush (gdb_stdtarg);
c906108c
SS
355}
356
357/* GDB version of os_write_stderr callback. */
358
c5aa993b 359static int
fba45db2 360gdb_os_write_stderr (host_callback *p, const char *buf, int len)
c906108c
SS
361{
362 int i;
363 char b[2];
364
c5aa993b 365 for (i = 0; i < len; i++)
c906108c
SS
366 {
367 b[0] = buf[i];
368 b[1] = 0;
22e8e3c7 369 fputs_unfiltered (b, gdb_stdtargerr);
c906108c
SS
370 }
371 return len;
372}
373
374/* GDB version of os_flush_stderr callback. */
375
376static void
fba45db2 377gdb_os_flush_stderr (host_callback *p)
c906108c 378{
22e8e3c7 379 gdb_flush (gdb_stdtargerr);
c906108c
SS
380}
381
382/* GDB version of printf_filtered callback. */
383
c906108c 384static void
c5aa993b 385gdb_os_printf_filtered (host_callback * p, const char *format,...)
c906108c
SS
386{
387 va_list args;
c906108c 388
123f5f96 389 va_start (args, format);
c906108c 390 vfprintf_filtered (gdb_stdout, format, args);
c906108c
SS
391 va_end (args);
392}
393
394/* GDB version of error vprintf_filtered. */
395
c906108c 396static void
c5aa993b 397gdb_os_vprintf_filtered (host_callback * p, const char *format, va_list ap)
c906108c
SS
398{
399 vfprintf_filtered (gdb_stdout, format, ap);
400}
401
402/* GDB version of error evprintf_filtered. */
403
c906108c 404static void
c5aa993b 405gdb_os_evprintf_filtered (host_callback * p, const char *format, va_list ap)
c906108c
SS
406{
407 vfprintf_filtered (gdb_stderr, format, ap);
408}
409
410/* GDB version of error callback. */
411
c906108c 412static void
58d4abe1 413gdb_os_error (host_callback * p, const char *format, ...)
c906108c 414{
58d4abe1 415 va_list args;
123f5f96 416
58d4abe1
PA
417 va_start (args, format);
418 verror (format, args);
419 va_end (args);
c906108c
SS
420}
421
8238d0bf 422int
e7faf938 423one2one_register_sim_regno (struct gdbarch *gdbarch, int regnum)
8238d0bf
AC
424{
425 /* Only makes sense to supply raw registers. */
e7faf938 426 gdb_assert (regnum >= 0 && regnum < gdbarch_num_regs (gdbarch));
8238d0bf
AC
427 return regnum;
428}
429
c906108c 430static void
28439f5e
PA
431gdbsim_fetch_register (struct target_ops *ops,
432 struct regcache *regcache, int regno)
c906108c 433{
40a6adc1 434 struct gdbarch *gdbarch = get_regcache_arch (regcache);
db04efe6
KB
435 struct sim_inferior_data *sim_data
436 = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NEEDED);
123f5f96 437
c5aa993b 438 if (regno == -1)
c906108c 439 {
40a6adc1 440 for (regno = 0; regno < gdbarch_num_regs (gdbarch); regno++)
28439f5e 441 gdbsim_fetch_register (ops, regcache, regno);
8238d0bf 442 return;
c906108c 443 }
8238d0bf 444
40a6adc1 445 switch (gdbarch_register_sim_regno (gdbarch, regno))
c906108c 446 {
8238d0bf
AC
447 case LEGACY_SIM_REGNO_IGNORE:
448 break;
449 case SIM_REGNO_DOES_NOT_EXIST:
450 {
451 /* For moment treat a `does not exist' register the same way
452 as an ``unavailable'' register. */
d9d9c31f 453 char buf[MAX_REGISTER_SIZE];
8238d0bf 454 int nr_bytes;
123f5f96 455
d9d9c31f 456 memset (buf, 0, MAX_REGISTER_SIZE);
56be3814 457 regcache_raw_supply (regcache, regno, buf);
8238d0bf
AC
458 break;
459 }
56be3814 460
8238d0bf
AC
461 default:
462 {
463 static int warn_user = 1;
d9d9c31f 464 char buf[MAX_REGISTER_SIZE];
8238d0bf 465 int nr_bytes;
123f5f96 466
40a6adc1 467 gdb_assert (regno >= 0 && regno < gdbarch_num_regs (gdbarch));
d9d9c31f 468 memset (buf, 0, MAX_REGISTER_SIZE);
db04efe6 469 nr_bytes = sim_fetch_register (sim_data->gdbsim_desc,
474c1661 470 gdbarch_register_sim_regno
40a6adc1 471 (gdbarch, regno),
474c1661 472 buf,
40a6adc1
MD
473 register_size (gdbarch, regno));
474 if (nr_bytes > 0
475 && nr_bytes != register_size (gdbarch, regno) && warn_user)
8238d0bf
AC
476 {
477 fprintf_unfiltered (gdb_stderr,
0df8b418
MS
478 "Size of register %s (%d/%d) "
479 "incorrect (%d instead of %d))",
40a6adc1 480 gdbarch_register_name (gdbarch, regno),
474c1661
UW
481 regno,
482 gdbarch_register_sim_regno
40a6adc1
MD
483 (gdbarch, regno),
484 nr_bytes, register_size (gdbarch, regno));
8238d0bf
AC
485 warn_user = 0;
486 }
487 /* FIXME: cagney/2002-05-27: Should check `nr_bytes == 0'
278a7cf7 488 indicating that GDB and the SIM have different ideas about
8238d0bf
AC
489 which registers are fetchable. */
490 /* Else if (nr_bytes < 0): an old simulator, that doesn't
491 think to return the register size. Just assume all is ok. */
56be3814 492 regcache_raw_supply (regcache, regno, buf);
ea35711c 493 if (remote_debug)
8238d0bf
AC
494 {
495 printf_filtered ("gdbsim_fetch_register: %d", regno);
496 /* FIXME: We could print something more intelligible. */
40a6adc1 497 dump_mem (buf, register_size (gdbarch, regno));
8238d0bf
AC
498 }
499 break;
500 }
c906108c
SS
501 }
502}
503
504
505static void
28439f5e
PA
506gdbsim_store_register (struct target_ops *ops,
507 struct regcache *regcache, int regno)
c906108c 508{
40a6adc1 509 struct gdbarch *gdbarch = get_regcache_arch (regcache);
db04efe6
KB
510 struct sim_inferior_data *sim_data
511 = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NEEDED);
512
c5aa993b 513 if (regno == -1)
c906108c 514 {
40a6adc1 515 for (regno = 0; regno < gdbarch_num_regs (gdbarch); regno++)
28439f5e 516 gdbsim_store_register (ops, regcache, regno);
8238d0bf 517 return;
c906108c 518 }
40a6adc1 519 else if (gdbarch_register_sim_regno (gdbarch, regno) >= 0)
c906108c 520 {
123a958e 521 char tmp[MAX_REGISTER_SIZE];
c906108c 522 int nr_bytes;
123f5f96 523
56be3814 524 regcache_cooked_read (regcache, regno, tmp);
db04efe6 525 nr_bytes = sim_store_register (sim_data->gdbsim_desc,
474c1661 526 gdbarch_register_sim_regno
40a6adc1
MD
527 (gdbarch, regno),
528 tmp, register_size (gdbarch, regno));
529 if (nr_bytes > 0 && nr_bytes != register_size (gdbarch, regno))
8e65ff28 530 internal_error (__FILE__, __LINE__,
e2e0b3e5 531 _("Register size different to expected"));
dae477fe
AB
532 if (nr_bytes < 0)
533 internal_error (__FILE__, __LINE__,
534 _("Register %d not updated"), regno);
535 if (nr_bytes == 0)
536 warning (_("Register %s not updated"),
537 gdbarch_register_name (gdbarch, regno));
538
ea35711c 539 if (remote_debug)
c906108c
SS
540 {
541 printf_filtered ("gdbsim_store_register: %d", regno);
542 /* FIXME: We could print something more intelligible. */
40a6adc1 543 dump_mem (tmp, register_size (gdbarch, regno));
c906108c
SS
544 }
545 }
546}
547
548/* Kill the running program. This may involve closing any open files
549 and releasing other resources acquired by the simulated program. */
550
551static void
7d85a9c0 552gdbsim_kill (struct target_ops *ops)
c906108c 553{
ea35711c 554 if (remote_debug)
c906108c
SS
555 printf_filtered ("gdbsim_kill\n");
556
557 /* There is no need to `kill' running simulator - the simulator is
52bb452f
DJ
558 not running. Mourning it is enough. */
559 target_mourn_inferior ();
c906108c
SS
560}
561
562/* Load an executable file into the target process. This is expected to
563 not only bring new code into the target process, but also to update
564 GDB's symbol tables to match. */
565
566static void
1986bccd 567gdbsim_load (char *args, int fromtty)
c906108c 568{
d1a41061 569 char **argv;
1986bccd 570 char *prog;
db04efe6
KB
571 struct sim_inferior_data *sim_data
572 = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NEEDED);
1986bccd 573
d1a41061
PP
574 if (args == NULL)
575 error_no_arg (_("program to load"));
1986bccd 576
d1a41061 577 argv = gdb_buildargv (args);
1986bccd
AS
578 make_cleanup_freeargv (argv);
579
580 prog = tilde_expand (argv[0]);
581
582 if (argv[1] != NULL)
583 error (_("GDB sim does not yet support a load offset."));
584
ea35711c 585 if (remote_debug)
c906108c
SS
586 printf_filtered ("gdbsim_load: prog \"%s\"\n", prog);
587
c906108c
SS
588 /* FIXME: We will print two messages on error.
589 Need error to either not print anything if passed NULL or need
590 another routine that doesn't take any arguments. */
db04efe6 591 if (sim_load (sim_data->gdbsim_desc, prog, NULL, fromtty) == SIM_RC_FAIL)
8a3fe4f8 592 error (_("unable to load program"));
c906108c
SS
593
594 /* FIXME: If a load command should reset the targets registers then
0df8b418 595 a call to sim_create_inferior() should go here. */
c906108c 596
db04efe6 597 sim_data->program_loaded = 1;
c906108c
SS
598}
599
600
39f77062 601/* Start an inferior process and set inferior_ptid to its pid.
c906108c
SS
602 EXEC_FILE is the file to run.
603 ARGS is a string containing the arguments to the program.
604 ENV is the environment vector to pass. Errors reported with error().
605 On VxWorks and various standalone systems, we ignore exec_file. */
606/* This is called not only when we first attach, but also when the
607 user types "run" after having attached. */
608
609static void
3c8b2eda
TJB
610gdbsim_create_inferior (struct target_ops *target, char *exec_file, char *args,
611 char **env, int from_tty)
c906108c 612{
db04efe6
KB
613 struct sim_inferior_data *sim_data
614 = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NEEDED);
c906108c 615 int len;
c5aa993b 616 char *arg_buf, **argv;
c906108c
SS
617
618 if (exec_file == 0 || exec_bfd == 0)
8a3fe4f8 619 warning (_("No executable file specified."));
db04efe6 620 if (!sim_data->program_loaded)
8a3fe4f8 621 warning (_("No program loaded."));
c906108c 622
ea35711c 623 if (remote_debug)
c906108c 624 printf_filtered ("gdbsim_create_inferior: exec_file \"%s\", args \"%s\"\n",
c5aa993b 625 (exec_file ? exec_file : "(NULL)"),
c906108c
SS
626 args);
627
db04efe6 628 if (ptid_equal (inferior_ptid, sim_data->remote_sim_ptid))
7d85a9c0 629 gdbsim_kill (target);
c906108c
SS
630 remove_breakpoints ();
631 init_wait_for_inferior ();
632
633 if (exec_file != NULL)
634 {
c5aa993b 635 len = strlen (exec_file) + 1 + strlen (args) + 1 + /*slop */ 10;
c906108c
SS
636 arg_buf = (char *) alloca (len);
637 arg_buf[0] = '\0';
638 strcat (arg_buf, exec_file);
639 strcat (arg_buf, " ");
640 strcat (arg_buf, args);
d1a41061 641 argv = gdb_buildargv (arg_buf);
7a292a7a 642 make_cleanup_freeargv (argv);
c906108c
SS
643 }
644 else
645 argv = NULL;
db04efe6 646 sim_create_inferior (sim_data->gdbsim_desc, exec_bfd, argv, env);
c906108c 647
db04efe6 648 inferior_ptid = sim_data->remote_sim_ptid;
20176d8f 649 inferior_appeared (current_inferior (), ptid_get_pid (inferior_ptid));
9de2bdd7
PA
650 add_thread_silent (inferior_ptid);
651
0df8b418
MS
652 insert_breakpoints (); /* Needed to get correct instruction
653 in cache. */
c906108c
SS
654
655 clear_proceed_status ();
c906108c
SS
656}
657
658/* The open routine takes the rest of the parameters from the command,
659 and (if successful) pushes a new target onto the stack.
660 Targets should supply this routine, if only to provide an error message. */
0df8b418 661/* Called when selecting the simulator. E.g. (gdb) target sim name. */
c906108c
SS
662
663static void
fba45db2 664gdbsim_open (char *args, int from_tty)
c906108c
SS
665{
666 int len;
667 char *arg_buf;
db04efe6
KB
668 struct sim_inferior_data *sim_data;
669 SIM_DESC gdbsim_desc;
c906108c 670
ea35711c 671 if (remote_debug)
c906108c
SS
672 printf_filtered ("gdbsim_open: args \"%s\"\n", args ? args : "(null)");
673
db04efe6
KB
674 /* Ensure that the sim target is not on the target stack. This is
675 necessary, because if it is on the target stack, the call to
676 push_target below will invoke sim_close(), thus freeing various
677 state (including a sim instance) that we allocate prior to
678 invoking push_target(). We want to delay the push_target()
679 operation until after we complete those operations which could
680 error out. */
681 if (gdbsim_is_open)
c906108c
SS
682 unpush_target (&gdbsim_ops);
683
c5aa993b 684 len = (7 + 1 /* gdbsim */
c906108c
SS
685 + strlen (" -E little")
686 + strlen (" --architecture=xxxxxxxxxx")
f4b8c29b 687 + strlen (" --sysroot=") + strlen (gdb_sysroot) +
c906108c 688 + (args ? strlen (args) : 0)
c5aa993b 689 + 50) /* slack */ ;
c906108c 690 arg_buf = (char *) alloca (len);
c5aa993b 691 strcpy (arg_buf, "gdbsim"); /* 7 */
b6d373df 692 /* Specify the byte order for the target when it is explicitly
0df8b418 693 specified by the user (not auto detected). */
b6d373df 694 switch (selected_byte_order ())
c906108c 695 {
a8cf2722
AC
696 case BFD_ENDIAN_BIG:
697 strcat (arg_buf, " -E big");
698 break;
699 case BFD_ENDIAN_LITTLE:
700 strcat (arg_buf, " -E little");
701 break;
702 case BFD_ENDIAN_UNKNOWN:
703 break;
c906108c
SS
704 }
705 /* Specify the architecture of the target when it has been
706 explicitly specified */
a8cf2722 707 if (selected_architecture_name () != NULL)
c906108c
SS
708 {
709 strcat (arg_buf, " --architecture=");
a8cf2722 710 strcat (arg_buf, selected_architecture_name ());
c906108c 711 }
f4b8c29b
MF
712 /* Pass along gdb's concept of the sysroot. */
713 strcat (arg_buf, " --sysroot=");
714 strcat (arg_buf, gdb_sysroot);
c906108c
SS
715 /* finally, any explicit args */
716 if (args)
717 {
c5aa993b 718 strcat (arg_buf, " "); /* 1 */
c906108c
SS
719 strcat (arg_buf, args);
720 }
db04efe6 721 sim_argv = gdb_buildargv (arg_buf);
c906108c
SS
722
723 init_callbacks ();
db04efe6 724 gdbsim_desc = sim_open (SIM_OPEN_DEBUG, &gdb_callback, exec_bfd, sim_argv);
c906108c
SS
725
726 if (gdbsim_desc == 0)
db04efe6
KB
727 {
728 freeargv (sim_argv);
729 sim_argv = NULL;
730 error (_("unable to create simulator instance"));
731 }
732
733 /* Reset the pid numberings for this batch of sim instances. */
734 next_pid = INITIAL_PID;
735
736 /* Allocate the inferior data, but do not allocate a sim instance
737 since we've already just done that. */
0df8b418
MS
738 sim_data = get_sim_inferior_data (current_inferior (),
739 SIM_INSTANCE_NOT_NEEDED);
db04efe6
KB
740
741 sim_data->gdbsim_desc = gdbsim_desc;
c906108c
SS
742
743 push_target (&gdbsim_ops);
c906108c 744 printf_filtered ("Connected to the simulator.\n");
52bb452f
DJ
745
746 /* There's nothing running after "target sim" or "load"; not until
747 "run". */
748 inferior_ptid = null_ptid;
db04efe6
KB
749
750 gdbsim_is_open = 1;
751}
752
753/* Callback for iterate_over_inferiors. Called (indirectly) by
754 gdbsim_close(). */
755
756static int
757gdbsim_close_inferior (struct inferior *inf, void *arg)
758{
759 struct sim_inferior_data *sim_data = inferior_data (inf,
760 sim_inferior_data_key);
761 if (sim_data != NULL)
762 {
763 ptid_t ptid = sim_data->remote_sim_ptid;
764
765 sim_inferior_data_cleanup (inf, sim_data);
766 set_inferior_data (inf, sim_inferior_data_key, NULL);
767
768 /* Having a ptid allocated and stored in remote_sim_ptid does
0df8b418 769 not mean that a corresponding inferior was ever created.
db04efe6
KB
770 Thus we need to verify the existence of an inferior using the
771 pid in question before setting inferior_ptid via
772 switch_to_thread() or mourning the inferior. */
773 if (find_inferior_pid (ptid_get_pid (ptid)) != NULL)
774 {
775 switch_to_thread (ptid);
776 generic_mourn_inferior ();
777 }
778 }
779
780 return 0;
c906108c
SS
781}
782
783/* Does whatever cleanup is required for a target that we are no longer
784 going to be calling. Argument says whether we are quitting gdb and
785 should not get hung in case of errors, or whether we want a clean
786 termination even if it takes a while. This routine is automatically
787 always called just before a routine is popped off the target stack.
788 Closing file descriptors and freeing memory are typical things it should
789 do. */
0df8b418 790/* Close out all files and local state before this target loses control. */
c906108c
SS
791
792static void
fba45db2 793gdbsim_close (int quitting)
c906108c 794{
db04efe6
KB
795 struct sim_inferior_data *sim_data
796 = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NOT_NEEDED);
797
ea35711c 798 if (remote_debug)
c906108c
SS
799 printf_filtered ("gdbsim_close: quitting %d\n", quitting);
800
db04efe6 801 iterate_over_inferiors (gdbsim_close_inferior, NULL);
c906108c 802
db04efe6 803 if (sim_argv != NULL)
c906108c 804 {
db04efe6
KB
805 freeargv (sim_argv);
806 sim_argv = NULL;
c906108c
SS
807 }
808
809 end_callbacks ();
db04efe6
KB
810
811 gdbsim_is_open = 0;
c906108c
SS
812}
813
814/* Takes a program previously attached to and detaches it.
815 The program may resume execution (some targets do, some don't) and will
816 no longer stop on signals, etc. We better not have left any breakpoints
817 in the program or it'll die when it hits one. ARGS is arguments
818 typed by the user (e.g. a signal to send the process). FROM_TTY
819 says whether to be verbose or not. */
820/* Terminate the open connection to the remote debugger.
821 Use this when you want to detach and do something else with your gdb. */
822
823static void
136d6dae 824gdbsim_detach (struct target_ops *ops, char *args, int from_tty)
c906108c 825{
ea35711c 826 if (remote_debug)
c906108c
SS
827 printf_filtered ("gdbsim_detach: args \"%s\"\n", args);
828
829 pop_target (); /* calls gdbsim_close to do the real work */
830 if (from_tty)
831 printf_filtered ("Ending simulator %s debugging\n", target_shortname);
832}
c5aa993b 833
c906108c
SS
834/* Resume execution of the target process. STEP says whether to single-step
835 or to run free; SIGGNAL is the signal value (e.g. SIGINT) to be given
836 to the target, or zero for no signal. */
837
db04efe6
KB
838struct resume_data
839{
840 enum target_signal siggnal;
841 int step;
842};
843
844static int
845gdbsim_resume_inferior (struct inferior *inf, void *arg)
846{
847 struct sim_inferior_data *sim_data
848 = get_sim_inferior_data (inf, SIM_INSTANCE_NOT_NEEDED);
849 struct resume_data *rd = arg;
850
851 if (sim_data)
852 {
853 sim_data->resume_siggnal = rd->siggnal;
854 sim_data->resume_step = rd->step;
855
856 if (remote_debug)
857 printf_filtered (_("gdbsim_resume: pid %d, step %d, signal %d\n"),
858 inf->pid, rd->step, rd->siggnal);
859 }
860
861 /* When called from iterate_over_inferiors, a zero return causes the
862 iteration process to proceed until there are no more inferiors to
863 consider. */
864 return 0;
865}
c906108c
SS
866
867static void
2fb89e62
PA
868gdbsim_resume (struct target_ops *ops,
869 ptid_t ptid, int step, enum target_signal siggnal)
c906108c 870{
db04efe6
KB
871 struct resume_data rd;
872 struct sim_inferior_data *sim_data
873 = get_sim_inferior_data_by_ptid (ptid, SIM_INSTANCE_NOT_NEEDED);
874
875 rd.siggnal = siggnal;
876 rd.step = step;
877
0df8b418 878 /* We don't access any sim_data members within this function.
db04efe6
KB
879 What's of interest is whether or not the call to
880 get_sim_inferior_data_by_ptid(), above, is able to obtain a
881 non-NULL pointer. If it managed to obtain a non-NULL pointer, we
882 know we have a single inferior to consider. If it's NULL, we
883 either have multiple inferiors to resume or an error condition. */
884
885 if (sim_data)
886 gdbsim_resume_inferior (find_inferior_pid (ptid_get_pid (ptid)), &rd);
887 else if (ptid_equal (ptid, minus_one_ptid))
888 iterate_over_inferiors (gdbsim_resume_inferior, &rd);
889 else
8a3fe4f8 890 error (_("The program is not being run."));
c906108c
SS
891}
892
893/* Notify the simulator of an asynchronous request to stop.
c5aa993b 894
c906108c
SS
895 The simulator shall ensure that the stop request is eventually
896 delivered to the simulator. If the call is made while the
897 simulator is not running then the stop request is processed when
898 the simulator is next resumed.
899
db04efe6
KB
900 For simulators that do not support this operation, just abort. */
901
902static int
903gdbsim_stop_inferior (struct inferior *inf, void *arg)
904{
905 struct sim_inferior_data *sim_data
906 = get_sim_inferior_data (inf, SIM_INSTANCE_NEEDED);
907
908 if (sim_data)
909 {
910 if (!sim_stop (sim_data->gdbsim_desc))
911 {
912 quit ();
913 }
914 }
915
916 /* When called from iterate_over_inferiors, a zero return causes the
917 iteration process to proceed until there are no more inferiors to
918 consider. */
919 return 0;
920}
c906108c
SS
921
922static void
f9c72d52 923gdbsim_stop (ptid_t ptid)
c906108c 924{
db04efe6
KB
925 struct sim_inferior_data *sim_data;
926
927 if (ptid_equal (ptid, minus_one_ptid))
c906108c 928 {
db04efe6
KB
929 iterate_over_inferiors (gdbsim_stop_inferior, NULL);
930 }
931 else
932 {
933 struct inferior *inf = find_inferior_pid (ptid_get_pid (ptid));
934
935 if (inf == NULL)
0df8b418
MS
936 error (_("Can't stop pid %d. No inferior found."),
937 ptid_get_pid (ptid));
db04efe6
KB
938
939 gdbsim_stop_inferior (inf, NULL);
c906108c
SS
940 }
941}
942
943/* GDB version of os_poll_quit callback.
8a0ce09a 944 Taken from gdb/util.c - should be in a library. */
c906108c
SS
945
946static int
fba45db2 947gdb_os_poll_quit (host_callback *p)
c906108c 948{
98bbd631
AC
949 if (deprecated_ui_loop_hook != NULL)
950 deprecated_ui_loop_hook (0);
7a292a7a 951
c5aa993b 952 if (quit_flag) /* gdb's idea of quit */
c906108c 953 {
c5aa993b 954 quit_flag = 0; /* we've stolen it */
c906108c
SS
955 return 1;
956 }
957 else if (immediate_quit)
958 {
959 return 1;
960 }
961 return 0;
962}
963
964/* Wait for inferior process to do something. Return pid of child,
965 or -1 in case of error; store status through argument pointer STATUS,
0df8b418 966 just as `wait' would. */
c906108c
SS
967
968static void
fba45db2 969gdbsim_cntrl_c (int signo)
c906108c 970{
db04efe6 971 gdbsim_stop (minus_one_ptid);
c906108c
SS
972}
973
39f77062 974static ptid_t
117de6a9 975gdbsim_wait (struct target_ops *ops,
47608cb1 976 ptid_t ptid, struct target_waitstatus *status, int options)
c906108c 977{
db04efe6 978 struct sim_inferior_data *sim_data;
c906108c
SS
979 static RETSIGTYPE (*prev_sigint) ();
980 int sigrc = 0;
981 enum sim_stop reason = sim_running;
982
db04efe6
KB
983 /* This target isn't able to (yet) resume more than one inferior at a time.
984 When ptid is minus_one_ptid, just use the current inferior. If we're
985 given an explicit pid, we'll try to find it and use that instead. */
986 if (ptid_equal (ptid, minus_one_ptid))
0df8b418
MS
987 sim_data = get_sim_inferior_data (current_inferior (),
988 SIM_INSTANCE_NEEDED);
db04efe6
KB
989 else
990 {
991 sim_data = get_sim_inferior_data_by_ptid (ptid, SIM_INSTANCE_NEEDED);
992 if (sim_data == NULL)
993 error (_("Unable to wait for pid %d. Inferior not found."),
994 ptid_get_pid (ptid));
995 inferior_ptid = ptid;
996 }
997
ea35711c 998 if (remote_debug)
c906108c
SS
999 printf_filtered ("gdbsim_wait\n");
1000
1001#if defined (HAVE_SIGACTION) && defined (SA_RESTART)
1002 {
1003 struct sigaction sa, osa;
1004 sa.sa_handler = gdbsim_cntrl_c;
1005 sigemptyset (&sa.sa_mask);
1006 sa.sa_flags = 0;
1007 sigaction (SIGINT, &sa, &osa);
1008 prev_sigint = osa.sa_handler;
1009 }
1010#else
1011 prev_sigint = signal (SIGINT, gdbsim_cntrl_c);
1012#endif
db04efe6
KB
1013 sim_resume (sim_data->gdbsim_desc, sim_data->resume_step,
1014 sim_data->resume_siggnal);
1015
c906108c 1016 signal (SIGINT, prev_sigint);
db04efe6 1017 sim_data->resume_step = 0;
c906108c 1018
db04efe6 1019 sim_stop_reason (sim_data->gdbsim_desc, &reason, &sigrc);
c906108c
SS
1020
1021 switch (reason)
1022 {
1023 case sim_exited:
1024 status->kind = TARGET_WAITKIND_EXITED;
1025 status->value.integer = sigrc;
1026 break;
1027 case sim_stopped:
1028 switch (sigrc)
1029 {
aba6488e 1030 case TARGET_SIGNAL_ABRT:
c906108c
SS
1031 quit ();
1032 break;
aba6488e
MM
1033 case TARGET_SIGNAL_INT:
1034 case TARGET_SIGNAL_TRAP:
c906108c
SS
1035 default:
1036 status->kind = TARGET_WAITKIND_STOPPED;
aba6488e 1037 status->value.sig = sigrc;
c906108c
SS
1038 break;
1039 }
1040 break;
1041 case sim_signalled:
1042 status->kind = TARGET_WAITKIND_SIGNALLED;
aba6488e 1043 status->value.sig = sigrc;
c906108c
SS
1044 break;
1045 case sim_running:
1046 case sim_polling:
0df8b418 1047 /* FIXME: Is this correct? */
c906108c
SS
1048 break;
1049 }
1050
39f77062 1051 return inferior_ptid;
c906108c
SS
1052}
1053
1054/* Get ready to modify the registers array. On machines which store
1055 individual registers, this doesn't need to do anything. On machines
1056 which store all the registers in one fell swoop, this makes sure
1057 that registers contains all the registers from the program being
1058 debugged. */
1059
1060static void
316f2060 1061gdbsim_prepare_to_store (struct regcache *regcache)
c906108c 1062{
0df8b418 1063 /* Do nothing, since we can store individual regs. */
c906108c
SS
1064}
1065
d93bce06
KB
1066/* Transfer LEN bytes between GDB address MYADDR and target address
1067 MEMADDR. If WRITE is non-zero, transfer them to the target,
1068 otherwise transfer them from the target. TARGET is unused.
1069
0df8b418 1070 Returns the number of bytes transferred. */
d93bce06 1071
c906108c 1072static int
8d7337bf 1073gdbsim_xfer_inferior_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len,
0a65a603
AC
1074 int write, struct mem_attrib *attrib,
1075 struct target_ops *target)
c906108c 1076{
db04efe6
KB
1077 struct sim_inferior_data *sim_data
1078 = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NOT_NEEDED);
1079
0c012db1
KB
1080 /* If this target doesn't have memory yet, return 0 causing the
1081 request to be passed to a lower target, hopefully an exec
1082 file. */
1083 if (!target->to_has_memory (target))
52bb452f
DJ
1084 return 0;
1085
db04efe6 1086 if (!sim_data->program_loaded)
8a3fe4f8 1087 error (_("No program loaded."));
c906108c 1088
db04efe6
KB
1089 /* Note that we obtained the sim_data pointer above using
1090 SIM_INSTANCE_NOT_NEEDED. We do this so that we don't needlessly
1091 allocate a sim instance prior to loading a program. If we
1092 get to this point in the code though, gdbsim_desc should be
1093 non-NULL. (Note that a sim instance is needed in order to load
1094 the program...) */
1095 gdb_assert (sim_data->gdbsim_desc != NULL);
1096
ea35711c 1097 if (remote_debug)
c906108c 1098 {
0df8b418 1099 /* FIXME: Send to something other than STDOUT? */
d4f3574e
SS
1100 printf_filtered ("gdbsim_xfer_inferior_memory: myaddr 0x");
1101 gdb_print_host_address (myaddr, gdb_stdout);
5af949e3
UW
1102 printf_filtered (", memaddr %s, len %d, write %d\n",
1103 paddress (target_gdbarch, memaddr), len, write);
ea35711c 1104 if (remote_debug && write)
c5aa993b 1105 dump_mem (myaddr, len);
c906108c
SS
1106 }
1107
1108 if (write)
1109 {
db04efe6 1110 len = sim_write (sim_data->gdbsim_desc, memaddr, myaddr, len);
c906108c 1111 }
c5aa993b 1112 else
c906108c 1113 {
db04efe6 1114 len = sim_read (sim_data->gdbsim_desc, memaddr, myaddr, len);
ea35711c 1115 if (remote_debug && len > 0)
c5aa993b
JM
1116 dump_mem (myaddr, len);
1117 }
c906108c
SS
1118 return len;
1119}
1120
1121static void
fba45db2 1122gdbsim_files_info (struct target_ops *target)
c906108c 1123{
db04efe6
KB
1124 struct sim_inferior_data *sim_data
1125 = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NEEDED);
0d18d720 1126 const char *file = "nothing";
c906108c
SS
1127
1128 if (exec_bfd)
1129 file = bfd_get_filename (exec_bfd);
1130
ea35711c 1131 if (remote_debug)
c906108c
SS
1132 printf_filtered ("gdbsim_files_info: file \"%s\"\n", file);
1133
1134 if (exec_bfd)
1135 {
1136 printf_filtered ("\tAttached to %s running program %s\n",
1137 target_shortname, file);
db04efe6 1138 sim_info (sim_data->gdbsim_desc, 0);
c906108c
SS
1139 }
1140}
1141
1142/* Clear the simulator's notion of what the break points are. */
1143
1144static void
3c8b2eda 1145gdbsim_mourn_inferior (struct target_ops *target)
c5aa993b 1146{
db04efe6
KB
1147 struct sim_inferior_data *sim_data
1148 = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NOT_NEEDED);
1149
ea35711c 1150 if (remote_debug)
c906108c
SS
1151 printf_filtered ("gdbsim_mourn_inferior:\n");
1152
1153 remove_breakpoints ();
1154 generic_mourn_inferior ();
db04efe6 1155 delete_thread_silent (sim_data->remote_sim_ptid);
c906108c
SS
1156}
1157
c906108c
SS
1158/* Pass the command argument through to the simulator verbatim. The
1159 simulator must do any command interpretation work. */
1160
1161void
fba45db2 1162simulator_command (char *args, int from_tty)
c906108c 1163{
db04efe6
KB
1164 struct sim_inferior_data *sim_data;
1165
1166 /* We use inferior_data() instead of get_sim_inferior_data() here in
1167 order to avoid attaching a sim_inferior_data struct to an
1168 inferior unnecessarily. The reason we take such care here is due
1169 to the fact that this function, simulator_command(), may be called
1170 even when the sim target is not active. If we were to use
1171 get_sim_inferior_data() here, it is possible that this call would
1172 be made either prior to gdbsim_open() or after gdbsim_close(),
1173 thus allocating memory that would not be garbage collected until
1174 the ultimate destruction of the associated inferior. */
1175
1176 sim_data = inferior_data (current_inferior (), sim_inferior_data_key);
1177 if (sim_data == NULL || sim_data->gdbsim_desc == NULL)
c906108c
SS
1178 {
1179
1180 /* PREVIOUSLY: The user may give a command before the simulator
1181 is opened. [...] (??? assuming of course one wishes to
1182 continue to allow commands to be sent to unopened simulators,
0df8b418 1183 which isn't entirely unreasonable). */
c906108c
SS
1184
1185 /* The simulator is a builtin abstraction of a remote target.
1186 Consistent with that model, access to the simulator, via sim
1187 commands, is restricted to the period when the channel to the
0df8b418 1188 simulator is open. */
c906108c 1189
8a3fe4f8 1190 error (_("Not connected to the simulator target"));
c906108c
SS
1191 }
1192
db04efe6 1193 sim_do_command (sim_data->gdbsim_desc, args);
c906108c
SS
1194
1195 /* Invalidate the register cache, in case the simulator command does
0df8b418 1196 something funny. */
c5aa993b 1197 registers_changed ();
c906108c
SS
1198}
1199
56a9aa1d
MF
1200static char **
1201sim_command_completer (struct cmd_list_element *ignore, char *text, char *word)
1202{
1203 struct sim_inferior_data *sim_data;
1204
1205 sim_data = inferior_data (current_inferior (), sim_inferior_data_key);
1206 if (sim_data == NULL || sim_data->gdbsim_desc == NULL)
1207 return NULL;
1208
1209 return sim_complete_command (sim_data->gdbsim_desc, text, word);
1210}
1211
9de2bdd7
PA
1212/* Check to see if a thread is still alive. */
1213
1214static int
28439f5e 1215gdbsim_thread_alive (struct target_ops *ops, ptid_t ptid)
9de2bdd7 1216{
db04efe6
KB
1217 struct sim_inferior_data *sim_data
1218 = get_sim_inferior_data_by_ptid (ptid, SIM_INSTANCE_NOT_NEEDED);
1219
1220 if (sim_data == NULL)
1221 return 0;
1222
1223 if (ptid_equal (ptid, sim_data->remote_sim_ptid))
9de2bdd7
PA
1224 /* The simulators' task is always alive. */
1225 return 1;
1226
1227 return 0;
1228}
1229
1230/* Convert a thread ID to a string. Returns the string in a static
1231 buffer. */
1232
1233static char *
117de6a9 1234gdbsim_pid_to_str (struct target_ops *ops, ptid_t ptid)
9de2bdd7 1235{
9de2bdd7
PA
1236 return normal_pid_to_str (ptid);
1237}
1238
0c012db1
KB
1239/* Simulator memory may be accessed after the program has been loaded. */
1240
1241int
1242gdbsim_has_all_memory (struct target_ops *ops)
1243{
1244 struct sim_inferior_data *sim_data
1245 = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NOT_NEEDED);
1246
1247 if (!sim_data->program_loaded)
1248 return 0;
1249
1250 return 1;
1251}
1252
1253int
1254gdbsim_has_memory (struct target_ops *ops)
1255{
1256 struct sim_inferior_data *sim_data
1257 = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NOT_NEEDED);
1258
1259 if (!sim_data->program_loaded)
1260 return 0;
1261
1262 return 1;
1263}
1264
0df8b418 1265/* Define the target subroutine names. */
c906108c 1266
c5aa993b
JM
1267struct target_ops gdbsim_ops;
1268
1269static void
1270init_gdbsim_ops (void)
1271{
1272 gdbsim_ops.to_shortname = "sim";
1273 gdbsim_ops.to_longname = "simulator";
1274 gdbsim_ops.to_doc = "Use the compiled-in simulator.";
1275 gdbsim_ops.to_open = gdbsim_open;
1276 gdbsim_ops.to_close = gdbsim_close;
c5aa993b 1277 gdbsim_ops.to_detach = gdbsim_detach;
c5aa993b
JM
1278 gdbsim_ops.to_resume = gdbsim_resume;
1279 gdbsim_ops.to_wait = gdbsim_wait;
c5aa993b
JM
1280 gdbsim_ops.to_fetch_registers = gdbsim_fetch_register;
1281 gdbsim_ops.to_store_registers = gdbsim_store_register;
1282 gdbsim_ops.to_prepare_to_store = gdbsim_prepare_to_store;
c8e73a31 1283 gdbsim_ops.deprecated_xfer_memory = gdbsim_xfer_inferior_memory;
c5aa993b 1284 gdbsim_ops.to_files_info = gdbsim_files_info;
8181d85f
DJ
1285 gdbsim_ops.to_insert_breakpoint = memory_insert_breakpoint;
1286 gdbsim_ops.to_remove_breakpoint = memory_remove_breakpoint;
c5aa993b
JM
1287 gdbsim_ops.to_kill = gdbsim_kill;
1288 gdbsim_ops.to_load = gdbsim_load;
c5aa993b 1289 gdbsim_ops.to_create_inferior = gdbsim_create_inferior;
c5aa993b 1290 gdbsim_ops.to_mourn_inferior = gdbsim_mourn_inferior;
c5aa993b 1291 gdbsim_ops.to_stop = gdbsim_stop;
9de2bdd7
PA
1292 gdbsim_ops.to_thread_alive = gdbsim_thread_alive;
1293 gdbsim_ops.to_pid_to_str = gdbsim_pid_to_str;
c5aa993b 1294 gdbsim_ops.to_stratum = process_stratum;
0c012db1
KB
1295 gdbsim_ops.to_has_all_memory = gdbsim_has_all_memory;
1296 gdbsim_ops.to_has_memory = gdbsim_has_memory;
c35b1492
PA
1297 gdbsim_ops.to_has_stack = default_child_has_stack;
1298 gdbsim_ops.to_has_registers = default_child_has_registers;
1299 gdbsim_ops.to_has_execution = default_child_has_execution;
c5aa993b 1300 gdbsim_ops.to_magic = OPS_MAGIC;
c906108c
SS
1301}
1302
1303void
fba45db2 1304_initialize_remote_sim (void)
c906108c 1305{
56a9aa1d
MF
1306 struct cmd_list_element *c;
1307
c5aa993b 1308 init_gdbsim_ops ();
c906108c
SS
1309 add_target (&gdbsim_ops);
1310
56a9aa1d
MF
1311 c = add_com ("sim", class_obscure, simulator_command,
1312 _("Send a command to the simulator."));
1313 set_cmd_completer (c, sim_command_completer);
9de2bdd7 1314
db04efe6
KB
1315 sim_inferior_data_key
1316 = register_inferior_data_with_cleanup (sim_inferior_data_cleanup);
c906108c 1317}
This page took 1.406669 seconds and 4 git commands to generate.