PR 6753
[deliverable/binutils-gdb.git] / gdb / target.c
CommitLineData
c906108c 1/* Select target systems and architectures at runtime for GDB.
7998dfc3 2
6aba47ca 3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
9b254dd1 4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
f6519ebc 5 Free Software Foundation, Inc.
7998dfc3 6
c906108c
SS
7 Contributed by Cygnus Support.
8
c5aa993b 9 This file is part of GDB.
c906108c 10
c5aa993b
JM
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
a9762ec7 13 the Free Software Foundation; either version 3 of the License, or
c5aa993b 14 (at your option) any later version.
c906108c 15
c5aa993b
JM
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
c906108c 20
c5aa993b 21 You should have received a copy of the GNU General Public License
a9762ec7 22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
23
24#include "defs.h"
25#include <errno.h>
c906108c
SS
26#include "gdb_string.h"
27#include "target.h"
28#include "gdbcmd.h"
29#include "symtab.h"
30#include "inferior.h"
31#include "bfd.h"
32#include "symfile.h"
33#include "objfiles.h"
03f2053f 34#include "gdb_wait.h"
4930751a 35#include "dcache.h"
c906108c 36#include <signal.h>
4e052eda 37#include "regcache.h"
0088c768 38#include "gdb_assert.h"
b6591e8b 39#include "gdbcore.h"
9e35dae4 40#include "exceptions.h"
424163ea 41#include "target-descriptions.h"
e1ac3328 42#include "gdbthread.h"
c906108c 43
a14ed312 44static void target_info (char *, int);
c906108c 45
a14ed312 46static void maybe_kill_then_attach (char *, int);
c906108c 47
a14ed312 48static void kill_or_be_killed (int);
c906108c 49
a14ed312 50static void default_terminal_info (char *, int);
c906108c 51
5009afc5
AS
52static int default_watchpoint_addr_within_range (struct target_ops *,
53 CORE_ADDR, CORE_ADDR, int);
54
e0d24f8d
WZ
55static int default_region_ok_for_hw_watchpoint (CORE_ADDR, int);
56
a14ed312 57static int nosymbol (char *, CORE_ADDR *);
c906108c 58
4ecb6f27 59static void tcomplain (void) ATTR_NORETURN;
c906108c 60
a14ed312 61static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
c906108c 62
a14ed312 63static int return_zero (void);
c906108c 64
a14ed312 65static int return_one (void);
c906108c 66
ccaa32c7
GS
67static int return_minus_one (void);
68
a14ed312 69void target_ignore (void);
c906108c 70
a14ed312 71static void target_command (char *, int);
c906108c 72
a14ed312 73static struct target_ops *find_default_run_target (char *);
c906108c 74
a14ed312 75static void nosupport_runtime (void);
392a587b 76
4b8a223f 77static LONGEST default_xfer_partial (struct target_ops *ops,
0088c768 78 enum target_object object,
1b0ba102
AC
79 const char *annex, gdb_byte *readbuf,
80 const gdb_byte *writebuf,
8aa91c1e 81 ULONGEST offset, LONGEST len);
0088c768 82
cf7a04e8
DJ
83static LONGEST current_xfer_partial (struct target_ops *ops,
84 enum target_object object,
85 const char *annex, gdb_byte *readbuf,
86 const gdb_byte *writebuf,
87 ULONGEST offset, LONGEST len);
c906108c 88
cf7a04e8
DJ
89static LONGEST target_xfer_partial (struct target_ops *ops,
90 enum target_object object,
91 const char *annex,
92 void *readbuf, const void *writebuf,
93 ULONGEST offset, LONGEST len);
c906108c 94
a14ed312 95static void init_dummy_target (void);
c906108c 96
aa869812
AC
97static struct target_ops debug_target;
98
a14ed312 99static void debug_to_open (char *, int);
c906108c 100
a14ed312 101static void debug_to_close (int);
c906108c 102
a14ed312 103static void debug_to_attach (char *, int);
c906108c 104
a14ed312 105static void debug_to_detach (char *, int);
c906108c 106
39f77062 107static void debug_to_resume (ptid_t, int, enum target_signal);
c906108c 108
39f77062 109static ptid_t debug_to_wait (ptid_t, struct target_waitstatus *);
c906108c 110
56be3814 111static void debug_to_fetch_registers (struct regcache *, int);
c906108c 112
56be3814 113static void debug_to_store_registers (struct regcache *, int);
c906108c 114
316f2060 115static void debug_to_prepare_to_store (struct regcache *);
c906108c 116
a14ed312 117static void debug_to_files_info (struct target_ops *);
c906108c 118
8181d85f 119static int debug_to_insert_breakpoint (struct bp_target_info *);
c906108c 120
8181d85f 121static int debug_to_remove_breakpoint (struct bp_target_info *);
c906108c 122
ccaa32c7
GS
123static int debug_to_can_use_hw_breakpoint (int, int, int);
124
8181d85f 125static int debug_to_insert_hw_breakpoint (struct bp_target_info *);
ccaa32c7 126
8181d85f 127static int debug_to_remove_hw_breakpoint (struct bp_target_info *);
ccaa32c7
GS
128
129static int debug_to_insert_watchpoint (CORE_ADDR, int, int);
130
131static int debug_to_remove_watchpoint (CORE_ADDR, int, int);
132
133static int debug_to_stopped_by_watchpoint (void);
134
4aa7a7f5 135static int debug_to_stopped_data_address (struct target_ops *, CORE_ADDR *);
ccaa32c7 136
5009afc5
AS
137static int debug_to_watchpoint_addr_within_range (struct target_ops *,
138 CORE_ADDR, CORE_ADDR, int);
139
e0d24f8d
WZ
140static int debug_to_region_ok_for_hw_watchpoint (CORE_ADDR, int);
141
a14ed312 142static void debug_to_terminal_init (void);
c906108c 143
a14ed312 144static void debug_to_terminal_inferior (void);
c906108c 145
a14ed312 146static void debug_to_terminal_ours_for_output (void);
c906108c 147
a790ad35
SC
148static void debug_to_terminal_save_ours (void);
149
a14ed312 150static void debug_to_terminal_ours (void);
c906108c 151
a14ed312 152static void debug_to_terminal_info (char *, int);
c906108c 153
a14ed312 154static void debug_to_kill (void);
c906108c 155
a14ed312 156static void debug_to_load (char *, int);
c906108c 157
a14ed312 158static int debug_to_lookup_symbol (char *, CORE_ADDR *);
c906108c 159
a14ed312 160static void debug_to_mourn_inferior (void);
c906108c 161
a14ed312 162static int debug_to_can_run (void);
c906108c 163
39f77062 164static void debug_to_notice_signals (ptid_t);
c906108c 165
39f77062 166static int debug_to_thread_alive (ptid_t);
c906108c 167
94cc34af 168static void debug_to_stop (ptid_t);
c906108c 169
5ac10fd1
AC
170/* NOTE: cagney/2004-09-29: Many targets reference this variable in
171 wierd and mysterious ways. Putting the variable here lets those
172 wierd and mysterious ways keep building while they are being
173 converted to the inferior inheritance structure. */
1df84f13 174struct target_ops deprecated_child_ops;
5ac10fd1 175
c906108c 176/* Pointer to array of target architecture structures; the size of the
2bc416ba 177 array; the current index into the array; the allocated size of the
c906108c
SS
178 array. */
179struct target_ops **target_structs;
180unsigned target_struct_size;
181unsigned target_struct_index;
182unsigned target_struct_allocsize;
183#define DEFAULT_ALLOCSIZE 10
184
185/* The initial current target, so that there is always a semi-valid
186 current target. */
187
188static struct target_ops dummy_target;
189
190/* Top of target stack. */
191
258b763a 192static struct target_ops *target_stack;
c906108c
SS
193
194/* The target structure we are currently using to talk to a process
195 or file or whatever "inferior" we have. */
196
197struct target_ops current_target;
198
199/* Command list for target. */
200
201static struct cmd_list_element *targetlist = NULL;
202
203/* Nonzero if we are debugging an attached outside process
204 rather than an inferior. */
205
206int attach_flag;
207
cf7a04e8
DJ
208/* Nonzero if we should trust readonly sections from the
209 executable when reading memory. */
210
211static int trust_readonly = 0;
212
8defab1a
DJ
213/* Nonzero if we should show true memory content including
214 memory breakpoint inserted by gdb. */
215
216static int show_memory_breakpoints = 0;
217
c906108c
SS
218/* Non-zero if we want to see trace of target level stuff. */
219
220static int targetdebug = 0;
920d2a44
AC
221static void
222show_targetdebug (struct ui_file *file, int from_tty,
223 struct cmd_list_element *c, const char *value)
224{
225 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
226}
c906108c 227
a14ed312 228static void setup_target_debug (void);
c906108c 229
4930751a
C
230DCACHE *target_dcache;
231
c906108c
SS
232/* The user just typed 'target' without the name of a target. */
233
c906108c 234static void
fba45db2 235target_command (char *arg, int from_tty)
c906108c
SS
236{
237 fputs_filtered ("Argument required (target name). Try `help target'\n",
238 gdb_stdout);
239}
240
241/* Add a possible target architecture to the list. */
242
243void
fba45db2 244add_target (struct target_ops *t)
c906108c 245{
0088c768 246 /* Provide default values for all "must have" methods. */
0b603eba
AC
247 if (t->to_xfer_partial == NULL)
248 t->to_xfer_partial = default_xfer_partial;
0088c768 249
c906108c
SS
250 if (!target_structs)
251 {
252 target_struct_allocsize = DEFAULT_ALLOCSIZE;
253 target_structs = (struct target_ops **) xmalloc
254 (target_struct_allocsize * sizeof (*target_structs));
255 }
256 if (target_struct_size >= target_struct_allocsize)
257 {
258 target_struct_allocsize *= 2;
259 target_structs = (struct target_ops **)
c5aa993b
JM
260 xrealloc ((char *) target_structs,
261 target_struct_allocsize * sizeof (*target_structs));
c906108c
SS
262 }
263 target_structs[target_struct_size++] = t;
c906108c
SS
264
265 if (targetlist == NULL)
1bedd215
AC
266 add_prefix_cmd ("target", class_run, target_command, _("\
267Connect to a target machine or process.\n\
c906108c
SS
268The first argument is the type or protocol of the target machine.\n\
269Remaining arguments are interpreted by the target protocol. For more\n\
270information on the arguments for a particular protocol, type\n\
1bedd215 271`help target ' followed by the protocol name."),
c906108c
SS
272 &targetlist, "target ", 0, &cmdlist);
273 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
274}
275
276/* Stub functions */
277
278void
fba45db2 279target_ignore (void)
c906108c
SS
280{
281}
282
11cf8741
JM
283void
284target_load (char *arg, int from_tty)
285{
4930751a 286 dcache_invalidate (target_dcache);
11cf8741
JM
287 (*current_target.to_load) (arg, from_tty);
288}
289
c906108c 290static int
fba45db2
KB
291nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
292 struct target_ops *t)
c906108c 293{
c5aa993b
JM
294 errno = EIO; /* Can't read/write this location */
295 return 0; /* No bytes handled */
c906108c
SS
296}
297
298static void
fba45db2 299tcomplain (void)
c906108c 300{
8a3fe4f8 301 error (_("You can't do that when your target is `%s'"),
c906108c
SS
302 current_target.to_shortname);
303}
304
305void
fba45db2 306noprocess (void)
c906108c 307{
8a3fe4f8 308 error (_("You can't do that without a process to debug."));
c906108c
SS
309}
310
c906108c 311static int
fba45db2 312nosymbol (char *name, CORE_ADDR *addrp)
c906108c 313{
c5aa993b 314 return 1; /* Symbol does not exist in target env */
c906108c
SS
315}
316
392a587b 317static void
fba45db2 318nosupport_runtime (void)
c906108c 319{
39f77062 320 if (ptid_equal (inferior_ptid, null_ptid))
c906108c
SS
321 noprocess ();
322 else
8a3fe4f8 323 error (_("No run-time support for this"));
c906108c
SS
324}
325
326
c906108c 327static void
fba45db2 328default_terminal_info (char *args, int from_tty)
c906108c 329{
a3f17187 330 printf_unfiltered (_("No saved terminal information.\n"));
c906108c
SS
331}
332
333/* This is the default target_create_inferior and target_attach function.
334 If the current target is executing, it asks whether to kill it off.
335 If this function returns without calling error(), it has killed off
336 the target, and the operation should be attempted. */
337
338static void
fba45db2 339kill_or_be_killed (int from_tty)
c906108c
SS
340{
341 if (target_has_execution)
342 {
a3f17187 343 printf_unfiltered (_("You are already running a program:\n"));
c906108c 344 target_files_info ();
c5aa993b
JM
345 if (query ("Kill it? "))
346 {
347 target_kill ();
348 if (target_has_execution)
8a3fe4f8 349 error (_("Killing the program did not help."));
c5aa993b
JM
350 return;
351 }
352 else
353 {
8a3fe4f8 354 error (_("Program not killed."));
c5aa993b 355 }
c906108c 356 }
c5aa993b 357 tcomplain ();
c906108c
SS
358}
359
360static void
fba45db2 361maybe_kill_then_attach (char *args, int from_tty)
c906108c
SS
362{
363 kill_or_be_killed (from_tty);
364 target_attach (args, from_tty);
365}
366
367static void
c27cda74
AC
368maybe_kill_then_create_inferior (char *exec, char *args, char **env,
369 int from_tty)
c906108c
SS
370{
371 kill_or_be_killed (0);
c27cda74 372 target_create_inferior (exec, args, env, from_tty);
c906108c
SS
373}
374
7998dfc3
AC
375/* Go through the target stack from top to bottom, copying over zero
376 entries in current_target, then filling in still empty entries. In
377 effect, we are doing class inheritance through the pushed target
378 vectors.
379
380 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
381 is currently implemented, is that it discards any knowledge of
382 which target an inherited method originally belonged to.
383 Consequently, new new target methods should instead explicitly and
384 locally search the target stack for the target that can handle the
385 request. */
c906108c
SS
386
387static void
7998dfc3 388update_current_target (void)
c906108c 389{
7998dfc3
AC
390 struct target_ops *t;
391
08d8bcd7 392 /* First, reset current's contents. */
7998dfc3
AC
393 memset (&current_target, 0, sizeof (current_target));
394
395#define INHERIT(FIELD, TARGET) \
396 if (!current_target.FIELD) \
397 current_target.FIELD = (TARGET)->FIELD
398
399 for (t = target_stack; t; t = t->beneath)
400 {
401 INHERIT (to_shortname, t);
402 INHERIT (to_longname, t);
403 INHERIT (to_doc, t);
404 INHERIT (to_open, t);
405 INHERIT (to_close, t);
406 INHERIT (to_attach, t);
407 INHERIT (to_post_attach, t);
dc177b7a 408 INHERIT (to_attach_no_wait, t);
7998dfc3 409 INHERIT (to_detach, t);
597320e7 410 /* Do not inherit to_disconnect. */
7998dfc3
AC
411 INHERIT (to_resume, t);
412 INHERIT (to_wait, t);
7998dfc3
AC
413 INHERIT (to_fetch_registers, t);
414 INHERIT (to_store_registers, t);
415 INHERIT (to_prepare_to_store, t);
c8e73a31 416 INHERIT (deprecated_xfer_memory, t);
7998dfc3
AC
417 INHERIT (to_files_info, t);
418 INHERIT (to_insert_breakpoint, t);
419 INHERIT (to_remove_breakpoint, t);
420 INHERIT (to_can_use_hw_breakpoint, t);
421 INHERIT (to_insert_hw_breakpoint, t);
422 INHERIT (to_remove_hw_breakpoint, t);
423 INHERIT (to_insert_watchpoint, t);
424 INHERIT (to_remove_watchpoint, t);
425 INHERIT (to_stopped_data_address, t);
74174d2e 426 INHERIT (to_have_steppable_watchpoint, t);
7998dfc3 427 INHERIT (to_have_continuable_watchpoint, t);
5009afc5
AS
428 INHERIT (to_stopped_by_watchpoint, t);
429 INHERIT (to_watchpoint_addr_within_range, t);
e0d24f8d 430 INHERIT (to_region_ok_for_hw_watchpoint, t);
7998dfc3
AC
431 INHERIT (to_terminal_init, t);
432 INHERIT (to_terminal_inferior, t);
433 INHERIT (to_terminal_ours_for_output, t);
434 INHERIT (to_terminal_ours, t);
435 INHERIT (to_terminal_save_ours, t);
436 INHERIT (to_terminal_info, t);
437 INHERIT (to_kill, t);
438 INHERIT (to_load, t);
439 INHERIT (to_lookup_symbol, t);
440 INHERIT (to_create_inferior, t);
441 INHERIT (to_post_startup_inferior, t);
442 INHERIT (to_acknowledge_created_inferior, t);
443 INHERIT (to_insert_fork_catchpoint, t);
444 INHERIT (to_remove_fork_catchpoint, t);
445 INHERIT (to_insert_vfork_catchpoint, t);
446 INHERIT (to_remove_vfork_catchpoint, t);
ee057212 447 /* Do not inherit to_follow_fork. */
7998dfc3
AC
448 INHERIT (to_insert_exec_catchpoint, t);
449 INHERIT (to_remove_exec_catchpoint, t);
7998dfc3
AC
450 INHERIT (to_has_exited, t);
451 INHERIT (to_mourn_inferior, t);
452 INHERIT (to_can_run, t);
453 INHERIT (to_notice_signals, t);
454 INHERIT (to_thread_alive, t);
455 INHERIT (to_find_new_threads, t);
456 INHERIT (to_pid_to_str, t);
457 INHERIT (to_extra_thread_info, t);
458 INHERIT (to_stop, t);
4b8a223f 459 /* Do not inherit to_xfer_partial. */
7998dfc3 460 INHERIT (to_rcmd, t);
7998dfc3 461 INHERIT (to_pid_to_exec_file, t);
49d03eab 462 INHERIT (to_log_command, t);
7998dfc3
AC
463 INHERIT (to_stratum, t);
464 INHERIT (to_has_all_memory, t);
465 INHERIT (to_has_memory, t);
466 INHERIT (to_has_stack, t);
467 INHERIT (to_has_registers, t);
468 INHERIT (to_has_execution, t);
469 INHERIT (to_has_thread_control, t);
470 INHERIT (to_sections, t);
471 INHERIT (to_sections_end, t);
472 INHERIT (to_can_async_p, t);
473 INHERIT (to_is_async_p, t);
474 INHERIT (to_async, t);
b84876c2 475 INHERIT (to_async_mask, t);
7998dfc3
AC
476 INHERIT (to_find_memory_regions, t);
477 INHERIT (to_make_corefile_notes, t);
478 INHERIT (to_get_thread_local_address, t);
424163ea 479 /* Do not inherit to_read_description. */
08388c79 480 /* Do not inherit to_search_memory. */
7998dfc3 481 INHERIT (to_magic, t);
fd79ecee 482 /* Do not inherit to_memory_map. */
a76d924d
DJ
483 /* Do not inherit to_flash_erase. */
484 /* Do not inherit to_flash_done. */
7998dfc3
AC
485 }
486#undef INHERIT
487
488 /* Clean up a target struct so it no longer has any zero pointers in
0088c768
AC
489 it. Some entries are defaulted to a method that print an error,
490 others are hard-wired to a standard recursive default. */
c906108c
SS
491
492#define de_fault(field, value) \
7998dfc3
AC
493 if (!current_target.field) \
494 current_target.field = value
0d06e24b 495
2bc416ba
DJ
496 de_fault (to_open,
497 (void (*) (char *, int))
0d06e24b 498 tcomplain);
2bc416ba
DJ
499 de_fault (to_close,
500 (void (*) (int))
0d06e24b 501 target_ignore);
2bc416ba 502 de_fault (to_attach,
0d06e24b 503 maybe_kill_then_attach);
2bc416ba
DJ
504 de_fault (to_post_attach,
505 (void (*) (int))
0d06e24b 506 target_ignore);
2bc416ba
DJ
507 de_fault (to_detach,
508 (void (*) (char *, int))
0d06e24b 509 target_ignore);
2bc416ba
DJ
510 de_fault (to_resume,
511 (void (*) (ptid_t, int, enum target_signal))
0d06e24b 512 noprocess);
2bc416ba
DJ
513 de_fault (to_wait,
514 (ptid_t (*) (ptid_t, struct target_waitstatus *))
0d06e24b 515 noprocess);
2bc416ba 516 de_fault (to_fetch_registers,
56be3814 517 (void (*) (struct regcache *, int))
0d06e24b 518 target_ignore);
2bc416ba 519 de_fault (to_store_registers,
56be3814 520 (void (*) (struct regcache *, int))
0d06e24b 521 noprocess);
2bc416ba 522 de_fault (to_prepare_to_store,
316f2060 523 (void (*) (struct regcache *))
0d06e24b 524 noprocess);
2bc416ba
DJ
525 de_fault (deprecated_xfer_memory,
526 (int (*) (CORE_ADDR, gdb_byte *, int, int, struct mem_attrib *, struct target_ops *))
0d06e24b 527 nomemory);
2bc416ba
DJ
528 de_fault (to_files_info,
529 (void (*) (struct target_ops *))
0d06e24b 530 target_ignore);
2bc416ba 531 de_fault (to_insert_breakpoint,
0d06e24b 532 memory_insert_breakpoint);
2bc416ba 533 de_fault (to_remove_breakpoint,
0d06e24b 534 memory_remove_breakpoint);
ccaa32c7
GS
535 de_fault (to_can_use_hw_breakpoint,
536 (int (*) (int, int, int))
537 return_zero);
538 de_fault (to_insert_hw_breakpoint,
8181d85f 539 (int (*) (struct bp_target_info *))
ccaa32c7
GS
540 return_minus_one);
541 de_fault (to_remove_hw_breakpoint,
8181d85f 542 (int (*) (struct bp_target_info *))
ccaa32c7
GS
543 return_minus_one);
544 de_fault (to_insert_watchpoint,
545 (int (*) (CORE_ADDR, int, int))
546 return_minus_one);
547 de_fault (to_remove_watchpoint,
548 (int (*) (CORE_ADDR, int, int))
549 return_minus_one);
550 de_fault (to_stopped_by_watchpoint,
551 (int (*) (void))
552 return_zero);
553 de_fault (to_stopped_data_address,
4aa7a7f5 554 (int (*) (struct target_ops *, CORE_ADDR *))
ccaa32c7 555 return_zero);
5009afc5
AS
556 de_fault (to_watchpoint_addr_within_range,
557 default_watchpoint_addr_within_range);
e0d24f8d
WZ
558 de_fault (to_region_ok_for_hw_watchpoint,
559 default_region_ok_for_hw_watchpoint);
2bc416ba
DJ
560 de_fault (to_terminal_init,
561 (void (*) (void))
0d06e24b 562 target_ignore);
2bc416ba
DJ
563 de_fault (to_terminal_inferior,
564 (void (*) (void))
0d06e24b 565 target_ignore);
2bc416ba
DJ
566 de_fault (to_terminal_ours_for_output,
567 (void (*) (void))
0d06e24b 568 target_ignore);
2bc416ba
DJ
569 de_fault (to_terminal_ours,
570 (void (*) (void))
0d06e24b 571 target_ignore);
2bc416ba
DJ
572 de_fault (to_terminal_save_ours,
573 (void (*) (void))
a790ad35 574 target_ignore);
2bc416ba 575 de_fault (to_terminal_info,
0d06e24b 576 default_terminal_info);
2bc416ba
DJ
577 de_fault (to_kill,
578 (void (*) (void))
0d06e24b 579 noprocess);
2bc416ba
DJ
580 de_fault (to_load,
581 (void (*) (char *, int))
0d06e24b 582 tcomplain);
2bc416ba
DJ
583 de_fault (to_lookup_symbol,
584 (int (*) (char *, CORE_ADDR *))
0d06e24b 585 nosymbol);
2bc416ba 586 de_fault (to_create_inferior,
0d06e24b 587 maybe_kill_then_create_inferior);
2bc416ba
DJ
588 de_fault (to_post_startup_inferior,
589 (void (*) (ptid_t))
0d06e24b 590 target_ignore);
2bc416ba
DJ
591 de_fault (to_acknowledge_created_inferior,
592 (void (*) (int))
0d06e24b 593 target_ignore);
2bc416ba
DJ
594 de_fault (to_insert_fork_catchpoint,
595 (void (*) (int))
0d06e24b 596 tcomplain);
2bc416ba
DJ
597 de_fault (to_remove_fork_catchpoint,
598 (int (*) (int))
0d06e24b 599 tcomplain);
2bc416ba
DJ
600 de_fault (to_insert_vfork_catchpoint,
601 (void (*) (int))
0d06e24b 602 tcomplain);
2bc416ba
DJ
603 de_fault (to_remove_vfork_catchpoint,
604 (int (*) (int))
0d06e24b 605 tcomplain);
2bc416ba
DJ
606 de_fault (to_insert_exec_catchpoint,
607 (void (*) (int))
0d06e24b 608 tcomplain);
2bc416ba
DJ
609 de_fault (to_remove_exec_catchpoint,
610 (int (*) (int))
0d06e24b 611 tcomplain);
2bc416ba
DJ
612 de_fault (to_has_exited,
613 (int (*) (int, int, int *))
0d06e24b 614 return_zero);
2bc416ba
DJ
615 de_fault (to_mourn_inferior,
616 (void (*) (void))
0d06e24b 617 noprocess);
2bc416ba 618 de_fault (to_can_run,
0d06e24b 619 return_zero);
2bc416ba
DJ
620 de_fault (to_notice_signals,
621 (void (*) (ptid_t))
0d06e24b 622 target_ignore);
2bc416ba
DJ
623 de_fault (to_thread_alive,
624 (int (*) (ptid_t))
0d06e24b 625 return_zero);
2bc416ba
DJ
626 de_fault (to_find_new_threads,
627 (void (*) (void))
0d06e24b 628 target_ignore);
2bc416ba
DJ
629 de_fault (to_extra_thread_info,
630 (char *(*) (struct thread_info *))
0d06e24b 631 return_zero);
2bc416ba 632 de_fault (to_stop,
94cc34af 633 (void (*) (ptid_t))
0d06e24b 634 target_ignore);
cf7a04e8 635 current_target.to_xfer_partial = current_xfer_partial;
2bc416ba
DJ
636 de_fault (to_rcmd,
637 (void (*) (char *, struct ui_file *))
0d06e24b 638 tcomplain);
2bc416ba
DJ
639 de_fault (to_pid_to_exec_file,
640 (char *(*) (int))
0d06e24b 641 return_zero);
2bc416ba
DJ
642 de_fault (to_can_async_p,
643 (int (*) (void))
0d06e24b 644 return_zero);
2bc416ba
DJ
645 de_fault (to_is_async_p,
646 (int (*) (void))
0d06e24b 647 return_zero);
2bc416ba
DJ
648 de_fault (to_async,
649 (void (*) (void (*) (enum inferior_event_type, void*), void*))
0d06e24b 650 tcomplain);
b84876c2
PA
651 de_fault (to_async_mask,
652 (int (*) (int))
653 return_one);
424163ea 654 current_target.to_read_description = NULL;
c906108c 655#undef de_fault
c906108c 656
7998dfc3
AC
657 /* Finally, position the target-stack beneath the squashed
658 "current_target". That way code looking for a non-inherited
659 target method can quickly and simply find it. */
660 current_target.beneath = target_stack;
b4b61fdb
DJ
661
662 if (targetdebug)
663 setup_target_debug ();
c906108c
SS
664}
665
52bb452f
DJ
666/* Mark OPS as a running target. This reverses the effect
667 of target_mark_exited. */
668
669void
670target_mark_running (struct target_ops *ops)
671{
672 struct target_ops *t;
673
674 for (t = target_stack; t != NULL; t = t->beneath)
675 if (t == ops)
676 break;
677 if (t == NULL)
678 internal_error (__FILE__, __LINE__,
679 "Attempted to mark unpushed target \"%s\" as running",
680 ops->to_shortname);
681
682 ops->to_has_execution = 1;
683 ops->to_has_all_memory = 1;
684 ops->to_has_memory = 1;
685 ops->to_has_stack = 1;
686 ops->to_has_registers = 1;
687
688 update_current_target ();
689}
690
691/* Mark OPS as a non-running target. This reverses the effect
692 of target_mark_running. */
693
694void
695target_mark_exited (struct target_ops *ops)
696{
697 struct target_ops *t;
698
699 for (t = target_stack; t != NULL; t = t->beneath)
700 if (t == ops)
701 break;
702 if (t == NULL)
703 internal_error (__FILE__, __LINE__,
704 "Attempted to mark unpushed target \"%s\" as running",
705 ops->to_shortname);
706
707 ops->to_has_execution = 0;
708 ops->to_has_all_memory = 0;
709 ops->to_has_memory = 0;
710 ops->to_has_stack = 0;
711 ops->to_has_registers = 0;
712
713 update_current_target ();
714}
715
c906108c
SS
716/* Push a new target type into the stack of the existing target accessors,
717 possibly superseding some of the existing accessors.
718
719 Result is zero if the pushed target ended up on top of the stack,
720 nonzero if at least one target is on top of it.
721
722 Rather than allow an empty stack, we always have the dummy target at
723 the bottom stratum, so we can call the function vectors without
724 checking them. */
725
726int
fba45db2 727push_target (struct target_ops *t)
c906108c 728{
258b763a 729 struct target_ops **cur;
c906108c
SS
730
731 /* Check magic number. If wrong, it probably means someone changed
732 the struct definition, but not all the places that initialize one. */
733 if (t->to_magic != OPS_MAGIC)
734 {
c5aa993b
JM
735 fprintf_unfiltered (gdb_stderr,
736 "Magic number of %s target struct wrong\n",
737 t->to_shortname);
e2e0b3e5 738 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
c906108c
SS
739 }
740
258b763a
AC
741 /* Find the proper stratum to install this target in. */
742 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
c906108c 743 {
258b763a 744 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
c906108c
SS
745 break;
746 }
747
258b763a 748 /* If there's already targets at this stratum, remove them. */
88c231eb 749 /* FIXME: cagney/2003-10-15: I think this should be popping all
258b763a
AC
750 targets to CUR, and not just those at this stratum level. */
751 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
752 {
753 /* There's already something at this stratum level. Close it,
754 and un-hook it from the stack. */
755 struct target_ops *tmp = (*cur);
756 (*cur) = (*cur)->beneath;
757 tmp->beneath = NULL;
f1c07ab0 758 target_close (tmp, 0);
258b763a 759 }
c906108c
SS
760
761 /* We have removed all targets in our stratum, now add the new one. */
258b763a
AC
762 t->beneath = (*cur);
763 (*cur) = t;
c906108c
SS
764
765 update_current_target ();
766
258b763a
AC
767 /* Not on top? */
768 return (t != target_stack);
c906108c
SS
769}
770
2bc416ba 771/* Remove a target_ops vector from the stack, wherever it may be.
c906108c
SS
772 Return how many times it was removed (0 or 1). */
773
774int
fba45db2 775unpush_target (struct target_ops *t)
c906108c 776{
258b763a
AC
777 struct target_ops **cur;
778 struct target_ops *tmp;
c906108c 779
c906108c
SS
780 /* Look for the specified target. Note that we assume that a target
781 can only occur once in the target stack. */
782
258b763a
AC
783 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
784 {
785 if ((*cur) == t)
786 break;
787 }
c906108c 788
258b763a 789 if ((*cur) == NULL)
c906108c
SS
790 return 0; /* Didn't find target_ops, quit now */
791
5269965e
AC
792 /* NOTE: cagney/2003-12-06: In '94 the close call was made
793 unconditional by moving it to before the above check that the
794 target was in the target stack (something about "Change the way
795 pushing and popping of targets work to support target overlays
796 and inheritance"). This doesn't make much sense - only open
797 targets should be closed. */
798 target_close (t, 0);
799
c906108c 800 /* Unchain the target */
258b763a
AC
801 tmp = (*cur);
802 (*cur) = (*cur)->beneath;
803 tmp->beneath = NULL;
c906108c
SS
804
805 update_current_target ();
c906108c
SS
806
807 return 1;
808}
809
810void
fba45db2 811pop_target (void)
c906108c 812{
f1c07ab0 813 target_close (&current_target, 0); /* Let it clean up */
258b763a 814 if (unpush_target (target_stack) == 1)
c906108c
SS
815 return;
816
c5aa993b
JM
817 fprintf_unfiltered (gdb_stderr,
818 "pop_target couldn't find target %s\n",
819 current_target.to_shortname);
e2e0b3e5 820 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
c906108c
SS
821}
822
72f5cf0e 823/* Using the objfile specified in OBJFILE, find the address for the
9e35dae4
DJ
824 current thread's thread-local storage with offset OFFSET. */
825CORE_ADDR
826target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
827{
828 volatile CORE_ADDR addr = 0;
829
830 if (target_get_thread_local_address_p ()
831 && gdbarch_fetch_tls_load_module_address_p (current_gdbarch))
832 {
833 ptid_t ptid = inferior_ptid;
834 volatile struct gdb_exception ex;
835
836 TRY_CATCH (ex, RETURN_MASK_ALL)
837 {
838 CORE_ADDR lm_addr;
839
840 /* Fetch the load module address for this objfile. */
841 lm_addr = gdbarch_fetch_tls_load_module_address (current_gdbarch,
842 objfile);
843 /* If it's 0, throw the appropriate exception. */
844 if (lm_addr == 0)
845 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
846 _("TLS load module not found"));
847
848 addr = target_get_thread_local_address (ptid, lm_addr, offset);
849 }
850 /* If an error occurred, print TLS related messages here. Otherwise,
851 throw the error to some higher catcher. */
852 if (ex.reason < 0)
853 {
854 int objfile_is_library = (objfile->flags & OBJF_SHARED);
855
856 switch (ex.error)
857 {
858 case TLS_NO_LIBRARY_SUPPORT_ERROR:
859 error (_("Cannot find thread-local variables in this thread library."));
860 break;
861 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
862 if (objfile_is_library)
863 error (_("Cannot find shared library `%s' in dynamic"
864 " linker's load module list"), objfile->name);
865 else
866 error (_("Cannot find executable file `%s' in dynamic"
867 " linker's load module list"), objfile->name);
868 break;
869 case TLS_NOT_ALLOCATED_YET_ERROR:
870 if (objfile_is_library)
871 error (_("The inferior has not yet allocated storage for"
872 " thread-local variables in\n"
873 "the shared library `%s'\n"
874 "for %s"),
875 objfile->name, target_pid_to_str (ptid));
876 else
877 error (_("The inferior has not yet allocated storage for"
878 " thread-local variables in\n"
879 "the executable `%s'\n"
880 "for %s"),
881 objfile->name, target_pid_to_str (ptid));
882 break;
883 case TLS_GENERIC_ERROR:
884 if (objfile_is_library)
885 error (_("Cannot find thread-local storage for %s, "
886 "shared library %s:\n%s"),
887 target_pid_to_str (ptid),
888 objfile->name, ex.message);
889 else
890 error (_("Cannot find thread-local storage for %s, "
891 "executable file %s:\n%s"),
892 target_pid_to_str (ptid),
893 objfile->name, ex.message);
894 break;
895 default:
896 throw_exception (ex);
897 break;
898 }
899 }
900 }
901 /* It wouldn't be wrong here to try a gdbarch method, too; finding
902 TLS is an ABI-specific thing. But we don't do that yet. */
903 else
904 error (_("Cannot find thread-local variables on this target"));
905
906 return addr;
907}
908
c906108c
SS
909#undef MIN
910#define MIN(A, B) (((A) <= (B)) ? (A) : (B))
911
912/* target_read_string -- read a null terminated string, up to LEN bytes,
913 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
914 Set *STRING to a pointer to malloc'd memory containing the data; the caller
915 is responsible for freeing it. Return the number of bytes successfully
916 read. */
917
918int
fba45db2 919target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
c906108c
SS
920{
921 int tlen, origlen, offset, i;
1b0ba102 922 gdb_byte buf[4];
c906108c
SS
923 int errcode = 0;
924 char *buffer;
925 int buffer_allocated;
926 char *bufptr;
927 unsigned int nbytes_read = 0;
928
6217bf3e
MS
929 gdb_assert (string);
930
c906108c
SS
931 /* Small for testing. */
932 buffer_allocated = 4;
933 buffer = xmalloc (buffer_allocated);
934 bufptr = buffer;
935
936 origlen = len;
937
938 while (len > 0)
939 {
940 tlen = MIN (len, 4 - (memaddr & 3));
941 offset = memaddr & 3;
942
1b0ba102 943 errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
c906108c
SS
944 if (errcode != 0)
945 {
946 /* The transfer request might have crossed the boundary to an
947 unallocated region of memory. Retry the transfer, requesting
948 a single byte. */
949 tlen = 1;
950 offset = 0;
b8eb5af0 951 errcode = target_read_memory (memaddr, buf, 1);
c906108c
SS
952 if (errcode != 0)
953 goto done;
954 }
955
956 if (bufptr - buffer + tlen > buffer_allocated)
957 {
958 unsigned int bytes;
959 bytes = bufptr - buffer;
960 buffer_allocated *= 2;
961 buffer = xrealloc (buffer, buffer_allocated);
962 bufptr = buffer + bytes;
963 }
964
965 for (i = 0; i < tlen; i++)
966 {
967 *bufptr++ = buf[i + offset];
968 if (buf[i + offset] == '\000')
969 {
970 nbytes_read += i + 1;
971 goto done;
972 }
973 }
974
975 memaddr += tlen;
976 len -= tlen;
977 nbytes_read += tlen;
978 }
c5aa993b 979done:
6217bf3e 980 *string = buffer;
c906108c
SS
981 if (errnop != NULL)
982 *errnop = errcode;
c906108c
SS
983 return nbytes_read;
984}
985
8db32d44
AC
986/* Find a section containing ADDR. */
987struct section_table *
988target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
989{
990 struct section_table *secp;
991 for (secp = target->to_sections;
992 secp < target->to_sections_end;
993 secp++)
994 {
995 if (addr >= secp->addr && addr < secp->endaddr)
996 return secp;
997 }
998 return NULL;
999}
1000
cf7a04e8
DJ
1001/* Perform a partial memory transfer. The arguments and return
1002 value are just as for target_xfer_partial. */
1003
1004static LONGEST
1005memory_xfer_partial (struct target_ops *ops, void *readbuf, const void *writebuf,
1006 ULONGEST memaddr, LONGEST len)
0779438d 1007{
cf7a04e8
DJ
1008 LONGEST res;
1009 int reg_len;
1010 struct mem_region *region;
1011
1012 /* Zero length requests are ok and require no work. */
1013 if (len == 0)
1014 return 0;
1015
1016 /* Try the executable file, if "trust-readonly-sections" is set. */
1017 if (readbuf != NULL && trust_readonly)
1018 {
1019 struct section_table *secp;
1020
1021 secp = target_section_by_addr (ops, memaddr);
1022 if (secp != NULL
1023 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
1024 & SEC_READONLY))
1025 return xfer_memory (memaddr, readbuf, len, 0, NULL, ops);
1026 }
1027
98646950
UW
1028 /* Likewise for accesses to unmapped overlay sections. */
1029 if (readbuf != NULL && overlay_debugging)
1030 {
1031 asection *section = find_pc_overlay (memaddr);
1032 if (pc_in_unmapped_range (memaddr, section))
1033 return xfer_memory (memaddr, readbuf, len, 0, NULL, ops);
1034 }
1035
cf7a04e8
DJ
1036 /* Try GDB's internal data cache. */
1037 region = lookup_mem_region (memaddr);
4b5752d0
VP
1038 /* region->hi == 0 means there's no upper bound. */
1039 if (memaddr + len < region->hi || region->hi == 0)
cf7a04e8
DJ
1040 reg_len = len;
1041 else
1042 reg_len = region->hi - memaddr;
1043
1044 switch (region->attrib.mode)
1045 {
1046 case MEM_RO:
1047 if (writebuf != NULL)
1048 return -1;
1049 break;
1050
1051 case MEM_WO:
1052 if (readbuf != NULL)
1053 return -1;
1054 break;
a76d924d
DJ
1055
1056 case MEM_FLASH:
1057 /* We only support writing to flash during "load" for now. */
1058 if (writebuf != NULL)
1059 error (_("Writing to flash memory forbidden in this context"));
1060 break;
4b5752d0
VP
1061
1062 case MEM_NONE:
1063 return -1;
cf7a04e8
DJ
1064 }
1065
1066 if (region->attrib.cache)
1067 {
1068 /* FIXME drow/2006-08-09: This call discards OPS, so the raw
1069 memory request will start back at current_target. */
1070 if (readbuf != NULL)
1071 res = dcache_xfer_memory (target_dcache, memaddr, readbuf,
1072 reg_len, 0);
1073 else
1074 /* FIXME drow/2006-08-09: If we're going to preserve const
1075 correctness dcache_xfer_memory should take readbuf and
1076 writebuf. */
1077 res = dcache_xfer_memory (target_dcache, memaddr,
1078 (void *) writebuf,
1079 reg_len, 1);
1080 if (res <= 0)
1081 return -1;
1082 else
8defab1a
DJ
1083 {
1084 if (readbuf && !show_memory_breakpoints)
1085 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1086 return res;
1087 }
cf7a04e8
DJ
1088 }
1089
1090 /* If none of those methods found the memory we wanted, fall back
1091 to a target partial transfer. Normally a single call to
1092 to_xfer_partial is enough; if it doesn't recognize an object
1093 it will call the to_xfer_partial of the next target down.
1094 But for memory this won't do. Memory is the only target
1095 object which can be read from more than one valid target.
1096 A core file, for instance, could have some of memory but
1097 delegate other bits to the target below it. So, we must
1098 manually try all targets. */
1099
1100 do
1101 {
1102 res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
4b5752d0 1103 readbuf, writebuf, memaddr, reg_len);
cf7a04e8 1104 if (res > 0)
8defab1a 1105 break;
cf7a04e8 1106
5ad3a4ca
DJ
1107 /* We want to continue past core files to executables, but not
1108 past a running target's memory. */
1109 if (ops->to_has_all_memory)
8defab1a 1110 break;
5ad3a4ca 1111
cf7a04e8
DJ
1112 ops = ops->beneath;
1113 }
1114 while (ops != NULL);
1115
8defab1a
DJ
1116 if (readbuf && !show_memory_breakpoints)
1117 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1118
cf7a04e8
DJ
1119 /* If we still haven't got anything, return the last error. We
1120 give up. */
1121 return res;
0779438d
AC
1122}
1123
8defab1a
DJ
1124static void
1125restore_show_memory_breakpoints (void *arg)
1126{
1127 show_memory_breakpoints = (uintptr_t) arg;
1128}
1129
1130struct cleanup *
1131make_show_memory_breakpoints_cleanup (int show)
1132{
1133 int current = show_memory_breakpoints;
1134 show_memory_breakpoints = show;
1135
1136 return make_cleanup (restore_show_memory_breakpoints,
1137 (void *) (uintptr_t) current);
1138}
1139
27394598
AC
1140static LONGEST
1141target_xfer_partial (struct target_ops *ops,
1142 enum target_object object, const char *annex,
1143 void *readbuf, const void *writebuf,
1144 ULONGEST offset, LONGEST len)
1145{
1146 LONGEST retval;
1147
1148 gdb_assert (ops->to_xfer_partial != NULL);
cf7a04e8
DJ
1149
1150 /* If this is a memory transfer, let the memory-specific code
1151 have a look at it instead. Memory transfers are more
1152 complicated. */
1153 if (object == TARGET_OBJECT_MEMORY)
1154 retval = memory_xfer_partial (ops, readbuf, writebuf, offset, len);
1155 else
1156 {
1157 enum target_object raw_object = object;
1158
1159 /* If this is a raw memory transfer, request the normal
1160 memory object from other layers. */
1161 if (raw_object == TARGET_OBJECT_RAW_MEMORY)
1162 raw_object = TARGET_OBJECT_MEMORY;
1163
1164 retval = ops->to_xfer_partial (ops, raw_object, annex, readbuf,
1165 writebuf, offset, len);
1166 }
1167
27394598
AC
1168 if (targetdebug)
1169 {
1170 const unsigned char *myaddr = NULL;
1171
1172 fprintf_unfiltered (gdb_stdlog,
1173 "%s:target_xfer_partial (%d, %s, 0x%lx, 0x%lx, 0x%s, %s) = %s",
1174 ops->to_shortname,
1175 (int) object,
1176 (annex ? annex : "(null)"),
1177 (long) readbuf, (long) writebuf,
1178 paddr_nz (offset), paddr_d (len), paddr_d (retval));
1179
1180 if (readbuf)
1181 myaddr = readbuf;
1182 if (writebuf)
1183 myaddr = writebuf;
1184 if (retval > 0 && myaddr != NULL)
1185 {
1186 int i;
2bc416ba 1187
27394598
AC
1188 fputs_unfiltered (", bytes =", gdb_stdlog);
1189 for (i = 0; i < retval; i++)
1190 {
1191 if ((((long) &(myaddr[i])) & 0xf) == 0)
1192 {
1193 if (targetdebug < 2 && i > 0)
1194 {
1195 fprintf_unfiltered (gdb_stdlog, " ...");
1196 break;
1197 }
1198 fprintf_unfiltered (gdb_stdlog, "\n");
1199 }
2bc416ba 1200
27394598
AC
1201 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1202 }
1203 }
2bc416ba 1204
27394598
AC
1205 fputc_unfiltered ('\n', gdb_stdlog);
1206 }
1207 return retval;
1208}
1209
c906108c
SS
1210/* Read LEN bytes of target memory at address MEMADDR, placing the results in
1211 GDB's memory at MYADDR. Returns either 0 for success or an errno value
1212 if any error occurs.
1213
1214 If an error occurs, no guarantee is made about the contents of the data at
1215 MYADDR. In particular, the caller should not depend upon partial reads
1216 filling the buffer with good data. There is no way for the caller to know
1217 how much good data might have been transfered anyway. Callers that can
cf7a04e8
DJ
1218 deal with partial reads should call target_read (which will retry until
1219 it makes no progress, and then return how much was transferred). */
c906108c
SS
1220
1221int
fc1a4b47 1222target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
c906108c 1223{
cf7a04e8
DJ
1224 if (target_read (&current_target, TARGET_OBJECT_MEMORY, NULL,
1225 myaddr, memaddr, len) == len)
1226 return 0;
0779438d 1227 else
cf7a04e8 1228 return EIO;
c906108c
SS
1229}
1230
c906108c 1231int
fc1a4b47 1232target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
c906108c 1233{
cf7a04e8
DJ
1234 if (target_write (&current_target, TARGET_OBJECT_MEMORY, NULL,
1235 myaddr, memaddr, len) == len)
1236 return 0;
0779438d 1237 else
cf7a04e8 1238 return EIO;
c906108c 1239}
c5aa993b 1240
fd79ecee
DJ
1241/* Fetch the target's memory map. */
1242
1243VEC(mem_region_s) *
1244target_memory_map (void)
1245{
1246 VEC(mem_region_s) *result;
1247 struct mem_region *last_one, *this_one;
1248 int ix;
1249 struct target_ops *t;
1250
1251 if (targetdebug)
1252 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1253
1254 for (t = current_target.beneath; t != NULL; t = t->beneath)
1255 if (t->to_memory_map != NULL)
1256 break;
1257
1258 if (t == NULL)
1259 return NULL;
1260
1261 result = t->to_memory_map (t);
1262 if (result == NULL)
1263 return NULL;
1264
1265 qsort (VEC_address (mem_region_s, result),
1266 VEC_length (mem_region_s, result),
1267 sizeof (struct mem_region), mem_region_cmp);
1268
1269 /* Check that regions do not overlap. Simultaneously assign
1270 a numbering for the "mem" commands to use to refer to
1271 each region. */
1272 last_one = NULL;
1273 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1274 {
1275 this_one->number = ix;
1276
1277 if (last_one && last_one->hi > this_one->lo)
1278 {
1279 warning (_("Overlapping regions in memory map: ignoring"));
1280 VEC_free (mem_region_s, result);
1281 return NULL;
1282 }
1283 last_one = this_one;
1284 }
1285
1286 return result;
1287}
1288
a76d924d
DJ
1289void
1290target_flash_erase (ULONGEST address, LONGEST length)
1291{
1292 struct target_ops *t;
1293
1294 for (t = current_target.beneath; t != NULL; t = t->beneath)
1295 if (t->to_flash_erase != NULL)
1296 {
1297 if (targetdebug)
1298 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
1299 paddr (address), phex (length, 0));
8944021f
DJ
1300 t->to_flash_erase (t, address, length);
1301 return;
a76d924d
DJ
1302 }
1303
1304 tcomplain ();
1305}
1306
1307void
1308target_flash_done (void)
1309{
1310 struct target_ops *t;
1311
1312 for (t = current_target.beneath; t != NULL; t = t->beneath)
1313 if (t->to_flash_done != NULL)
1314 {
1315 if (targetdebug)
1316 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
8944021f
DJ
1317 t->to_flash_done (t);
1318 return;
a76d924d
DJ
1319 }
1320
1321 tcomplain ();
1322}
1323
4aa7a7f5
JJ
1324#ifndef target_stopped_data_address_p
1325int
1326target_stopped_data_address_p (struct target_ops *target)
1327{
aa869812
AC
1328 if (target->to_stopped_data_address
1329 == (int (*) (struct target_ops *, CORE_ADDR *)) return_zero)
4aa7a7f5 1330 return 0;
aa869812
AC
1331 if (target->to_stopped_data_address == debug_to_stopped_data_address
1332 && (debug_target.to_stopped_data_address
1333 == (int (*) (struct target_ops *, CORE_ADDR *)) return_zero))
1334 return 0;
1335 return 1;
4aa7a7f5
JJ
1336}
1337#endif
1338
920d2a44
AC
1339static void
1340show_trust_readonly (struct ui_file *file, int from_tty,
1341 struct cmd_list_element *c, const char *value)
1342{
1343 fprintf_filtered (file, _("\
1344Mode for reading from readonly sections is %s.\n"),
1345 value);
1346}
3a11626d 1347
1e3ff5ad
AC
1348/* More generic transfers. */
1349
0088c768 1350static LONGEST
8aa91c1e 1351default_xfer_partial (struct target_ops *ops, enum target_object object,
2bc416ba 1352 const char *annex, gdb_byte *readbuf,
1b0ba102 1353 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
0088c768
AC
1354{
1355 if (object == TARGET_OBJECT_MEMORY
c8e73a31
AC
1356 && ops->deprecated_xfer_memory != NULL)
1357 /* If available, fall back to the target's
1358 "deprecated_xfer_memory" method. */
0088c768 1359 {
4b8a223f 1360 int xfered = -1;
0088c768 1361 errno = 0;
4b8a223f
AC
1362 if (writebuf != NULL)
1363 {
1364 void *buffer = xmalloc (len);
1365 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1366 memcpy (buffer, writebuf, len);
c8e73a31
AC
1367 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1368 1/*write*/, NULL, ops);
4b8a223f
AC
1369 do_cleanups (cleanup);
1370 }
1371 if (readbuf != NULL)
244e85c8
MS
1372 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1373 0/*read*/, NULL, ops);
0088c768
AC
1374 if (xfered > 0)
1375 return xfered;
1376 else if (xfered == 0 && errno == 0)
c8e73a31
AC
1377 /* "deprecated_xfer_memory" uses 0, cross checked against
1378 ERRNO as one indication of an error. */
0088c768
AC
1379 return 0;
1380 else
1381 return -1;
1382 }
1383 else if (ops->beneath != NULL)
cf7a04e8
DJ
1384 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1385 readbuf, writebuf, offset, len);
1386 else
1387 return -1;
1388}
1389
1390/* The xfer_partial handler for the topmost target. Unlike the default,
1391 it does not need to handle memory specially; it just passes all
1392 requests down the stack. */
1393
1394static LONGEST
1395current_xfer_partial (struct target_ops *ops, enum target_object object,
1396 const char *annex, gdb_byte *readbuf,
1397 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1398{
1399 if (ops->beneath != NULL)
1400 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1401 readbuf, writebuf, offset, len);
0088c768
AC
1402 else
1403 return -1;
1404}
1405
1406/* Target vector read/write partial wrapper functions.
1407
1408 NOTE: cagney/2003-10-21: I wonder if having "to_xfer_partial
1409 (inbuf, outbuf)", instead of separate read/write methods, make life
1410 easier. */
1411
13547ab6 1412static LONGEST
1e3ff5ad
AC
1413target_read_partial (struct target_ops *ops,
1414 enum target_object object,
1b0ba102 1415 const char *annex, gdb_byte *buf,
1e3ff5ad
AC
1416 ULONGEST offset, LONGEST len)
1417{
27394598 1418 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len);
1e3ff5ad
AC
1419}
1420
13547ab6 1421static LONGEST
1e3ff5ad
AC
1422target_write_partial (struct target_ops *ops,
1423 enum target_object object,
1b0ba102 1424 const char *annex, const gdb_byte *buf,
1e3ff5ad
AC
1425 ULONGEST offset, LONGEST len)
1426{
27394598 1427 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len);
1e3ff5ad
AC
1428}
1429
1430/* Wrappers to perform the full transfer. */
1431LONGEST
1432target_read (struct target_ops *ops,
1433 enum target_object object,
1b0ba102 1434 const char *annex, gdb_byte *buf,
1e3ff5ad
AC
1435 ULONGEST offset, LONGEST len)
1436{
1437 LONGEST xfered = 0;
1438 while (xfered < len)
1439 {
0088c768 1440 LONGEST xfer = target_read_partial (ops, object, annex,
fc1a4b47 1441 (gdb_byte *) buf + xfered,
0088c768 1442 offset + xfered, len - xfered);
1e3ff5ad 1443 /* Call an observer, notifying them of the xfer progress? */
13547ab6
DJ
1444 if (xfer == 0)
1445 return xfered;
1446 if (xfer < 0)
0088c768 1447 return -1;
1e3ff5ad
AC
1448 xfered += xfer;
1449 QUIT;
1450 }
1451 return len;
1452}
1453
d5086790
VP
1454LONGEST
1455target_read_until_error (struct target_ops *ops,
1456 enum target_object object,
1457 const char *annex, gdb_byte *buf,
1458 ULONGEST offset, LONGEST len)
1459{
1460 LONGEST xfered = 0;
1461 while (xfered < len)
1462 {
1463 LONGEST xfer = target_read_partial (ops, object, annex,
1464 (gdb_byte *) buf + xfered,
1465 offset + xfered, len - xfered);
1466 /* Call an observer, notifying them of the xfer progress? */
1467 if (xfer == 0)
1468 return xfered;
1469 if (xfer < 0)
1470 {
1471 /* We've got an error. Try to read in smaller blocks. */
1472 ULONGEST start = offset + xfered;
1473 ULONGEST remaining = len - xfered;
1474 ULONGEST half;
1475
1476 /* If an attempt was made to read a random memory address,
1477 it's likely that the very first byte is not accessible.
1478 Try reading the first byte, to avoid doing log N tries
1479 below. */
1480 xfer = target_read_partial (ops, object, annex,
1481 (gdb_byte *) buf + xfered, start, 1);
1482 if (xfer <= 0)
1483 return xfered;
1484 start += 1;
1485 remaining -= 1;
1486 half = remaining/2;
1487
1488 while (half > 0)
1489 {
1490 xfer = target_read_partial (ops, object, annex,
1491 (gdb_byte *) buf + xfered,
1492 start, half);
1493 if (xfer == 0)
1494 return xfered;
1495 if (xfer < 0)
1496 {
1497 remaining = half;
1498 }
1499 else
1500 {
1501 /* We have successfully read the first half. So, the
1502 error must be in the second half. Adjust start and
1503 remaining to point at the second half. */
1504 xfered += xfer;
1505 start += xfer;
1506 remaining -= xfer;
1507 }
1508 half = remaining/2;
1509 }
1510
1511 return xfered;
1512 }
1513 xfered += xfer;
1514 QUIT;
1515 }
1516 return len;
1517}
1518
1519
cf7a04e8
DJ
1520/* An alternative to target_write with progress callbacks. */
1521
1e3ff5ad 1522LONGEST
cf7a04e8
DJ
1523target_write_with_progress (struct target_ops *ops,
1524 enum target_object object,
1525 const char *annex, const gdb_byte *buf,
1526 ULONGEST offset, LONGEST len,
1527 void (*progress) (ULONGEST, void *), void *baton)
1e3ff5ad
AC
1528{
1529 LONGEST xfered = 0;
a76d924d
DJ
1530
1531 /* Give the progress callback a chance to set up. */
1532 if (progress)
1533 (*progress) (0, baton);
1534
1e3ff5ad
AC
1535 while (xfered < len)
1536 {
1537 LONGEST xfer = target_write_partial (ops, object, annex,
fc1a4b47 1538 (gdb_byte *) buf + xfered,
1e3ff5ad 1539 offset + xfered, len - xfered);
cf7a04e8 1540
13547ab6
DJ
1541 if (xfer == 0)
1542 return xfered;
1543 if (xfer < 0)
0088c768 1544 return -1;
cf7a04e8
DJ
1545
1546 if (progress)
1547 (*progress) (xfer, baton);
1548
1e3ff5ad
AC
1549 xfered += xfer;
1550 QUIT;
1551 }
1552 return len;
1553}
1554
cf7a04e8
DJ
1555LONGEST
1556target_write (struct target_ops *ops,
1557 enum target_object object,
1558 const char *annex, const gdb_byte *buf,
1559 ULONGEST offset, LONGEST len)
1560{
1561 return target_write_with_progress (ops, object, annex, buf, offset, len,
1562 NULL, NULL);
1563}
1564
159f81f3
DJ
1565/* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1566 the size of the transferred data. PADDING additional bytes are
1567 available in *BUF_P. This is a helper function for
1568 target_read_alloc; see the declaration of that function for more
1569 information. */
13547ab6 1570
159f81f3
DJ
1571static LONGEST
1572target_read_alloc_1 (struct target_ops *ops, enum target_object object,
1573 const char *annex, gdb_byte **buf_p, int padding)
13547ab6
DJ
1574{
1575 size_t buf_alloc, buf_pos;
1576 gdb_byte *buf;
1577 LONGEST n;
1578
1579 /* This function does not have a length parameter; it reads the
1580 entire OBJECT). Also, it doesn't support objects fetched partly
1581 from one target and partly from another (in a different stratum,
1582 e.g. a core file and an executable). Both reasons make it
1583 unsuitable for reading memory. */
1584 gdb_assert (object != TARGET_OBJECT_MEMORY);
1585
1586 /* Start by reading up to 4K at a time. The target will throttle
1587 this number down if necessary. */
1588 buf_alloc = 4096;
1589 buf = xmalloc (buf_alloc);
1590 buf_pos = 0;
1591 while (1)
1592 {
1593 n = target_read_partial (ops, object, annex, &buf[buf_pos],
159f81f3 1594 buf_pos, buf_alloc - buf_pos - padding);
13547ab6
DJ
1595 if (n < 0)
1596 {
1597 /* An error occurred. */
1598 xfree (buf);
1599 return -1;
1600 }
1601 else if (n == 0)
1602 {
1603 /* Read all there was. */
1604 if (buf_pos == 0)
1605 xfree (buf);
1606 else
1607 *buf_p = buf;
1608 return buf_pos;
1609 }
1610
1611 buf_pos += n;
1612
1613 /* If the buffer is filling up, expand it. */
1614 if (buf_alloc < buf_pos * 2)
1615 {
1616 buf_alloc *= 2;
1617 buf = xrealloc (buf, buf_alloc);
1618 }
1619
1620 QUIT;
1621 }
1622}
1623
159f81f3
DJ
1624/* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1625 the size of the transferred data. See the declaration in "target.h"
1626 function for more information about the return value. */
1627
1628LONGEST
1629target_read_alloc (struct target_ops *ops, enum target_object object,
1630 const char *annex, gdb_byte **buf_p)
1631{
1632 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
1633}
1634
1635/* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
1636 returned as a string, allocated using xmalloc. If an error occurs
1637 or the transfer is unsupported, NULL is returned. Empty objects
1638 are returned as allocated but empty strings. A warning is issued
1639 if the result contains any embedded NUL bytes. */
1640
1641char *
1642target_read_stralloc (struct target_ops *ops, enum target_object object,
1643 const char *annex)
1644{
1645 gdb_byte *buffer;
1646 LONGEST transferred;
1647
1648 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
1649
1650 if (transferred < 0)
1651 return NULL;
1652
1653 if (transferred == 0)
1654 return xstrdup ("");
1655
1656 buffer[transferred] = 0;
1657 if (strlen (buffer) < transferred)
1658 warning (_("target object %d, annex %s, "
1659 "contained unexpected null characters"),
1660 (int) object, annex ? annex : "(none)");
1661
1662 return (char *) buffer;
1663}
1664
b6591e8b
AC
1665/* Memory transfer methods. */
1666
1667void
1b0ba102 1668get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
b6591e8b
AC
1669 LONGEST len)
1670{
1671 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL, buf, addr, len)
1672 != len)
1673 memory_error (EIO, addr);
1674}
1675
1676ULONGEST
1677get_target_memory_unsigned (struct target_ops *ops,
1678 CORE_ADDR addr, int len)
1679{
f6519ebc 1680 gdb_byte buf[sizeof (ULONGEST)];
b6591e8b
AC
1681
1682 gdb_assert (len <= sizeof (buf));
1683 get_target_memory (ops, addr, buf, len);
1684 return extract_unsigned_integer (buf, len);
1685}
1686
c906108c 1687static void
fba45db2 1688target_info (char *args, int from_tty)
c906108c
SS
1689{
1690 struct target_ops *t;
c906108c 1691 int has_all_mem = 0;
c5aa993b 1692
c906108c 1693 if (symfile_objfile != NULL)
a3f17187 1694 printf_unfiltered (_("Symbols from \"%s\".\n"), symfile_objfile->name);
c906108c 1695
258b763a 1696 for (t = target_stack; t != NULL; t = t->beneath)
c906108c 1697 {
c906108c
SS
1698 if (!t->to_has_memory)
1699 continue;
1700
c5aa993b 1701 if ((int) (t->to_stratum) <= (int) dummy_stratum)
c906108c
SS
1702 continue;
1703 if (has_all_mem)
a3f17187 1704 printf_unfiltered (_("\tWhile running this, GDB does not access memory from...\n"));
c5aa993b
JM
1705 printf_unfiltered ("%s:\n", t->to_longname);
1706 (t->to_files_info) (t);
c906108c
SS
1707 has_all_mem = t->to_has_all_memory;
1708 }
1709}
1710
fd79ecee
DJ
1711/* This function is called before any new inferior is created, e.g.
1712 by running a program, attaching, or connecting to a target.
1713 It cleans up any state from previous invocations which might
1714 change between runs. This is a subset of what target_preopen
1715 resets (things which might change between targets). */
1716
1717void
1718target_pre_inferior (int from_tty)
1719{
1720 invalidate_target_mem_regions ();
424163ea
DJ
1721
1722 target_clear_description ();
fd79ecee
DJ
1723}
1724
c906108c
SS
1725/* This is to be called by the open routine before it does
1726 anything. */
1727
1728void
fba45db2 1729target_preopen (int from_tty)
c906108c 1730{
c5aa993b 1731 dont_repeat ();
c906108c
SS
1732
1733 if (target_has_execution)
c5aa993b 1734 {
adf40b2e 1735 if (!from_tty
e2e0b3e5 1736 || query (_("A program is being debugged already. Kill it? ")))
c5aa993b 1737 target_kill ();
c906108c 1738 else
8a3fe4f8 1739 error (_("Program not killed."));
c906108c
SS
1740 }
1741
1742 /* Calling target_kill may remove the target from the stack. But if
1743 it doesn't (which seems like a win for UDI), remove it now. */
1744
1745 if (target_has_execution)
1746 pop_target ();
fd79ecee
DJ
1747
1748 target_pre_inferior (from_tty);
c906108c
SS
1749}
1750
1751/* Detach a target after doing deferred register stores. */
1752
1753void
fba45db2 1754target_detach (char *args, int from_tty)
c906108c 1755{
74960c60
VP
1756 /* If we're in breakpoints-always-inserted mode, have to
1757 remove them before detaching. */
1758 remove_breakpoints ();
1759
c906108c
SS
1760 (current_target.to_detach) (args, from_tty);
1761}
1762
6ad8ae5c
DJ
1763void
1764target_disconnect (char *args, int from_tty)
1765{
597320e7
DJ
1766 struct target_ops *t;
1767
74960c60
VP
1768 /* If we're in breakpoints-always-inserted mode, have to
1769 remove them before disconnecting. */
1770 remove_breakpoints ();
1771
597320e7
DJ
1772 for (t = current_target.beneath; t != NULL; t = t->beneath)
1773 if (t->to_disconnect != NULL)
1774 {
1775 if (targetdebug)
1776 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
1777 args, from_tty);
1778 t->to_disconnect (t, args, from_tty);
1779 return;
1780 }
1781
1782 tcomplain ();
6ad8ae5c
DJ
1783}
1784
e1ac3328
VP
1785void
1786target_resume (ptid_t ptid, int step, enum target_signal signal)
1787{
1788 dcache_invalidate (target_dcache);
1789 (*current_target.to_resume) (ptid, step, signal);
8ea051c5 1790 set_executing (ptid, 1);
e1ac3328 1791 set_running (ptid, 1);
e1ac3328 1792}
ee057212
DJ
1793/* Look through the list of possible targets for a target that can
1794 follow forks. */
1795
1796int
1797target_follow_fork (int follow_child)
1798{
1799 struct target_ops *t;
1800
1801 for (t = current_target.beneath; t != NULL; t = t->beneath)
1802 {
1803 if (t->to_follow_fork != NULL)
1804 {
1805 int retval = t->to_follow_fork (t, follow_child);
1806 if (targetdebug)
1807 fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n",
1808 follow_child, retval);
1809 return retval;
1810 }
1811 }
1812
1813 /* Some target returned a fork event, but did not know how to follow it. */
1814 internal_error (__FILE__, __LINE__,
1815 "could not find a target to follow fork");
1816}
1817
424163ea
DJ
1818/* Look for a target which can describe architectural features, starting
1819 from TARGET. If we find one, return its description. */
1820
1821const struct target_desc *
1822target_read_description (struct target_ops *target)
1823{
1824 struct target_ops *t;
1825
1826 for (t = target; t != NULL; t = t->beneath)
1827 if (t->to_read_description != NULL)
1828 {
1829 const struct target_desc *tdesc;
1830
1831 tdesc = t->to_read_description (t);
1832 if (tdesc)
1833 return tdesc;
1834 }
1835
1836 return NULL;
1837}
1838
08388c79
DE
1839/* The default implementation of to_search_memory.
1840 This implements a basic search of memory, reading target memory and
1841 performing the search here (as opposed to performing the search in on the
1842 target side with, for example, gdbserver). */
1843
1844int
1845simple_search_memory (struct target_ops *ops,
1846 CORE_ADDR start_addr, ULONGEST search_space_len,
1847 const gdb_byte *pattern, ULONGEST pattern_len,
1848 CORE_ADDR *found_addrp)
1849{
1850 /* NOTE: also defined in find.c testcase. */
1851#define SEARCH_CHUNK_SIZE 16000
1852 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
1853 /* Buffer to hold memory contents for searching. */
1854 gdb_byte *search_buf;
1855 unsigned search_buf_size;
1856 struct cleanup *old_cleanups;
1857
1858 search_buf_size = chunk_size + pattern_len - 1;
1859
1860 /* No point in trying to allocate a buffer larger than the search space. */
1861 if (search_space_len < search_buf_size)
1862 search_buf_size = search_space_len;
1863
1864 search_buf = malloc (search_buf_size);
1865 if (search_buf == NULL)
5e1471f5 1866 error (_("Unable to allocate memory to perform the search."));
08388c79
DE
1867 old_cleanups = make_cleanup (free_current_contents, &search_buf);
1868
1869 /* Prime the search buffer. */
1870
1871 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
1872 search_buf, start_addr, search_buf_size) != search_buf_size)
1873 {
5e1471f5 1874 warning (_("Unable to access target memory at %s, halting search."),
08388c79
DE
1875 hex_string (start_addr));
1876 do_cleanups (old_cleanups);
1877 return -1;
1878 }
1879
1880 /* Perform the search.
1881
1882 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
1883 When we've scanned N bytes we copy the trailing bytes to the start and
1884 read in another N bytes. */
1885
1886 while (search_space_len >= pattern_len)
1887 {
1888 gdb_byte *found_ptr;
1889 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
1890
1891 found_ptr = memmem (search_buf, nr_search_bytes,
1892 pattern, pattern_len);
1893
1894 if (found_ptr != NULL)
1895 {
1896 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
1897 *found_addrp = found_addr;
1898 do_cleanups (old_cleanups);
1899 return 1;
1900 }
1901
1902 /* Not found in this chunk, skip to next chunk. */
1903
1904 /* Don't let search_space_len wrap here, it's unsigned. */
1905 if (search_space_len >= chunk_size)
1906 search_space_len -= chunk_size;
1907 else
1908 search_space_len = 0;
1909
1910 if (search_space_len >= pattern_len)
1911 {
1912 unsigned keep_len = search_buf_size - chunk_size;
1913 CORE_ADDR read_addr = start_addr + keep_len;
1914 int nr_to_read;
1915
1916 /* Copy the trailing part of the previous iteration to the front
1917 of the buffer for the next iteration. */
1918 gdb_assert (keep_len == pattern_len - 1);
1919 memcpy (search_buf, search_buf + chunk_size, keep_len);
1920
1921 nr_to_read = min (search_space_len - keep_len, chunk_size);
1922
1923 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
1924 search_buf + keep_len, read_addr,
1925 nr_to_read) != nr_to_read)
1926 {
5e1471f5 1927 warning (_("Unable to access target memory at %s, halting search."),
08388c79
DE
1928 hex_string (read_addr));
1929 do_cleanups (old_cleanups);
1930 return -1;
1931 }
1932
1933 start_addr += chunk_size;
1934 }
1935 }
1936
1937 /* Not found. */
1938
1939 do_cleanups (old_cleanups);
1940 return 0;
1941}
1942
1943/* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
1944 sequence of bytes in PATTERN with length PATTERN_LEN.
1945
1946 The result is 1 if found, 0 if not found, and -1 if there was an error
1947 requiring halting of the search (e.g. memory read error).
1948 If the pattern is found the address is recorded in FOUND_ADDRP. */
1949
1950int
1951target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
1952 const gdb_byte *pattern, ULONGEST pattern_len,
1953 CORE_ADDR *found_addrp)
1954{
1955 struct target_ops *t;
1956 int found;
1957
1958 /* We don't use INHERIT to set current_target.to_search_memory,
1959 so we have to scan the target stack and handle targetdebug
1960 ourselves. */
1961
1962 if (targetdebug)
1963 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
1964 hex_string (start_addr));
1965
1966 for (t = current_target.beneath; t != NULL; t = t->beneath)
1967 if (t->to_search_memory != NULL)
1968 break;
1969
1970 if (t != NULL)
1971 {
1972 found = t->to_search_memory (t, start_addr, search_space_len,
1973 pattern, pattern_len, found_addrp);
1974 }
1975 else
1976 {
1977 /* If a special version of to_search_memory isn't available, use the
1978 simple version. */
1979 found = simple_search_memory (&current_target,
1980 start_addr, search_space_len,
1981 pattern, pattern_len, found_addrp);
1982 }
1983
1984 if (targetdebug)
1985 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
1986
1987 return found;
1988}
1989
8edfe269
DJ
1990/* Look through the currently pushed targets. If none of them will
1991 be able to restart the currently running process, issue an error
1992 message. */
1993
1994void
1995target_require_runnable (void)
1996{
1997 struct target_ops *t;
1998
1999 for (t = target_stack; t != NULL; t = t->beneath)
2000 {
2001 /* If this target knows how to create a new program, then
2002 assume we will still be able to after killing the current
2003 one. Either killing and mourning will not pop T, or else
2004 find_default_run_target will find it again. */
2005 if (t->to_create_inferior != NULL)
2006 return;
2007
2008 /* Do not worry about thread_stratum targets that can not
2009 create inferiors. Assume they will be pushed again if
2010 necessary, and continue to the process_stratum. */
2011 if (t->to_stratum == thread_stratum)
2012 continue;
2013
2014 error (_("\
2015The \"%s\" target does not support \"run\". Try \"help target\" or \"continue\"."),
2016 t->to_shortname);
2017 }
2018
2019 /* This function is only called if the target is running. In that
2020 case there should have been a process_stratum target and it
2021 should either know how to create inferiors, or not... */
2022 internal_error (__FILE__, __LINE__, "No targets found");
2023}
2024
c906108c
SS
2025/* Look through the list of possible targets for a target that can
2026 execute a run or attach command without any other data. This is
2027 used to locate the default process stratum.
2028
5f667f2d
PA
2029 If DO_MESG is not NULL, the result is always valid (error() is
2030 called for errors); else, return NULL on error. */
c906108c
SS
2031
2032static struct target_ops *
fba45db2 2033find_default_run_target (char *do_mesg)
c906108c
SS
2034{
2035 struct target_ops **t;
2036 struct target_ops *runable = NULL;
2037 int count;
2038
2039 count = 0;
2040
2041 for (t = target_structs; t < target_structs + target_struct_size;
2042 ++t)
2043 {
c5aa993b 2044 if ((*t)->to_can_run && target_can_run (*t))
c906108c
SS
2045 {
2046 runable = *t;
2047 ++count;
2048 }
2049 }
2050
2051 if (count != 1)
5f667f2d
PA
2052 {
2053 if (do_mesg)
2054 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
2055 else
2056 return NULL;
2057 }
c906108c
SS
2058
2059 return runable;
2060}
2061
2062void
fba45db2 2063find_default_attach (char *args, int from_tty)
c906108c
SS
2064{
2065 struct target_ops *t;
2066
c5aa993b 2067 t = find_default_run_target ("attach");
c906108c
SS
2068 (t->to_attach) (args, from_tty);
2069 return;
2070}
2071
c906108c 2072void
c27cda74
AC
2073find_default_create_inferior (char *exec_file, char *allargs, char **env,
2074 int from_tty)
c906108c
SS
2075{
2076 struct target_ops *t;
2077
c5aa993b 2078 t = find_default_run_target ("run");
c27cda74 2079 (t->to_create_inferior) (exec_file, allargs, env, from_tty);
c906108c
SS
2080 return;
2081}
2082
b84876c2
PA
2083int
2084find_default_can_async_p (void)
2085{
2086 struct target_ops *t;
2087
5f667f2d
PA
2088 /* This may be called before the target is pushed on the stack;
2089 look for the default process stratum. If there's none, gdb isn't
2090 configured with a native debugger, and target remote isn't
2091 connected yet. */
2092 t = find_default_run_target (NULL);
2093 if (t && t->to_can_async_p)
b84876c2
PA
2094 return (t->to_can_async_p) ();
2095 return 0;
2096}
2097
2098int
2099find_default_is_async_p (void)
2100{
2101 struct target_ops *t;
2102
5f667f2d
PA
2103 /* This may be called before the target is pushed on the stack;
2104 look for the default process stratum. If there's none, gdb isn't
2105 configured with a native debugger, and target remote isn't
2106 connected yet. */
2107 t = find_default_run_target (NULL);
2108 if (t && t->to_is_async_p)
b84876c2
PA
2109 return (t->to_is_async_p) ();
2110 return 0;
2111}
2112
e0d24f8d
WZ
2113static int
2114default_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
2115{
2a3cdf79 2116 return (len <= TYPE_LENGTH (builtin_type_void_data_ptr));
ccaa32c7
GS
2117}
2118
5009afc5
AS
2119static int
2120default_watchpoint_addr_within_range (struct target_ops *target,
2121 CORE_ADDR addr,
2122 CORE_ADDR start, int length)
2123{
2124 return addr >= start && addr < start + length;
2125}
2126
c906108c 2127static int
fba45db2 2128return_zero (void)
c906108c
SS
2129{
2130 return 0;
2131}
2132
2133static int
fba45db2 2134return_one (void)
c906108c
SS
2135{
2136 return 1;
2137}
2138
ccaa32c7
GS
2139static int
2140return_minus_one (void)
2141{
2142 return -1;
2143}
2144
6426a772
JM
2145/*
2146 * Resize the to_sections pointer. Also make sure that anyone that
2147 * was holding on to an old value of it gets updated.
2148 * Returns the old size.
2149 */
2150
2151int
2152target_resize_to_sections (struct target_ops *target, int num_added)
2153{
2154 struct target_ops **t;
2155 struct section_table *old_value;
2156 int old_count;
2157
2158 old_value = target->to_sections;
2159
2160 if (target->to_sections)
2161 {
2162 old_count = target->to_sections_end - target->to_sections;
2163 target->to_sections = (struct section_table *)
2164 xrealloc ((char *) target->to_sections,
2165 (sizeof (struct section_table)) * (num_added + old_count));
2166 }
2167 else
2168 {
2169 old_count = 0;
2170 target->to_sections = (struct section_table *)
2171 xmalloc ((sizeof (struct section_table)) * num_added);
2172 }
2173 target->to_sections_end = target->to_sections + (num_added + old_count);
2174
2175 /* Check to see if anyone else was pointing to this structure.
2176 If old_value was null, then no one was. */
2bc416ba 2177
6426a772
JM
2178 if (old_value)
2179 {
2180 for (t = target_structs; t < target_structs + target_struct_size;
2181 ++t)
2182 {
2183 if ((*t)->to_sections == old_value)
2184 {
2185 (*t)->to_sections = target->to_sections;
2186 (*t)->to_sections_end = target->to_sections_end;
2187 }
2188 }
e354df01
NW
2189 /* There is a flattened view of the target stack in current_target,
2190 so its to_sections pointer might also need updating. */
2191 if (current_target.to_sections == old_value)
2192 {
2193 current_target.to_sections = target->to_sections;
2194 current_target.to_sections_end = target->to_sections_end;
2195 }
6426a772 2196 }
2bc416ba 2197
6426a772
JM
2198 return old_count;
2199
2200}
2201
07cd4b97
JB
2202/* Remove all target sections taken from ABFD.
2203
2204 Scan the current target stack for targets whose section tables
2205 refer to sections from BFD, and remove those sections. We use this
2206 when we notice that the inferior has unloaded a shared object, for
2207 example. */
2208void
2209remove_target_sections (bfd *abfd)
2210{
2211 struct target_ops **t;
2212
2213 for (t = target_structs; t < target_structs + target_struct_size; t++)
2214 {
2215 struct section_table *src, *dest;
2216
2217 dest = (*t)->to_sections;
2218 for (src = (*t)->to_sections; src < (*t)->to_sections_end; src++)
2219 if (src->bfd != abfd)
2220 {
2221 /* Keep this section. */
2222 if (dest < src) *dest = *src;
2223 dest++;
2224 }
2225
2226 /* If we've dropped any sections, resize the section table. */
2227 if (dest < src)
2228 target_resize_to_sections (*t, dest - src);
2229 }
2230}
2231
2232
2233
2234
7a292a7a
SS
2235/* Find a single runnable target in the stack and return it. If for
2236 some reason there is more than one, return NULL. */
2237
2238struct target_ops *
fba45db2 2239find_run_target (void)
7a292a7a
SS
2240{
2241 struct target_ops **t;
2242 struct target_ops *runable = NULL;
2243 int count;
c5aa993b 2244
7a292a7a 2245 count = 0;
c5aa993b 2246
7a292a7a
SS
2247 for (t = target_structs; t < target_structs + target_struct_size; ++t)
2248 {
c5aa993b 2249 if ((*t)->to_can_run && target_can_run (*t))
7a292a7a
SS
2250 {
2251 runable = *t;
2252 ++count;
2253 }
2254 }
c5aa993b 2255
7a292a7a
SS
2256 return (count == 1 ? runable : NULL);
2257}
2258
ed9a39eb
JM
2259/* Find a single core_stratum target in the list of targets and return it.
2260 If for some reason there is more than one, return NULL. */
2261
c906108c 2262struct target_ops *
fba45db2 2263find_core_target (void)
c906108c
SS
2264{
2265 struct target_ops **t;
2266 struct target_ops *runable = NULL;
2267 int count;
c5aa993b 2268
c906108c 2269 count = 0;
c5aa993b 2270
c906108c
SS
2271 for (t = target_structs; t < target_structs + target_struct_size;
2272 ++t)
2273 {
2274 if ((*t)->to_stratum == core_stratum)
2275 {
2276 runable = *t;
2277 ++count;
2278 }
2279 }
c5aa993b
JM
2280
2281 return (count == 1 ? runable : NULL);
c906108c 2282}
ed9a39eb
JM
2283
2284/*
2285 * Find the next target down the stack from the specified target.
2286 */
2287
2288struct target_ops *
fba45db2 2289find_target_beneath (struct target_ops *t)
ed9a39eb 2290{
258b763a 2291 return t->beneath;
ed9a39eb
JM
2292}
2293
c906108c
SS
2294\f
2295/* The inferior process has died. Long live the inferior! */
2296
2297void
fba45db2 2298generic_mourn_inferior (void)
c906108c
SS
2299{
2300 extern int show_breakpoint_hit_counts;
2301
39f77062 2302 inferior_ptid = null_ptid;
c906108c
SS
2303 attach_flag = 0;
2304 breakpoint_init_inferior (inf_exited);
2305 registers_changed ();
2306
c906108c
SS
2307 reopen_exec_file ();
2308 reinit_frame_cache ();
2309
2310 /* It is confusing to the user for ignore counts to stick around
2311 from previous runs of the inferior. So clear them. */
2312 /* However, it is more confusing for the ignore counts to disappear when
2313 using hit counts. So don't clear them if we're counting hits. */
2314 if (!show_breakpoint_hit_counts)
2315 breakpoint_clear_ignore_counts ();
c5b739b5 2316
9a4105ab
AC
2317 if (deprecated_detach_hook)
2318 deprecated_detach_hook ();
c906108c
SS
2319}
2320\f
8807d78b 2321/* Helper function for child_wait and the derivatives of child_wait.
c906108c
SS
2322 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
2323 translation of that in OURSTATUS. */
2324void
fba45db2 2325store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
c906108c 2326{
c906108c
SS
2327 if (WIFEXITED (hoststatus))
2328 {
2329 ourstatus->kind = TARGET_WAITKIND_EXITED;
2330 ourstatus->value.integer = WEXITSTATUS (hoststatus);
2331 }
2332 else if (!WIFSTOPPED (hoststatus))
2333 {
2334 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
2335 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
2336 }
2337 else
2338 {
2339 ourstatus->kind = TARGET_WAITKIND_STOPPED;
2340 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
2341 }
2342}
2343\f
c906108c 2344/* Returns zero to leave the inferior alone, one to interrupt it. */
507f3c78 2345int (*target_activity_function) (void);
c906108c
SS
2346int target_activity_fd;
2347\f
fd0a2a6f
MK
2348/* Convert a normal process ID to a string. Returns the string in a
2349 static buffer. */
c906108c
SS
2350
2351char *
39f77062 2352normal_pid_to_str (ptid_t ptid)
c906108c 2353{
fd0a2a6f 2354 static char buf[32];
c906108c 2355
5fff8fc0 2356 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
c906108c
SS
2357 return buf;
2358}
2359
be4d1333 2360/* Error-catcher for target_find_memory_regions */
be4d1333
MS
2361static int dummy_find_memory_regions (int (*ignore1) (), void *ignore2)
2362{
8a3fe4f8 2363 error (_("No target."));
be4d1333
MS
2364 return 0;
2365}
2366
2367/* Error-catcher for target_make_corefile_notes */
be4d1333
MS
2368static char * dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
2369{
8a3fe4f8 2370 error (_("No target."));
be4d1333
MS
2371 return NULL;
2372}
2373
c906108c
SS
2374/* Set up the handful of non-empty slots needed by the dummy target
2375 vector. */
2376
2377static void
fba45db2 2378init_dummy_target (void)
c906108c
SS
2379{
2380 dummy_target.to_shortname = "None";
2381 dummy_target.to_longname = "None";
2382 dummy_target.to_doc = "";
2383 dummy_target.to_attach = find_default_attach;
c906108c 2384 dummy_target.to_create_inferior = find_default_create_inferior;
b84876c2
PA
2385 dummy_target.to_can_async_p = find_default_can_async_p;
2386 dummy_target.to_is_async_p = find_default_is_async_p;
ed9a39eb 2387 dummy_target.to_pid_to_str = normal_pid_to_str;
c906108c 2388 dummy_target.to_stratum = dummy_stratum;
be4d1333
MS
2389 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
2390 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
0b603eba 2391 dummy_target.to_xfer_partial = default_xfer_partial;
c906108c
SS
2392 dummy_target.to_magic = OPS_MAGIC;
2393}
c906108c 2394\f
c906108c 2395static void
fba45db2 2396debug_to_open (char *args, int from_tty)
c906108c
SS
2397{
2398 debug_target.to_open (args, from_tty);
2399
96baa820 2400 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
c906108c
SS
2401}
2402
2403static void
fba45db2 2404debug_to_close (int quitting)
c906108c 2405{
f1c07ab0 2406 target_close (&debug_target, quitting);
96baa820 2407 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
c906108c
SS
2408}
2409
f1c07ab0
AC
2410void
2411target_close (struct target_ops *targ, int quitting)
2412{
2413 if (targ->to_xclose != NULL)
2414 targ->to_xclose (targ, quitting);
2415 else if (targ->to_close != NULL)
2416 targ->to_close (quitting);
2417}
2418
c906108c 2419static void
fba45db2 2420debug_to_attach (char *args, int from_tty)
c906108c
SS
2421{
2422 debug_target.to_attach (args, from_tty);
2423
96baa820 2424 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n", args, from_tty);
c906108c
SS
2425}
2426
2427
2428static void
fba45db2 2429debug_to_post_attach (int pid)
c906108c
SS
2430{
2431 debug_target.to_post_attach (pid);
2432
96baa820 2433 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
c906108c
SS
2434}
2435
c906108c 2436static void
fba45db2 2437debug_to_detach (char *args, int from_tty)
c906108c
SS
2438{
2439 debug_target.to_detach (args, from_tty);
2440
96baa820 2441 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n", args, from_tty);
c906108c
SS
2442}
2443
c906108c 2444static void
39f77062 2445debug_to_resume (ptid_t ptid, int step, enum target_signal siggnal)
c906108c 2446{
39f77062 2447 debug_target.to_resume (ptid, step, siggnal);
c906108c 2448
39f77062 2449 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n", PIDGET (ptid),
c906108c
SS
2450 step ? "step" : "continue",
2451 target_signal_to_name (siggnal));
2452}
2453
39f77062
KB
2454static ptid_t
2455debug_to_wait (ptid_t ptid, struct target_waitstatus *status)
c906108c 2456{
39f77062 2457 ptid_t retval;
c906108c 2458
39f77062 2459 retval = debug_target.to_wait (ptid, status);
c906108c 2460
96baa820 2461 fprintf_unfiltered (gdb_stdlog,
39f77062
KB
2462 "target_wait (%d, status) = %d, ", PIDGET (ptid),
2463 PIDGET (retval));
96baa820 2464 fprintf_unfiltered (gdb_stdlog, "status->kind = ");
c906108c
SS
2465 switch (status->kind)
2466 {
2467 case TARGET_WAITKIND_EXITED:
96baa820 2468 fprintf_unfiltered (gdb_stdlog, "exited, status = %d\n",
c906108c
SS
2469 status->value.integer);
2470 break;
2471 case TARGET_WAITKIND_STOPPED:
96baa820 2472 fprintf_unfiltered (gdb_stdlog, "stopped, signal = %s\n",
c906108c
SS
2473 target_signal_to_name (status->value.sig));
2474 break;
2475 case TARGET_WAITKIND_SIGNALLED:
96baa820 2476 fprintf_unfiltered (gdb_stdlog, "signalled, signal = %s\n",
c906108c
SS
2477 target_signal_to_name (status->value.sig));
2478 break;
2479 case TARGET_WAITKIND_LOADED:
96baa820 2480 fprintf_unfiltered (gdb_stdlog, "loaded\n");
c906108c
SS
2481 break;
2482 case TARGET_WAITKIND_FORKED:
96baa820 2483 fprintf_unfiltered (gdb_stdlog, "forked\n");
c906108c
SS
2484 break;
2485 case TARGET_WAITKIND_VFORKED:
96baa820 2486 fprintf_unfiltered (gdb_stdlog, "vforked\n");
c906108c
SS
2487 break;
2488 case TARGET_WAITKIND_EXECD:
96baa820 2489 fprintf_unfiltered (gdb_stdlog, "execd\n");
c906108c
SS
2490 break;
2491 case TARGET_WAITKIND_SPURIOUS:
96baa820 2492 fprintf_unfiltered (gdb_stdlog, "spurious\n");
c906108c
SS
2493 break;
2494 default:
96baa820 2495 fprintf_unfiltered (gdb_stdlog, "unknown???\n");
c906108c
SS
2496 break;
2497 }
2498
2499 return retval;
2500}
2501
bf0c5130 2502static void
56be3814
UW
2503debug_print_register (const char * func,
2504 struct regcache *regcache, int regno)
bf0c5130 2505{
f8d29908 2506 struct gdbarch *gdbarch = get_regcache_arch (regcache);
bf0c5130 2507 fprintf_unfiltered (gdb_stdlog, "%s ", func);
f8d29908
UW
2508 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
2509 + gdbarch_num_pseudo_regs (gdbarch)
2510 && gdbarch_register_name (gdbarch, regno) != NULL
2511 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
2512 fprintf_unfiltered (gdb_stdlog, "(%s)",
2513 gdbarch_register_name (gdbarch, regno));
bf0c5130
AC
2514 else
2515 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
2516 if (regno >= 0)
2517 {
f8d29908 2518 int i, size = register_size (gdbarch, regno);
d9d9c31f 2519 unsigned char buf[MAX_REGISTER_SIZE];
56be3814 2520 regcache_cooked_read (regcache, regno, buf);
bf0c5130 2521 fprintf_unfiltered (gdb_stdlog, " = ");
81c4a259 2522 for (i = 0; i < size; i++)
bf0c5130
AC
2523 {
2524 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
2525 }
81c4a259 2526 if (size <= sizeof (LONGEST))
bf0c5130 2527 {
81c4a259 2528 ULONGEST val = extract_unsigned_integer (buf, size);
bf0c5130 2529 fprintf_unfiltered (gdb_stdlog, " 0x%s %s",
81c4a259 2530 paddr_nz (val), paddr_d (val));
bf0c5130
AC
2531 }
2532 }
2533 fprintf_unfiltered (gdb_stdlog, "\n");
2534}
2535
c906108c 2536static void
56be3814 2537debug_to_fetch_registers (struct regcache *regcache, int regno)
c906108c 2538{
56be3814
UW
2539 debug_target.to_fetch_registers (regcache, regno);
2540 debug_print_register ("target_fetch_registers", regcache, regno);
c906108c
SS
2541}
2542
2543static void
56be3814 2544debug_to_store_registers (struct regcache *regcache, int regno)
c906108c 2545{
56be3814
UW
2546 debug_target.to_store_registers (regcache, regno);
2547 debug_print_register ("target_store_registers", regcache, regno);
bf0c5130 2548 fprintf_unfiltered (gdb_stdlog, "\n");
c906108c
SS
2549}
2550
2551static void
316f2060 2552debug_to_prepare_to_store (struct regcache *regcache)
c906108c 2553{
316f2060 2554 debug_target.to_prepare_to_store (regcache);
c906108c 2555
96baa820 2556 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
c906108c
SS
2557}
2558
2559static int
961cb7b5 2560deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
c8e73a31
AC
2561 int write, struct mem_attrib *attrib,
2562 struct target_ops *target)
c906108c
SS
2563{
2564 int retval;
2565
c8e73a31
AC
2566 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
2567 attrib, target);
c906108c 2568
96baa820 2569 fprintf_unfiltered (gdb_stdlog,
c906108c 2570 "target_xfer_memory (0x%x, xxx, %d, %s, xxx) = %d",
c5aa993b 2571 (unsigned int) memaddr, /* possable truncate long long */
c906108c
SS
2572 len, write ? "write" : "read", retval);
2573
c906108c
SS
2574 if (retval > 0)
2575 {
2576 int i;
2577
96baa820 2578 fputs_unfiltered (", bytes =", gdb_stdlog);
c906108c
SS
2579 for (i = 0; i < retval; i++)
2580 {
2581 if ((((long) &(myaddr[i])) & 0xf) == 0)
333dabeb
DJ
2582 {
2583 if (targetdebug < 2 && i > 0)
2584 {
2585 fprintf_unfiltered (gdb_stdlog, " ...");
2586 break;
2587 }
2588 fprintf_unfiltered (gdb_stdlog, "\n");
2589 }
2bc416ba 2590
96baa820 2591 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
c906108c
SS
2592 }
2593 }
2594
96baa820 2595 fputc_unfiltered ('\n', gdb_stdlog);
c906108c
SS
2596
2597 return retval;
2598}
2599
2600static void
fba45db2 2601debug_to_files_info (struct target_ops *target)
c906108c
SS
2602{
2603 debug_target.to_files_info (target);
2604
96baa820 2605 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
c906108c
SS
2606}
2607
2608static int
8181d85f 2609debug_to_insert_breakpoint (struct bp_target_info *bp_tgt)
c906108c
SS
2610{
2611 int retval;
2612
8181d85f 2613 retval = debug_target.to_insert_breakpoint (bp_tgt);
c906108c 2614
96baa820 2615 fprintf_unfiltered (gdb_stdlog,
104c1213 2616 "target_insert_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 2617 (unsigned long) bp_tgt->placed_address,
104c1213 2618 (unsigned long) retval);
c906108c
SS
2619 return retval;
2620}
2621
2622static int
8181d85f 2623debug_to_remove_breakpoint (struct bp_target_info *bp_tgt)
c906108c
SS
2624{
2625 int retval;
2626
8181d85f 2627 retval = debug_target.to_remove_breakpoint (bp_tgt);
c906108c 2628
96baa820 2629 fprintf_unfiltered (gdb_stdlog,
104c1213 2630 "target_remove_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 2631 (unsigned long) bp_tgt->placed_address,
104c1213 2632 (unsigned long) retval);
c906108c
SS
2633 return retval;
2634}
2635
ccaa32c7
GS
2636static int
2637debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
2638{
2639 int retval;
2640
2641 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
2642
2643 fprintf_unfiltered (gdb_stdlog,
2644 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
2645 (unsigned long) type,
2646 (unsigned long) cnt,
2647 (unsigned long) from_tty,
2648 (unsigned long) retval);
2649 return retval;
2650}
2651
e0d24f8d
WZ
2652static int
2653debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
2654{
2655 CORE_ADDR retval;
2656
2657 retval = debug_target.to_region_ok_for_hw_watchpoint (addr, len);
2658
2659 fprintf_unfiltered (gdb_stdlog,
2660 "TARGET_REGION_OK_FOR_HW_WATCHPOINT (%ld, %ld) = 0x%lx\n",
2661 (unsigned long) addr,
2662 (unsigned long) len,
2663 (unsigned long) retval);
2664 return retval;
2665}
2666
ccaa32c7
GS
2667static int
2668debug_to_stopped_by_watchpoint (void)
2669{
2670 int retval;
2671
2672 retval = debug_target.to_stopped_by_watchpoint ();
2673
2674 fprintf_unfiltered (gdb_stdlog,
2675 "STOPPED_BY_WATCHPOINT () = %ld\n",
2676 (unsigned long) retval);
2677 return retval;
2678}
2679
4aa7a7f5
JJ
2680static int
2681debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
ccaa32c7 2682{
4aa7a7f5 2683 int retval;
ccaa32c7 2684
4aa7a7f5 2685 retval = debug_target.to_stopped_data_address (target, addr);
ccaa32c7
GS
2686
2687 fprintf_unfiltered (gdb_stdlog,
4aa7a7f5
JJ
2688 "target_stopped_data_address ([0x%lx]) = %ld\n",
2689 (unsigned long)*addr,
2690 (unsigned long)retval);
ccaa32c7
GS
2691 return retval;
2692}
2693
5009afc5
AS
2694static int
2695debug_to_watchpoint_addr_within_range (struct target_ops *target,
2696 CORE_ADDR addr,
2697 CORE_ADDR start, int length)
2698{
2699 int retval;
2700
2701 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
2702 start, length);
2703
2704 fprintf_filtered (gdb_stdlog,
2705 "target_watchpoint_addr_within_range (0x%lx, 0x%lx, %d) = %d\n",
2706 (unsigned long) addr, (unsigned long) start, length,
2707 retval);
2708 return retval;
2709}
2710
ccaa32c7 2711static int
8181d85f 2712debug_to_insert_hw_breakpoint (struct bp_target_info *bp_tgt)
ccaa32c7
GS
2713{
2714 int retval;
2715
8181d85f 2716 retval = debug_target.to_insert_hw_breakpoint (bp_tgt);
ccaa32c7
GS
2717
2718 fprintf_unfiltered (gdb_stdlog,
2719 "target_insert_hw_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 2720 (unsigned long) bp_tgt->placed_address,
ccaa32c7
GS
2721 (unsigned long) retval);
2722 return retval;
2723}
2724
2725static int
8181d85f 2726debug_to_remove_hw_breakpoint (struct bp_target_info *bp_tgt)
ccaa32c7
GS
2727{
2728 int retval;
2729
8181d85f 2730 retval = debug_target.to_remove_hw_breakpoint (bp_tgt);
ccaa32c7
GS
2731
2732 fprintf_unfiltered (gdb_stdlog,
2733 "target_remove_hw_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 2734 (unsigned long) bp_tgt->placed_address,
ccaa32c7
GS
2735 (unsigned long) retval);
2736 return retval;
2737}
2738
2739static int
2740debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type)
2741{
2742 int retval;
2743
2744 retval = debug_target.to_insert_watchpoint (addr, len, type);
2745
2746 fprintf_unfiltered (gdb_stdlog,
2747 "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n",
2748 (unsigned long) addr, len, type, (unsigned long) retval);
2749 return retval;
2750}
2751
2752static int
2753debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type)
2754{
2755 int retval;
2756
ecde4882 2757 retval = debug_target.to_remove_watchpoint (addr, len, type);
ccaa32c7
GS
2758
2759 fprintf_unfiltered (gdb_stdlog,
ecde4882 2760 "target_remove_watchpoint (0x%lx, %d, %d) = %ld\n",
ccaa32c7
GS
2761 (unsigned long) addr, len, type, (unsigned long) retval);
2762 return retval;
2763}
2764
c906108c 2765static void
fba45db2 2766debug_to_terminal_init (void)
c906108c
SS
2767{
2768 debug_target.to_terminal_init ();
2769
96baa820 2770 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
c906108c
SS
2771}
2772
2773static void
fba45db2 2774debug_to_terminal_inferior (void)
c906108c
SS
2775{
2776 debug_target.to_terminal_inferior ();
2777
96baa820 2778 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
c906108c
SS
2779}
2780
2781static void
fba45db2 2782debug_to_terminal_ours_for_output (void)
c906108c
SS
2783{
2784 debug_target.to_terminal_ours_for_output ();
2785
96baa820 2786 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
c906108c
SS
2787}
2788
2789static void
fba45db2 2790debug_to_terminal_ours (void)
c906108c
SS
2791{
2792 debug_target.to_terminal_ours ();
2793
96baa820 2794 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
c906108c
SS
2795}
2796
a790ad35
SC
2797static void
2798debug_to_terminal_save_ours (void)
2799{
2800 debug_target.to_terminal_save_ours ();
2801
2802 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
2803}
2804
c906108c 2805static void
fba45db2 2806debug_to_terminal_info (char *arg, int from_tty)
c906108c
SS
2807{
2808 debug_target.to_terminal_info (arg, from_tty);
2809
96baa820 2810 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
c906108c
SS
2811 from_tty);
2812}
2813
2814static void
fba45db2 2815debug_to_kill (void)
c906108c
SS
2816{
2817 debug_target.to_kill ();
2818
96baa820 2819 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
c906108c
SS
2820}
2821
2822static void
fba45db2 2823debug_to_load (char *args, int from_tty)
c906108c
SS
2824{
2825 debug_target.to_load (args, from_tty);
2826
96baa820 2827 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
c906108c
SS
2828}
2829
2830static int
fba45db2 2831debug_to_lookup_symbol (char *name, CORE_ADDR *addrp)
c906108c
SS
2832{
2833 int retval;
2834
2835 retval = debug_target.to_lookup_symbol (name, addrp);
2836
96baa820 2837 fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name);
c906108c
SS
2838
2839 return retval;
2840}
2841
2842static void
c27cda74
AC
2843debug_to_create_inferior (char *exec_file, char *args, char **env,
2844 int from_tty)
c906108c 2845{
c27cda74 2846 debug_target.to_create_inferior (exec_file, args, env, from_tty);
c906108c 2847
c27cda74
AC
2848 fprintf_unfiltered (gdb_stdlog, "target_create_inferior (%s, %s, xxx, %d)\n",
2849 exec_file, args, from_tty);
c906108c
SS
2850}
2851
2852static void
39f77062 2853debug_to_post_startup_inferior (ptid_t ptid)
c906108c 2854{
39f77062 2855 debug_target.to_post_startup_inferior (ptid);
c906108c 2856
96baa820 2857 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
39f77062 2858 PIDGET (ptid));
c906108c
SS
2859}
2860
2861static void
fba45db2 2862debug_to_acknowledge_created_inferior (int pid)
c906108c
SS
2863{
2864 debug_target.to_acknowledge_created_inferior (pid);
2865
96baa820 2866 fprintf_unfiltered (gdb_stdlog, "target_acknowledge_created_inferior (%d)\n",
c906108c
SS
2867 pid);
2868}
2869
fa113d1a 2870static void
fba45db2 2871debug_to_insert_fork_catchpoint (int pid)
c906108c 2872{
fa113d1a 2873 debug_target.to_insert_fork_catchpoint (pid);
c906108c 2874
fa113d1a
AC
2875 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d)\n",
2876 pid);
c906108c
SS
2877}
2878
2879static int
fba45db2 2880debug_to_remove_fork_catchpoint (int pid)
c906108c 2881{
c5aa993b 2882 int retval;
c906108c
SS
2883
2884 retval = debug_target.to_remove_fork_catchpoint (pid);
2885
96baa820 2886 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
c5aa993b 2887 pid, retval);
c906108c
SS
2888
2889 return retval;
2890}
2891
fa113d1a 2892static void
fba45db2 2893debug_to_insert_vfork_catchpoint (int pid)
c906108c 2894{
fa113d1a 2895 debug_target.to_insert_vfork_catchpoint (pid);
c906108c 2896
fa113d1a
AC
2897 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d)\n",
2898 pid);
c906108c
SS
2899}
2900
2901static int
fba45db2 2902debug_to_remove_vfork_catchpoint (int pid)
c906108c 2903{
c5aa993b 2904 int retval;
c906108c
SS
2905
2906 retval = debug_target.to_remove_vfork_catchpoint (pid);
2907
96baa820 2908 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
c5aa993b 2909 pid, retval);
c906108c
SS
2910
2911 return retval;
2912}
2913
fa113d1a 2914static void
fba45db2 2915debug_to_insert_exec_catchpoint (int pid)
c906108c 2916{
fa113d1a 2917 debug_target.to_insert_exec_catchpoint (pid);
c906108c 2918
fa113d1a
AC
2919 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d)\n",
2920 pid);
c906108c
SS
2921}
2922
2923static int
fba45db2 2924debug_to_remove_exec_catchpoint (int pid)
c906108c 2925{
c5aa993b 2926 int retval;
c906108c
SS
2927
2928 retval = debug_target.to_remove_exec_catchpoint (pid);
2929
96baa820 2930 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
c5aa993b 2931 pid, retval);
c906108c
SS
2932
2933 return retval;
2934}
2935
c906108c 2936static int
fba45db2 2937debug_to_has_exited (int pid, int wait_status, int *exit_status)
c906108c 2938{
c5aa993b 2939 int has_exited;
c906108c
SS
2940
2941 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
2942
96baa820 2943 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
c5aa993b 2944 pid, wait_status, *exit_status, has_exited);
c906108c
SS
2945
2946 return has_exited;
2947}
2948
2949static void
fba45db2 2950debug_to_mourn_inferior (void)
c906108c
SS
2951{
2952 debug_target.to_mourn_inferior ();
2953
96baa820 2954 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
c906108c
SS
2955}
2956
2957static int
fba45db2 2958debug_to_can_run (void)
c906108c
SS
2959{
2960 int retval;
2961
2962 retval = debug_target.to_can_run ();
2963
96baa820 2964 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
c906108c
SS
2965
2966 return retval;
2967}
2968
2969static void
39f77062 2970debug_to_notice_signals (ptid_t ptid)
c906108c 2971{
39f77062 2972 debug_target.to_notice_signals (ptid);
c906108c 2973
39f77062
KB
2974 fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n",
2975 PIDGET (ptid));
c906108c
SS
2976}
2977
2978static int
39f77062 2979debug_to_thread_alive (ptid_t ptid)
c906108c
SS
2980{
2981 int retval;
2982
39f77062 2983 retval = debug_target.to_thread_alive (ptid);
c906108c 2984
96baa820 2985 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
39f77062 2986 PIDGET (ptid), retval);
c906108c
SS
2987
2988 return retval;
2989}
2990
0d06e24b 2991static void
fba45db2 2992debug_to_find_new_threads (void)
0d06e24b
JM
2993{
2994 debug_target.to_find_new_threads ();
2995
2996 fputs_unfiltered ("target_find_new_threads ()\n", gdb_stdlog);
2997}
2998
c906108c 2999static void
94cc34af 3000debug_to_stop (ptid_t ptid)
c906108c 3001{
94cc34af 3002 debug_target.to_stop (ptid);
c906108c 3003
94cc34af
PA
3004 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
3005 target_pid_to_str (ptid));
c906108c
SS
3006}
3007
96baa820
JM
3008static void
3009debug_to_rcmd (char *command,
d9fcf2fb 3010 struct ui_file *outbuf)
96baa820
JM
3011{
3012 debug_target.to_rcmd (command, outbuf);
3013 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
3014}
3015
c906108c 3016static char *
fba45db2 3017debug_to_pid_to_exec_file (int pid)
c906108c 3018{
c5aa993b 3019 char *exec_file;
c906108c
SS
3020
3021 exec_file = debug_target.to_pid_to_exec_file (pid);
3022
96baa820 3023 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
c5aa993b 3024 pid, exec_file);
c906108c
SS
3025
3026 return exec_file;
3027}
3028
c906108c 3029static void
fba45db2 3030setup_target_debug (void)
c906108c
SS
3031{
3032 memcpy (&debug_target, &current_target, sizeof debug_target);
3033
3034 current_target.to_open = debug_to_open;
3035 current_target.to_close = debug_to_close;
3036 current_target.to_attach = debug_to_attach;
3037 current_target.to_post_attach = debug_to_post_attach;
c906108c 3038 current_target.to_detach = debug_to_detach;
c906108c
SS
3039 current_target.to_resume = debug_to_resume;
3040 current_target.to_wait = debug_to_wait;
c906108c
SS
3041 current_target.to_fetch_registers = debug_to_fetch_registers;
3042 current_target.to_store_registers = debug_to_store_registers;
3043 current_target.to_prepare_to_store = debug_to_prepare_to_store;
c8e73a31 3044 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
c906108c
SS
3045 current_target.to_files_info = debug_to_files_info;
3046 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
3047 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
ccaa32c7
GS
3048 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
3049 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
3050 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
3051 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
3052 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
3053 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
3054 current_target.to_stopped_data_address = debug_to_stopped_data_address;
5009afc5 3055 current_target.to_watchpoint_addr_within_range = debug_to_watchpoint_addr_within_range;
e0d24f8d 3056 current_target.to_region_ok_for_hw_watchpoint = debug_to_region_ok_for_hw_watchpoint;
c906108c
SS
3057 current_target.to_terminal_init = debug_to_terminal_init;
3058 current_target.to_terminal_inferior = debug_to_terminal_inferior;
3059 current_target.to_terminal_ours_for_output = debug_to_terminal_ours_for_output;
3060 current_target.to_terminal_ours = debug_to_terminal_ours;
a790ad35 3061 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
c906108c
SS
3062 current_target.to_terminal_info = debug_to_terminal_info;
3063 current_target.to_kill = debug_to_kill;
3064 current_target.to_load = debug_to_load;
3065 current_target.to_lookup_symbol = debug_to_lookup_symbol;
3066 current_target.to_create_inferior = debug_to_create_inferior;
3067 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
3068 current_target.to_acknowledge_created_inferior = debug_to_acknowledge_created_inferior;
c906108c
SS
3069 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
3070 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
3071 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
3072 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
c906108c
SS
3073 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
3074 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
c906108c
SS
3075 current_target.to_has_exited = debug_to_has_exited;
3076 current_target.to_mourn_inferior = debug_to_mourn_inferior;
3077 current_target.to_can_run = debug_to_can_run;
3078 current_target.to_notice_signals = debug_to_notice_signals;
3079 current_target.to_thread_alive = debug_to_thread_alive;
0d06e24b 3080 current_target.to_find_new_threads = debug_to_find_new_threads;
c906108c 3081 current_target.to_stop = debug_to_stop;
96baa820 3082 current_target.to_rcmd = debug_to_rcmd;
c906108c 3083 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
c906108c 3084}
c906108c 3085\f
c5aa993b
JM
3086
3087static char targ_desc[] =
3088"Names of targets and files being debugged.\n\
c906108c
SS
3089Shows the entire stack of targets currently in use (including the exec-file,\n\
3090core-file, and process, if any), as well as the symbol file name.";
3091
96baa820
JM
3092static void
3093do_monitor_command (char *cmd,
3094 int from_tty)
3095{
2b5fe715
AC
3096 if ((current_target.to_rcmd
3097 == (void (*) (char *, struct ui_file *)) tcomplain)
96baa820 3098 || (current_target.to_rcmd == debug_to_rcmd
2b5fe715
AC
3099 && (debug_target.to_rcmd
3100 == (void (*) (char *, struct ui_file *)) tcomplain)))
8a3fe4f8 3101 error (_("\"monitor\" command not supported by this target."));
96baa820
JM
3102 target_rcmd (cmd, gdb_stdtarg);
3103}
3104
87680a14
JB
3105/* Print the name of each layers of our target stack. */
3106
3107static void
3108maintenance_print_target_stack (char *cmd, int from_tty)
3109{
3110 struct target_ops *t;
3111
3112 printf_filtered (_("The current target stack is:\n"));
3113
3114 for (t = target_stack; t != NULL; t = t->beneath)
3115 {
3116 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
3117 }
3118}
3119
c906108c 3120void
fba45db2 3121initialize_targets (void)
c906108c
SS
3122{
3123 init_dummy_target ();
3124 push_target (&dummy_target);
3125
3126 add_info ("target", target_info, targ_desc);
3127 add_info ("files", target_info, targ_desc);
3128
85c07804
AC
3129 add_setshow_zinteger_cmd ("target", class_maintenance, &targetdebug, _("\
3130Set target debugging."), _("\
3131Show target debugging."), _("\
333dabeb
DJ
3132When non-zero, target debugging is enabled. Higher numbers are more\n\
3133verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
85c07804
AC
3134command."),
3135 NULL,
920d2a44 3136 show_targetdebug,
85c07804 3137 &setdebuglist, &showdebuglist);
3a11626d 3138
2bc416ba 3139 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
7915a72c
AC
3140 &trust_readonly, _("\
3141Set mode for reading from readonly sections."), _("\
3142Show mode for reading from readonly sections."), _("\
3a11626d
MS
3143When this mode is on, memory reads from readonly sections (such as .text)\n\
3144will be read from the object file instead of from the target. This will\n\
7915a72c 3145result in significant performance improvement for remote targets."),
2c5b56ce 3146 NULL,
920d2a44 3147 show_trust_readonly,
e707bbc2 3148 &setlist, &showlist);
96baa820
JM
3149
3150 add_com ("monitor", class_obscure, do_monitor_command,
1bedd215 3151 _("Send a command to the remote monitor (remote targets only)."));
96baa820 3152
87680a14
JB
3153 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
3154 _("Print the name of each layer of the internal target stack."),
3155 &maintenanceprintlist);
3156
8add0441 3157 target_dcache = dcache_init ();
c906108c 3158}
This page took 0.995258 seconds and 4 git commands to generate.