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