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