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