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