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