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