1 /* Select target systems and architectures at runtime for GDB.
3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 Free Software Foundation, Inc.
7 Contributed by Cygnus Support.
9 This file is part of GDB.
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 3 of the License, or
14 (at your option) any later version.
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.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include "gdb_string.h"
38 #include "gdb_assert.h"
40 #include "exceptions.h"
41 #include "target-descriptions.h"
42 #include "gdbthread.h"
45 #include "inline-frame.h"
47 static void target_info (char *, int);
49 static void kill_or_be_killed (int);
51 static void default_terminal_info (char *, int);
53 static int default_watchpoint_addr_within_range (struct target_ops
*,
54 CORE_ADDR
, CORE_ADDR
, int);
56 static int default_region_ok_for_hw_watchpoint (CORE_ADDR
, int);
58 static int nosymbol (char *, CORE_ADDR
*);
60 static void tcomplain (void) ATTR_NORETURN
;
62 static int nomemory (CORE_ADDR
, char *, int, int, struct target_ops
*);
64 static int return_zero (void);
66 static int return_one (void);
68 static int return_minus_one (void);
70 void target_ignore (void);
72 static void target_command (char *, int);
74 static struct target_ops
*find_default_run_target (char *);
76 static void nosupport_runtime (void);
78 static LONGEST
default_xfer_partial (struct target_ops
*ops
,
79 enum target_object object
,
80 const char *annex
, gdb_byte
*readbuf
,
81 const gdb_byte
*writebuf
,
82 ULONGEST offset
, LONGEST len
);
84 static LONGEST
current_xfer_partial (struct target_ops
*ops
,
85 enum target_object object
,
86 const char *annex
, gdb_byte
*readbuf
,
87 const gdb_byte
*writebuf
,
88 ULONGEST offset
, LONGEST len
);
90 static LONGEST
target_xfer_partial (struct target_ops
*ops
,
91 enum target_object object
,
93 void *readbuf
, const void *writebuf
,
94 ULONGEST offset
, LONGEST len
);
96 static struct gdbarch
*default_thread_architecture (struct target_ops
*ops
,
99 static void init_dummy_target (void);
101 static struct target_ops debug_target
;
103 static void debug_to_open (char *, int);
105 static void debug_to_prepare_to_store (struct regcache
*);
107 static void debug_to_files_info (struct target_ops
*);
109 static int debug_to_insert_breakpoint (struct gdbarch
*,
110 struct bp_target_info
*);
112 static int debug_to_remove_breakpoint (struct gdbarch
*,
113 struct bp_target_info
*);
115 static int debug_to_can_use_hw_breakpoint (int, int, int);
117 static int debug_to_insert_hw_breakpoint (struct gdbarch
*,
118 struct bp_target_info
*);
120 static int debug_to_remove_hw_breakpoint (struct gdbarch
*,
121 struct bp_target_info
*);
123 static int debug_to_insert_watchpoint (CORE_ADDR
, int, int);
125 static int debug_to_remove_watchpoint (CORE_ADDR
, int, int);
127 static int debug_to_stopped_by_watchpoint (void);
129 static int debug_to_stopped_data_address (struct target_ops
*, CORE_ADDR
*);
131 static int debug_to_watchpoint_addr_within_range (struct target_ops
*,
132 CORE_ADDR
, CORE_ADDR
, int);
134 static int debug_to_region_ok_for_hw_watchpoint (CORE_ADDR
, int);
136 static void debug_to_terminal_init (void);
138 static void debug_to_terminal_inferior (void);
140 static void debug_to_terminal_ours_for_output (void);
142 static void debug_to_terminal_save_ours (void);
144 static void debug_to_terminal_ours (void);
146 static void debug_to_terminal_info (char *, int);
148 static void debug_to_load (char *, int);
150 static int debug_to_lookup_symbol (char *, CORE_ADDR
*);
152 static int debug_to_can_run (void);
154 static void debug_to_notice_signals (ptid_t
);
156 static void debug_to_stop (ptid_t
);
158 /* NOTE: cagney/2004-09-29: Many targets reference this variable in
159 wierd and mysterious ways. Putting the variable here lets those
160 wierd and mysterious ways keep building while they are being
161 converted to the inferior inheritance structure. */
162 struct target_ops deprecated_child_ops
;
164 /* Pointer to array of target architecture structures; the size of the
165 array; the current index into the array; the allocated size of the
167 struct target_ops
**target_structs
;
168 unsigned target_struct_size
;
169 unsigned target_struct_index
;
170 unsigned target_struct_allocsize
;
171 #define DEFAULT_ALLOCSIZE 10
173 /* The initial current target, so that there is always a semi-valid
176 static struct target_ops dummy_target
;
178 /* Top of target stack. */
180 static struct target_ops
*target_stack
;
182 /* The target structure we are currently using to talk to a process
183 or file or whatever "inferior" we have. */
185 struct target_ops current_target
;
187 /* Command list for target. */
189 static struct cmd_list_element
*targetlist
= NULL
;
191 /* Nonzero if we should trust readonly sections from the
192 executable when reading memory. */
194 static int trust_readonly
= 0;
196 /* Nonzero if we should show true memory content including
197 memory breakpoint inserted by gdb. */
199 static int show_memory_breakpoints
= 0;
201 /* Non-zero if we want to see trace of target level stuff. */
203 static int targetdebug
= 0;
205 show_targetdebug (struct ui_file
*file
, int from_tty
,
206 struct cmd_list_element
*c
, const char *value
)
208 fprintf_filtered (file
, _("Target debugging is %s.\n"), value
);
211 static void setup_target_debug (void);
213 /* The option sets this. */
214 static int stack_cache_enabled_p_1
= 1;
215 /* And set_stack_cache_enabled_p updates this.
216 The reason for the separation is so that we don't flush the cache for
217 on->on transitions. */
218 static int stack_cache_enabled_p
= 1;
220 /* This is called *after* the stack-cache has been set.
221 Flush the cache for off->on and on->off transitions.
222 There's no real need to flush the cache for on->off transitions,
223 except cleanliness. */
226 set_stack_cache_enabled_p (char *args
, int from_tty
,
227 struct cmd_list_element
*c
)
229 if (stack_cache_enabled_p
!= stack_cache_enabled_p_1
)
230 target_dcache_invalidate ();
232 stack_cache_enabled_p
= stack_cache_enabled_p_1
;
236 show_stack_cache_enabled_p (struct ui_file
*file
, int from_tty
,
237 struct cmd_list_element
*c
, const char *value
)
239 fprintf_filtered (file
, _("Cache use for stack accesses is %s.\n"), value
);
242 /* Cache of memory operations, to speed up remote access. */
243 static DCACHE
*target_dcache
;
245 /* Invalidate the target dcache. */
248 target_dcache_invalidate (void)
250 dcache_invalidate (target_dcache
);
253 /* The user just typed 'target' without the name of a target. */
256 target_command (char *arg
, int from_tty
)
258 fputs_filtered ("Argument required (target name). Try `help target'\n",
262 /* Default target_has_* methods for process_stratum targets. */
265 default_child_has_all_memory (struct target_ops
*ops
)
267 /* If no inferior selected, then we can't read memory here. */
268 if (ptid_equal (inferior_ptid
, null_ptid
))
275 default_child_has_memory (struct target_ops
*ops
)
277 /* If no inferior selected, then we can't read memory here. */
278 if (ptid_equal (inferior_ptid
, null_ptid
))
285 default_child_has_stack (struct target_ops
*ops
)
287 /* If no inferior selected, there's no stack. */
288 if (ptid_equal (inferior_ptid
, null_ptid
))
295 default_child_has_registers (struct target_ops
*ops
)
297 /* Can't read registers from no inferior. */
298 if (ptid_equal (inferior_ptid
, null_ptid
))
305 default_child_has_execution (struct target_ops
*ops
)
307 /* If there's no thread selected, then we can't make it run through
309 if (ptid_equal (inferior_ptid
, null_ptid
))
317 target_has_all_memory_1 (void)
319 struct target_ops
*t
;
321 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
322 if (t
->to_has_all_memory (t
))
329 target_has_memory_1 (void)
331 struct target_ops
*t
;
333 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
334 if (t
->to_has_memory (t
))
341 target_has_stack_1 (void)
343 struct target_ops
*t
;
345 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
346 if (t
->to_has_stack (t
))
353 target_has_registers_1 (void)
355 struct target_ops
*t
;
357 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
358 if (t
->to_has_registers (t
))
365 target_has_execution_1 (void)
367 struct target_ops
*t
;
369 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
370 if (t
->to_has_execution (t
))
376 /* Add a possible target architecture to the list. */
379 add_target (struct target_ops
*t
)
381 /* Provide default values for all "must have" methods. */
382 if (t
->to_xfer_partial
== NULL
)
383 t
->to_xfer_partial
= default_xfer_partial
;
385 if (t
->to_has_all_memory
== NULL
)
386 t
->to_has_all_memory
= (int (*) (struct target_ops
*)) return_zero
;
388 if (t
->to_has_memory
== NULL
)
389 t
->to_has_memory
= (int (*) (struct target_ops
*)) return_zero
;
391 if (t
->to_has_stack
== NULL
)
392 t
->to_has_stack
= (int (*) (struct target_ops
*)) return_zero
;
394 if (t
->to_has_registers
== NULL
)
395 t
->to_has_registers
= (int (*) (struct target_ops
*)) return_zero
;
397 if (t
->to_has_execution
== NULL
)
398 t
->to_has_execution
= (int (*) (struct target_ops
*)) return_zero
;
402 target_struct_allocsize
= DEFAULT_ALLOCSIZE
;
403 target_structs
= (struct target_ops
**) xmalloc
404 (target_struct_allocsize
* sizeof (*target_structs
));
406 if (target_struct_size
>= target_struct_allocsize
)
408 target_struct_allocsize
*= 2;
409 target_structs
= (struct target_ops
**)
410 xrealloc ((char *) target_structs
,
411 target_struct_allocsize
* sizeof (*target_structs
));
413 target_structs
[target_struct_size
++] = t
;
415 if (targetlist
== NULL
)
416 add_prefix_cmd ("target", class_run
, target_command
, _("\
417 Connect to a target machine or process.\n\
418 The first argument is the type or protocol of the target machine.\n\
419 Remaining arguments are interpreted by the target protocol. For more\n\
420 information on the arguments for a particular protocol, type\n\
421 `help target ' followed by the protocol name."),
422 &targetlist
, "target ", 0, &cmdlist
);
423 add_cmd (t
->to_shortname
, no_class
, t
->to_open
, t
->to_doc
, &targetlist
);
436 struct target_ops
*t
;
438 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
439 if (t
->to_kill
!= NULL
)
442 fprintf_unfiltered (gdb_stdlog
, "target_kill ()\n");
452 target_load (char *arg
, int from_tty
)
454 target_dcache_invalidate ();
455 (*current_target
.to_load
) (arg
, from_tty
);
459 target_create_inferior (char *exec_file
, char *args
,
460 char **env
, int from_tty
)
462 struct target_ops
*t
;
463 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
465 if (t
->to_create_inferior
!= NULL
)
467 t
->to_create_inferior (t
, exec_file
, args
, env
, from_tty
);
469 fprintf_unfiltered (gdb_stdlog
,
470 "target_create_inferior (%s, %s, xxx, %d)\n",
471 exec_file
, args
, from_tty
);
476 internal_error (__FILE__
, __LINE__
,
477 "could not find a target to create inferior");
481 target_terminal_inferior (void)
483 /* A background resume (``run&'') should leave GDB in control of the
485 if (target_is_async_p () && !sync_execution
)
488 /* If GDB is resuming the inferior in the foreground, install
489 inferior's terminal modes. */
490 (*current_target
.to_terminal_inferior
) ();
494 nomemory (CORE_ADDR memaddr
, char *myaddr
, int len
, int write
,
495 struct target_ops
*t
)
497 errno
= EIO
; /* Can't read/write this location */
498 return 0; /* No bytes handled */
504 error (_("You can't do that when your target is `%s'"),
505 current_target
.to_shortname
);
511 error (_("You can't do that without a process to debug."));
515 nosymbol (char *name
, CORE_ADDR
*addrp
)
517 return 1; /* Symbol does not exist in target env */
521 nosupport_runtime (void)
523 if (ptid_equal (inferior_ptid
, null_ptid
))
526 error (_("No run-time support for this"));
531 default_terminal_info (char *args
, int from_tty
)
533 printf_unfiltered (_("No saved terminal information.\n"));
536 /* This is the default target_create_inferior and target_attach function.
537 If the current target is executing, it asks whether to kill it off.
538 If this function returns without calling error(), it has killed off
539 the target, and the operation should be attempted. */
542 kill_or_be_killed (int from_tty
)
544 if (target_has_execution
)
546 printf_unfiltered (_("You are already running a program:\n"));
547 target_files_info ();
548 if (query (_("Kill it? ")))
551 if (target_has_execution
)
552 error (_("Killing the program did not help."));
557 error (_("Program not killed."));
563 /* A default implementation for the to_get_ada_task_ptid target method.
565 This function builds the PTID by using both LWP and TID as part of
566 the PTID lwp and tid elements. The pid used is the pid of the
570 default_get_ada_task_ptid (long lwp
, long tid
)
572 return ptid_build (ptid_get_pid (inferior_ptid
), lwp
, tid
);
575 /* Go through the target stack from top to bottom, copying over zero
576 entries in current_target, then filling in still empty entries. In
577 effect, we are doing class inheritance through the pushed target
580 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
581 is currently implemented, is that it discards any knowledge of
582 which target an inherited method originally belonged to.
583 Consequently, new new target methods should instead explicitly and
584 locally search the target stack for the target that can handle the
588 update_current_target (void)
590 struct target_ops
*t
;
592 /* First, reset current's contents. */
593 memset (¤t_target
, 0, sizeof (current_target
));
595 #define INHERIT(FIELD, TARGET) \
596 if (!current_target.FIELD) \
597 current_target.FIELD = (TARGET)->FIELD
599 for (t
= target_stack
; t
; t
= t
->beneath
)
601 INHERIT (to_shortname
, t
);
602 INHERIT (to_longname
, t
);
604 /* Do not inherit to_open. */
605 /* Do not inherit to_close. */
606 /* Do not inherit to_attach. */
607 INHERIT (to_post_attach
, t
);
608 INHERIT (to_attach_no_wait
, t
);
609 /* Do not inherit to_detach. */
610 /* Do not inherit to_disconnect. */
611 /* Do not inherit to_resume. */
612 /* Do not inherit to_wait. */
613 /* Do not inherit to_fetch_registers. */
614 /* Do not inherit to_store_registers. */
615 INHERIT (to_prepare_to_store
, t
);
616 INHERIT (deprecated_xfer_memory
, t
);
617 INHERIT (to_files_info
, t
);
618 INHERIT (to_insert_breakpoint
, t
);
619 INHERIT (to_remove_breakpoint
, t
);
620 INHERIT (to_can_use_hw_breakpoint
, t
);
621 INHERIT (to_insert_hw_breakpoint
, t
);
622 INHERIT (to_remove_hw_breakpoint
, t
);
623 INHERIT (to_insert_watchpoint
, t
);
624 INHERIT (to_remove_watchpoint
, t
);
625 INHERIT (to_stopped_data_address
, t
);
626 INHERIT (to_have_steppable_watchpoint
, t
);
627 INHERIT (to_have_continuable_watchpoint
, t
);
628 INHERIT (to_stopped_by_watchpoint
, t
);
629 INHERIT (to_watchpoint_addr_within_range
, t
);
630 INHERIT (to_region_ok_for_hw_watchpoint
, t
);
631 INHERIT (to_terminal_init
, t
);
632 INHERIT (to_terminal_inferior
, t
);
633 INHERIT (to_terminal_ours_for_output
, t
);
634 INHERIT (to_terminal_ours
, t
);
635 INHERIT (to_terminal_save_ours
, t
);
636 INHERIT (to_terminal_info
, t
);
637 /* Do not inherit to_kill. */
638 INHERIT (to_load
, t
);
639 INHERIT (to_lookup_symbol
, t
);
640 /* Do no inherit to_create_inferior. */
641 INHERIT (to_post_startup_inferior
, t
);
642 INHERIT (to_acknowledge_created_inferior
, t
);
643 INHERIT (to_insert_fork_catchpoint
, t
);
644 INHERIT (to_remove_fork_catchpoint
, t
);
645 INHERIT (to_insert_vfork_catchpoint
, t
);
646 INHERIT (to_remove_vfork_catchpoint
, t
);
647 /* Do not inherit to_follow_fork. */
648 INHERIT (to_insert_exec_catchpoint
, t
);
649 INHERIT (to_remove_exec_catchpoint
, t
);
650 INHERIT (to_set_syscall_catchpoint
, t
);
651 INHERIT (to_has_exited
, t
);
652 /* Do not inherit to_mourn_inferiour. */
653 INHERIT (to_can_run
, t
);
654 INHERIT (to_notice_signals
, t
);
655 /* Do not inherit to_thread_alive. */
656 /* Do not inherit to_find_new_threads. */
657 /* Do not inherit to_pid_to_str. */
658 INHERIT (to_extra_thread_info
, t
);
659 INHERIT (to_stop
, t
);
660 /* Do not inherit to_xfer_partial. */
661 INHERIT (to_rcmd
, t
);
662 INHERIT (to_pid_to_exec_file
, t
);
663 INHERIT (to_log_command
, t
);
664 INHERIT (to_stratum
, t
);
665 /* Do not inherit to_has_all_memory */
666 /* Do not inherit to_has_memory */
667 /* Do not inherit to_has_stack */
668 /* Do not inherit to_has_registers */
669 /* Do not inherit to_has_execution */
670 INHERIT (to_has_thread_control
, t
);
671 INHERIT (to_can_async_p
, t
);
672 INHERIT (to_is_async_p
, t
);
673 INHERIT (to_async
, t
);
674 INHERIT (to_async_mask
, t
);
675 INHERIT (to_find_memory_regions
, t
);
676 INHERIT (to_make_corefile_notes
, t
);
677 /* Do not inherit to_get_thread_local_address. */
678 INHERIT (to_can_execute_reverse
, t
);
679 INHERIT (to_thread_architecture
, t
);
680 /* Do not inherit to_read_description. */
681 INHERIT (to_get_ada_task_ptid
, t
);
682 /* Do not inherit to_search_memory. */
683 INHERIT (to_supports_multi_process
, t
);
684 INHERIT (to_magic
, t
);
685 /* Do not inherit to_memory_map. */
686 /* Do not inherit to_flash_erase. */
687 /* Do not inherit to_flash_done. */
691 /* Clean up a target struct so it no longer has any zero pointers in
692 it. Some entries are defaulted to a method that print an error,
693 others are hard-wired to a standard recursive default. */
695 #define de_fault(field, value) \
696 if (!current_target.field) \
697 current_target.field = value
700 (void (*) (char *, int))
705 de_fault (to_post_attach
,
708 de_fault (to_prepare_to_store
,
709 (void (*) (struct regcache
*))
711 de_fault (deprecated_xfer_memory
,
712 (int (*) (CORE_ADDR
, gdb_byte
*, int, int, struct mem_attrib
*, struct target_ops
*))
714 de_fault (to_files_info
,
715 (void (*) (struct target_ops
*))
717 de_fault (to_insert_breakpoint
,
718 memory_insert_breakpoint
);
719 de_fault (to_remove_breakpoint
,
720 memory_remove_breakpoint
);
721 de_fault (to_can_use_hw_breakpoint
,
722 (int (*) (int, int, int))
724 de_fault (to_insert_hw_breakpoint
,
725 (int (*) (struct gdbarch
*, struct bp_target_info
*))
727 de_fault (to_remove_hw_breakpoint
,
728 (int (*) (struct gdbarch
*, struct bp_target_info
*))
730 de_fault (to_insert_watchpoint
,
731 (int (*) (CORE_ADDR
, int, int))
733 de_fault (to_remove_watchpoint
,
734 (int (*) (CORE_ADDR
, int, int))
736 de_fault (to_stopped_by_watchpoint
,
739 de_fault (to_stopped_data_address
,
740 (int (*) (struct target_ops
*, CORE_ADDR
*))
742 de_fault (to_watchpoint_addr_within_range
,
743 default_watchpoint_addr_within_range
);
744 de_fault (to_region_ok_for_hw_watchpoint
,
745 default_region_ok_for_hw_watchpoint
);
746 de_fault (to_terminal_init
,
749 de_fault (to_terminal_inferior
,
752 de_fault (to_terminal_ours_for_output
,
755 de_fault (to_terminal_ours
,
758 de_fault (to_terminal_save_ours
,
761 de_fault (to_terminal_info
,
762 default_terminal_info
);
764 (void (*) (char *, int))
766 de_fault (to_lookup_symbol
,
767 (int (*) (char *, CORE_ADDR
*))
769 de_fault (to_post_startup_inferior
,
772 de_fault (to_acknowledge_created_inferior
,
775 de_fault (to_insert_fork_catchpoint
,
778 de_fault (to_remove_fork_catchpoint
,
781 de_fault (to_insert_vfork_catchpoint
,
784 de_fault (to_remove_vfork_catchpoint
,
787 de_fault (to_insert_exec_catchpoint
,
790 de_fault (to_remove_exec_catchpoint
,
793 de_fault (to_set_syscall_catchpoint
,
794 (int (*) (int, int, int, int, int *))
796 de_fault (to_has_exited
,
797 (int (*) (int, int, int *))
799 de_fault (to_can_run
,
801 de_fault (to_notice_signals
,
804 de_fault (to_extra_thread_info
,
805 (char *(*) (struct thread_info
*))
810 current_target
.to_xfer_partial
= current_xfer_partial
;
812 (void (*) (char *, struct ui_file
*))
814 de_fault (to_pid_to_exec_file
,
818 (void (*) (void (*) (enum inferior_event_type
, void*), void*))
820 de_fault (to_async_mask
,
823 de_fault (to_thread_architecture
,
824 default_thread_architecture
);
825 current_target
.to_read_description
= NULL
;
826 de_fault (to_get_ada_task_ptid
,
827 (ptid_t (*) (long, long))
828 default_get_ada_task_ptid
);
829 de_fault (to_supports_multi_process
,
834 /* Finally, position the target-stack beneath the squashed
835 "current_target". That way code looking for a non-inherited
836 target method can quickly and simply find it. */
837 current_target
.beneath
= target_stack
;
840 setup_target_debug ();
843 /* Push a new target type into the stack of the existing target accessors,
844 possibly superseding some of the existing accessors.
846 Result is zero if the pushed target ended up on top of the stack,
847 nonzero if at least one target is on top of it.
849 Rather than allow an empty stack, we always have the dummy target at
850 the bottom stratum, so we can call the function vectors without
854 push_target (struct target_ops
*t
)
856 struct target_ops
**cur
;
858 /* Check magic number. If wrong, it probably means someone changed
859 the struct definition, but not all the places that initialize one. */
860 if (t
->to_magic
!= OPS_MAGIC
)
862 fprintf_unfiltered (gdb_stderr
,
863 "Magic number of %s target struct wrong\n",
865 internal_error (__FILE__
, __LINE__
, _("failed internal consistency check"));
868 /* Find the proper stratum to install this target in. */
869 for (cur
= &target_stack
; (*cur
) != NULL
; cur
= &(*cur
)->beneath
)
871 if ((int) (t
->to_stratum
) >= (int) (*cur
)->to_stratum
)
875 /* If there's already targets at this stratum, remove them. */
876 /* FIXME: cagney/2003-10-15: I think this should be popping all
877 targets to CUR, and not just those at this stratum level. */
878 while ((*cur
) != NULL
&& t
->to_stratum
== (*cur
)->to_stratum
)
880 /* There's already something at this stratum level. Close it,
881 and un-hook it from the stack. */
882 struct target_ops
*tmp
= (*cur
);
883 (*cur
) = (*cur
)->beneath
;
885 target_close (tmp
, 0);
888 /* We have removed all targets in our stratum, now add the new one. */
892 update_current_target ();
895 return (t
!= target_stack
);
898 /* Remove a target_ops vector from the stack, wherever it may be.
899 Return how many times it was removed (0 or 1). */
902 unpush_target (struct target_ops
*t
)
904 struct target_ops
**cur
;
905 struct target_ops
*tmp
;
907 if (t
->to_stratum
== dummy_stratum
)
908 internal_error (__FILE__
, __LINE__
,
909 "Attempt to unpush the dummy target");
911 /* Look for the specified target. Note that we assume that a target
912 can only occur once in the target stack. */
914 for (cur
= &target_stack
; (*cur
) != NULL
; cur
= &(*cur
)->beneath
)
921 return 0; /* Didn't find target_ops, quit now */
923 /* NOTE: cagney/2003-12-06: In '94 the close call was made
924 unconditional by moving it to before the above check that the
925 target was in the target stack (something about "Change the way
926 pushing and popping of targets work to support target overlays
927 and inheritance"). This doesn't make much sense - only open
928 targets should be closed. */
931 /* Unchain the target */
933 (*cur
) = (*cur
)->beneath
;
936 update_current_target ();
944 target_close (target_stack
, 0); /* Let it clean up */
945 if (unpush_target (target_stack
) == 1)
948 fprintf_unfiltered (gdb_stderr
,
949 "pop_target couldn't find target %s\n",
950 current_target
.to_shortname
);
951 internal_error (__FILE__
, __LINE__
, _("failed internal consistency check"));
955 pop_all_targets_above (enum strata above_stratum
, int quitting
)
957 while ((int) (current_target
.to_stratum
) > (int) above_stratum
)
959 target_close (target_stack
, quitting
);
960 if (!unpush_target (target_stack
))
962 fprintf_unfiltered (gdb_stderr
,
963 "pop_all_targets couldn't find target %s\n",
964 target_stack
->to_shortname
);
965 internal_error (__FILE__
, __LINE__
,
966 _("failed internal consistency check"));
973 pop_all_targets (int quitting
)
975 pop_all_targets_above (dummy_stratum
, quitting
);
978 /* Using the objfile specified in OBJFILE, find the address for the
979 current thread's thread-local storage with offset OFFSET. */
981 target_translate_tls_address (struct objfile
*objfile
, CORE_ADDR offset
)
983 volatile CORE_ADDR addr
= 0;
984 struct target_ops
*target
;
986 for (target
= current_target
.beneath
;
988 target
= target
->beneath
)
990 if (target
->to_get_thread_local_address
!= NULL
)
995 && gdbarch_fetch_tls_load_module_address_p (target_gdbarch
))
997 ptid_t ptid
= inferior_ptid
;
998 volatile struct gdb_exception ex
;
1000 TRY_CATCH (ex
, RETURN_MASK_ALL
)
1004 /* Fetch the load module address for this objfile. */
1005 lm_addr
= gdbarch_fetch_tls_load_module_address (target_gdbarch
,
1007 /* If it's 0, throw the appropriate exception. */
1009 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR
,
1010 _("TLS load module not found"));
1012 addr
= target
->to_get_thread_local_address (target
, ptid
, lm_addr
, offset
);
1014 /* If an error occurred, print TLS related messages here. Otherwise,
1015 throw the error to some higher catcher. */
1018 int objfile_is_library
= (objfile
->flags
& OBJF_SHARED
);
1022 case TLS_NO_LIBRARY_SUPPORT_ERROR
:
1023 error (_("Cannot find thread-local variables in this thread library."));
1025 case TLS_LOAD_MODULE_NOT_FOUND_ERROR
:
1026 if (objfile_is_library
)
1027 error (_("Cannot find shared library `%s' in dynamic"
1028 " linker's load module list"), objfile
->name
);
1030 error (_("Cannot find executable file `%s' in dynamic"
1031 " linker's load module list"), objfile
->name
);
1033 case TLS_NOT_ALLOCATED_YET_ERROR
:
1034 if (objfile_is_library
)
1035 error (_("The inferior has not yet allocated storage for"
1036 " thread-local variables in\n"
1037 "the shared library `%s'\n"
1039 objfile
->name
, target_pid_to_str (ptid
));
1041 error (_("The inferior has not yet allocated storage for"
1042 " thread-local variables in\n"
1043 "the executable `%s'\n"
1045 objfile
->name
, target_pid_to_str (ptid
));
1047 case TLS_GENERIC_ERROR
:
1048 if (objfile_is_library
)
1049 error (_("Cannot find thread-local storage for %s, "
1050 "shared library %s:\n%s"),
1051 target_pid_to_str (ptid
),
1052 objfile
->name
, ex
.message
);
1054 error (_("Cannot find thread-local storage for %s, "
1055 "executable file %s:\n%s"),
1056 target_pid_to_str (ptid
),
1057 objfile
->name
, ex
.message
);
1060 throw_exception (ex
);
1065 /* It wouldn't be wrong here to try a gdbarch method, too; finding
1066 TLS is an ABI-specific thing. But we don't do that yet. */
1068 error (_("Cannot find thread-local variables on this target"));
1074 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
1076 /* target_read_string -- read a null terminated string, up to LEN bytes,
1077 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
1078 Set *STRING to a pointer to malloc'd memory containing the data; the caller
1079 is responsible for freeing it. Return the number of bytes successfully
1083 target_read_string (CORE_ADDR memaddr
, char **string
, int len
, int *errnop
)
1085 int tlen
, origlen
, offset
, i
;
1089 int buffer_allocated
;
1091 unsigned int nbytes_read
= 0;
1093 gdb_assert (string
);
1095 /* Small for testing. */
1096 buffer_allocated
= 4;
1097 buffer
= xmalloc (buffer_allocated
);
1104 tlen
= MIN (len
, 4 - (memaddr
& 3));
1105 offset
= memaddr
& 3;
1107 errcode
= target_read_memory (memaddr
& ~3, buf
, sizeof buf
);
1110 /* The transfer request might have crossed the boundary to an
1111 unallocated region of memory. Retry the transfer, requesting
1115 errcode
= target_read_memory (memaddr
, buf
, 1);
1120 if (bufptr
- buffer
+ tlen
> buffer_allocated
)
1123 bytes
= bufptr
- buffer
;
1124 buffer_allocated
*= 2;
1125 buffer
= xrealloc (buffer
, buffer_allocated
);
1126 bufptr
= buffer
+ bytes
;
1129 for (i
= 0; i
< tlen
; i
++)
1131 *bufptr
++ = buf
[i
+ offset
];
1132 if (buf
[i
+ offset
] == '\000')
1134 nbytes_read
+= i
+ 1;
1141 nbytes_read
+= tlen
;
1150 struct target_section_table
*
1151 target_get_section_table (struct target_ops
*target
)
1153 struct target_ops
*t
;
1156 fprintf_unfiltered (gdb_stdlog
, "target_get_section_table ()\n");
1158 for (t
= target
; t
!= NULL
; t
= t
->beneath
)
1159 if (t
->to_get_section_table
!= NULL
)
1160 return (*t
->to_get_section_table
) (t
);
1165 /* Find a section containing ADDR. */
1167 struct target_section
*
1168 target_section_by_addr (struct target_ops
*target
, CORE_ADDR addr
)
1170 struct target_section_table
*table
= target_get_section_table (target
);
1171 struct target_section
*secp
;
1176 for (secp
= table
->sections
; secp
< table
->sections_end
; secp
++)
1178 if (addr
>= secp
->addr
&& addr
< secp
->endaddr
)
1184 /* Perform a partial memory transfer. The arguments and return
1185 value are just as for target_xfer_partial. */
1188 memory_xfer_partial (struct target_ops
*ops
, enum target_object object
,
1189 void *readbuf
, const void *writebuf
, ULONGEST memaddr
,
1194 struct mem_region
*region
;
1195 struct inferior
*inf
;
1197 /* Zero length requests are ok and require no work. */
1201 /* For accesses to unmapped overlay sections, read directly from
1202 files. Must do this first, as MEMADDR may need adjustment. */
1203 if (readbuf
!= NULL
&& overlay_debugging
)
1205 struct obj_section
*section
= find_pc_overlay (memaddr
);
1206 if (pc_in_unmapped_range (memaddr
, section
))
1208 struct target_section_table
*table
1209 = target_get_section_table (ops
);
1210 const char *section_name
= section
->the_bfd_section
->name
;
1211 memaddr
= overlay_mapped_address (memaddr
, section
);
1212 return section_table_xfer_memory_partial (readbuf
, writebuf
,
1215 table
->sections_end
,
1220 /* Try the executable files, if "trust-readonly-sections" is set. */
1221 if (readbuf
!= NULL
&& trust_readonly
)
1223 struct target_section
*secp
;
1224 struct target_section_table
*table
;
1226 secp
= target_section_by_addr (ops
, memaddr
);
1228 && (bfd_get_section_flags (secp
->bfd
, secp
->the_bfd_section
)
1231 table
= target_get_section_table (ops
);
1232 return section_table_xfer_memory_partial (readbuf
, writebuf
,
1235 table
->sections_end
,
1240 /* Try GDB's internal data cache. */
1241 region
= lookup_mem_region (memaddr
);
1242 /* region->hi == 0 means there's no upper bound. */
1243 if (memaddr
+ len
< region
->hi
|| region
->hi
== 0)
1246 reg_len
= region
->hi
- memaddr
;
1248 switch (region
->attrib
.mode
)
1251 if (writebuf
!= NULL
)
1256 if (readbuf
!= NULL
)
1261 /* We only support writing to flash during "load" for now. */
1262 if (writebuf
!= NULL
)
1263 error (_("Writing to flash memory forbidden in this context"));
1270 inf
= find_inferior_pid (ptid_get_pid (inferior_ptid
));
1273 && (region
->attrib
.cache
1274 || (stack_cache_enabled_p
&& object
== TARGET_OBJECT_STACK_MEMORY
)))
1276 if (readbuf
!= NULL
)
1277 res
= dcache_xfer_memory (ops
, target_dcache
, memaddr
, readbuf
,
1280 /* FIXME drow/2006-08-09: If we're going to preserve const
1281 correctness dcache_xfer_memory should take readbuf and
1283 res
= dcache_xfer_memory (ops
, target_dcache
, memaddr
,
1290 if (readbuf
&& !show_memory_breakpoints
)
1291 breakpoint_restore_shadows (readbuf
, memaddr
, reg_len
);
1296 /* If none of those methods found the memory we wanted, fall back
1297 to a target partial transfer. Normally a single call to
1298 to_xfer_partial is enough; if it doesn't recognize an object
1299 it will call the to_xfer_partial of the next target down.
1300 But for memory this won't do. Memory is the only target
1301 object which can be read from more than one valid target.
1302 A core file, for instance, could have some of memory but
1303 delegate other bits to the target below it. So, we must
1304 manually try all targets. */
1308 res
= ops
->to_xfer_partial (ops
, TARGET_OBJECT_MEMORY
, NULL
,
1309 readbuf
, writebuf
, memaddr
, reg_len
);
1313 /* We want to continue past core files to executables, but not
1314 past a running target's memory. */
1315 if (ops
->to_has_all_memory (ops
))
1320 while (ops
!= NULL
);
1322 if (readbuf
&& !show_memory_breakpoints
)
1323 breakpoint_restore_shadows (readbuf
, memaddr
, reg_len
);
1325 /* Make sure the cache gets updated no matter what - if we are writing
1326 to the stack. Even if this write is not tagged as such, we still need
1327 to update the cache. */
1332 && !region
->attrib
.cache
1333 && stack_cache_enabled_p
1334 && object
!= TARGET_OBJECT_STACK_MEMORY
)
1336 dcache_update (target_dcache
, memaddr
, (void *) writebuf
, res
);
1339 /* If we still haven't got anything, return the last error. We
1345 restore_show_memory_breakpoints (void *arg
)
1347 show_memory_breakpoints
= (uintptr_t) arg
;
1351 make_show_memory_breakpoints_cleanup (int show
)
1353 int current
= show_memory_breakpoints
;
1354 show_memory_breakpoints
= show
;
1356 return make_cleanup (restore_show_memory_breakpoints
,
1357 (void *) (uintptr_t) current
);
1361 target_xfer_partial (struct target_ops
*ops
,
1362 enum target_object object
, const char *annex
,
1363 void *readbuf
, const void *writebuf
,
1364 ULONGEST offset
, LONGEST len
)
1368 gdb_assert (ops
->to_xfer_partial
!= NULL
);
1370 /* If this is a memory transfer, let the memory-specific code
1371 have a look at it instead. Memory transfers are more
1373 if (object
== TARGET_OBJECT_MEMORY
|| object
== TARGET_OBJECT_STACK_MEMORY
)
1374 retval
= memory_xfer_partial (ops
, object
, readbuf
,
1375 writebuf
, offset
, len
);
1378 enum target_object raw_object
= object
;
1380 /* If this is a raw memory transfer, request the normal
1381 memory object from other layers. */
1382 if (raw_object
== TARGET_OBJECT_RAW_MEMORY
)
1383 raw_object
= TARGET_OBJECT_MEMORY
;
1385 retval
= ops
->to_xfer_partial (ops
, raw_object
, annex
, readbuf
,
1386 writebuf
, offset
, len
);
1391 const unsigned char *myaddr
= NULL
;
1393 fprintf_unfiltered (gdb_stdlog
,
1394 "%s:target_xfer_partial (%d, %s, %s, %s, %s, %s) = %s",
1397 (annex
? annex
: "(null)"),
1398 host_address_to_string (readbuf
),
1399 host_address_to_string (writebuf
),
1400 core_addr_to_string_nz (offset
),
1401 plongest (len
), plongest (retval
));
1407 if (retval
> 0 && myaddr
!= NULL
)
1411 fputs_unfiltered (", bytes =", gdb_stdlog
);
1412 for (i
= 0; i
< retval
; i
++)
1414 if ((((intptr_t) &(myaddr
[i
])) & 0xf) == 0)
1416 if (targetdebug
< 2 && i
> 0)
1418 fprintf_unfiltered (gdb_stdlog
, " ...");
1421 fprintf_unfiltered (gdb_stdlog
, "\n");
1424 fprintf_unfiltered (gdb_stdlog
, " %02x", myaddr
[i
] & 0xff);
1428 fputc_unfiltered ('\n', gdb_stdlog
);
1433 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
1434 GDB's memory at MYADDR. Returns either 0 for success or an errno value
1435 if any error occurs.
1437 If an error occurs, no guarantee is made about the contents of the data at
1438 MYADDR. In particular, the caller should not depend upon partial reads
1439 filling the buffer with good data. There is no way for the caller to know
1440 how much good data might have been transfered anyway. Callers that can
1441 deal with partial reads should call target_read (which will retry until
1442 it makes no progress, and then return how much was transferred). */
1445 target_read_memory (CORE_ADDR memaddr
, gdb_byte
*myaddr
, int len
)
1447 /* Dispatch to the topmost target, not the flattened current_target.
1448 Memory accesses check target->to_has_(all_)memory, and the
1449 flattened target doesn't inherit those. */
1450 if (target_read (current_target
.beneath
, TARGET_OBJECT_MEMORY
, NULL
,
1451 myaddr
, memaddr
, len
) == len
)
1457 /* Like target_read_memory, but specify explicitly that this is a read from
1458 the target's stack. This may trigger different cache behavior. */
1461 target_read_stack (CORE_ADDR memaddr
, gdb_byte
*myaddr
, int len
)
1463 /* Dispatch to the topmost target, not the flattened current_target.
1464 Memory accesses check target->to_has_(all_)memory, and the
1465 flattened target doesn't inherit those. */
1467 if (target_read (current_target
.beneath
, TARGET_OBJECT_STACK_MEMORY
, NULL
,
1468 myaddr
, memaddr
, len
) == len
)
1475 target_write_memory (CORE_ADDR memaddr
, const gdb_byte
*myaddr
, int len
)
1477 /* Dispatch to the topmost target, not the flattened current_target.
1478 Memory accesses check target->to_has_(all_)memory, and the
1479 flattened target doesn't inherit those. */
1480 if (target_write (current_target
.beneath
, TARGET_OBJECT_MEMORY
, NULL
,
1481 myaddr
, memaddr
, len
) == len
)
1487 /* Fetch the target's memory map. */
1490 target_memory_map (void)
1492 VEC(mem_region_s
) *result
;
1493 struct mem_region
*last_one
, *this_one
;
1495 struct target_ops
*t
;
1498 fprintf_unfiltered (gdb_stdlog
, "target_memory_map ()\n");
1500 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
1501 if (t
->to_memory_map
!= NULL
)
1507 result
= t
->to_memory_map (t
);
1511 qsort (VEC_address (mem_region_s
, result
),
1512 VEC_length (mem_region_s
, result
),
1513 sizeof (struct mem_region
), mem_region_cmp
);
1515 /* Check that regions do not overlap. Simultaneously assign
1516 a numbering for the "mem" commands to use to refer to
1519 for (ix
= 0; VEC_iterate (mem_region_s
, result
, ix
, this_one
); ix
++)
1521 this_one
->number
= ix
;
1523 if (last_one
&& last_one
->hi
> this_one
->lo
)
1525 warning (_("Overlapping regions in memory map: ignoring"));
1526 VEC_free (mem_region_s
, result
);
1529 last_one
= this_one
;
1536 target_flash_erase (ULONGEST address
, LONGEST length
)
1538 struct target_ops
*t
;
1540 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
1541 if (t
->to_flash_erase
!= NULL
)
1544 fprintf_unfiltered (gdb_stdlog
, "target_flash_erase (%s, %s)\n",
1545 hex_string (address
), phex (length
, 0));
1546 t
->to_flash_erase (t
, address
, length
);
1554 target_flash_done (void)
1556 struct target_ops
*t
;
1558 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
1559 if (t
->to_flash_done
!= NULL
)
1562 fprintf_unfiltered (gdb_stdlog
, "target_flash_done\n");
1563 t
->to_flash_done (t
);
1571 show_trust_readonly (struct ui_file
*file
, int from_tty
,
1572 struct cmd_list_element
*c
, const char *value
)
1574 fprintf_filtered (file
, _("\
1575 Mode for reading from readonly sections is %s.\n"),
1579 /* More generic transfers. */
1582 default_xfer_partial (struct target_ops
*ops
, enum target_object object
,
1583 const char *annex
, gdb_byte
*readbuf
,
1584 const gdb_byte
*writebuf
, ULONGEST offset
, LONGEST len
)
1586 if (object
== TARGET_OBJECT_MEMORY
1587 && ops
->deprecated_xfer_memory
!= NULL
)
1588 /* If available, fall back to the target's
1589 "deprecated_xfer_memory" method. */
1593 if (writebuf
!= NULL
)
1595 void *buffer
= xmalloc (len
);
1596 struct cleanup
*cleanup
= make_cleanup (xfree
, buffer
);
1597 memcpy (buffer
, writebuf
, len
);
1598 xfered
= ops
->deprecated_xfer_memory (offset
, buffer
, len
,
1599 1/*write*/, NULL
, ops
);
1600 do_cleanups (cleanup
);
1602 if (readbuf
!= NULL
)
1603 xfered
= ops
->deprecated_xfer_memory (offset
, readbuf
, len
,
1604 0/*read*/, NULL
, ops
);
1607 else if (xfered
== 0 && errno
== 0)
1608 /* "deprecated_xfer_memory" uses 0, cross checked against
1609 ERRNO as one indication of an error. */
1614 else if (ops
->beneath
!= NULL
)
1615 return ops
->beneath
->to_xfer_partial (ops
->beneath
, object
, annex
,
1616 readbuf
, writebuf
, offset
, len
);
1621 /* The xfer_partial handler for the topmost target. Unlike the default,
1622 it does not need to handle memory specially; it just passes all
1623 requests down the stack. */
1626 current_xfer_partial (struct target_ops
*ops
, enum target_object object
,
1627 const char *annex
, gdb_byte
*readbuf
,
1628 const gdb_byte
*writebuf
, ULONGEST offset
, LONGEST len
)
1630 if (ops
->beneath
!= NULL
)
1631 return ops
->beneath
->to_xfer_partial (ops
->beneath
, object
, annex
,
1632 readbuf
, writebuf
, offset
, len
);
1637 /* Target vector read/write partial wrapper functions.
1639 NOTE: cagney/2003-10-21: I wonder if having "to_xfer_partial
1640 (inbuf, outbuf)", instead of separate read/write methods, make life
1644 target_read_partial (struct target_ops
*ops
,
1645 enum target_object object
,
1646 const char *annex
, gdb_byte
*buf
,
1647 ULONGEST offset
, LONGEST len
)
1649 return target_xfer_partial (ops
, object
, annex
, buf
, NULL
, offset
, len
);
1653 target_write_partial (struct target_ops
*ops
,
1654 enum target_object object
,
1655 const char *annex
, const gdb_byte
*buf
,
1656 ULONGEST offset
, LONGEST len
)
1658 return target_xfer_partial (ops
, object
, annex
, NULL
, buf
, offset
, len
);
1661 /* Wrappers to perform the full transfer. */
1663 target_read (struct target_ops
*ops
,
1664 enum target_object object
,
1665 const char *annex
, gdb_byte
*buf
,
1666 ULONGEST offset
, LONGEST len
)
1669 while (xfered
< len
)
1671 LONGEST xfer
= target_read_partial (ops
, object
, annex
,
1672 (gdb_byte
*) buf
+ xfered
,
1673 offset
+ xfered
, len
- xfered
);
1674 /* Call an observer, notifying them of the xfer progress? */
1686 target_read_until_error (struct target_ops
*ops
,
1687 enum target_object object
,
1688 const char *annex
, gdb_byte
*buf
,
1689 ULONGEST offset
, LONGEST len
)
1692 while (xfered
< len
)
1694 LONGEST xfer
= target_read_partial (ops
, object
, annex
,
1695 (gdb_byte
*) buf
+ xfered
,
1696 offset
+ xfered
, len
- xfered
);
1697 /* Call an observer, notifying them of the xfer progress? */
1702 /* We've got an error. Try to read in smaller blocks. */
1703 ULONGEST start
= offset
+ xfered
;
1704 ULONGEST remaining
= len
- xfered
;
1707 /* If an attempt was made to read a random memory address,
1708 it's likely that the very first byte is not accessible.
1709 Try reading the first byte, to avoid doing log N tries
1711 xfer
= target_read_partial (ops
, object
, annex
,
1712 (gdb_byte
*) buf
+ xfered
, start
, 1);
1721 xfer
= target_read_partial (ops
, object
, annex
,
1722 (gdb_byte
*) buf
+ xfered
,
1732 /* We have successfully read the first half. So, the
1733 error must be in the second half. Adjust start and
1734 remaining to point at the second half. */
1751 /* An alternative to target_write with progress callbacks. */
1754 target_write_with_progress (struct target_ops
*ops
,
1755 enum target_object object
,
1756 const char *annex
, const gdb_byte
*buf
,
1757 ULONGEST offset
, LONGEST len
,
1758 void (*progress
) (ULONGEST
, void *), void *baton
)
1762 /* Give the progress callback a chance to set up. */
1764 (*progress
) (0, baton
);
1766 while (xfered
< len
)
1768 LONGEST xfer
= target_write_partial (ops
, object
, annex
,
1769 (gdb_byte
*) buf
+ xfered
,
1770 offset
+ xfered
, len
- xfered
);
1778 (*progress
) (xfer
, baton
);
1787 target_write (struct target_ops
*ops
,
1788 enum target_object object
,
1789 const char *annex
, const gdb_byte
*buf
,
1790 ULONGEST offset
, LONGEST len
)
1792 return target_write_with_progress (ops
, object
, annex
, buf
, offset
, len
,
1796 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1797 the size of the transferred data. PADDING additional bytes are
1798 available in *BUF_P. This is a helper function for
1799 target_read_alloc; see the declaration of that function for more
1803 target_read_alloc_1 (struct target_ops
*ops
, enum target_object object
,
1804 const char *annex
, gdb_byte
**buf_p
, int padding
)
1806 size_t buf_alloc
, buf_pos
;
1810 /* This function does not have a length parameter; it reads the
1811 entire OBJECT). Also, it doesn't support objects fetched partly
1812 from one target and partly from another (in a different stratum,
1813 e.g. a core file and an executable). Both reasons make it
1814 unsuitable for reading memory. */
1815 gdb_assert (object
!= TARGET_OBJECT_MEMORY
);
1817 /* Start by reading up to 4K at a time. The target will throttle
1818 this number down if necessary. */
1820 buf
= xmalloc (buf_alloc
);
1824 n
= target_read_partial (ops
, object
, annex
, &buf
[buf_pos
],
1825 buf_pos
, buf_alloc
- buf_pos
- padding
);
1828 /* An error occurred. */
1834 /* Read all there was. */
1844 /* If the buffer is filling up, expand it. */
1845 if (buf_alloc
< buf_pos
* 2)
1848 buf
= xrealloc (buf
, buf_alloc
);
1855 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1856 the size of the transferred data. See the declaration in "target.h"
1857 function for more information about the return value. */
1860 target_read_alloc (struct target_ops
*ops
, enum target_object object
,
1861 const char *annex
, gdb_byte
**buf_p
)
1863 return target_read_alloc_1 (ops
, object
, annex
, buf_p
, 0);
1866 /* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
1867 returned as a string, allocated using xmalloc. If an error occurs
1868 or the transfer is unsupported, NULL is returned. Empty objects
1869 are returned as allocated but empty strings. A warning is issued
1870 if the result contains any embedded NUL bytes. */
1873 target_read_stralloc (struct target_ops
*ops
, enum target_object object
,
1877 LONGEST transferred
;
1879 transferred
= target_read_alloc_1 (ops
, object
, annex
, &buffer
, 1);
1881 if (transferred
< 0)
1884 if (transferred
== 0)
1885 return xstrdup ("");
1887 buffer
[transferred
] = 0;
1888 if (strlen (buffer
) < transferred
)
1889 warning (_("target object %d, annex %s, "
1890 "contained unexpected null characters"),
1891 (int) object
, annex
? annex
: "(none)");
1893 return (char *) buffer
;
1896 /* Memory transfer methods. */
1899 get_target_memory (struct target_ops
*ops
, CORE_ADDR addr
, gdb_byte
*buf
,
1902 /* This method is used to read from an alternate, non-current
1903 target. This read must bypass the overlay support (as symbols
1904 don't match this target), and GDB's internal cache (wrong cache
1905 for this target). */
1906 if (target_read (ops
, TARGET_OBJECT_RAW_MEMORY
, NULL
, buf
, addr
, len
)
1908 memory_error (EIO
, addr
);
1912 get_target_memory_unsigned (struct target_ops
*ops
,
1913 CORE_ADDR addr
, int len
, enum bfd_endian byte_order
)
1915 gdb_byte buf
[sizeof (ULONGEST
)];
1917 gdb_assert (len
<= sizeof (buf
));
1918 get_target_memory (ops
, addr
, buf
, len
);
1919 return extract_unsigned_integer (buf
, len
, byte_order
);
1923 target_info (char *args
, int from_tty
)
1925 struct target_ops
*t
;
1926 int has_all_mem
= 0;
1928 if (symfile_objfile
!= NULL
)
1929 printf_unfiltered (_("Symbols from \"%s\".\n"), symfile_objfile
->name
);
1931 for (t
= target_stack
; t
!= NULL
; t
= t
->beneath
)
1933 if (!(*t
->to_has_memory
) (t
))
1936 if ((int) (t
->to_stratum
) <= (int) dummy_stratum
)
1939 printf_unfiltered (_("\tWhile running this, GDB does not access memory from...\n"));
1940 printf_unfiltered ("%s:\n", t
->to_longname
);
1941 (t
->to_files_info
) (t
);
1942 has_all_mem
= (*t
->to_has_all_memory
) (t
);
1946 /* This function is called before any new inferior is created, e.g.
1947 by running a program, attaching, or connecting to a target.
1948 It cleans up any state from previous invocations which might
1949 change between runs. This is a subset of what target_preopen
1950 resets (things which might change between targets). */
1953 target_pre_inferior (int from_tty
)
1955 /* Clear out solib state. Otherwise the solib state of the previous
1956 inferior might have survived and is entirely wrong for the new
1957 target. This has been observed on GNU/Linux using glibc 2.3. How
1969 Cannot access memory at address 0xdeadbeef
1972 /* In some OSs, the shared library list is the same/global/shared
1973 across inferiors. If code is shared between processes, so are
1974 memory regions and features. */
1975 if (!gdbarch_has_global_solist (target_gdbarch
))
1977 no_shared_libraries (NULL
, from_tty
);
1979 invalidate_target_mem_regions ();
1981 target_clear_description ();
1985 /* Callback for iterate_over_inferiors. Gets rid of the given
1989 dispose_inferior (struct inferior
*inf
, void *args
)
1991 struct thread_info
*thread
;
1993 thread
= any_thread_of_process (inf
->pid
);
1996 switch_to_thread (thread
->ptid
);
1998 /* Core inferiors actually should be detached, not killed. */
1999 if (target_has_execution
)
2002 target_detach (NULL
, 0);
2008 /* This is to be called by the open routine before it does
2012 target_preopen (int from_tty
)
2016 if (have_inferiors ())
2019 || !have_live_inferiors ()
2020 || query (_("A program is being debugged already. Kill it? ")))
2021 iterate_over_inferiors (dispose_inferior
, NULL
);
2023 error (_("Program not killed."));
2026 /* Calling target_kill may remove the target from the stack. But if
2027 it doesn't (which seems like a win for UDI), remove it now. */
2028 /* Leave the exec target, though. The user may be switching from a
2029 live process to a core of the same program. */
2030 pop_all_targets_above (file_stratum
, 0);
2032 target_pre_inferior (from_tty
);
2035 /* Detach a target after doing deferred register stores. */
2038 target_detach (char *args
, int from_tty
)
2040 struct target_ops
* t
;
2042 if (gdbarch_has_global_breakpoints (target_gdbarch
))
2043 /* Don't remove global breakpoints here. They're removed on
2044 disconnection from the target. */
2047 /* If we're in breakpoints-always-inserted mode, have to remove
2048 them before detaching. */
2049 remove_breakpoints ();
2051 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2053 if (t
->to_detach
!= NULL
)
2055 t
->to_detach (t
, args
, from_tty
);
2057 fprintf_unfiltered (gdb_stdlog
, "target_detach (%s, %d)\n",
2063 internal_error (__FILE__
, __LINE__
, "could not find a target to detach");
2067 target_disconnect (char *args
, int from_tty
)
2069 struct target_ops
*t
;
2071 /* If we're in breakpoints-always-inserted mode or if breakpoints
2072 are global across processes, we have to remove them before
2074 remove_breakpoints ();
2076 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2077 if (t
->to_disconnect
!= NULL
)
2080 fprintf_unfiltered (gdb_stdlog
, "target_disconnect (%s, %d)\n",
2082 t
->to_disconnect (t
, args
, from_tty
);
2090 target_wait (ptid_t ptid
, struct target_waitstatus
*status
, int options
)
2092 struct target_ops
*t
;
2094 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2096 if (t
->to_wait
!= NULL
)
2098 ptid_t retval
= (*t
->to_wait
) (t
, ptid
, status
, options
);
2102 char *status_string
;
2104 status_string
= target_waitstatus_to_string (status
);
2105 fprintf_unfiltered (gdb_stdlog
,
2106 "target_wait (%d, status) = %d, %s\n",
2107 PIDGET (ptid
), PIDGET (retval
),
2109 xfree (status_string
);
2120 target_pid_to_str (ptid_t ptid
)
2122 struct target_ops
*t
;
2124 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2126 if (t
->to_pid_to_str
!= NULL
)
2127 return (*t
->to_pid_to_str
) (t
, ptid
);
2130 return normal_pid_to_str (ptid
);
2134 target_resume (ptid_t ptid
, int step
, enum target_signal signal
)
2136 struct target_ops
*t
;
2138 target_dcache_invalidate ();
2140 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2142 if (t
->to_resume
!= NULL
)
2144 t
->to_resume (t
, ptid
, step
, signal
);
2146 fprintf_unfiltered (gdb_stdlog
, "target_resume (%d, %s, %s)\n",
2148 step
? "step" : "continue",
2149 target_signal_to_name (signal
));
2151 set_executing (ptid
, 1);
2152 set_running (ptid
, 1);
2153 clear_inline_frame_state (ptid
);
2160 /* Look through the list of possible targets for a target that can
2164 target_follow_fork (int follow_child
)
2166 struct target_ops
*t
;
2168 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2170 if (t
->to_follow_fork
!= NULL
)
2172 int retval
= t
->to_follow_fork (t
, follow_child
);
2174 fprintf_unfiltered (gdb_stdlog
, "target_follow_fork (%d) = %d\n",
2175 follow_child
, retval
);
2180 /* Some target returned a fork event, but did not know how to follow it. */
2181 internal_error (__FILE__
, __LINE__
,
2182 "could not find a target to follow fork");
2186 target_mourn_inferior (void)
2188 struct target_ops
*t
;
2189 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2191 if (t
->to_mourn_inferior
!= NULL
)
2193 t
->to_mourn_inferior (t
);
2195 fprintf_unfiltered (gdb_stdlog
, "target_mourn_inferior ()\n");
2197 /* We no longer need to keep handles on any of the object files.
2198 Make sure to release them to avoid unnecessarily locking any
2199 of them while we're not actually debugging. */
2200 bfd_cache_close_all ();
2206 internal_error (__FILE__
, __LINE__
,
2207 "could not find a target to follow mourn inferiour");
2210 /* Look for a target which can describe architectural features, starting
2211 from TARGET. If we find one, return its description. */
2213 const struct target_desc
*
2214 target_read_description (struct target_ops
*target
)
2216 struct target_ops
*t
;
2218 for (t
= target
; t
!= NULL
; t
= t
->beneath
)
2219 if (t
->to_read_description
!= NULL
)
2221 const struct target_desc
*tdesc
;
2223 tdesc
= t
->to_read_description (t
);
2231 /* The default implementation of to_search_memory.
2232 This implements a basic search of memory, reading target memory and
2233 performing the search here (as opposed to performing the search in on the
2234 target side with, for example, gdbserver). */
2237 simple_search_memory (struct target_ops
*ops
,
2238 CORE_ADDR start_addr
, ULONGEST search_space_len
,
2239 const gdb_byte
*pattern
, ULONGEST pattern_len
,
2240 CORE_ADDR
*found_addrp
)
2242 /* NOTE: also defined in find.c testcase. */
2243 #define SEARCH_CHUNK_SIZE 16000
2244 const unsigned chunk_size
= SEARCH_CHUNK_SIZE
;
2245 /* Buffer to hold memory contents for searching. */
2246 gdb_byte
*search_buf
;
2247 unsigned search_buf_size
;
2248 struct cleanup
*old_cleanups
;
2250 search_buf_size
= chunk_size
+ pattern_len
- 1;
2252 /* No point in trying to allocate a buffer larger than the search space. */
2253 if (search_space_len
< search_buf_size
)
2254 search_buf_size
= search_space_len
;
2256 search_buf
= malloc (search_buf_size
);
2257 if (search_buf
== NULL
)
2258 error (_("Unable to allocate memory to perform the search."));
2259 old_cleanups
= make_cleanup (free_current_contents
, &search_buf
);
2261 /* Prime the search buffer. */
2263 if (target_read (ops
, TARGET_OBJECT_MEMORY
, NULL
,
2264 search_buf
, start_addr
, search_buf_size
) != search_buf_size
)
2266 warning (_("Unable to access target memory at %s, halting search."),
2267 hex_string (start_addr
));
2268 do_cleanups (old_cleanups
);
2272 /* Perform the search.
2274 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
2275 When we've scanned N bytes we copy the trailing bytes to the start and
2276 read in another N bytes. */
2278 while (search_space_len
>= pattern_len
)
2280 gdb_byte
*found_ptr
;
2281 unsigned nr_search_bytes
= min (search_space_len
, search_buf_size
);
2283 found_ptr
= memmem (search_buf
, nr_search_bytes
,
2284 pattern
, pattern_len
);
2286 if (found_ptr
!= NULL
)
2288 CORE_ADDR found_addr
= start_addr
+ (found_ptr
- search_buf
);
2289 *found_addrp
= found_addr
;
2290 do_cleanups (old_cleanups
);
2294 /* Not found in this chunk, skip to next chunk. */
2296 /* Don't let search_space_len wrap here, it's unsigned. */
2297 if (search_space_len
>= chunk_size
)
2298 search_space_len
-= chunk_size
;
2300 search_space_len
= 0;
2302 if (search_space_len
>= pattern_len
)
2304 unsigned keep_len
= search_buf_size
- chunk_size
;
2305 CORE_ADDR read_addr
= start_addr
+ keep_len
;
2308 /* Copy the trailing part of the previous iteration to the front
2309 of the buffer for the next iteration. */
2310 gdb_assert (keep_len
== pattern_len
- 1);
2311 memcpy (search_buf
, search_buf
+ chunk_size
, keep_len
);
2313 nr_to_read
= min (search_space_len
- keep_len
, chunk_size
);
2315 if (target_read (ops
, TARGET_OBJECT_MEMORY
, NULL
,
2316 search_buf
+ keep_len
, read_addr
,
2317 nr_to_read
) != nr_to_read
)
2319 warning (_("Unable to access target memory at %s, halting search."),
2320 hex_string (read_addr
));
2321 do_cleanups (old_cleanups
);
2325 start_addr
+= chunk_size
;
2331 do_cleanups (old_cleanups
);
2335 /* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2336 sequence of bytes in PATTERN with length PATTERN_LEN.
2338 The result is 1 if found, 0 if not found, and -1 if there was an error
2339 requiring halting of the search (e.g. memory read error).
2340 If the pattern is found the address is recorded in FOUND_ADDRP. */
2343 target_search_memory (CORE_ADDR start_addr
, ULONGEST search_space_len
,
2344 const gdb_byte
*pattern
, ULONGEST pattern_len
,
2345 CORE_ADDR
*found_addrp
)
2347 struct target_ops
*t
;
2350 /* We don't use INHERIT to set current_target.to_search_memory,
2351 so we have to scan the target stack and handle targetdebug
2355 fprintf_unfiltered (gdb_stdlog
, "target_search_memory (%s, ...)\n",
2356 hex_string (start_addr
));
2358 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2359 if (t
->to_search_memory
!= NULL
)
2364 found
= t
->to_search_memory (t
, start_addr
, search_space_len
,
2365 pattern
, pattern_len
, found_addrp
);
2369 /* If a special version of to_search_memory isn't available, use the
2371 found
= simple_search_memory (current_target
.beneath
,
2372 start_addr
, search_space_len
,
2373 pattern
, pattern_len
, found_addrp
);
2377 fprintf_unfiltered (gdb_stdlog
, " = %d\n", found
);
2382 /* Look through the currently pushed targets. If none of them will
2383 be able to restart the currently running process, issue an error
2387 target_require_runnable (void)
2389 struct target_ops
*t
;
2391 for (t
= target_stack
; t
!= NULL
; t
= t
->beneath
)
2393 /* If this target knows how to create a new program, then
2394 assume we will still be able to after killing the current
2395 one. Either killing and mourning will not pop T, or else
2396 find_default_run_target will find it again. */
2397 if (t
->to_create_inferior
!= NULL
)
2400 /* Do not worry about thread_stratum targets that can not
2401 create inferiors. Assume they will be pushed again if
2402 necessary, and continue to the process_stratum. */
2403 if (t
->to_stratum
== thread_stratum
2404 || t
->to_stratum
== arch_stratum
)
2408 The \"%s\" target does not support \"run\". Try \"help target\" or \"continue\"."),
2412 /* This function is only called if the target is running. In that
2413 case there should have been a process_stratum target and it
2414 should either know how to create inferiors, or not... */
2415 internal_error (__FILE__
, __LINE__
, "No targets found");
2418 /* Look through the list of possible targets for a target that can
2419 execute a run or attach command without any other data. This is
2420 used to locate the default process stratum.
2422 If DO_MESG is not NULL, the result is always valid (error() is
2423 called for errors); else, return NULL on error. */
2425 static struct target_ops
*
2426 find_default_run_target (char *do_mesg
)
2428 struct target_ops
**t
;
2429 struct target_ops
*runable
= NULL
;
2434 for (t
= target_structs
; t
< target_structs
+ target_struct_size
;
2437 if ((*t
)->to_can_run
&& target_can_run (*t
))
2447 error (_("Don't know how to %s. Try \"help target\"."), do_mesg
);
2456 find_default_attach (struct target_ops
*ops
, char *args
, int from_tty
)
2458 struct target_ops
*t
;
2460 t
= find_default_run_target ("attach");
2461 (t
->to_attach
) (t
, args
, from_tty
);
2466 find_default_create_inferior (struct target_ops
*ops
,
2467 char *exec_file
, char *allargs
, char **env
,
2470 struct target_ops
*t
;
2472 t
= find_default_run_target ("run");
2473 (t
->to_create_inferior
) (t
, exec_file
, allargs
, env
, from_tty
);
2478 find_default_can_async_p (void)
2480 struct target_ops
*t
;
2482 /* This may be called before the target is pushed on the stack;
2483 look for the default process stratum. If there's none, gdb isn't
2484 configured with a native debugger, and target remote isn't
2486 t
= find_default_run_target (NULL
);
2487 if (t
&& t
->to_can_async_p
)
2488 return (t
->to_can_async_p
) ();
2493 find_default_is_async_p (void)
2495 struct target_ops
*t
;
2497 /* This may be called before the target is pushed on the stack;
2498 look for the default process stratum. If there's none, gdb isn't
2499 configured with a native debugger, and target remote isn't
2501 t
= find_default_run_target (NULL
);
2502 if (t
&& t
->to_is_async_p
)
2503 return (t
->to_is_async_p
) ();
2508 find_default_supports_non_stop (void)
2510 struct target_ops
*t
;
2512 t
= find_default_run_target (NULL
);
2513 if (t
&& t
->to_supports_non_stop
)
2514 return (t
->to_supports_non_stop
) ();
2519 target_supports_non_stop (void)
2521 struct target_ops
*t
;
2522 for (t
= ¤t_target
; t
!= NULL
; t
= t
->beneath
)
2523 if (t
->to_supports_non_stop
)
2524 return t
->to_supports_non_stop ();
2531 target_get_osdata (const char *type
)
2534 struct target_ops
*t
;
2536 /* If we're already connected to something that can get us OS
2537 related data, use it. Otherwise, try using the native
2539 if (current_target
.to_stratum
>= process_stratum
)
2540 t
= current_target
.beneath
;
2542 t
= find_default_run_target ("get OS data");
2547 return target_read_stralloc (t
, TARGET_OBJECT_OSDATA
, type
);
2551 default_region_ok_for_hw_watchpoint (CORE_ADDR addr
, int len
)
2553 return (len
<= gdbarch_ptr_bit (target_gdbarch
) / TARGET_CHAR_BIT
);
2557 default_watchpoint_addr_within_range (struct target_ops
*target
,
2559 CORE_ADDR start
, int length
)
2561 return addr
>= start
&& addr
< start
+ length
;
2564 static struct gdbarch
*
2565 default_thread_architecture (struct target_ops
*ops
, ptid_t ptid
)
2567 return target_gdbarch
;
2583 return_minus_one (void)
2588 /* Find a single runnable target in the stack and return it. If for
2589 some reason there is more than one, return NULL. */
2592 find_run_target (void)
2594 struct target_ops
**t
;
2595 struct target_ops
*runable
= NULL
;
2600 for (t
= target_structs
; t
< target_structs
+ target_struct_size
; ++t
)
2602 if ((*t
)->to_can_run
&& target_can_run (*t
))
2609 return (count
== 1 ? runable
: NULL
);
2612 /* Find a single core_stratum target in the list of targets and return it.
2613 If for some reason there is more than one, return NULL. */
2616 find_core_target (void)
2618 struct target_ops
**t
;
2619 struct target_ops
*runable
= NULL
;
2624 for (t
= target_structs
; t
< target_structs
+ target_struct_size
;
2627 if ((*t
)->to_stratum
== core_stratum
)
2634 return (count
== 1 ? runable
: NULL
);
2638 * Find the next target down the stack from the specified target.
2642 find_target_beneath (struct target_ops
*t
)
2648 /* The inferior process has died. Long live the inferior! */
2651 generic_mourn_inferior (void)
2655 ptid
= inferior_ptid
;
2656 inferior_ptid
= null_ptid
;
2658 if (!ptid_equal (ptid
, null_ptid
))
2660 int pid
= ptid_get_pid (ptid
);
2661 delete_inferior (pid
);
2664 breakpoint_init_inferior (inf_exited
);
2665 registers_changed ();
2667 reopen_exec_file ();
2668 reinit_frame_cache ();
2670 if (deprecated_detach_hook
)
2671 deprecated_detach_hook ();
2674 /* Helper function for child_wait and the derivatives of child_wait.
2675 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
2676 translation of that in OURSTATUS. */
2678 store_waitstatus (struct target_waitstatus
*ourstatus
, int hoststatus
)
2680 if (WIFEXITED (hoststatus
))
2682 ourstatus
->kind
= TARGET_WAITKIND_EXITED
;
2683 ourstatus
->value
.integer
= WEXITSTATUS (hoststatus
);
2685 else if (!WIFSTOPPED (hoststatus
))
2687 ourstatus
->kind
= TARGET_WAITKIND_SIGNALLED
;
2688 ourstatus
->value
.sig
= target_signal_from_host (WTERMSIG (hoststatus
));
2692 ourstatus
->kind
= TARGET_WAITKIND_STOPPED
;
2693 ourstatus
->value
.sig
= target_signal_from_host (WSTOPSIG (hoststatus
));
2697 /* Convert a normal process ID to a string. Returns the string in a
2701 normal_pid_to_str (ptid_t ptid
)
2703 static char buf
[32];
2705 xsnprintf (buf
, sizeof buf
, "process %d", ptid_get_pid (ptid
));
2710 dummy_pid_to_str (struct target_ops
*ops
, ptid_t ptid
)
2712 return normal_pid_to_str (ptid
);
2715 /* Error-catcher for target_find_memory_regions */
2716 static int dummy_find_memory_regions (int (*ignore1
) (), void *ignore2
)
2718 error (_("No target."));
2722 /* Error-catcher for target_make_corefile_notes */
2723 static char * dummy_make_corefile_notes (bfd
*ignore1
, int *ignore2
)
2725 error (_("No target."));
2729 /* Set up the handful of non-empty slots needed by the dummy target
2733 init_dummy_target (void)
2735 dummy_target
.to_shortname
= "None";
2736 dummy_target
.to_longname
= "None";
2737 dummy_target
.to_doc
= "";
2738 dummy_target
.to_attach
= find_default_attach
;
2739 dummy_target
.to_detach
=
2740 (void (*)(struct target_ops
*, char *, int))target_ignore
;
2741 dummy_target
.to_create_inferior
= find_default_create_inferior
;
2742 dummy_target
.to_can_async_p
= find_default_can_async_p
;
2743 dummy_target
.to_is_async_p
= find_default_is_async_p
;
2744 dummy_target
.to_supports_non_stop
= find_default_supports_non_stop
;
2745 dummy_target
.to_pid_to_str
= dummy_pid_to_str
;
2746 dummy_target
.to_stratum
= dummy_stratum
;
2747 dummy_target
.to_find_memory_regions
= dummy_find_memory_regions
;
2748 dummy_target
.to_make_corefile_notes
= dummy_make_corefile_notes
;
2749 dummy_target
.to_xfer_partial
= default_xfer_partial
;
2750 dummy_target
.to_has_all_memory
= (int (*) (struct target_ops
*)) return_zero
;
2751 dummy_target
.to_has_memory
= (int (*) (struct target_ops
*)) return_zero
;
2752 dummy_target
.to_has_stack
= (int (*) (struct target_ops
*)) return_zero
;
2753 dummy_target
.to_has_registers
= (int (*) (struct target_ops
*)) return_zero
;
2754 dummy_target
.to_has_execution
= (int (*) (struct target_ops
*)) return_zero
;
2755 dummy_target
.to_magic
= OPS_MAGIC
;
2759 debug_to_open (char *args
, int from_tty
)
2761 debug_target
.to_open (args
, from_tty
);
2763 fprintf_unfiltered (gdb_stdlog
, "target_open (%s, %d)\n", args
, from_tty
);
2767 target_close (struct target_ops
*targ
, int quitting
)
2769 if (targ
->to_xclose
!= NULL
)
2770 targ
->to_xclose (targ
, quitting
);
2771 else if (targ
->to_close
!= NULL
)
2772 targ
->to_close (quitting
);
2775 fprintf_unfiltered (gdb_stdlog
, "target_close (%d)\n", quitting
);
2779 target_attach (char *args
, int from_tty
)
2781 struct target_ops
*t
;
2782 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2784 if (t
->to_attach
!= NULL
)
2786 t
->to_attach (t
, args
, from_tty
);
2788 fprintf_unfiltered (gdb_stdlog
, "target_attach (%s, %d)\n",
2794 internal_error (__FILE__
, __LINE__
,
2795 "could not find a target to attach");
2799 target_thread_alive (ptid_t ptid
)
2801 struct target_ops
*t
;
2802 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2804 if (t
->to_thread_alive
!= NULL
)
2808 retval
= t
->to_thread_alive (t
, ptid
);
2810 fprintf_unfiltered (gdb_stdlog
, "target_thread_alive (%d) = %d\n",
2811 PIDGET (ptid
), retval
);
2821 target_find_new_threads (void)
2823 struct target_ops
*t
;
2824 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2826 if (t
->to_find_new_threads
!= NULL
)
2828 t
->to_find_new_threads (t
);
2830 fprintf_unfiltered (gdb_stdlog
, "target_find_new_threads ()\n");
2838 debug_to_post_attach (int pid
)
2840 debug_target
.to_post_attach (pid
);
2842 fprintf_unfiltered (gdb_stdlog
, "target_post_attach (%d)\n", pid
);
2845 /* Return a pretty printed form of target_waitstatus.
2846 Space for the result is malloc'd, caller must free. */
2849 target_waitstatus_to_string (const struct target_waitstatus
*ws
)
2851 const char *kind_str
= "status->kind = ";
2855 case TARGET_WAITKIND_EXITED
:
2856 return xstrprintf ("%sexited, status = %d",
2857 kind_str
, ws
->value
.integer
);
2858 case TARGET_WAITKIND_STOPPED
:
2859 return xstrprintf ("%sstopped, signal = %s",
2860 kind_str
, target_signal_to_name (ws
->value
.sig
));
2861 case TARGET_WAITKIND_SIGNALLED
:
2862 return xstrprintf ("%ssignalled, signal = %s",
2863 kind_str
, target_signal_to_name (ws
->value
.sig
));
2864 case TARGET_WAITKIND_LOADED
:
2865 return xstrprintf ("%sloaded", kind_str
);
2866 case TARGET_WAITKIND_FORKED
:
2867 return xstrprintf ("%sforked", kind_str
);
2868 case TARGET_WAITKIND_VFORKED
:
2869 return xstrprintf ("%svforked", kind_str
);
2870 case TARGET_WAITKIND_EXECD
:
2871 return xstrprintf ("%sexecd", kind_str
);
2872 case TARGET_WAITKIND_SYSCALL_ENTRY
:
2873 return xstrprintf ("%sentered syscall", kind_str
);
2874 case TARGET_WAITKIND_SYSCALL_RETURN
:
2875 return xstrprintf ("%sexited syscall", kind_str
);
2876 case TARGET_WAITKIND_SPURIOUS
:
2877 return xstrprintf ("%sspurious", kind_str
);
2878 case TARGET_WAITKIND_IGNORE
:
2879 return xstrprintf ("%signore", kind_str
);
2880 case TARGET_WAITKIND_NO_HISTORY
:
2881 return xstrprintf ("%sno-history", kind_str
);
2883 return xstrprintf ("%sunknown???", kind_str
);
2888 debug_print_register (const char * func
,
2889 struct regcache
*regcache
, int regno
)
2891 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
2892 fprintf_unfiltered (gdb_stdlog
, "%s ", func
);
2893 if (regno
>= 0 && regno
< gdbarch_num_regs (gdbarch
)
2894 && gdbarch_register_name (gdbarch
, regno
) != NULL
2895 && gdbarch_register_name (gdbarch
, regno
)[0] != '\0')
2896 fprintf_unfiltered (gdb_stdlog
, "(%s)",
2897 gdbarch_register_name (gdbarch
, regno
));
2899 fprintf_unfiltered (gdb_stdlog
, "(%d)", regno
);
2900 if (regno
>= 0 && regno
< gdbarch_num_regs (gdbarch
))
2902 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2903 int i
, size
= register_size (gdbarch
, regno
);
2904 unsigned char buf
[MAX_REGISTER_SIZE
];
2905 regcache_raw_collect (regcache
, regno
, buf
);
2906 fprintf_unfiltered (gdb_stdlog
, " = ");
2907 for (i
= 0; i
< size
; i
++)
2909 fprintf_unfiltered (gdb_stdlog
, "%02x", buf
[i
]);
2911 if (size
<= sizeof (LONGEST
))
2913 ULONGEST val
= extract_unsigned_integer (buf
, size
, byte_order
);
2914 fprintf_unfiltered (gdb_stdlog
, " %s %s",
2915 core_addr_to_string_nz (val
), plongest (val
));
2918 fprintf_unfiltered (gdb_stdlog
, "\n");
2922 target_fetch_registers (struct regcache
*regcache
, int regno
)
2924 struct target_ops
*t
;
2925 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2927 if (t
->to_fetch_registers
!= NULL
)
2929 t
->to_fetch_registers (t
, regcache
, regno
);
2931 debug_print_register ("target_fetch_registers", regcache
, regno
);
2938 target_store_registers (struct regcache
*regcache
, int regno
)
2941 struct target_ops
*t
;
2942 for (t
= current_target
.beneath
; t
!= NULL
; t
= t
->beneath
)
2944 if (t
->to_store_registers
!= NULL
)
2946 t
->to_store_registers (t
, regcache
, regno
);
2949 debug_print_register ("target_store_registers", regcache
, regno
);
2959 debug_to_prepare_to_store (struct regcache
*regcache
)
2961 debug_target
.to_prepare_to_store (regcache
);
2963 fprintf_unfiltered (gdb_stdlog
, "target_prepare_to_store ()\n");
2967 deprecated_debug_xfer_memory (CORE_ADDR memaddr
, bfd_byte
*myaddr
, int len
,
2968 int write
, struct mem_attrib
*attrib
,
2969 struct target_ops
*target
)
2973 retval
= debug_target
.deprecated_xfer_memory (memaddr
, myaddr
, len
, write
,
2976 fprintf_unfiltered (gdb_stdlog
,
2977 "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
2978 paddress (target_gdbarch
, memaddr
), len
,
2979 write
? "write" : "read", retval
);
2985 fputs_unfiltered (", bytes =", gdb_stdlog
);
2986 for (i
= 0; i
< retval
; i
++)
2988 if ((((intptr_t) &(myaddr
[i
])) & 0xf) == 0)
2990 if (targetdebug
< 2 && i
> 0)
2992 fprintf_unfiltered (gdb_stdlog
, " ...");
2995 fprintf_unfiltered (gdb_stdlog
, "\n");
2998 fprintf_unfiltered (gdb_stdlog
, " %02x", myaddr
[i
] & 0xff);
3002 fputc_unfiltered ('\n', gdb_stdlog
);
3008 debug_to_files_info (struct target_ops
*target
)
3010 debug_target
.to_files_info (target
);
3012 fprintf_unfiltered (gdb_stdlog
, "target_files_info (xxx)\n");
3016 debug_to_insert_breakpoint (struct gdbarch
*gdbarch
,
3017 struct bp_target_info
*bp_tgt
)
3021 retval
= debug_target
.to_insert_breakpoint (gdbarch
, bp_tgt
);
3023 fprintf_unfiltered (gdb_stdlog
,
3024 "target_insert_breakpoint (0x%lx, xxx) = %ld\n",
3025 (unsigned long) bp_tgt
->placed_address
,
3026 (unsigned long) retval
);
3031 debug_to_remove_breakpoint (struct gdbarch
*gdbarch
,
3032 struct bp_target_info
*bp_tgt
)
3036 retval
= debug_target
.to_remove_breakpoint (gdbarch
, bp_tgt
);
3038 fprintf_unfiltered (gdb_stdlog
,
3039 "target_remove_breakpoint (0x%lx, xxx) = %ld\n",
3040 (unsigned long) bp_tgt
->placed_address
,
3041 (unsigned long) retval
);
3046 debug_to_can_use_hw_breakpoint (int type
, int cnt
, int from_tty
)
3050 retval
= debug_target
.to_can_use_hw_breakpoint (type
, cnt
, from_tty
);
3052 fprintf_unfiltered (gdb_stdlog
,
3053 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
3054 (unsigned long) type
,
3055 (unsigned long) cnt
,
3056 (unsigned long) from_tty
,
3057 (unsigned long) retval
);
3062 debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr
, int len
)
3066 retval
= debug_target
.to_region_ok_for_hw_watchpoint (addr
, len
);
3068 fprintf_unfiltered (gdb_stdlog
,
3069 "target_region_ok_for_hw_watchpoint (%ld, %ld) = 0x%lx\n",
3070 (unsigned long) addr
,
3071 (unsigned long) len
,
3072 (unsigned long) retval
);
3077 debug_to_stopped_by_watchpoint (void)
3081 retval
= debug_target
.to_stopped_by_watchpoint ();
3083 fprintf_unfiltered (gdb_stdlog
,
3084 "target_stopped_by_watchpoint () = %ld\n",
3085 (unsigned long) retval
);
3090 debug_to_stopped_data_address (struct target_ops
*target
, CORE_ADDR
*addr
)
3094 retval
= debug_target
.to_stopped_data_address (target
, addr
);
3096 fprintf_unfiltered (gdb_stdlog
,
3097 "target_stopped_data_address ([0x%lx]) = %ld\n",
3098 (unsigned long)*addr
,
3099 (unsigned long)retval
);
3104 debug_to_watchpoint_addr_within_range (struct target_ops
*target
,
3106 CORE_ADDR start
, int length
)
3110 retval
= debug_target
.to_watchpoint_addr_within_range (target
, addr
,
3113 fprintf_filtered (gdb_stdlog
,
3114 "target_watchpoint_addr_within_range (0x%lx, 0x%lx, %d) = %d\n",
3115 (unsigned long) addr
, (unsigned long) start
, length
,
3121 debug_to_insert_hw_breakpoint (struct gdbarch
*gdbarch
,
3122 struct bp_target_info
*bp_tgt
)
3126 retval
= debug_target
.to_insert_hw_breakpoint (gdbarch
, bp_tgt
);
3128 fprintf_unfiltered (gdb_stdlog
,
3129 "target_insert_hw_breakpoint (0x%lx, xxx) = %ld\n",
3130 (unsigned long) bp_tgt
->placed_address
,
3131 (unsigned long) retval
);
3136 debug_to_remove_hw_breakpoint (struct gdbarch
*gdbarch
,
3137 struct bp_target_info
*bp_tgt
)
3141 retval
= debug_target
.to_remove_hw_breakpoint (gdbarch
, bp_tgt
);
3143 fprintf_unfiltered (gdb_stdlog
,
3144 "target_remove_hw_breakpoint (0x%lx, xxx) = %ld\n",
3145 (unsigned long) bp_tgt
->placed_address
,
3146 (unsigned long) retval
);
3151 debug_to_insert_watchpoint (CORE_ADDR addr
, int len
, int type
)
3155 retval
= debug_target
.to_insert_watchpoint (addr
, len
, type
);
3157 fprintf_unfiltered (gdb_stdlog
,
3158 "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n",
3159 (unsigned long) addr
, len
, type
, (unsigned long) retval
);
3164 debug_to_remove_watchpoint (CORE_ADDR addr
, int len
, int type
)
3168 retval
= debug_target
.to_remove_watchpoint (addr
, len
, type
);
3170 fprintf_unfiltered (gdb_stdlog
,
3171 "target_remove_watchpoint (0x%lx, %d, %d) = %ld\n",
3172 (unsigned long) addr
, len
, type
, (unsigned long) retval
);
3177 debug_to_terminal_init (void)
3179 debug_target
.to_terminal_init ();
3181 fprintf_unfiltered (gdb_stdlog
, "target_terminal_init ()\n");
3185 debug_to_terminal_inferior (void)
3187 debug_target
.to_terminal_inferior ();
3189 fprintf_unfiltered (gdb_stdlog
, "target_terminal_inferior ()\n");
3193 debug_to_terminal_ours_for_output (void)
3195 debug_target
.to_terminal_ours_for_output ();
3197 fprintf_unfiltered (gdb_stdlog
, "target_terminal_ours_for_output ()\n");
3201 debug_to_terminal_ours (void)
3203 debug_target
.to_terminal_ours ();
3205 fprintf_unfiltered (gdb_stdlog
, "target_terminal_ours ()\n");
3209 debug_to_terminal_save_ours (void)
3211 debug_target
.to_terminal_save_ours ();
3213 fprintf_unfiltered (gdb_stdlog
, "target_terminal_save_ours ()\n");
3217 debug_to_terminal_info (char *arg
, int from_tty
)
3219 debug_target
.to_terminal_info (arg
, from_tty
);
3221 fprintf_unfiltered (gdb_stdlog
, "target_terminal_info (%s, %d)\n", arg
,
3226 debug_to_load (char *args
, int from_tty
)
3228 debug_target
.to_load (args
, from_tty
);
3230 fprintf_unfiltered (gdb_stdlog
, "target_load (%s, %d)\n", args
, from_tty
);
3234 debug_to_lookup_symbol (char *name
, CORE_ADDR
*addrp
)
3238 retval
= debug_target
.to_lookup_symbol (name
, addrp
);
3240 fprintf_unfiltered (gdb_stdlog
, "target_lookup_symbol (%s, xxx)\n", name
);
3246 debug_to_post_startup_inferior (ptid_t ptid
)
3248 debug_target
.to_post_startup_inferior (ptid
);
3250 fprintf_unfiltered (gdb_stdlog
, "target_post_startup_inferior (%d)\n",
3255 debug_to_acknowledge_created_inferior (int pid
)
3257 debug_target
.to_acknowledge_created_inferior (pid
);
3259 fprintf_unfiltered (gdb_stdlog
, "target_acknowledge_created_inferior (%d)\n",
3264 debug_to_insert_fork_catchpoint (int pid
)
3266 debug_target
.to_insert_fork_catchpoint (pid
);
3268 fprintf_unfiltered (gdb_stdlog
, "target_insert_fork_catchpoint (%d)\n",
3273 debug_to_remove_fork_catchpoint (int pid
)
3277 retval
= debug_target
.to_remove_fork_catchpoint (pid
);
3279 fprintf_unfiltered (gdb_stdlog
, "target_remove_fork_catchpoint (%d) = %d\n",
3286 debug_to_insert_vfork_catchpoint (int pid
)
3288 debug_target
.to_insert_vfork_catchpoint (pid
);
3290 fprintf_unfiltered (gdb_stdlog
, "target_insert_vfork_catchpoint (%d)\n",
3295 debug_to_remove_vfork_catchpoint (int pid
)
3299 retval
= debug_target
.to_remove_vfork_catchpoint (pid
);
3301 fprintf_unfiltered (gdb_stdlog
, "target_remove_vfork_catchpoint (%d) = %d\n",
3308 debug_to_insert_exec_catchpoint (int pid
)
3310 debug_target
.to_insert_exec_catchpoint (pid
);
3312 fprintf_unfiltered (gdb_stdlog
, "target_insert_exec_catchpoint (%d)\n",
3317 debug_to_remove_exec_catchpoint (int pid
)
3321 retval
= debug_target
.to_remove_exec_catchpoint (pid
);
3323 fprintf_unfiltered (gdb_stdlog
, "target_remove_exec_catchpoint (%d) = %d\n",
3330 debug_to_has_exited (int pid
, int wait_status
, int *exit_status
)
3334 has_exited
= debug_target
.to_has_exited (pid
, wait_status
, exit_status
);
3336 fprintf_unfiltered (gdb_stdlog
, "target_has_exited (%d, %d, %d) = %d\n",
3337 pid
, wait_status
, *exit_status
, has_exited
);
3343 debug_to_can_run (void)
3347 retval
= debug_target
.to_can_run ();
3349 fprintf_unfiltered (gdb_stdlog
, "target_can_run () = %d\n", retval
);
3355 debug_to_notice_signals (ptid_t ptid
)
3357 debug_target
.to_notice_signals (ptid
);
3359 fprintf_unfiltered (gdb_stdlog
, "target_notice_signals (%d)\n",
3363 static struct gdbarch
*
3364 debug_to_thread_architecture (struct target_ops
*ops
, ptid_t ptid
)
3366 struct gdbarch
*retval
;
3368 retval
= debug_target
.to_thread_architecture (ops
, ptid
);
3370 fprintf_unfiltered (gdb_stdlog
, "target_thread_architecture (%s) = %s [%s]\n",
3371 target_pid_to_str (ptid
), host_address_to_string (retval
),
3372 gdbarch_bfd_arch_info (retval
)->printable_name
);
3377 debug_to_stop (ptid_t ptid
)
3379 debug_target
.to_stop (ptid
);
3381 fprintf_unfiltered (gdb_stdlog
, "target_stop (%s)\n",
3382 target_pid_to_str (ptid
));
3386 debug_to_rcmd (char *command
,
3387 struct ui_file
*outbuf
)
3389 debug_target
.to_rcmd (command
, outbuf
);
3390 fprintf_unfiltered (gdb_stdlog
, "target_rcmd (%s, ...)\n", command
);
3394 debug_to_pid_to_exec_file (int pid
)
3398 exec_file
= debug_target
.to_pid_to_exec_file (pid
);
3400 fprintf_unfiltered (gdb_stdlog
, "target_pid_to_exec_file (%d) = %s\n",
3407 setup_target_debug (void)
3409 memcpy (&debug_target
, ¤t_target
, sizeof debug_target
);
3411 current_target
.to_open
= debug_to_open
;
3412 current_target
.to_post_attach
= debug_to_post_attach
;
3413 current_target
.to_prepare_to_store
= debug_to_prepare_to_store
;
3414 current_target
.deprecated_xfer_memory
= deprecated_debug_xfer_memory
;
3415 current_target
.to_files_info
= debug_to_files_info
;
3416 current_target
.to_insert_breakpoint
= debug_to_insert_breakpoint
;
3417 current_target
.to_remove_breakpoint
= debug_to_remove_breakpoint
;
3418 current_target
.to_can_use_hw_breakpoint
= debug_to_can_use_hw_breakpoint
;
3419 current_target
.to_insert_hw_breakpoint
= debug_to_insert_hw_breakpoint
;
3420 current_target
.to_remove_hw_breakpoint
= debug_to_remove_hw_breakpoint
;
3421 current_target
.to_insert_watchpoint
= debug_to_insert_watchpoint
;
3422 current_target
.to_remove_watchpoint
= debug_to_remove_watchpoint
;
3423 current_target
.to_stopped_by_watchpoint
= debug_to_stopped_by_watchpoint
;
3424 current_target
.to_stopped_data_address
= debug_to_stopped_data_address
;
3425 current_target
.to_watchpoint_addr_within_range
= debug_to_watchpoint_addr_within_range
;
3426 current_target
.to_region_ok_for_hw_watchpoint
= debug_to_region_ok_for_hw_watchpoint
;
3427 current_target
.to_terminal_init
= debug_to_terminal_init
;
3428 current_target
.to_terminal_inferior
= debug_to_terminal_inferior
;
3429 current_target
.to_terminal_ours_for_output
= debug_to_terminal_ours_for_output
;
3430 current_target
.to_terminal_ours
= debug_to_terminal_ours
;
3431 current_target
.to_terminal_save_ours
= debug_to_terminal_save_ours
;
3432 current_target
.to_terminal_info
= debug_to_terminal_info
;
3433 current_target
.to_load
= debug_to_load
;
3434 current_target
.to_lookup_symbol
= debug_to_lookup_symbol
;
3435 current_target
.to_post_startup_inferior
= debug_to_post_startup_inferior
;
3436 current_target
.to_acknowledge_created_inferior
= debug_to_acknowledge_created_inferior
;
3437 current_target
.to_insert_fork_catchpoint
= debug_to_insert_fork_catchpoint
;
3438 current_target
.to_remove_fork_catchpoint
= debug_to_remove_fork_catchpoint
;
3439 current_target
.to_insert_vfork_catchpoint
= debug_to_insert_vfork_catchpoint
;
3440 current_target
.to_remove_vfork_catchpoint
= debug_to_remove_vfork_catchpoint
;
3441 current_target
.to_insert_exec_catchpoint
= debug_to_insert_exec_catchpoint
;
3442 current_target
.to_remove_exec_catchpoint
= debug_to_remove_exec_catchpoint
;
3443 current_target
.to_has_exited
= debug_to_has_exited
;
3444 current_target
.to_can_run
= debug_to_can_run
;
3445 current_target
.to_notice_signals
= debug_to_notice_signals
;
3446 current_target
.to_stop
= debug_to_stop
;
3447 current_target
.to_rcmd
= debug_to_rcmd
;
3448 current_target
.to_pid_to_exec_file
= debug_to_pid_to_exec_file
;
3449 current_target
.to_thread_architecture
= debug_to_thread_architecture
;
3453 static char targ_desc
[] =
3454 "Names of targets and files being debugged.\n\
3455 Shows the entire stack of targets currently in use (including the exec-file,\n\
3456 core-file, and process, if any), as well as the symbol file name.";
3459 do_monitor_command (char *cmd
,
3462 if ((current_target
.to_rcmd
3463 == (void (*) (char *, struct ui_file
*)) tcomplain
)
3464 || (current_target
.to_rcmd
== debug_to_rcmd
3465 && (debug_target
.to_rcmd
3466 == (void (*) (char *, struct ui_file
*)) tcomplain
)))
3467 error (_("\"monitor\" command not supported by this target."));
3468 target_rcmd (cmd
, gdb_stdtarg
);
3471 /* Print the name of each layers of our target stack. */
3474 maintenance_print_target_stack (char *cmd
, int from_tty
)
3476 struct target_ops
*t
;
3478 printf_filtered (_("The current target stack is:\n"));
3480 for (t
= target_stack
; t
!= NULL
; t
= t
->beneath
)
3482 printf_filtered (" - %s (%s)\n", t
->to_shortname
, t
->to_longname
);
3486 /* Controls if async mode is permitted. */
3487 int target_async_permitted
= 0;
3489 /* The set command writes to this variable. If the inferior is
3490 executing, linux_nat_async_permitted is *not* updated. */
3491 static int target_async_permitted_1
= 0;
3494 set_maintenance_target_async_permitted (char *args
, int from_tty
,
3495 struct cmd_list_element
*c
)
3497 if (have_live_inferiors ())
3499 target_async_permitted_1
= target_async_permitted
;
3500 error (_("Cannot change this setting while the inferior is running."));
3503 target_async_permitted
= target_async_permitted_1
;
3507 show_maintenance_target_async_permitted (struct ui_file
*file
, int from_tty
,
3508 struct cmd_list_element
*c
,
3511 fprintf_filtered (file
, _("\
3512 Controlling the inferior in asynchronous mode is %s.\n"), value
);
3516 initialize_targets (void)
3518 init_dummy_target ();
3519 push_target (&dummy_target
);
3521 add_info ("target", target_info
, targ_desc
);
3522 add_info ("files", target_info
, targ_desc
);
3524 add_setshow_zinteger_cmd ("target", class_maintenance
, &targetdebug
, _("\
3525 Set target debugging."), _("\
3526 Show target debugging."), _("\
3527 When non-zero, target debugging is enabled. Higher numbers are more\n\
3528 verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
3532 &setdebuglist
, &showdebuglist
);
3534 add_setshow_boolean_cmd ("trust-readonly-sections", class_support
,
3535 &trust_readonly
, _("\
3536 Set mode for reading from readonly sections."), _("\
3537 Show mode for reading from readonly sections."), _("\
3538 When this mode is on, memory reads from readonly sections (such as .text)\n\
3539 will be read from the object file instead of from the target. This will\n\
3540 result in significant performance improvement for remote targets."),
3542 show_trust_readonly
,
3543 &setlist
, &showlist
);
3545 add_com ("monitor", class_obscure
, do_monitor_command
,
3546 _("Send a command to the remote monitor (remote targets only)."));
3548 add_cmd ("target-stack", class_maintenance
, maintenance_print_target_stack
,
3549 _("Print the name of each layer of the internal target stack."),
3550 &maintenanceprintlist
);
3552 add_setshow_boolean_cmd ("target-async", no_class
,
3553 &target_async_permitted_1
, _("\
3554 Set whether gdb controls the inferior in asynchronous mode."), _("\
3555 Show whether gdb controls the inferior in asynchronous mode."), _("\
3556 Tells gdb whether to control the inferior in asynchronous mode."),
3557 set_maintenance_target_async_permitted
,
3558 show_maintenance_target_async_permitted
,
3562 add_setshow_boolean_cmd ("stack-cache", class_support
,
3563 &stack_cache_enabled_p_1
, _("\
3564 Set cache use for stack access."), _("\
3565 Show cache use for stack access."), _("\
3566 When on, use the data cache for all stack access, regardless of any\n\
3567 configured memory regions. This improves remote performance significantly.\n\
3568 By default, caching for stack access is on."),
3569 set_stack_cache_enabled_p
,
3570 show_stack_cache_enabled_p
,
3571 &setlist
, &showlist
);
3573 target_dcache
= dcache_init ();