1 /* Select target systems and architectures at runtime for GDB.
3 Copyright (C) 1990-2013 Free Software Foundation, Inc.
5 Contributed by Cygnus Support.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "gdb_string.h"
35 #include "gdb_assert.h"
37 #include "exceptions.h"
38 #include "target-descriptions.h"
39 #include "gdbthread.h"
42 #include "inline-frame.h"
43 #include "tracepoint.h"
44 #include "gdb/fileio.h"
47 static void target_info (char *, int);
49 static void default_terminal_info (const char *, int);
51 static int default_watchpoint_addr_within_range (struct target_ops *,
52 CORE_ADDR, CORE_ADDR, int);
54 static int default_region_ok_for_hw_watchpoint (CORE_ADDR, int);
56 static void tcomplain (void) ATTRIBUTE_NORETURN;
58 static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
60 static int return_zero (void);
62 static int return_one (void);
64 static int return_minus_one (void);
66 void target_ignore (void);
68 static void target_command (char *, int);
70 static struct target_ops *find_default_run_target (char *);
72 static LONGEST default_xfer_partial (struct target_ops *ops,
73 enum target_object object,
74 const char *annex, gdb_byte *readbuf,
75 const gdb_byte *writebuf,
76 ULONGEST offset, LONGEST len);
78 static LONGEST current_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 target_xfer_partial (struct target_ops *ops,
85 enum target_object object,
87 void *readbuf, const void *writebuf,
88 ULONGEST offset, LONGEST len);
90 static struct gdbarch *default_thread_architecture (struct target_ops *ops,
93 static void init_dummy_target (void);
95 static struct target_ops debug_target;
97 static void debug_to_open (char *, int);
99 static void debug_to_prepare_to_store (struct regcache *);
101 static void debug_to_files_info (struct target_ops *);
103 static int debug_to_insert_breakpoint (struct gdbarch *,
104 struct bp_target_info *);
106 static int debug_to_remove_breakpoint (struct gdbarch *,
107 struct bp_target_info *);
109 static int debug_to_can_use_hw_breakpoint (int, int, int);
111 static int debug_to_insert_hw_breakpoint (struct gdbarch *,
112 struct bp_target_info *);
114 static int debug_to_remove_hw_breakpoint (struct gdbarch *,
115 struct bp_target_info *);
117 static int debug_to_insert_watchpoint (CORE_ADDR, int, int,
118 struct expression *);
120 static int debug_to_remove_watchpoint (CORE_ADDR, int, int,
121 struct expression *);
123 static int debug_to_stopped_by_watchpoint (void);
125 static int debug_to_stopped_data_address (struct target_ops *, CORE_ADDR *);
127 static int debug_to_watchpoint_addr_within_range (struct target_ops *,
128 CORE_ADDR, CORE_ADDR, int);
130 static int debug_to_region_ok_for_hw_watchpoint (CORE_ADDR, int);
132 static int debug_to_can_accel_watchpoint_condition (CORE_ADDR, int, int,
133 struct expression *);
135 static void debug_to_terminal_init (void);
137 static void debug_to_terminal_inferior (void);
139 static void debug_to_terminal_ours_for_output (void);
141 static void debug_to_terminal_save_ours (void);
143 static void debug_to_terminal_ours (void);
145 static void debug_to_load (char *, int);
147 static int debug_to_can_run (void);
149 static void debug_to_stop (ptid_t);
151 /* Pointer to array of target architecture structures; the size of the
152 array; the current index into the array; the allocated size of the
154 struct target_ops **target_structs;
155 unsigned target_struct_size;
156 unsigned target_struct_allocsize;
157 #define DEFAULT_ALLOCSIZE 10
159 /* The initial current target, so that there is always a semi-valid
162 static struct target_ops dummy_target;
164 /* Top of target stack. */
166 static struct target_ops *target_stack;
168 /* The target structure we are currently using to talk to a process
169 or file or whatever "inferior" we have. */
171 struct target_ops current_target;
173 /* Command list for target. */
175 static struct cmd_list_element *targetlist = NULL;
177 /* Nonzero if we should trust readonly sections from the
178 executable when reading memory. */
180 static int trust_readonly = 0;
182 /* Nonzero if we should show true memory content including
183 memory breakpoint inserted by gdb. */
185 static int show_memory_breakpoints = 0;
187 /* These globals control whether GDB attempts to perform these
188 operations; they are useful for targets that need to prevent
189 inadvertant disruption, such as in non-stop mode. */
191 int may_write_registers = 1;
193 int may_write_memory = 1;
195 int may_insert_breakpoints = 1;
197 int may_insert_tracepoints = 1;
199 int may_insert_fast_tracepoints = 1;
203 /* Non-zero if we want to see trace of target level stuff. */
205 static unsigned int targetdebug = 0;
207 show_targetdebug (struct ui_file *file, int from_tty,
208 struct cmd_list_element *c, const char *value)
210 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
213 static void setup_target_debug (void);
215 /* The option sets this. */
216 static int stack_cache_enabled_p_1 = 1;
217 /* And set_stack_cache_enabled_p updates this.
218 The reason for the separation is so that we don't flush the cache for
219 on->on transitions. */
220 static int stack_cache_enabled_p = 1;
222 /* This is called *after* the stack-cache has been set.
223 Flush the cache for off->on and on->off transitions.
224 There's no real need to flush the cache for on->off transitions,
225 except cleanliness. */
228 set_stack_cache_enabled_p (char *args, int from_tty,
229 struct cmd_list_element *c)
231 if (stack_cache_enabled_p != stack_cache_enabled_p_1)
232 target_dcache_invalidate ();
234 stack_cache_enabled_p = stack_cache_enabled_p_1;
238 show_stack_cache_enabled_p (struct ui_file *file, int from_tty,
239 struct cmd_list_element *c, const char *value)
241 fprintf_filtered (file, _("Cache use for stack accesses is %s.\n"), value);
244 /* Cache of memory operations, to speed up remote access. */
245 static DCACHE *target_dcache;
247 /* Invalidate the target dcache. */
250 target_dcache_invalidate (void)
252 dcache_invalidate (target_dcache);
255 /* The user just typed 'target' without the name of a target. */
258 target_command (char *arg, int from_tty)
260 fputs_filtered ("Argument required (target name). Try `help target'\n",
264 /* Default target_has_* methods for process_stratum targets. */
267 default_child_has_all_memory (struct target_ops *ops)
269 /* If no inferior selected, then we can't read memory here. */
270 if (ptid_equal (inferior_ptid, null_ptid))
277 default_child_has_memory (struct target_ops *ops)
279 /* If no inferior selected, then we can't read memory here. */
280 if (ptid_equal (inferior_ptid, null_ptid))
287 default_child_has_stack (struct target_ops *ops)
289 /* If no inferior selected, there's no stack. */
290 if (ptid_equal (inferior_ptid, null_ptid))
297 default_child_has_registers (struct target_ops *ops)
299 /* Can't read registers from no inferior. */
300 if (ptid_equal (inferior_ptid, null_ptid))
307 default_child_has_execution (struct target_ops *ops, ptid_t the_ptid)
309 /* If there's no thread selected, then we can't make it run through
311 if (ptid_equal (the_ptid, null_ptid))
319 target_has_all_memory_1 (void)
321 struct target_ops *t;
323 for (t = current_target.beneath; t != NULL; t = t->beneath)
324 if (t->to_has_all_memory (t))
331 target_has_memory_1 (void)
333 struct target_ops *t;
335 for (t = current_target.beneath; t != NULL; t = t->beneath)
336 if (t->to_has_memory (t))
343 target_has_stack_1 (void)
345 struct target_ops *t;
347 for (t = current_target.beneath; t != NULL; t = t->beneath)
348 if (t->to_has_stack (t))
355 target_has_registers_1 (void)
357 struct target_ops *t;
359 for (t = current_target.beneath; t != NULL; t = t->beneath)
360 if (t->to_has_registers (t))
367 target_has_execution_1 (ptid_t the_ptid)
369 struct target_ops *t;
371 for (t = current_target.beneath; t != NULL; t = t->beneath)
372 if (t->to_has_execution (t, the_ptid))
379 target_has_execution_current (void)
381 return target_has_execution_1 (inferior_ptid);
384 /* Add possible target architecture T to the list and add a new
385 command 'target T->to_shortname'. Set COMPLETER as the command's
386 completer if not NULL. */
389 add_target_with_completer (struct target_ops *t,
390 completer_ftype *completer)
392 struct cmd_list_element *c;
394 /* Provide default values for all "must have" methods. */
395 if (t->to_xfer_partial == NULL)
396 t->to_xfer_partial = default_xfer_partial;
398 if (t->to_has_all_memory == NULL)
399 t->to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
401 if (t->to_has_memory == NULL)
402 t->to_has_memory = (int (*) (struct target_ops *)) return_zero;
404 if (t->to_has_stack == NULL)
405 t->to_has_stack = (int (*) (struct target_ops *)) return_zero;
407 if (t->to_has_registers == NULL)
408 t->to_has_registers = (int (*) (struct target_ops *)) return_zero;
410 if (t->to_has_execution == NULL)
411 t->to_has_execution = (int (*) (struct target_ops *, ptid_t)) return_zero;
415 target_struct_allocsize = DEFAULT_ALLOCSIZE;
416 target_structs = (struct target_ops **) xmalloc
417 (target_struct_allocsize * sizeof (*target_structs));
419 if (target_struct_size >= target_struct_allocsize)
421 target_struct_allocsize *= 2;
422 target_structs = (struct target_ops **)
423 xrealloc ((char *) target_structs,
424 target_struct_allocsize * sizeof (*target_structs));
426 target_structs[target_struct_size++] = t;
428 if (targetlist == NULL)
429 add_prefix_cmd ("target", class_run, target_command, _("\
430 Connect to a target machine or process.\n\
431 The first argument is the type or protocol of the target machine.\n\
432 Remaining arguments are interpreted by the target protocol. For more\n\
433 information on the arguments for a particular protocol, type\n\
434 `help target ' followed by the protocol name."),
435 &targetlist, "target ", 0, &cmdlist);
436 c = add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc,
438 if (completer != NULL)
439 set_cmd_completer (c, completer);
442 /* Add a possible target architecture to the list. */
445 add_target (struct target_ops *t)
447 add_target_with_completer (t, NULL);
453 add_deprecated_target_alias (struct target_ops *t, char *alias)
455 struct cmd_list_element *c;
458 /* If we use add_alias_cmd, here, we do not get the deprecated warning,
460 c = add_cmd (alias, no_class, t->to_open, t->to_doc, &targetlist);
461 alt = xstrprintf ("target %s", t->to_shortname);
462 deprecate_cmd (c, alt);
475 struct target_ops *t;
477 for (t = current_target.beneath; t != NULL; t = t->beneath)
478 if (t->to_kill != NULL)
481 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
491 target_load (char *arg, int from_tty)
493 target_dcache_invalidate ();
494 (*current_target.to_load) (arg, from_tty);
498 target_create_inferior (char *exec_file, char *args,
499 char **env, int from_tty)
501 struct target_ops *t;
503 for (t = current_target.beneath; t != NULL; t = t->beneath)
505 if (t->to_create_inferior != NULL)
507 t->to_create_inferior (t, exec_file, args, env, from_tty);
509 fprintf_unfiltered (gdb_stdlog,
510 "target_create_inferior (%s, %s, xxx, %d)\n",
511 exec_file, args, from_tty);
516 internal_error (__FILE__, __LINE__,
517 _("could not find a target to create inferior"));
521 target_terminal_inferior (void)
523 /* A background resume (``run&'') should leave GDB in control of the
524 terminal. Use target_can_async_p, not target_is_async_p, since at
525 this point the target is not async yet. However, if sync_execution
526 is not set, we know it will become async prior to resume. */
527 if (target_can_async_p () && !sync_execution)
530 /* If GDB is resuming the inferior in the foreground, install
531 inferior's terminal modes. */
532 (*current_target.to_terminal_inferior) ();
536 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
537 struct target_ops *t)
539 errno = EIO; /* Can't read/write this location. */
540 return 0; /* No bytes handled. */
546 error (_("You can't do that when your target is `%s'"),
547 current_target.to_shortname);
553 error (_("You can't do that without a process to debug."));
557 default_terminal_info (const char *args, int from_tty)
559 printf_unfiltered (_("No saved terminal information.\n"));
562 /* A default implementation for the to_get_ada_task_ptid target method.
564 This function builds the PTID by using both LWP and TID as part of
565 the PTID lwp and tid elements. The pid used is the pid of the
569 default_get_ada_task_ptid (long lwp, long tid)
571 return ptid_build (ptid_get_pid (inferior_ptid), lwp, tid);
574 static enum exec_direction_kind
575 default_execution_direction (void)
577 if (!target_can_execute_reverse)
579 else if (!target_can_async_p ())
582 gdb_assert_not_reached ("\
583 to_execution_direction must be implemented for reverse async");
586 /* Go through the target stack from top to bottom, copying over zero
587 entries in current_target, then filling in still empty entries. In
588 effect, we are doing class inheritance through the pushed target
591 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
592 is currently implemented, is that it discards any knowledge of
593 which target an inherited method originally belonged to.
594 Consequently, new new target methods should instead explicitly and
595 locally search the target stack for the target that can handle the
599 update_current_target (void)
601 struct target_ops *t;
603 /* First, reset current's contents. */
604 memset (¤t_target, 0, sizeof (current_target));
606 #define INHERIT(FIELD, TARGET) \
607 if (!current_target.FIELD) \
608 current_target.FIELD = (TARGET)->FIELD
610 for (t = target_stack; t; t = t->beneath)
612 INHERIT (to_shortname, t);
613 INHERIT (to_longname, t);
615 /* Do not inherit to_open. */
616 /* Do not inherit to_close. */
617 /* Do not inherit to_attach. */
618 INHERIT (to_post_attach, t);
619 INHERIT (to_attach_no_wait, t);
620 /* Do not inherit to_detach. */
621 /* Do not inherit to_disconnect. */
622 /* Do not inherit to_resume. */
623 /* Do not inherit to_wait. */
624 /* Do not inherit to_fetch_registers. */
625 /* Do not inherit to_store_registers. */
626 INHERIT (to_prepare_to_store, t);
627 INHERIT (deprecated_xfer_memory, t);
628 INHERIT (to_files_info, t);
629 INHERIT (to_insert_breakpoint, t);
630 INHERIT (to_remove_breakpoint, t);
631 INHERIT (to_can_use_hw_breakpoint, t);
632 INHERIT (to_insert_hw_breakpoint, t);
633 INHERIT (to_remove_hw_breakpoint, t);
634 /* Do not inherit to_ranged_break_num_registers. */
635 INHERIT (to_insert_watchpoint, t);
636 INHERIT (to_remove_watchpoint, t);
637 /* Do not inherit to_insert_mask_watchpoint. */
638 /* Do not inherit to_remove_mask_watchpoint. */
639 INHERIT (to_stopped_data_address, t);
640 INHERIT (to_have_steppable_watchpoint, t);
641 INHERIT (to_have_continuable_watchpoint, t);
642 INHERIT (to_stopped_by_watchpoint, t);
643 INHERIT (to_watchpoint_addr_within_range, t);
644 INHERIT (to_region_ok_for_hw_watchpoint, t);
645 INHERIT (to_can_accel_watchpoint_condition, t);
646 /* Do not inherit to_masked_watch_num_registers. */
647 INHERIT (to_terminal_init, t);
648 INHERIT (to_terminal_inferior, t);
649 INHERIT (to_terminal_ours_for_output, t);
650 INHERIT (to_terminal_ours, t);
651 INHERIT (to_terminal_save_ours, t);
652 INHERIT (to_terminal_info, t);
653 /* Do not inherit to_kill. */
654 INHERIT (to_load, t);
655 /* Do no inherit to_create_inferior. */
656 INHERIT (to_post_startup_inferior, t);
657 INHERIT (to_insert_fork_catchpoint, t);
658 INHERIT (to_remove_fork_catchpoint, t);
659 INHERIT (to_insert_vfork_catchpoint, t);
660 INHERIT (to_remove_vfork_catchpoint, t);
661 /* Do not inherit to_follow_fork. */
662 INHERIT (to_insert_exec_catchpoint, t);
663 INHERIT (to_remove_exec_catchpoint, t);
664 INHERIT (to_set_syscall_catchpoint, t);
665 INHERIT (to_has_exited, t);
666 /* Do not inherit to_mourn_inferior. */
667 INHERIT (to_can_run, t);
668 /* Do not inherit to_pass_signals. */
669 /* Do not inherit to_program_signals. */
670 /* Do not inherit to_thread_alive. */
671 /* Do not inherit to_find_new_threads. */
672 /* Do not inherit to_pid_to_str. */
673 INHERIT (to_extra_thread_info, t);
674 INHERIT (to_thread_name, t);
675 INHERIT (to_stop, t);
676 /* Do not inherit to_xfer_partial. */
677 INHERIT (to_rcmd, t);
678 INHERIT (to_pid_to_exec_file, t);
679 INHERIT (to_log_command, t);
680 INHERIT (to_stratum, t);
681 /* Do not inherit to_has_all_memory. */
682 /* Do not inherit to_has_memory. */
683 /* Do not inherit to_has_stack. */
684 /* Do not inherit to_has_registers. */
685 /* Do not inherit to_has_execution. */
686 INHERIT (to_has_thread_control, t);
687 INHERIT (to_can_async_p, t);
688 INHERIT (to_is_async_p, t);
689 INHERIT (to_async, t);
690 INHERIT (to_find_memory_regions, t);
691 INHERIT (to_make_corefile_notes, t);
692 INHERIT (to_get_bookmark, t);
693 INHERIT (to_goto_bookmark, t);
694 /* Do not inherit to_get_thread_local_address. */
695 INHERIT (to_can_execute_reverse, t);
696 INHERIT (to_execution_direction, t);
697 INHERIT (to_thread_architecture, t);
698 /* Do not inherit to_read_description. */
699 INHERIT (to_get_ada_task_ptid, t);
700 /* Do not inherit to_search_memory. */
701 INHERIT (to_supports_multi_process, t);
702 INHERIT (to_supports_enable_disable_tracepoint, t);
703 INHERIT (to_supports_string_tracing, t);
704 INHERIT (to_trace_init, t);
705 INHERIT (to_download_tracepoint, t);
706 INHERIT (to_can_download_tracepoint, t);
707 INHERIT (to_download_trace_state_variable, t);
708 INHERIT (to_enable_tracepoint, t);
709 INHERIT (to_disable_tracepoint, t);
710 INHERIT (to_trace_set_readonly_regions, t);
711 INHERIT (to_trace_start, t);
712 INHERIT (to_get_trace_status, t);
713 INHERIT (to_get_tracepoint_status, t);
714 INHERIT (to_trace_stop, t);
715 INHERIT (to_trace_find, t);
716 INHERIT (to_get_trace_state_variable_value, t);
717 INHERIT (to_save_trace_data, t);
718 INHERIT (to_upload_tracepoints, t);
719 INHERIT (to_upload_trace_state_variables, t);
720 INHERIT (to_get_raw_trace_data, t);
721 INHERIT (to_get_min_fast_tracepoint_insn_len, t);
722 INHERIT (to_set_disconnected_tracing, t);
723 INHERIT (to_set_circular_trace_buffer, t);
724 INHERIT (to_set_trace_buffer_size, t);
725 INHERIT (to_set_trace_notes, t);
726 INHERIT (to_get_tib_address, t);
727 INHERIT (to_set_permissions, t);
728 INHERIT (to_static_tracepoint_marker_at, t);
729 INHERIT (to_static_tracepoint_markers_by_strid, t);
730 INHERIT (to_traceframe_info, t);
731 INHERIT (to_use_agent, t);
732 INHERIT (to_can_use_agent, t);
733 INHERIT (to_augmented_libraries_svr4_read, t);
734 INHERIT (to_magic, t);
735 INHERIT (to_supports_evaluation_of_breakpoint_conditions, t);
736 INHERIT (to_can_run_breakpoint_commands, t);
737 /* Do not inherit to_memory_map. */
738 /* Do not inherit to_flash_erase. */
739 /* Do not inherit to_flash_done. */
743 /* Clean up a target struct so it no longer has any zero pointers in
744 it. Some entries are defaulted to a method that print an error,
745 others are hard-wired to a standard recursive default. */
747 #define de_fault(field, value) \
748 if (!current_target.field) \
749 current_target.field = value
752 (void (*) (char *, int))
757 de_fault (to_post_attach,
760 de_fault (to_prepare_to_store,
761 (void (*) (struct regcache *))
763 de_fault (deprecated_xfer_memory,
764 (int (*) (CORE_ADDR, gdb_byte *, int, int,
765 struct mem_attrib *, struct target_ops *))
767 de_fault (to_files_info,
768 (void (*) (struct target_ops *))
770 de_fault (to_insert_breakpoint,
771 memory_insert_breakpoint);
772 de_fault (to_remove_breakpoint,
773 memory_remove_breakpoint);
774 de_fault (to_can_use_hw_breakpoint,
775 (int (*) (int, int, int))
777 de_fault (to_insert_hw_breakpoint,
778 (int (*) (struct gdbarch *, struct bp_target_info *))
780 de_fault (to_remove_hw_breakpoint,
781 (int (*) (struct gdbarch *, struct bp_target_info *))
783 de_fault (to_insert_watchpoint,
784 (int (*) (CORE_ADDR, int, int, struct expression *))
786 de_fault (to_remove_watchpoint,
787 (int (*) (CORE_ADDR, int, int, struct expression *))
789 de_fault (to_stopped_by_watchpoint,
792 de_fault (to_stopped_data_address,
793 (int (*) (struct target_ops *, CORE_ADDR *))
795 de_fault (to_watchpoint_addr_within_range,
796 default_watchpoint_addr_within_range);
797 de_fault (to_region_ok_for_hw_watchpoint,
798 default_region_ok_for_hw_watchpoint);
799 de_fault (to_can_accel_watchpoint_condition,
800 (int (*) (CORE_ADDR, int, int, struct expression *))
802 de_fault (to_terminal_init,
805 de_fault (to_terminal_inferior,
808 de_fault (to_terminal_ours_for_output,
811 de_fault (to_terminal_ours,
814 de_fault (to_terminal_save_ours,
817 de_fault (to_terminal_info,
818 default_terminal_info);
820 (void (*) (char *, int))
822 de_fault (to_post_startup_inferior,
825 de_fault (to_insert_fork_catchpoint,
828 de_fault (to_remove_fork_catchpoint,
831 de_fault (to_insert_vfork_catchpoint,
834 de_fault (to_remove_vfork_catchpoint,
837 de_fault (to_insert_exec_catchpoint,
840 de_fault (to_remove_exec_catchpoint,
843 de_fault (to_set_syscall_catchpoint,
844 (int (*) (int, int, int, int, int *))
846 de_fault (to_has_exited,
847 (int (*) (int, int, int *))
849 de_fault (to_can_run,
851 de_fault (to_extra_thread_info,
852 (char *(*) (struct thread_info *))
854 de_fault (to_thread_name,
855 (char *(*) (struct thread_info *))
860 current_target.to_xfer_partial = current_xfer_partial;
862 (void (*) (char *, struct ui_file *))
864 de_fault (to_pid_to_exec_file,
868 (void (*) (void (*) (enum inferior_event_type, void*), void*))
870 de_fault (to_thread_architecture,
871 default_thread_architecture);
872 current_target.to_read_description = NULL;
873 de_fault (to_get_ada_task_ptid,
874 (ptid_t (*) (long, long))
875 default_get_ada_task_ptid);
876 de_fault (to_supports_multi_process,
879 de_fault (to_supports_enable_disable_tracepoint,
882 de_fault (to_supports_string_tracing,
885 de_fault (to_trace_init,
888 de_fault (to_download_tracepoint,
889 (void (*) (struct bp_location *))
891 de_fault (to_can_download_tracepoint,
894 de_fault (to_download_trace_state_variable,
895 (void (*) (struct trace_state_variable *))
897 de_fault (to_enable_tracepoint,
898 (void (*) (struct bp_location *))
900 de_fault (to_disable_tracepoint,
901 (void (*) (struct bp_location *))
903 de_fault (to_trace_set_readonly_regions,
906 de_fault (to_trace_start,
909 de_fault (to_get_trace_status,
910 (int (*) (struct trace_status *))
912 de_fault (to_get_tracepoint_status,
913 (void (*) (struct breakpoint *, struct uploaded_tp *))
915 de_fault (to_trace_stop,
918 de_fault (to_trace_find,
919 (int (*) (enum trace_find_type, int, CORE_ADDR, CORE_ADDR, int *))
921 de_fault (to_get_trace_state_variable_value,
922 (int (*) (int, LONGEST *))
924 de_fault (to_save_trace_data,
925 (int (*) (const char *))
927 de_fault (to_upload_tracepoints,
928 (int (*) (struct uploaded_tp **))
930 de_fault (to_upload_trace_state_variables,
931 (int (*) (struct uploaded_tsv **))
933 de_fault (to_get_raw_trace_data,
934 (LONGEST (*) (gdb_byte *, ULONGEST, LONGEST))
936 de_fault (to_get_min_fast_tracepoint_insn_len,
939 de_fault (to_set_disconnected_tracing,
942 de_fault (to_set_circular_trace_buffer,
945 de_fault (to_set_trace_buffer_size,
948 de_fault (to_set_trace_notes,
949 (int (*) (const char *, const char *, const char *))
951 de_fault (to_get_tib_address,
952 (int (*) (ptid_t, CORE_ADDR *))
954 de_fault (to_set_permissions,
957 de_fault (to_static_tracepoint_marker_at,
958 (int (*) (CORE_ADDR, struct static_tracepoint_marker *))
960 de_fault (to_static_tracepoint_markers_by_strid,
961 (VEC(static_tracepoint_marker_p) * (*) (const char *))
963 de_fault (to_traceframe_info,
964 (struct traceframe_info * (*) (void))
966 de_fault (to_supports_evaluation_of_breakpoint_conditions,
969 de_fault (to_can_run_breakpoint_commands,
972 de_fault (to_use_agent,
975 de_fault (to_can_use_agent,
978 de_fault (to_augmented_libraries_svr4_read,
981 de_fault (to_execution_direction, default_execution_direction);
985 /* Finally, position the target-stack beneath the squashed
986 "current_target". That way code looking for a non-inherited
987 target method can quickly and simply find it. */
988 current_target.beneath = target_stack;
991 setup_target_debug ();
994 /* Push a new target type into the stack of the existing target accessors,
995 possibly superseding some of the existing accessors.
997 Rather than allow an empty stack, we always have the dummy target at
998 the bottom stratum, so we can call the function vectors without
1002 push_target (struct target_ops *t)
1004 struct target_ops **cur;
1006 /* Check magic number. If wrong, it probably means someone changed
1007 the struct definition, but not all the places that initialize one. */
1008 if (t->to_magic != OPS_MAGIC)
1010 fprintf_unfiltered (gdb_stderr,
1011 "Magic number of %s target struct wrong\n",
1013 internal_error (__FILE__, __LINE__,
1014 _("failed internal consistency check"));
1017 /* Find the proper stratum to install this target in. */
1018 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
1020 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
1024 /* If there's already targets at this stratum, remove them. */
1025 /* FIXME: cagney/2003-10-15: I think this should be popping all
1026 targets to CUR, and not just those at this stratum level. */
1027 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
1029 /* There's already something at this stratum level. Close it,
1030 and un-hook it from the stack. */
1031 struct target_ops *tmp = (*cur);
1033 (*cur) = (*cur)->beneath;
1034 tmp->beneath = NULL;
1038 /* We have removed all targets in our stratum, now add the new one. */
1039 t->beneath = (*cur);
1042 update_current_target ();
1045 /* Remove a target_ops vector from the stack, wherever it may be.
1046 Return how many times it was removed (0 or 1). */
1049 unpush_target (struct target_ops *t)
1051 struct target_ops **cur;
1052 struct target_ops *tmp;
1054 if (t->to_stratum == dummy_stratum)
1055 internal_error (__FILE__, __LINE__,
1056 _("Attempt to unpush the dummy target"));
1058 /* Look for the specified target. Note that we assume that a target
1059 can only occur once in the target stack. */
1061 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
1067 /* If we don't find target_ops, quit. Only open targets should be
1072 /* Unchain the target. */
1074 (*cur) = (*cur)->beneath;
1075 tmp->beneath = NULL;
1077 update_current_target ();
1079 /* Finally close the target. Note we do this after unchaining, so
1080 any target method calls from within the target_close
1081 implementation don't end up in T anymore. */
1090 target_close (target_stack); /* Let it clean up. */
1091 if (unpush_target (target_stack) == 1)
1094 fprintf_unfiltered (gdb_stderr,
1095 "pop_target couldn't find target %s\n",
1096 current_target.to_shortname);
1097 internal_error (__FILE__, __LINE__,
1098 _("failed internal consistency check"));
1102 pop_all_targets_above (enum strata above_stratum)
1104 while ((int) (current_target.to_stratum) > (int) above_stratum)
1106 target_close (target_stack);
1107 if (!unpush_target (target_stack))
1109 fprintf_unfiltered (gdb_stderr,
1110 "pop_all_targets couldn't find target %s\n",
1111 target_stack->to_shortname);
1112 internal_error (__FILE__, __LINE__,
1113 _("failed internal consistency check"));
1120 pop_all_targets (void)
1122 pop_all_targets_above (dummy_stratum);
1125 /* Return 1 if T is now pushed in the target stack. Return 0 otherwise. */
1128 target_is_pushed (struct target_ops *t)
1130 struct target_ops **cur;
1132 /* Check magic number. If wrong, it probably means someone changed
1133 the struct definition, but not all the places that initialize one. */
1134 if (t->to_magic != OPS_MAGIC)
1136 fprintf_unfiltered (gdb_stderr,
1137 "Magic number of %s target struct wrong\n",
1139 internal_error (__FILE__, __LINE__,
1140 _("failed internal consistency check"));
1143 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
1150 /* Using the objfile specified in OBJFILE, find the address for the
1151 current thread's thread-local storage with offset OFFSET. */
1153 target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
1155 volatile CORE_ADDR addr = 0;
1156 struct target_ops *target;
1158 for (target = current_target.beneath;
1160 target = target->beneath)
1162 if (target->to_get_thread_local_address != NULL)
1167 && gdbarch_fetch_tls_load_module_address_p (target_gdbarch ()))
1169 ptid_t ptid = inferior_ptid;
1170 volatile struct gdb_exception ex;
1172 TRY_CATCH (ex, RETURN_MASK_ALL)
1176 /* Fetch the load module address for this objfile. */
1177 lm_addr = gdbarch_fetch_tls_load_module_address (target_gdbarch (),
1179 /* If it's 0, throw the appropriate exception. */
1181 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
1182 _("TLS load module not found"));
1184 addr = target->to_get_thread_local_address (target, ptid,
1187 /* If an error occurred, print TLS related messages here. Otherwise,
1188 throw the error to some higher catcher. */
1191 int objfile_is_library = (objfile->flags & OBJF_SHARED);
1195 case TLS_NO_LIBRARY_SUPPORT_ERROR:
1196 error (_("Cannot find thread-local variables "
1197 "in this thread library."));
1199 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
1200 if (objfile_is_library)
1201 error (_("Cannot find shared library `%s' in dynamic"
1202 " linker's load module list"), objfile->name);
1204 error (_("Cannot find executable file `%s' in dynamic"
1205 " linker's load module list"), objfile->name);
1207 case TLS_NOT_ALLOCATED_YET_ERROR:
1208 if (objfile_is_library)
1209 error (_("The inferior has not yet allocated storage for"
1210 " thread-local variables in\n"
1211 "the shared library `%s'\n"
1213 objfile->name, target_pid_to_str (ptid));
1215 error (_("The inferior has not yet allocated storage for"
1216 " thread-local variables in\n"
1217 "the executable `%s'\n"
1219 objfile->name, target_pid_to_str (ptid));
1221 case TLS_GENERIC_ERROR:
1222 if (objfile_is_library)
1223 error (_("Cannot find thread-local storage for %s, "
1224 "shared library %s:\n%s"),
1225 target_pid_to_str (ptid),
1226 objfile->name, ex.message);
1228 error (_("Cannot find thread-local storage for %s, "
1229 "executable file %s:\n%s"),
1230 target_pid_to_str (ptid),
1231 objfile->name, ex.message);
1234 throw_exception (ex);
1239 /* It wouldn't be wrong here to try a gdbarch method, too; finding
1240 TLS is an ABI-specific thing. But we don't do that yet. */
1242 error (_("Cannot find thread-local variables on this target"));
1248 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
1250 /* target_read_string -- read a null terminated string, up to LEN bytes,
1251 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
1252 Set *STRING to a pointer to malloc'd memory containing the data; the caller
1253 is responsible for freeing it. Return the number of bytes successfully
1257 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
1259 int tlen, offset, i;
1263 int buffer_allocated;
1265 unsigned int nbytes_read = 0;
1267 gdb_assert (string);
1269 /* Small for testing. */
1270 buffer_allocated = 4;
1271 buffer = xmalloc (buffer_allocated);
1276 tlen = MIN (len, 4 - (memaddr & 3));
1277 offset = memaddr & 3;
1279 errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
1282 /* The transfer request might have crossed the boundary to an
1283 unallocated region of memory. Retry the transfer, requesting
1287 errcode = target_read_memory (memaddr, buf, 1);
1292 if (bufptr - buffer + tlen > buffer_allocated)
1296 bytes = bufptr - buffer;
1297 buffer_allocated *= 2;
1298 buffer = xrealloc (buffer, buffer_allocated);
1299 bufptr = buffer + bytes;
1302 for (i = 0; i < tlen; i++)
1304 *bufptr++ = buf[i + offset];
1305 if (buf[i + offset] == '\000')
1307 nbytes_read += i + 1;
1314 nbytes_read += tlen;
1323 struct target_section_table *
1324 target_get_section_table (struct target_ops *target)
1326 struct target_ops *t;
1329 fprintf_unfiltered (gdb_stdlog, "target_get_section_table ()\n");
1331 for (t = target; t != NULL; t = t->beneath)
1332 if (t->to_get_section_table != NULL)
1333 return (*t->to_get_section_table) (t);
1338 /* Find a section containing ADDR. */
1340 struct target_section *
1341 target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1343 struct target_section_table *table = target_get_section_table (target);
1344 struct target_section *secp;
1349 for (secp = table->sections; secp < table->sections_end; secp++)
1351 if (addr >= secp->addr && addr < secp->endaddr)
1357 /* Read memory from the live target, even if currently inspecting a
1358 traceframe. The return is the same as that of target_read. */
1361 target_read_live_memory (enum target_object object,
1362 ULONGEST memaddr, gdb_byte *myaddr, LONGEST len)
1365 struct cleanup *cleanup;
1367 /* Switch momentarily out of tfind mode so to access live memory.
1368 Note that this must not clear global state, such as the frame
1369 cache, which must still remain valid for the previous traceframe.
1370 We may be _building_ the frame cache at this point. */
1371 cleanup = make_cleanup_restore_traceframe_number ();
1372 set_traceframe_number (-1);
1374 ret = target_read (current_target.beneath, object, NULL,
1375 myaddr, memaddr, len);
1377 do_cleanups (cleanup);
1381 /* Using the set of read-only target sections of OPS, read live
1382 read-only memory. Note that the actual reads start from the
1383 top-most target again.
1385 For interface/parameters/return description see target.h,
1389 memory_xfer_live_readonly_partial (struct target_ops *ops,
1390 enum target_object object,
1391 gdb_byte *readbuf, ULONGEST memaddr,
1394 struct target_section *secp;
1395 struct target_section_table *table;
1397 secp = target_section_by_addr (ops, memaddr);
1399 && (bfd_get_section_flags (secp->the_bfd_section->owner,
1400 secp->the_bfd_section)
1403 struct target_section *p;
1404 ULONGEST memend = memaddr + len;
1406 table = target_get_section_table (ops);
1408 for (p = table->sections; p < table->sections_end; p++)
1410 if (memaddr >= p->addr)
1412 if (memend <= p->endaddr)
1414 /* Entire transfer is within this section. */
1415 return target_read_live_memory (object, memaddr,
1418 else if (memaddr >= p->endaddr)
1420 /* This section ends before the transfer starts. */
1425 /* This section overlaps the transfer. Just do half. */
1426 len = p->endaddr - memaddr;
1427 return target_read_live_memory (object, memaddr,
1437 /* Perform a partial memory transfer.
1438 For docs see target.h, to_xfer_partial. */
1441 memory_xfer_partial_1 (struct target_ops *ops, enum target_object object,
1442 void *readbuf, const void *writebuf, ULONGEST memaddr,
1447 struct mem_region *region;
1448 struct inferior *inf;
1450 /* For accesses to unmapped overlay sections, read directly from
1451 files. Must do this first, as MEMADDR may need adjustment. */
1452 if (readbuf != NULL && overlay_debugging)
1454 struct obj_section *section = find_pc_overlay (memaddr);
1456 if (pc_in_unmapped_range (memaddr, section))
1458 struct target_section_table *table
1459 = target_get_section_table (ops);
1460 const char *section_name = section->the_bfd_section->name;
1462 memaddr = overlay_mapped_address (memaddr, section);
1463 return section_table_xfer_memory_partial (readbuf, writebuf,
1466 table->sections_end,
1471 /* Try the executable files, if "trust-readonly-sections" is set. */
1472 if (readbuf != NULL && trust_readonly)
1474 struct target_section *secp;
1475 struct target_section_table *table;
1477 secp = target_section_by_addr (ops, memaddr);
1479 && (bfd_get_section_flags (secp->the_bfd_section->owner,
1480 secp->the_bfd_section)
1483 table = target_get_section_table (ops);
1484 return section_table_xfer_memory_partial (readbuf, writebuf,
1487 table->sections_end,
1492 /* If reading unavailable memory in the context of traceframes, and
1493 this address falls within a read-only section, fallback to
1494 reading from live memory. */
1495 if (readbuf != NULL && get_traceframe_number () != -1)
1497 VEC(mem_range_s) *available;
1499 /* If we fail to get the set of available memory, then the
1500 target does not support querying traceframe info, and so we
1501 attempt reading from the traceframe anyway (assuming the
1502 target implements the old QTro packet then). */
1503 if (traceframe_available_memory (&available, memaddr, len))
1505 struct cleanup *old_chain;
1507 old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
1509 if (VEC_empty (mem_range_s, available)
1510 || VEC_index (mem_range_s, available, 0)->start != memaddr)
1512 /* Don't read into the traceframe's available
1514 if (!VEC_empty (mem_range_s, available))
1516 LONGEST oldlen = len;
1518 len = VEC_index (mem_range_s, available, 0)->start - memaddr;
1519 gdb_assert (len <= oldlen);
1522 do_cleanups (old_chain);
1524 /* This goes through the topmost target again. */
1525 res = memory_xfer_live_readonly_partial (ops, object,
1526 readbuf, memaddr, len);
1530 /* No use trying further, we know some memory starting
1531 at MEMADDR isn't available. */
1535 /* Don't try to read more than how much is available, in
1536 case the target implements the deprecated QTro packet to
1537 cater for older GDBs (the target's knowledge of read-only
1538 sections may be outdated by now). */
1539 len = VEC_index (mem_range_s, available, 0)->length;
1541 do_cleanups (old_chain);
1545 /* Try GDB's internal data cache. */
1546 region = lookup_mem_region (memaddr);
1547 /* region->hi == 0 means there's no upper bound. */
1548 if (memaddr + len < region->hi || region->hi == 0)
1551 reg_len = region->hi - memaddr;
1553 switch (region->attrib.mode)
1556 if (writebuf != NULL)
1561 if (readbuf != NULL)
1566 /* We only support writing to flash during "load" for now. */
1567 if (writebuf != NULL)
1568 error (_("Writing to flash memory forbidden in this context"));
1575 if (!ptid_equal (inferior_ptid, null_ptid))
1576 inf = find_inferior_pid (ptid_get_pid (inferior_ptid));
1581 /* The dcache reads whole cache lines; that doesn't play well
1582 with reading from a trace buffer, because reading outside of
1583 the collected memory range fails. */
1584 && get_traceframe_number () == -1
1585 && (region->attrib.cache
1586 || (stack_cache_enabled_p && object == TARGET_OBJECT_STACK_MEMORY)))
1588 if (readbuf != NULL)
1589 res = dcache_xfer_memory (ops, target_dcache, memaddr, readbuf,
1592 /* FIXME drow/2006-08-09: If we're going to preserve const
1593 correctness dcache_xfer_memory should take readbuf and
1595 res = dcache_xfer_memory (ops, target_dcache, memaddr,
1604 /* If none of those methods found the memory we wanted, fall back
1605 to a target partial transfer. Normally a single call to
1606 to_xfer_partial is enough; if it doesn't recognize an object
1607 it will call the to_xfer_partial of the next target down.
1608 But for memory this won't do. Memory is the only target
1609 object which can be read from more than one valid target.
1610 A core file, for instance, could have some of memory but
1611 delegate other bits to the target below it. So, we must
1612 manually try all targets. */
1616 res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1617 readbuf, writebuf, memaddr, reg_len);
1621 /* We want to continue past core files to executables, but not
1622 past a running target's memory. */
1623 if (ops->to_has_all_memory (ops))
1628 while (ops != NULL);
1630 /* Make sure the cache gets updated no matter what - if we are writing
1631 to the stack. Even if this write is not tagged as such, we still need
1632 to update the cache. */
1637 && !region->attrib.cache
1638 && stack_cache_enabled_p
1639 && object != TARGET_OBJECT_STACK_MEMORY)
1641 dcache_update (target_dcache, memaddr, (void *) writebuf, res);
1644 /* If we still haven't got anything, return the last error. We
1649 /* Perform a partial memory transfer. For docs see target.h,
1653 memory_xfer_partial (struct target_ops *ops, enum target_object object,
1654 void *readbuf, const void *writebuf, ULONGEST memaddr,
1659 /* Zero length requests are ok and require no work. */
1663 /* Fill in READBUF with breakpoint shadows, or WRITEBUF with
1664 breakpoint insns, thus hiding out from higher layers whether
1665 there are software breakpoints inserted in the code stream. */
1666 if (readbuf != NULL)
1668 res = memory_xfer_partial_1 (ops, object, readbuf, NULL, memaddr, len);
1670 if (res > 0 && !show_memory_breakpoints)
1671 breakpoint_xfer_memory (readbuf, NULL, NULL, memaddr, res);
1676 struct cleanup *old_chain;
1678 buf = xmalloc (len);
1679 old_chain = make_cleanup (xfree, buf);
1680 memcpy (buf, writebuf, len);
1682 breakpoint_xfer_memory (NULL, buf, writebuf, memaddr, len);
1683 res = memory_xfer_partial_1 (ops, object, NULL, buf, memaddr, len);
1685 do_cleanups (old_chain);
1692 restore_show_memory_breakpoints (void *arg)
1694 show_memory_breakpoints = (uintptr_t) arg;
1698 make_show_memory_breakpoints_cleanup (int show)
1700 int current = show_memory_breakpoints;
1702 show_memory_breakpoints = show;
1703 return make_cleanup (restore_show_memory_breakpoints,
1704 (void *) (uintptr_t) current);
1707 /* For docs see target.h, to_xfer_partial. */
1710 target_xfer_partial (struct target_ops *ops,
1711 enum target_object object, const char *annex,
1712 void *readbuf, const void *writebuf,
1713 ULONGEST offset, LONGEST len)
1717 gdb_assert (ops->to_xfer_partial != NULL);
1719 if (writebuf && !may_write_memory)
1720 error (_("Writing to memory is not allowed (addr %s, len %s)"),
1721 core_addr_to_string_nz (offset), plongest (len));
1723 /* If this is a memory transfer, let the memory-specific code
1724 have a look at it instead. Memory transfers are more
1726 if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY)
1727 retval = memory_xfer_partial (ops, object, readbuf,
1728 writebuf, offset, len);
1731 enum target_object raw_object = object;
1733 /* If this is a raw memory transfer, request the normal
1734 memory object from other layers. */
1735 if (raw_object == TARGET_OBJECT_RAW_MEMORY)
1736 raw_object = TARGET_OBJECT_MEMORY;
1738 retval = ops->to_xfer_partial (ops, raw_object, annex, readbuf,
1739 writebuf, offset, len);
1744 const unsigned char *myaddr = NULL;
1746 fprintf_unfiltered (gdb_stdlog,
1747 "%s:target_xfer_partial "
1748 "(%d, %s, %s, %s, %s, %s) = %s",
1751 (annex ? annex : "(null)"),
1752 host_address_to_string (readbuf),
1753 host_address_to_string (writebuf),
1754 core_addr_to_string_nz (offset),
1755 plongest (len), plongest (retval));
1761 if (retval > 0 && myaddr != NULL)
1765 fputs_unfiltered (", bytes =", gdb_stdlog);
1766 for (i = 0; i < retval; i++)
1768 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
1770 if (targetdebug < 2 && i > 0)
1772 fprintf_unfiltered (gdb_stdlog, " ...");
1775 fprintf_unfiltered (gdb_stdlog, "\n");
1778 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1782 fputc_unfiltered ('\n', gdb_stdlog);
1787 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
1788 GDB's memory at MYADDR. Returns either 0 for success or an errno value
1789 if any error occurs.
1791 If an error occurs, no guarantee is made about the contents of the data at
1792 MYADDR. In particular, the caller should not depend upon partial reads
1793 filling the buffer with good data. There is no way for the caller to know
1794 how much good data might have been transfered anyway. Callers that can
1795 deal with partial reads should call target_read (which will retry until
1796 it makes no progress, and then return how much was transferred). */
1799 target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1801 /* Dispatch to the topmost target, not the flattened current_target.
1802 Memory accesses check target->to_has_(all_)memory, and the
1803 flattened target doesn't inherit those. */
1804 if (target_read (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1805 myaddr, memaddr, len) == len)
1811 /* Like target_read_memory, but specify explicitly that this is a read from
1812 the target's stack. This may trigger different cache behavior. */
1815 target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1817 /* Dispatch to the topmost target, not the flattened current_target.
1818 Memory accesses check target->to_has_(all_)memory, and the
1819 flattened target doesn't inherit those. */
1821 if (target_read (current_target.beneath, TARGET_OBJECT_STACK_MEMORY, NULL,
1822 myaddr, memaddr, len) == len)
1828 /* Write LEN bytes from MYADDR to target memory at address MEMADDR.
1829 Returns either 0 for success or an errno value if any error occurs.
1830 If an error occurs, no guarantee is made about how much data got written.
1831 Callers that can deal with partial writes should call target_write. */
1834 target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
1836 /* Dispatch to the topmost target, not the flattened current_target.
1837 Memory accesses check target->to_has_(all_)memory, and the
1838 flattened target doesn't inherit those. */
1839 if (target_write (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1840 myaddr, memaddr, len) == len)
1846 /* Write LEN bytes from MYADDR to target raw memory at address
1847 MEMADDR. Returns either 0 for success or an errno value if any
1848 error occurs. If an error occurs, no guarantee is made about how
1849 much data got written. Callers that can deal with partial writes
1850 should call target_write. */
1853 target_write_raw_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
1855 /* Dispatch to the topmost target, not the flattened current_target.
1856 Memory accesses check target->to_has_(all_)memory, and the
1857 flattened target doesn't inherit those. */
1858 if (target_write (current_target.beneath, TARGET_OBJECT_RAW_MEMORY, NULL,
1859 myaddr, memaddr, len) == len)
1865 /* Fetch the target's memory map. */
1868 target_memory_map (void)
1870 VEC(mem_region_s) *result;
1871 struct mem_region *last_one, *this_one;
1873 struct target_ops *t;
1876 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1878 for (t = current_target.beneath; t != NULL; t = t->beneath)
1879 if (t->to_memory_map != NULL)
1885 result = t->to_memory_map (t);
1889 qsort (VEC_address (mem_region_s, result),
1890 VEC_length (mem_region_s, result),
1891 sizeof (struct mem_region), mem_region_cmp);
1893 /* Check that regions do not overlap. Simultaneously assign
1894 a numbering for the "mem" commands to use to refer to
1897 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1899 this_one->number = ix;
1901 if (last_one && last_one->hi > this_one->lo)
1903 warning (_("Overlapping regions in memory map: ignoring"));
1904 VEC_free (mem_region_s, result);
1907 last_one = this_one;
1914 target_flash_erase (ULONGEST address, LONGEST length)
1916 struct target_ops *t;
1918 for (t = current_target.beneath; t != NULL; t = t->beneath)
1919 if (t->to_flash_erase != NULL)
1922 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
1923 hex_string (address), phex (length, 0));
1924 t->to_flash_erase (t, address, length);
1932 target_flash_done (void)
1934 struct target_ops *t;
1936 for (t = current_target.beneath; t != NULL; t = t->beneath)
1937 if (t->to_flash_done != NULL)
1940 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
1941 t->to_flash_done (t);
1949 show_trust_readonly (struct ui_file *file, int from_tty,
1950 struct cmd_list_element *c, const char *value)
1952 fprintf_filtered (file,
1953 _("Mode for reading from readonly sections is %s.\n"),
1957 /* More generic transfers. */
1960 default_xfer_partial (struct target_ops *ops, enum target_object object,
1961 const char *annex, gdb_byte *readbuf,
1962 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1964 if (object == TARGET_OBJECT_MEMORY
1965 && ops->deprecated_xfer_memory != NULL)
1966 /* If available, fall back to the target's
1967 "deprecated_xfer_memory" method. */
1972 if (writebuf != NULL)
1974 void *buffer = xmalloc (len);
1975 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1977 memcpy (buffer, writebuf, len);
1978 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1979 1/*write*/, NULL, ops);
1980 do_cleanups (cleanup);
1982 if (readbuf != NULL)
1983 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1984 0/*read*/, NULL, ops);
1987 else if (xfered == 0 && errno == 0)
1988 /* "deprecated_xfer_memory" uses 0, cross checked against
1989 ERRNO as one indication of an error. */
1994 else if (ops->beneath != NULL)
1995 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1996 readbuf, writebuf, offset, len);
2001 /* The xfer_partial handler for the topmost target. Unlike the default,
2002 it does not need to handle memory specially; it just passes all
2003 requests down the stack. */
2006 current_xfer_partial (struct target_ops *ops, enum target_object object,
2007 const char *annex, gdb_byte *readbuf,
2008 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
2010 if (ops->beneath != NULL)
2011 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
2012 readbuf, writebuf, offset, len);
2017 /* Target vector read/write partial wrapper functions. */
2020 target_read_partial (struct target_ops *ops,
2021 enum target_object object,
2022 const char *annex, gdb_byte *buf,
2023 ULONGEST offset, LONGEST len)
2025 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len);
2029 target_write_partial (struct target_ops *ops,
2030 enum target_object object,
2031 const char *annex, const gdb_byte *buf,
2032 ULONGEST offset, LONGEST len)
2034 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len);
2037 /* Wrappers to perform the full transfer. */
2039 /* For docs on target_read see target.h. */
2042 target_read (struct target_ops *ops,
2043 enum target_object object,
2044 const char *annex, gdb_byte *buf,
2045 ULONGEST offset, LONGEST len)
2049 while (xfered < len)
2051 LONGEST xfer = target_read_partial (ops, object, annex,
2052 (gdb_byte *) buf + xfered,
2053 offset + xfered, len - xfered);
2055 /* Call an observer, notifying them of the xfer progress? */
2066 /* Assuming that the entire [begin, end) range of memory cannot be
2067 read, try to read whatever subrange is possible to read.
2069 The function returns, in RESULT, either zero or one memory block.
2070 If there's a readable subrange at the beginning, it is completely
2071 read and returned. Any further readable subrange will not be read.
2072 Otherwise, if there's a readable subrange at the end, it will be
2073 completely read and returned. Any readable subranges before it
2074 (obviously, not starting at the beginning), will be ignored. In
2075 other cases -- either no readable subrange, or readable subrange(s)
2076 that is neither at the beginning, or end, nothing is returned.
2078 The purpose of this function is to handle a read across a boundary
2079 of accessible memory in a case when memory map is not available.
2080 The above restrictions are fine for this case, but will give
2081 incorrect results if the memory is 'patchy'. However, supporting
2082 'patchy' memory would require trying to read every single byte,
2083 and it seems unacceptable solution. Explicit memory map is
2084 recommended for this case -- and target_read_memory_robust will
2085 take care of reading multiple ranges then. */
2088 read_whatever_is_readable (struct target_ops *ops,
2089 ULONGEST begin, ULONGEST end,
2090 VEC(memory_read_result_s) **result)
2092 gdb_byte *buf = xmalloc (end - begin);
2093 ULONGEST current_begin = begin;
2094 ULONGEST current_end = end;
2096 memory_read_result_s r;
2098 /* If we previously failed to read 1 byte, nothing can be done here. */
2099 if (end - begin <= 1)
2105 /* Check that either first or the last byte is readable, and give up
2106 if not. This heuristic is meant to permit reading accessible memory
2107 at the boundary of accessible region. */
2108 if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
2109 buf, begin, 1) == 1)
2114 else if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
2115 buf + (end-begin) - 1, end - 1, 1) == 1)
2126 /* Loop invariant is that the [current_begin, current_end) was previously
2127 found to be not readable as a whole.
2129 Note loop condition -- if the range has 1 byte, we can't divide the range
2130 so there's no point trying further. */
2131 while (current_end - current_begin > 1)
2133 ULONGEST first_half_begin, first_half_end;
2134 ULONGEST second_half_begin, second_half_end;
2136 ULONGEST middle = current_begin + (current_end - current_begin)/2;
2140 first_half_begin = current_begin;
2141 first_half_end = middle;
2142 second_half_begin = middle;
2143 second_half_end = current_end;
2147 first_half_begin = middle;
2148 first_half_end = current_end;
2149 second_half_begin = current_begin;
2150 second_half_end = middle;
2153 xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2154 buf + (first_half_begin - begin),
2156 first_half_end - first_half_begin);
2158 if (xfer == first_half_end - first_half_begin)
2160 /* This half reads up fine. So, the error must be in the
2162 current_begin = second_half_begin;
2163 current_end = second_half_end;
2167 /* This half is not readable. Because we've tried one byte, we
2168 know some part of this half if actually redable. Go to the next
2169 iteration to divide again and try to read.
2171 We don't handle the other half, because this function only tries
2172 to read a single readable subrange. */
2173 current_begin = first_half_begin;
2174 current_end = first_half_end;
2180 /* The [begin, current_begin) range has been read. */
2182 r.end = current_begin;
2187 /* The [current_end, end) range has been read. */
2188 LONGEST rlen = end - current_end;
2190 r.data = xmalloc (rlen);
2191 memcpy (r.data, buf + current_end - begin, rlen);
2192 r.begin = current_end;
2196 VEC_safe_push(memory_read_result_s, (*result), &r);
2200 free_memory_read_result_vector (void *x)
2202 VEC(memory_read_result_s) *v = x;
2203 memory_read_result_s *current;
2206 for (ix = 0; VEC_iterate (memory_read_result_s, v, ix, current); ++ix)
2208 xfree (current->data);
2210 VEC_free (memory_read_result_s, v);
2213 VEC(memory_read_result_s) *
2214 read_memory_robust (struct target_ops *ops, ULONGEST offset, LONGEST len)
2216 VEC(memory_read_result_s) *result = 0;
2219 while (xfered < len)
2221 struct mem_region *region = lookup_mem_region (offset + xfered);
2224 /* If there is no explicit region, a fake one should be created. */
2225 gdb_assert (region);
2227 if (region->hi == 0)
2228 rlen = len - xfered;
2230 rlen = region->hi - offset;
2232 if (region->attrib.mode == MEM_NONE || region->attrib.mode == MEM_WO)
2234 /* Cannot read this region. Note that we can end up here only
2235 if the region is explicitly marked inaccessible, or
2236 'inaccessible-by-default' is in effect. */
2241 LONGEST to_read = min (len - xfered, rlen);
2242 gdb_byte *buffer = (gdb_byte *)xmalloc (to_read);
2244 LONGEST xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2245 (gdb_byte *) buffer,
2246 offset + xfered, to_read);
2247 /* Call an observer, notifying them of the xfer progress? */
2250 /* Got an error reading full chunk. See if maybe we can read
2253 read_whatever_is_readable (ops, offset + xfered,
2254 offset + xfered + to_read, &result);
2259 struct memory_read_result r;
2261 r.begin = offset + xfered;
2262 r.end = r.begin + xfer;
2263 VEC_safe_push (memory_read_result_s, result, &r);
2273 /* An alternative to target_write with progress callbacks. */
2276 target_write_with_progress (struct target_ops *ops,
2277 enum target_object object,
2278 const char *annex, const gdb_byte *buf,
2279 ULONGEST offset, LONGEST len,
2280 void (*progress) (ULONGEST, void *), void *baton)
2284 /* Give the progress callback a chance to set up. */
2286 (*progress) (0, baton);
2288 while (xfered < len)
2290 LONGEST xfer = target_write_partial (ops, object, annex,
2291 (gdb_byte *) buf + xfered,
2292 offset + xfered, len - xfered);
2300 (*progress) (xfer, baton);
2308 /* For docs on target_write see target.h. */
2311 target_write (struct target_ops *ops,
2312 enum target_object object,
2313 const char *annex, const gdb_byte *buf,
2314 ULONGEST offset, LONGEST len)
2316 return target_write_with_progress (ops, object, annex, buf, offset, len,
2320 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2321 the size of the transferred data. PADDING additional bytes are
2322 available in *BUF_P. This is a helper function for
2323 target_read_alloc; see the declaration of that function for more
2327 target_read_alloc_1 (struct target_ops *ops, enum target_object object,
2328 const char *annex, gdb_byte **buf_p, int padding)
2330 size_t buf_alloc, buf_pos;
2334 /* This function does not have a length parameter; it reads the
2335 entire OBJECT). Also, it doesn't support objects fetched partly
2336 from one target and partly from another (in a different stratum,
2337 e.g. a core file and an executable). Both reasons make it
2338 unsuitable for reading memory. */
2339 gdb_assert (object != TARGET_OBJECT_MEMORY);
2341 /* Start by reading up to 4K at a time. The target will throttle
2342 this number down if necessary. */
2344 buf = xmalloc (buf_alloc);
2348 n = target_read_partial (ops, object, annex, &buf[buf_pos],
2349 buf_pos, buf_alloc - buf_pos - padding);
2352 /* An error occurred. */
2358 /* Read all there was. */
2368 /* If the buffer is filling up, expand it. */
2369 if (buf_alloc < buf_pos * 2)
2372 buf = xrealloc (buf, buf_alloc);
2379 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2380 the size of the transferred data. See the declaration in "target.h"
2381 function for more information about the return value. */
2384 target_read_alloc (struct target_ops *ops, enum target_object object,
2385 const char *annex, gdb_byte **buf_p)
2387 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
2390 /* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
2391 returned as a string, allocated using xmalloc. If an error occurs
2392 or the transfer is unsupported, NULL is returned. Empty objects
2393 are returned as allocated but empty strings. A warning is issued
2394 if the result contains any embedded NUL bytes. */
2397 target_read_stralloc (struct target_ops *ops, enum target_object object,
2402 LONGEST i, transferred;
2404 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
2405 bufstr = (char *) buffer;
2407 if (transferred < 0)
2410 if (transferred == 0)
2411 return xstrdup ("");
2413 bufstr[transferred] = 0;
2415 /* Check for embedded NUL bytes; but allow trailing NULs. */
2416 for (i = strlen (bufstr); i < transferred; i++)
2419 warning (_("target object %d, annex %s, "
2420 "contained unexpected null characters"),
2421 (int) object, annex ? annex : "(none)");
2428 /* Memory transfer methods. */
2431 get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
2434 /* This method is used to read from an alternate, non-current
2435 target. This read must bypass the overlay support (as symbols
2436 don't match this target), and GDB's internal cache (wrong cache
2437 for this target). */
2438 if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
2440 memory_error (EIO, addr);
2444 get_target_memory_unsigned (struct target_ops *ops, CORE_ADDR addr,
2445 int len, enum bfd_endian byte_order)
2447 gdb_byte buf[sizeof (ULONGEST)];
2449 gdb_assert (len <= sizeof (buf));
2450 get_target_memory (ops, addr, buf, len);
2451 return extract_unsigned_integer (buf, len, byte_order);
2455 target_insert_breakpoint (struct gdbarch *gdbarch,
2456 struct bp_target_info *bp_tgt)
2458 if (!may_insert_breakpoints)
2460 warning (_("May not insert breakpoints"));
2464 return (*current_target.to_insert_breakpoint) (gdbarch, bp_tgt);
2468 target_remove_breakpoint (struct gdbarch *gdbarch,
2469 struct bp_target_info *bp_tgt)
2471 /* This is kind of a weird case to handle, but the permission might
2472 have been changed after breakpoints were inserted - in which case
2473 we should just take the user literally and assume that any
2474 breakpoints should be left in place. */
2475 if (!may_insert_breakpoints)
2477 warning (_("May not remove breakpoints"));
2481 return (*current_target.to_remove_breakpoint) (gdbarch, bp_tgt);
2485 target_info (char *args, int from_tty)
2487 struct target_ops *t;
2488 int has_all_mem = 0;
2490 if (symfile_objfile != NULL)
2491 printf_unfiltered (_("Symbols from \"%s\".\n"), symfile_objfile->name);
2493 for (t = target_stack; t != NULL; t = t->beneath)
2495 if (!(*t->to_has_memory) (t))
2498 if ((int) (t->to_stratum) <= (int) dummy_stratum)
2501 printf_unfiltered (_("\tWhile running this, "
2502 "GDB does not access memory from...\n"));
2503 printf_unfiltered ("%s:\n", t->to_longname);
2504 (t->to_files_info) (t);
2505 has_all_mem = (*t->to_has_all_memory) (t);
2509 /* This function is called before any new inferior is created, e.g.
2510 by running a program, attaching, or connecting to a target.
2511 It cleans up any state from previous invocations which might
2512 change between runs. This is a subset of what target_preopen
2513 resets (things which might change between targets). */
2516 target_pre_inferior (int from_tty)
2518 /* Clear out solib state. Otherwise the solib state of the previous
2519 inferior might have survived and is entirely wrong for the new
2520 target. This has been observed on GNU/Linux using glibc 2.3. How
2532 Cannot access memory at address 0xdeadbeef
2535 /* In some OSs, the shared library list is the same/global/shared
2536 across inferiors. If code is shared between processes, so are
2537 memory regions and features. */
2538 if (!gdbarch_has_global_solist (target_gdbarch ()))
2540 no_shared_libraries (NULL, from_tty);
2542 invalidate_target_mem_regions ();
2544 target_clear_description ();
2547 agent_capability_invalidate ();
2550 /* Callback for iterate_over_inferiors. Gets rid of the given
2554 dispose_inferior (struct inferior *inf, void *args)
2556 struct thread_info *thread;
2558 thread = any_thread_of_process (inf->pid);
2561 switch_to_thread (thread->ptid);
2563 /* Core inferiors actually should be detached, not killed. */
2564 if (target_has_execution)
2567 target_detach (NULL, 0);
2573 /* This is to be called by the open routine before it does
2577 target_preopen (int from_tty)
2581 if (have_inferiors ())
2584 || !have_live_inferiors ()
2585 || query (_("A program is being debugged already. Kill it? ")))
2586 iterate_over_inferiors (dispose_inferior, NULL);
2588 error (_("Program not killed."));
2591 /* Calling target_kill may remove the target from the stack. But if
2592 it doesn't (which seems like a win for UDI), remove it now. */
2593 /* Leave the exec target, though. The user may be switching from a
2594 live process to a core of the same program. */
2595 pop_all_targets_above (file_stratum);
2597 target_pre_inferior (from_tty);
2600 /* Detach a target after doing deferred register stores. */
2603 target_detach (char *args, int from_tty)
2605 struct target_ops* t;
2607 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
2608 /* Don't remove global breakpoints here. They're removed on
2609 disconnection from the target. */
2612 /* If we're in breakpoints-always-inserted mode, have to remove
2613 them before detaching. */
2614 remove_breakpoints_pid (PIDGET (inferior_ptid));
2616 prepare_for_detach ();
2618 for (t = current_target.beneath; t != NULL; t = t->beneath)
2620 if (t->to_detach != NULL)
2622 t->to_detach (t, args, from_tty);
2624 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n",
2630 internal_error (__FILE__, __LINE__, _("could not find a target to detach"));
2634 target_disconnect (char *args, int from_tty)
2636 struct target_ops *t;
2638 /* If we're in breakpoints-always-inserted mode or if breakpoints
2639 are global across processes, we have to remove them before
2641 remove_breakpoints ();
2643 for (t = current_target.beneath; t != NULL; t = t->beneath)
2644 if (t->to_disconnect != NULL)
2647 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
2649 t->to_disconnect (t, args, from_tty);
2657 target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
2659 struct target_ops *t;
2661 for (t = current_target.beneath; t != NULL; t = t->beneath)
2663 if (t->to_wait != NULL)
2665 ptid_t retval = (*t->to_wait) (t, ptid, status, options);
2669 char *status_string;
2670 char *options_string;
2672 status_string = target_waitstatus_to_string (status);
2673 options_string = target_options_to_string (options);
2674 fprintf_unfiltered (gdb_stdlog,
2675 "target_wait (%d, status, options={%s})"
2677 PIDGET (ptid), options_string,
2678 PIDGET (retval), status_string);
2679 xfree (status_string);
2680 xfree (options_string);
2691 target_pid_to_str (ptid_t ptid)
2693 struct target_ops *t;
2695 for (t = current_target.beneath; t != NULL; t = t->beneath)
2697 if (t->to_pid_to_str != NULL)
2698 return (*t->to_pid_to_str) (t, ptid);
2701 return normal_pid_to_str (ptid);
2705 target_thread_name (struct thread_info *info)
2707 struct target_ops *t;
2709 for (t = current_target.beneath; t != NULL; t = t->beneath)
2711 if (t->to_thread_name != NULL)
2712 return (*t->to_thread_name) (info);
2719 target_resume (ptid_t ptid, int step, enum gdb_signal signal)
2721 struct target_ops *t;
2723 target_dcache_invalidate ();
2725 for (t = current_target.beneath; t != NULL; t = t->beneath)
2727 if (t->to_resume != NULL)
2729 t->to_resume (t, ptid, step, signal);
2731 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n",
2733 step ? "step" : "continue",
2734 gdb_signal_to_name (signal));
2736 registers_changed_ptid (ptid);
2737 set_executing (ptid, 1);
2738 set_running (ptid, 1);
2739 clear_inline_frame_state (ptid);
2748 target_pass_signals (int numsigs, unsigned char *pass_signals)
2750 struct target_ops *t;
2752 for (t = current_target.beneath; t != NULL; t = t->beneath)
2754 if (t->to_pass_signals != NULL)
2760 fprintf_unfiltered (gdb_stdlog, "target_pass_signals (%d, {",
2763 for (i = 0; i < numsigs; i++)
2764 if (pass_signals[i])
2765 fprintf_unfiltered (gdb_stdlog, " %s",
2766 gdb_signal_to_name (i));
2768 fprintf_unfiltered (gdb_stdlog, " })\n");
2771 (*t->to_pass_signals) (numsigs, pass_signals);
2778 target_program_signals (int numsigs, unsigned char *program_signals)
2780 struct target_ops *t;
2782 for (t = current_target.beneath; t != NULL; t = t->beneath)
2784 if (t->to_program_signals != NULL)
2790 fprintf_unfiltered (gdb_stdlog, "target_program_signals (%d, {",
2793 for (i = 0; i < numsigs; i++)
2794 if (program_signals[i])
2795 fprintf_unfiltered (gdb_stdlog, " %s",
2796 gdb_signal_to_name (i));
2798 fprintf_unfiltered (gdb_stdlog, " })\n");
2801 (*t->to_program_signals) (numsigs, program_signals);
2807 /* Look through the list of possible targets for a target that can
2811 target_follow_fork (int follow_child)
2813 struct target_ops *t;
2815 for (t = current_target.beneath; t != NULL; t = t->beneath)
2817 if (t->to_follow_fork != NULL)
2819 int retval = t->to_follow_fork (t, follow_child);
2822 fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n",
2823 follow_child, retval);
2828 /* Some target returned a fork event, but did not know how to follow it. */
2829 internal_error (__FILE__, __LINE__,
2830 _("could not find a target to follow fork"));
2834 target_mourn_inferior (void)
2836 struct target_ops *t;
2838 for (t = current_target.beneath; t != NULL; t = t->beneath)
2840 if (t->to_mourn_inferior != NULL)
2842 t->to_mourn_inferior (t);
2844 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2846 /* We no longer need to keep handles on any of the object files.
2847 Make sure to release them to avoid unnecessarily locking any
2848 of them while we're not actually debugging. */
2849 bfd_cache_close_all ();
2855 internal_error (__FILE__, __LINE__,
2856 _("could not find a target to follow mourn inferior"));
2859 /* Look for a target which can describe architectural features, starting
2860 from TARGET. If we find one, return its description. */
2862 const struct target_desc *
2863 target_read_description (struct target_ops *target)
2865 struct target_ops *t;
2867 for (t = target; t != NULL; t = t->beneath)
2868 if (t->to_read_description != NULL)
2870 const struct target_desc *tdesc;
2872 tdesc = t->to_read_description (t);
2880 /* The default implementation of to_search_memory.
2881 This implements a basic search of memory, reading target memory and
2882 performing the search here (as opposed to performing the search in on the
2883 target side with, for example, gdbserver). */
2886 simple_search_memory (struct target_ops *ops,
2887 CORE_ADDR start_addr, ULONGEST search_space_len,
2888 const gdb_byte *pattern, ULONGEST pattern_len,
2889 CORE_ADDR *found_addrp)
2891 /* NOTE: also defined in find.c testcase. */
2892 #define SEARCH_CHUNK_SIZE 16000
2893 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
2894 /* Buffer to hold memory contents for searching. */
2895 gdb_byte *search_buf;
2896 unsigned search_buf_size;
2897 struct cleanup *old_cleanups;
2899 search_buf_size = chunk_size + pattern_len - 1;
2901 /* No point in trying to allocate a buffer larger than the search space. */
2902 if (search_space_len < search_buf_size)
2903 search_buf_size = search_space_len;
2905 search_buf = malloc (search_buf_size);
2906 if (search_buf == NULL)
2907 error (_("Unable to allocate memory to perform the search."));
2908 old_cleanups = make_cleanup (free_current_contents, &search_buf);
2910 /* Prime the search buffer. */
2912 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2913 search_buf, start_addr, search_buf_size) != search_buf_size)
2915 warning (_("Unable to access %s bytes of target "
2916 "memory at %s, halting search."),
2917 pulongest (search_buf_size), hex_string (start_addr));
2918 do_cleanups (old_cleanups);
2922 /* Perform the search.
2924 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
2925 When we've scanned N bytes we copy the trailing bytes to the start and
2926 read in another N bytes. */
2928 while (search_space_len >= pattern_len)
2930 gdb_byte *found_ptr;
2931 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
2933 found_ptr = memmem (search_buf, nr_search_bytes,
2934 pattern, pattern_len);
2936 if (found_ptr != NULL)
2938 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
2940 *found_addrp = found_addr;
2941 do_cleanups (old_cleanups);
2945 /* Not found in this chunk, skip to next chunk. */
2947 /* Don't let search_space_len wrap here, it's unsigned. */
2948 if (search_space_len >= chunk_size)
2949 search_space_len -= chunk_size;
2951 search_space_len = 0;
2953 if (search_space_len >= pattern_len)
2955 unsigned keep_len = search_buf_size - chunk_size;
2956 CORE_ADDR read_addr = start_addr + chunk_size + keep_len;
2959 /* Copy the trailing part of the previous iteration to the front
2960 of the buffer for the next iteration. */
2961 gdb_assert (keep_len == pattern_len - 1);
2962 memcpy (search_buf, search_buf + chunk_size, keep_len);
2964 nr_to_read = min (search_space_len - keep_len, chunk_size);
2966 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2967 search_buf + keep_len, read_addr,
2968 nr_to_read) != nr_to_read)
2970 warning (_("Unable to access %s bytes of target "
2971 "memory at %s, halting search."),
2972 plongest (nr_to_read),
2973 hex_string (read_addr));
2974 do_cleanups (old_cleanups);
2978 start_addr += chunk_size;
2984 do_cleanups (old_cleanups);
2988 /* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2989 sequence of bytes in PATTERN with length PATTERN_LEN.
2991 The result is 1 if found, 0 if not found, and -1 if there was an error
2992 requiring halting of the search (e.g. memory read error).
2993 If the pattern is found the address is recorded in FOUND_ADDRP. */
2996 target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2997 const gdb_byte *pattern, ULONGEST pattern_len,
2998 CORE_ADDR *found_addrp)
3000 struct target_ops *t;
3003 /* We don't use INHERIT to set current_target.to_search_memory,
3004 so we have to scan the target stack and handle targetdebug
3008 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
3009 hex_string (start_addr));
3011 for (t = current_target.beneath; t != NULL; t = t->beneath)
3012 if (t->to_search_memory != NULL)
3017 found = t->to_search_memory (t, start_addr, search_space_len,
3018 pattern, pattern_len, found_addrp);
3022 /* If a special version of to_search_memory isn't available, use the
3024 found = simple_search_memory (current_target.beneath,
3025 start_addr, search_space_len,
3026 pattern, pattern_len, found_addrp);
3030 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
3035 /* Look through the currently pushed targets. If none of them will
3036 be able to restart the currently running process, issue an error
3040 target_require_runnable (void)
3042 struct target_ops *t;
3044 for (t = target_stack; t != NULL; t = t->beneath)
3046 /* If this target knows how to create a new program, then
3047 assume we will still be able to after killing the current
3048 one. Either killing and mourning will not pop T, or else
3049 find_default_run_target will find it again. */
3050 if (t->to_create_inferior != NULL)
3053 /* Do not worry about thread_stratum targets that can not
3054 create inferiors. Assume they will be pushed again if
3055 necessary, and continue to the process_stratum. */
3056 if (t->to_stratum == thread_stratum
3057 || t->to_stratum == arch_stratum)
3060 error (_("The \"%s\" target does not support \"run\". "
3061 "Try \"help target\" or \"continue\"."),
3065 /* This function is only called if the target is running. In that
3066 case there should have been a process_stratum target and it
3067 should either know how to create inferiors, or not... */
3068 internal_error (__FILE__, __LINE__, _("No targets found"));
3071 /* Look through the list of possible targets for a target that can
3072 execute a run or attach command without any other data. This is
3073 used to locate the default process stratum.
3075 If DO_MESG is not NULL, the result is always valid (error() is
3076 called for errors); else, return NULL on error. */
3078 static struct target_ops *
3079 find_default_run_target (char *do_mesg)
3081 struct target_ops **t;
3082 struct target_ops *runable = NULL;
3087 for (t = target_structs; t < target_structs + target_struct_size;
3090 if ((*t)->to_can_run && target_can_run (*t))
3100 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
3109 find_default_attach (struct target_ops *ops, char *args, int from_tty)
3111 struct target_ops *t;
3113 t = find_default_run_target ("attach");
3114 (t->to_attach) (t, args, from_tty);
3119 find_default_create_inferior (struct target_ops *ops,
3120 char *exec_file, char *allargs, char **env,
3123 struct target_ops *t;
3125 t = find_default_run_target ("run");
3126 (t->to_create_inferior) (t, exec_file, allargs, env, from_tty);
3131 find_default_can_async_p (void)
3133 struct target_ops *t;
3135 /* This may be called before the target is pushed on the stack;
3136 look for the default process stratum. If there's none, gdb isn't
3137 configured with a native debugger, and target remote isn't
3139 t = find_default_run_target (NULL);
3140 if (t && t->to_can_async_p)
3141 return (t->to_can_async_p) ();
3146 find_default_is_async_p (void)
3148 struct target_ops *t;
3150 /* This may be called before the target is pushed on the stack;
3151 look for the default process stratum. If there's none, gdb isn't
3152 configured with a native debugger, and target remote isn't
3154 t = find_default_run_target (NULL);
3155 if (t && t->to_is_async_p)
3156 return (t->to_is_async_p) ();
3161 find_default_supports_non_stop (void)
3163 struct target_ops *t;
3165 t = find_default_run_target (NULL);
3166 if (t && t->to_supports_non_stop)
3167 return (t->to_supports_non_stop) ();
3172 target_supports_non_stop (void)
3174 struct target_ops *t;
3176 for (t = ¤t_target; t != NULL; t = t->beneath)
3177 if (t->to_supports_non_stop)
3178 return t->to_supports_non_stop ();
3183 /* Implement the "info proc" command. */
3186 target_info_proc (char *args, enum info_proc_what what)
3188 struct target_ops *t;
3190 /* If we're already connected to something that can get us OS
3191 related data, use it. Otherwise, try using the native
3193 if (current_target.to_stratum >= process_stratum)
3194 t = current_target.beneath;
3196 t = find_default_run_target (NULL);
3198 for (; t != NULL; t = t->beneath)
3200 if (t->to_info_proc != NULL)
3202 t->to_info_proc (t, args, what);
3205 fprintf_unfiltered (gdb_stdlog,
3206 "target_info_proc (\"%s\", %d)\n", args, what);
3216 find_default_supports_disable_randomization (void)
3218 struct target_ops *t;
3220 t = find_default_run_target (NULL);
3221 if (t && t->to_supports_disable_randomization)
3222 return (t->to_supports_disable_randomization) ();
3227 target_supports_disable_randomization (void)
3229 struct target_ops *t;
3231 for (t = ¤t_target; t != NULL; t = t->beneath)
3232 if (t->to_supports_disable_randomization)
3233 return t->to_supports_disable_randomization ();
3239 target_get_osdata (const char *type)
3241 struct target_ops *t;
3243 /* If we're already connected to something that can get us OS
3244 related data, use it. Otherwise, try using the native
3246 if (current_target.to_stratum >= process_stratum)
3247 t = current_target.beneath;
3249 t = find_default_run_target ("get OS data");
3254 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
3257 /* Determine the current address space of thread PTID. */
3259 struct address_space *
3260 target_thread_address_space (ptid_t ptid)
3262 struct address_space *aspace;
3263 struct inferior *inf;
3264 struct target_ops *t;
3266 for (t = current_target.beneath; t != NULL; t = t->beneath)
3268 if (t->to_thread_address_space != NULL)
3270 aspace = t->to_thread_address_space (t, ptid);
3271 gdb_assert (aspace);
3274 fprintf_unfiltered (gdb_stdlog,
3275 "target_thread_address_space (%s) = %d\n",
3276 target_pid_to_str (ptid),
3277 address_space_num (aspace));
3282 /* Fall-back to the "main" address space of the inferior. */
3283 inf = find_inferior_pid (ptid_get_pid (ptid));
3285 if (inf == NULL || inf->aspace == NULL)
3286 internal_error (__FILE__, __LINE__,
3287 _("Can't determine the current "
3288 "address space of thread %s\n"),
3289 target_pid_to_str (ptid));
3295 /* Target file operations. */
3297 static struct target_ops *
3298 default_fileio_target (void)
3300 /* If we're already connected to something that can perform
3301 file I/O, use it. Otherwise, try using the native target. */
3302 if (current_target.to_stratum >= process_stratum)
3303 return current_target.beneath;
3305 return find_default_run_target ("file I/O");
3308 /* Open FILENAME on the target, using FLAGS and MODE. Return a
3309 target file descriptor, or -1 if an error occurs (and set
3312 target_fileio_open (const char *filename, int flags, int mode,
3315 struct target_ops *t;
3317 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3319 if (t->to_fileio_open != NULL)
3321 int fd = t->to_fileio_open (filename, flags, mode, target_errno);
3324 fprintf_unfiltered (gdb_stdlog,
3325 "target_fileio_open (%s,0x%x,0%o) = %d (%d)\n",
3326 filename, flags, mode,
3327 fd, fd != -1 ? 0 : *target_errno);
3332 *target_errno = FILEIO_ENOSYS;
3336 /* Write up to LEN bytes from WRITE_BUF to FD on the target.
3337 Return the number of bytes written, or -1 if an error occurs
3338 (and set *TARGET_ERRNO). */
3340 target_fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
3341 ULONGEST offset, int *target_errno)
3343 struct target_ops *t;
3345 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3347 if (t->to_fileio_pwrite != NULL)
3349 int ret = t->to_fileio_pwrite (fd, write_buf, len, offset,
3353 fprintf_unfiltered (gdb_stdlog,
3354 "target_fileio_pwrite (%d,...,%d,%s) "
3356 fd, len, pulongest (offset),
3357 ret, ret != -1 ? 0 : *target_errno);
3362 *target_errno = FILEIO_ENOSYS;
3366 /* Read up to LEN bytes FD on the target into READ_BUF.
3367 Return the number of bytes read, or -1 if an error occurs
3368 (and set *TARGET_ERRNO). */
3370 target_fileio_pread (int fd, gdb_byte *read_buf, int len,
3371 ULONGEST offset, int *target_errno)
3373 struct target_ops *t;
3375 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3377 if (t->to_fileio_pread != NULL)
3379 int ret = t->to_fileio_pread (fd, read_buf, len, offset,
3383 fprintf_unfiltered (gdb_stdlog,
3384 "target_fileio_pread (%d,...,%d,%s) "
3386 fd, len, pulongest (offset),
3387 ret, ret != -1 ? 0 : *target_errno);
3392 *target_errno = FILEIO_ENOSYS;
3396 /* Close FD on the target. Return 0, or -1 if an error occurs
3397 (and set *TARGET_ERRNO). */
3399 target_fileio_close (int fd, int *target_errno)
3401 struct target_ops *t;
3403 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3405 if (t->to_fileio_close != NULL)
3407 int ret = t->to_fileio_close (fd, target_errno);
3410 fprintf_unfiltered (gdb_stdlog,
3411 "target_fileio_close (%d) = %d (%d)\n",
3412 fd, ret, ret != -1 ? 0 : *target_errno);
3417 *target_errno = FILEIO_ENOSYS;
3421 /* Unlink FILENAME on the target. Return 0, or -1 if an error
3422 occurs (and set *TARGET_ERRNO). */
3424 target_fileio_unlink (const char *filename, int *target_errno)
3426 struct target_ops *t;
3428 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3430 if (t->to_fileio_unlink != NULL)
3432 int ret = t->to_fileio_unlink (filename, target_errno);
3435 fprintf_unfiltered (gdb_stdlog,
3436 "target_fileio_unlink (%s) = %d (%d)\n",
3437 filename, ret, ret != -1 ? 0 : *target_errno);
3442 *target_errno = FILEIO_ENOSYS;
3446 /* Read value of symbolic link FILENAME on the target. Return a
3447 null-terminated string allocated via xmalloc, or NULL if an error
3448 occurs (and set *TARGET_ERRNO). */
3450 target_fileio_readlink (const char *filename, int *target_errno)
3452 struct target_ops *t;
3454 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3456 if (t->to_fileio_readlink != NULL)
3458 char *ret = t->to_fileio_readlink (filename, target_errno);
3461 fprintf_unfiltered (gdb_stdlog,
3462 "target_fileio_readlink (%s) = %s (%d)\n",
3463 filename, ret? ret : "(nil)",
3464 ret? 0 : *target_errno);
3469 *target_errno = FILEIO_ENOSYS;
3474 target_fileio_close_cleanup (void *opaque)
3476 int fd = *(int *) opaque;
3479 target_fileio_close (fd, &target_errno);
3482 /* Read target file FILENAME. Store the result in *BUF_P and
3483 return the size of the transferred data. PADDING additional bytes are
3484 available in *BUF_P. This is a helper function for
3485 target_fileio_read_alloc; see the declaration of that function for more
3489 target_fileio_read_alloc_1 (const char *filename,
3490 gdb_byte **buf_p, int padding)
3492 struct cleanup *close_cleanup;
3493 size_t buf_alloc, buf_pos;
3499 fd = target_fileio_open (filename, FILEIO_O_RDONLY, 0700, &target_errno);
3503 close_cleanup = make_cleanup (target_fileio_close_cleanup, &fd);
3505 /* Start by reading up to 4K at a time. The target will throttle
3506 this number down if necessary. */
3508 buf = xmalloc (buf_alloc);
3512 n = target_fileio_pread (fd, &buf[buf_pos],
3513 buf_alloc - buf_pos - padding, buf_pos,
3517 /* An error occurred. */
3518 do_cleanups (close_cleanup);
3524 /* Read all there was. */
3525 do_cleanups (close_cleanup);
3535 /* If the buffer is filling up, expand it. */
3536 if (buf_alloc < buf_pos * 2)
3539 buf = xrealloc (buf, buf_alloc);
3546 /* Read target file FILENAME. Store the result in *BUF_P and return
3547 the size of the transferred data. See the declaration in "target.h"
3548 function for more information about the return value. */
3551 target_fileio_read_alloc (const char *filename, gdb_byte **buf_p)
3553 return target_fileio_read_alloc_1 (filename, buf_p, 0);
3556 /* Read target file FILENAME. The result is NUL-terminated and
3557 returned as a string, allocated using xmalloc. If an error occurs
3558 or the transfer is unsupported, NULL is returned. Empty objects
3559 are returned as allocated but empty strings. A warning is issued
3560 if the result contains any embedded NUL bytes. */
3563 target_fileio_read_stralloc (const char *filename)
3567 LONGEST i, transferred;
3569 transferred = target_fileio_read_alloc_1 (filename, &buffer, 1);
3570 bufstr = (char *) buffer;
3572 if (transferred < 0)
3575 if (transferred == 0)
3576 return xstrdup ("");
3578 bufstr[transferred] = 0;
3580 /* Check for embedded NUL bytes; but allow trailing NULs. */
3581 for (i = strlen (bufstr); i < transferred; i++)
3584 warning (_("target file %s "
3585 "contained unexpected null characters"),
3595 default_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
3597 return (len <= gdbarch_ptr_bit (target_gdbarch ()) / TARGET_CHAR_BIT);
3601 default_watchpoint_addr_within_range (struct target_ops *target,
3603 CORE_ADDR start, int length)
3605 return addr >= start && addr < start + length;
3608 static struct gdbarch *
3609 default_thread_architecture (struct target_ops *ops, ptid_t ptid)
3611 return target_gdbarch ();
3627 return_minus_one (void)
3633 * Find the next target down the stack from the specified target.
3637 find_target_beneath (struct target_ops *t)
3643 /* The inferior process has died. Long live the inferior! */
3646 generic_mourn_inferior (void)
3650 ptid = inferior_ptid;
3651 inferior_ptid = null_ptid;
3653 /* Mark breakpoints uninserted in case something tries to delete a
3654 breakpoint while we delete the inferior's threads (which would
3655 fail, since the inferior is long gone). */
3656 mark_breakpoints_out ();
3658 if (!ptid_equal (ptid, null_ptid))
3660 int pid = ptid_get_pid (ptid);
3661 exit_inferior (pid);
3664 /* Note this wipes step-resume breakpoints, so needs to be done
3665 after exit_inferior, which ends up referencing the step-resume
3666 breakpoints through clear_thread_inferior_resources. */
3667 breakpoint_init_inferior (inf_exited);
3669 registers_changed ();
3671 reopen_exec_file ();
3672 reinit_frame_cache ();
3674 if (deprecated_detach_hook)
3675 deprecated_detach_hook ();
3678 /* Convert a normal process ID to a string. Returns the string in a
3682 normal_pid_to_str (ptid_t ptid)
3684 static char buf[32];
3686 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
3691 dummy_pid_to_str (struct target_ops *ops, ptid_t ptid)
3693 return normal_pid_to_str (ptid);
3696 /* Error-catcher for target_find_memory_regions. */
3698 dummy_find_memory_regions (find_memory_region_ftype ignore1, void *ignore2)
3700 error (_("Command not implemented for this target."));
3704 /* Error-catcher for target_make_corefile_notes. */
3706 dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
3708 error (_("Command not implemented for this target."));
3712 /* Error-catcher for target_get_bookmark. */
3714 dummy_get_bookmark (char *ignore1, int ignore2)
3720 /* Error-catcher for target_goto_bookmark. */
3722 dummy_goto_bookmark (gdb_byte *ignore, int from_tty)
3727 /* Set up the handful of non-empty slots needed by the dummy target
3731 init_dummy_target (void)
3733 dummy_target.to_shortname = "None";
3734 dummy_target.to_longname = "None";
3735 dummy_target.to_doc = "";
3736 dummy_target.to_attach = find_default_attach;
3737 dummy_target.to_detach =
3738 (void (*)(struct target_ops *, char *, int))target_ignore;
3739 dummy_target.to_create_inferior = find_default_create_inferior;
3740 dummy_target.to_can_async_p = find_default_can_async_p;
3741 dummy_target.to_is_async_p = find_default_is_async_p;
3742 dummy_target.to_supports_non_stop = find_default_supports_non_stop;
3743 dummy_target.to_supports_disable_randomization
3744 = find_default_supports_disable_randomization;
3745 dummy_target.to_pid_to_str = dummy_pid_to_str;
3746 dummy_target.to_stratum = dummy_stratum;
3747 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
3748 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
3749 dummy_target.to_get_bookmark = dummy_get_bookmark;
3750 dummy_target.to_goto_bookmark = dummy_goto_bookmark;
3751 dummy_target.to_xfer_partial = default_xfer_partial;
3752 dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
3753 dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero;
3754 dummy_target.to_has_stack = (int (*) (struct target_ops *)) return_zero;
3755 dummy_target.to_has_registers = (int (*) (struct target_ops *)) return_zero;
3756 dummy_target.to_has_execution
3757 = (int (*) (struct target_ops *, ptid_t)) return_zero;
3758 dummy_target.to_stopped_by_watchpoint = return_zero;
3759 dummy_target.to_stopped_data_address =
3760 (int (*) (struct target_ops *, CORE_ADDR *)) return_zero;
3761 dummy_target.to_magic = OPS_MAGIC;
3765 debug_to_open (char *args, int from_tty)
3767 debug_target.to_open (args, from_tty);
3769 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
3773 target_close (struct target_ops *targ)
3775 if (targ->to_xclose != NULL)
3776 targ->to_xclose (targ);
3777 else if (targ->to_close != NULL)
3781 fprintf_unfiltered (gdb_stdlog, "target_close ()\n");
3785 target_attach (char *args, int from_tty)
3787 struct target_ops *t;
3789 for (t = current_target.beneath; t != NULL; t = t->beneath)
3791 if (t->to_attach != NULL)
3793 t->to_attach (t, args, from_tty);
3795 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n",
3801 internal_error (__FILE__, __LINE__,
3802 _("could not find a target to attach"));
3806 target_thread_alive (ptid_t ptid)
3808 struct target_ops *t;
3810 for (t = current_target.beneath; t != NULL; t = t->beneath)
3812 if (t->to_thread_alive != NULL)
3816 retval = t->to_thread_alive (t, ptid);
3818 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
3819 PIDGET (ptid), retval);
3829 target_find_new_threads (void)
3831 struct target_ops *t;
3833 for (t = current_target.beneath; t != NULL; t = t->beneath)
3835 if (t->to_find_new_threads != NULL)
3837 t->to_find_new_threads (t);
3839 fprintf_unfiltered (gdb_stdlog, "target_find_new_threads ()\n");
3847 target_stop (ptid_t ptid)
3851 warning (_("May not interrupt or stop the target, ignoring attempt"));
3855 (*current_target.to_stop) (ptid);
3859 debug_to_post_attach (int pid)
3861 debug_target.to_post_attach (pid);
3863 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
3866 /* Concatenate ELEM to LIST, a comma separate list, and return the
3867 result. The LIST incoming argument is released. */
3870 str_comma_list_concat_elem (char *list, const char *elem)
3873 return xstrdup (elem);
3875 return reconcat (list, list, ", ", elem, (char *) NULL);
3878 /* Helper for target_options_to_string. If OPT is present in
3879 TARGET_OPTIONS, append the OPT_STR (string version of OPT) in RET.
3880 Returns the new resulting string. OPT is removed from
3884 do_option (int *target_options, char *ret,
3885 int opt, char *opt_str)
3887 if ((*target_options & opt) != 0)
3889 ret = str_comma_list_concat_elem (ret, opt_str);
3890 *target_options &= ~opt;
3897 target_options_to_string (int target_options)
3901 #define DO_TARG_OPTION(OPT) \
3902 ret = do_option (&target_options, ret, OPT, #OPT)
3904 DO_TARG_OPTION (TARGET_WNOHANG);
3906 if (target_options != 0)
3907 ret = str_comma_list_concat_elem (ret, "unknown???");
3915 debug_print_register (const char * func,
3916 struct regcache *regcache, int regno)
3918 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3920 fprintf_unfiltered (gdb_stdlog, "%s ", func);
3921 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
3922 && gdbarch_register_name (gdbarch, regno) != NULL
3923 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
3924 fprintf_unfiltered (gdb_stdlog, "(%s)",
3925 gdbarch_register_name (gdbarch, regno));
3927 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
3928 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
3930 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3931 int i, size = register_size (gdbarch, regno);
3932 gdb_byte buf[MAX_REGISTER_SIZE];
3934 regcache_raw_collect (regcache, regno, buf);
3935 fprintf_unfiltered (gdb_stdlog, " = ");
3936 for (i = 0; i < size; i++)
3938 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3940 if (size <= sizeof (LONGEST))
3942 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
3944 fprintf_unfiltered (gdb_stdlog, " %s %s",
3945 core_addr_to_string_nz (val), plongest (val));
3948 fprintf_unfiltered (gdb_stdlog, "\n");
3952 target_fetch_registers (struct regcache *regcache, int regno)
3954 struct target_ops *t;
3956 for (t = current_target.beneath; t != NULL; t = t->beneath)
3958 if (t->to_fetch_registers != NULL)
3960 t->to_fetch_registers (t, regcache, regno);
3962 debug_print_register ("target_fetch_registers", regcache, regno);
3969 target_store_registers (struct regcache *regcache, int regno)
3971 struct target_ops *t;
3973 if (!may_write_registers)
3974 error (_("Writing to registers is not allowed (regno %d)"), regno);
3976 for (t = current_target.beneath; t != NULL; t = t->beneath)
3978 if (t->to_store_registers != NULL)
3980 t->to_store_registers (t, regcache, regno);
3983 debug_print_register ("target_store_registers", regcache, regno);
3993 target_core_of_thread (ptid_t ptid)
3995 struct target_ops *t;
3997 for (t = current_target.beneath; t != NULL; t = t->beneath)
3999 if (t->to_core_of_thread != NULL)
4001 int retval = t->to_core_of_thread (t, ptid);
4004 fprintf_unfiltered (gdb_stdlog,
4005 "target_core_of_thread (%d) = %d\n",
4006 PIDGET (ptid), retval);
4015 target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
4017 struct target_ops *t;
4019 for (t = current_target.beneath; t != NULL; t = t->beneath)
4021 if (t->to_verify_memory != NULL)
4023 int retval = t->to_verify_memory (t, data, memaddr, size);
4026 fprintf_unfiltered (gdb_stdlog,
4027 "target_verify_memory (%s, %s) = %d\n",
4028 paddress (target_gdbarch (), memaddr),
4038 /* The documentation for this function is in its prototype declaration in
4042 target_insert_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
4044 struct target_ops *t;
4046 for (t = current_target.beneath; t != NULL; t = t->beneath)
4047 if (t->to_insert_mask_watchpoint != NULL)
4051 ret = t->to_insert_mask_watchpoint (t, addr, mask, rw);
4054 fprintf_unfiltered (gdb_stdlog, "\
4055 target_insert_mask_watchpoint (%s, %s, %d) = %d\n",
4056 core_addr_to_string (addr),
4057 core_addr_to_string (mask), rw, ret);
4065 /* The documentation for this function is in its prototype declaration in
4069 target_remove_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
4071 struct target_ops *t;
4073 for (t = current_target.beneath; t != NULL; t = t->beneath)
4074 if (t->to_remove_mask_watchpoint != NULL)
4078 ret = t->to_remove_mask_watchpoint (t, addr, mask, rw);
4081 fprintf_unfiltered (gdb_stdlog, "\
4082 target_remove_mask_watchpoint (%s, %s, %d) = %d\n",
4083 core_addr_to_string (addr),
4084 core_addr_to_string (mask), rw, ret);
4092 /* The documentation for this function is in its prototype declaration
4096 target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask)
4098 struct target_ops *t;
4100 for (t = current_target.beneath; t != NULL; t = t->beneath)
4101 if (t->to_masked_watch_num_registers != NULL)
4102 return t->to_masked_watch_num_registers (t, addr, mask);
4107 /* The documentation for this function is in its prototype declaration
4111 target_ranged_break_num_registers (void)
4113 struct target_ops *t;
4115 for (t = current_target.beneath; t != NULL; t = t->beneath)
4116 if (t->to_ranged_break_num_registers != NULL)
4117 return t->to_ranged_break_num_registers (t);
4125 target_supports_btrace (void)
4127 struct target_ops *t;
4129 for (t = current_target.beneath; t != NULL; t = t->beneath)
4130 if (t->to_supports_btrace != NULL)
4131 return t->to_supports_btrace ();
4138 struct btrace_target_info *
4139 target_enable_btrace (ptid_t ptid)
4141 struct target_ops *t;
4143 for (t = current_target.beneath; t != NULL; t = t->beneath)
4144 if (t->to_enable_btrace != NULL)
4145 return t->to_enable_btrace (ptid);
4154 target_disable_btrace (struct btrace_target_info *btinfo)
4156 struct target_ops *t;
4158 for (t = current_target.beneath; t != NULL; t = t->beneath)
4159 if (t->to_disable_btrace != NULL)
4160 return t->to_disable_btrace (btinfo);
4168 target_teardown_btrace (struct btrace_target_info *btinfo)
4170 struct target_ops *t;
4172 for (t = current_target.beneath; t != NULL; t = t->beneath)
4173 if (t->to_teardown_btrace != NULL)
4174 return t->to_teardown_btrace (btinfo);
4181 VEC (btrace_block_s) *
4182 target_read_btrace (struct btrace_target_info *btinfo,
4183 enum btrace_read_type type)
4185 struct target_ops *t;
4187 for (t = current_target.beneath; t != NULL; t = t->beneath)
4188 if (t->to_read_btrace != NULL)
4189 return t->to_read_btrace (btinfo, type);
4198 target_stop_recording (void)
4200 struct target_ops *t;
4202 for (t = current_target.beneath; t != NULL; t = t->beneath)
4203 if (t->to_stop_recording != NULL)
4205 t->to_stop_recording ();
4209 /* This is optional. */
4215 target_info_record (void)
4217 struct target_ops *t;
4219 for (t = current_target.beneath; t != NULL; t = t->beneath)
4220 if (t->to_info_record != NULL)
4222 t->to_info_record ();
4232 target_save_record (const char *filename)
4234 struct target_ops *t;
4236 for (t = current_target.beneath; t != NULL; t = t->beneath)
4237 if (t->to_save_record != NULL)
4239 t->to_save_record (filename);
4249 target_supports_delete_record (void)
4251 struct target_ops *t;
4253 for (t = current_target.beneath; t != NULL; t = t->beneath)
4254 if (t->to_delete_record != NULL)
4263 target_delete_record (void)
4265 struct target_ops *t;
4267 for (t = current_target.beneath; t != NULL; t = t->beneath)
4268 if (t->to_delete_record != NULL)
4270 t->to_delete_record ();
4280 target_record_is_replaying (void)
4282 struct target_ops *t;
4284 for (t = current_target.beneath; t != NULL; t = t->beneath)
4285 if (t->to_record_is_replaying != NULL)
4286 return t->to_record_is_replaying ();
4294 target_goto_record_begin (void)
4296 struct target_ops *t;
4298 for (t = current_target.beneath; t != NULL; t = t->beneath)
4299 if (t->to_goto_record_begin != NULL)
4301 t->to_goto_record_begin ();
4311 target_goto_record_end (void)
4313 struct target_ops *t;
4315 for (t = current_target.beneath; t != NULL; t = t->beneath)
4316 if (t->to_goto_record_end != NULL)
4318 t->to_goto_record_end ();
4328 target_goto_record (ULONGEST insn)
4330 struct target_ops *t;
4332 for (t = current_target.beneath; t != NULL; t = t->beneath)
4333 if (t->to_goto_record != NULL)
4335 t->to_goto_record (insn);
4345 target_insn_history (int size, int flags)
4347 struct target_ops *t;
4349 for (t = current_target.beneath; t != NULL; t = t->beneath)
4350 if (t->to_insn_history != NULL)
4352 t->to_insn_history (size, flags);
4362 target_insn_history_from (ULONGEST from, int size, int flags)
4364 struct target_ops *t;
4366 for (t = current_target.beneath; t != NULL; t = t->beneath)
4367 if (t->to_insn_history_from != NULL)
4369 t->to_insn_history_from (from, size, flags);
4379 target_insn_history_range (ULONGEST begin, ULONGEST end, int flags)
4381 struct target_ops *t;
4383 for (t = current_target.beneath; t != NULL; t = t->beneath)
4384 if (t->to_insn_history_range != NULL)
4386 t->to_insn_history_range (begin, end, flags);
4396 target_call_history (int size, int flags)
4398 struct target_ops *t;
4400 for (t = current_target.beneath; t != NULL; t = t->beneath)
4401 if (t->to_call_history != NULL)
4403 t->to_call_history (size, flags);
4413 target_call_history_from (ULONGEST begin, int size, int flags)
4415 struct target_ops *t;
4417 for (t = current_target.beneath; t != NULL; t = t->beneath)
4418 if (t->to_call_history_from != NULL)
4420 t->to_call_history_from (begin, size, flags);
4430 target_call_history_range (ULONGEST begin, ULONGEST end, int flags)
4432 struct target_ops *t;
4434 for (t = current_target.beneath; t != NULL; t = t->beneath)
4435 if (t->to_call_history_range != NULL)
4437 t->to_call_history_range (begin, end, flags);
4445 debug_to_prepare_to_store (struct regcache *regcache)
4447 debug_target.to_prepare_to_store (regcache);
4449 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
4453 deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
4454 int write, struct mem_attrib *attrib,
4455 struct target_ops *target)
4459 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
4462 fprintf_unfiltered (gdb_stdlog,
4463 "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
4464 paddress (target_gdbarch (), memaddr), len,
4465 write ? "write" : "read", retval);
4471 fputs_unfiltered (", bytes =", gdb_stdlog);
4472 for (i = 0; i < retval; i++)
4474 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
4476 if (targetdebug < 2 && i > 0)
4478 fprintf_unfiltered (gdb_stdlog, " ...");
4481 fprintf_unfiltered (gdb_stdlog, "\n");
4484 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
4488 fputc_unfiltered ('\n', gdb_stdlog);
4494 debug_to_files_info (struct target_ops *target)
4496 debug_target.to_files_info (target);
4498 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
4502 debug_to_insert_breakpoint (struct gdbarch *gdbarch,
4503 struct bp_target_info *bp_tgt)
4507 retval = debug_target.to_insert_breakpoint (gdbarch, bp_tgt);
4509 fprintf_unfiltered (gdb_stdlog,
4510 "target_insert_breakpoint (%s, xxx) = %ld\n",
4511 core_addr_to_string (bp_tgt->placed_address),
4512 (unsigned long) retval);
4517 debug_to_remove_breakpoint (struct gdbarch *gdbarch,
4518 struct bp_target_info *bp_tgt)
4522 retval = debug_target.to_remove_breakpoint (gdbarch, bp_tgt);
4524 fprintf_unfiltered (gdb_stdlog,
4525 "target_remove_breakpoint (%s, xxx) = %ld\n",
4526 core_addr_to_string (bp_tgt->placed_address),
4527 (unsigned long) retval);
4532 debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
4536 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
4538 fprintf_unfiltered (gdb_stdlog,
4539 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
4540 (unsigned long) type,
4541 (unsigned long) cnt,
4542 (unsigned long) from_tty,
4543 (unsigned long) retval);
4548 debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
4552 retval = debug_target.to_region_ok_for_hw_watchpoint (addr, len);
4554 fprintf_unfiltered (gdb_stdlog,
4555 "target_region_ok_for_hw_watchpoint (%s, %ld) = %s\n",
4556 core_addr_to_string (addr), (unsigned long) len,
4557 core_addr_to_string (retval));
4562 debug_to_can_accel_watchpoint_condition (CORE_ADDR addr, int len, int rw,
4563 struct expression *cond)
4567 retval = debug_target.to_can_accel_watchpoint_condition (addr, len,
4570 fprintf_unfiltered (gdb_stdlog,
4571 "target_can_accel_watchpoint_condition "
4572 "(%s, %d, %d, %s) = %ld\n",
4573 core_addr_to_string (addr), len, rw,
4574 host_address_to_string (cond), (unsigned long) retval);
4579 debug_to_stopped_by_watchpoint (void)
4583 retval = debug_target.to_stopped_by_watchpoint ();
4585 fprintf_unfiltered (gdb_stdlog,
4586 "target_stopped_by_watchpoint () = %ld\n",
4587 (unsigned long) retval);
4592 debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
4596 retval = debug_target.to_stopped_data_address (target, addr);
4598 fprintf_unfiltered (gdb_stdlog,
4599 "target_stopped_data_address ([%s]) = %ld\n",
4600 core_addr_to_string (*addr),
4601 (unsigned long)retval);
4606 debug_to_watchpoint_addr_within_range (struct target_ops *target,
4608 CORE_ADDR start, int length)
4612 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
4615 fprintf_filtered (gdb_stdlog,
4616 "target_watchpoint_addr_within_range (%s, %s, %d) = %d\n",
4617 core_addr_to_string (addr), core_addr_to_string (start),
4623 debug_to_insert_hw_breakpoint (struct gdbarch *gdbarch,
4624 struct bp_target_info *bp_tgt)
4628 retval = debug_target.to_insert_hw_breakpoint (gdbarch, bp_tgt);
4630 fprintf_unfiltered (gdb_stdlog,
4631 "target_insert_hw_breakpoint (%s, xxx) = %ld\n",
4632 core_addr_to_string (bp_tgt->placed_address),
4633 (unsigned long) retval);
4638 debug_to_remove_hw_breakpoint (struct gdbarch *gdbarch,
4639 struct bp_target_info *bp_tgt)
4643 retval = debug_target.to_remove_hw_breakpoint (gdbarch, bp_tgt);
4645 fprintf_unfiltered (gdb_stdlog,
4646 "target_remove_hw_breakpoint (%s, xxx) = %ld\n",
4647 core_addr_to_string (bp_tgt->placed_address),
4648 (unsigned long) retval);
4653 debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type,
4654 struct expression *cond)
4658 retval = debug_target.to_insert_watchpoint (addr, len, type, cond);
4660 fprintf_unfiltered (gdb_stdlog,
4661 "target_insert_watchpoint (%s, %d, %d, %s) = %ld\n",
4662 core_addr_to_string (addr), len, type,
4663 host_address_to_string (cond), (unsigned long) retval);
4668 debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type,
4669 struct expression *cond)
4673 retval = debug_target.to_remove_watchpoint (addr, len, type, cond);
4675 fprintf_unfiltered (gdb_stdlog,
4676 "target_remove_watchpoint (%s, %d, %d, %s) = %ld\n",
4677 core_addr_to_string (addr), len, type,
4678 host_address_to_string (cond), (unsigned long) retval);
4683 debug_to_terminal_init (void)
4685 debug_target.to_terminal_init ();
4687 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
4691 debug_to_terminal_inferior (void)
4693 debug_target.to_terminal_inferior ();
4695 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
4699 debug_to_terminal_ours_for_output (void)
4701 debug_target.to_terminal_ours_for_output ();
4703 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
4707 debug_to_terminal_ours (void)
4709 debug_target.to_terminal_ours ();
4711 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
4715 debug_to_terminal_save_ours (void)
4717 debug_target.to_terminal_save_ours ();
4719 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
4723 debug_to_terminal_info (const char *arg, int from_tty)
4725 debug_target.to_terminal_info (arg, from_tty);
4727 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
4732 debug_to_load (char *args, int from_tty)
4734 debug_target.to_load (args, from_tty);
4736 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
4740 debug_to_post_startup_inferior (ptid_t ptid)
4742 debug_target.to_post_startup_inferior (ptid);
4744 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
4749 debug_to_insert_fork_catchpoint (int pid)
4753 retval = debug_target.to_insert_fork_catchpoint (pid);
4755 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n",
4762 debug_to_remove_fork_catchpoint (int pid)
4766 retval = debug_target.to_remove_fork_catchpoint (pid);
4768 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
4775 debug_to_insert_vfork_catchpoint (int pid)
4779 retval = debug_target.to_insert_vfork_catchpoint (pid);
4781 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d) = %d\n",
4788 debug_to_remove_vfork_catchpoint (int pid)
4792 retval = debug_target.to_remove_vfork_catchpoint (pid);
4794 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
4801 debug_to_insert_exec_catchpoint (int pid)
4805 retval = debug_target.to_insert_exec_catchpoint (pid);
4807 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
4814 debug_to_remove_exec_catchpoint (int pid)
4818 retval = debug_target.to_remove_exec_catchpoint (pid);
4820 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
4827 debug_to_has_exited (int pid, int wait_status, int *exit_status)
4831 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
4833 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
4834 pid, wait_status, *exit_status, has_exited);
4840 debug_to_can_run (void)
4844 retval = debug_target.to_can_run ();
4846 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
4851 static struct gdbarch *
4852 debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid)
4854 struct gdbarch *retval;
4856 retval = debug_target.to_thread_architecture (ops, ptid);
4858 fprintf_unfiltered (gdb_stdlog,
4859 "target_thread_architecture (%s) = %s [%s]\n",
4860 target_pid_to_str (ptid),
4861 host_address_to_string (retval),
4862 gdbarch_bfd_arch_info (retval)->printable_name);
4867 debug_to_stop (ptid_t ptid)
4869 debug_target.to_stop (ptid);
4871 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
4872 target_pid_to_str (ptid));
4876 debug_to_rcmd (char *command,
4877 struct ui_file *outbuf)
4879 debug_target.to_rcmd (command, outbuf);
4880 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
4884 debug_to_pid_to_exec_file (int pid)
4888 exec_file = debug_target.to_pid_to_exec_file (pid);
4890 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
4897 setup_target_debug (void)
4899 memcpy (&debug_target, ¤t_target, sizeof debug_target);
4901 current_target.to_open = debug_to_open;
4902 current_target.to_post_attach = debug_to_post_attach;
4903 current_target.to_prepare_to_store = debug_to_prepare_to_store;
4904 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
4905 current_target.to_files_info = debug_to_files_info;
4906 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
4907 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
4908 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
4909 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
4910 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
4911 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
4912 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
4913 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
4914 current_target.to_stopped_data_address = debug_to_stopped_data_address;
4915 current_target.to_watchpoint_addr_within_range
4916 = debug_to_watchpoint_addr_within_range;
4917 current_target.to_region_ok_for_hw_watchpoint
4918 = debug_to_region_ok_for_hw_watchpoint;
4919 current_target.to_can_accel_watchpoint_condition
4920 = debug_to_can_accel_watchpoint_condition;
4921 current_target.to_terminal_init = debug_to_terminal_init;
4922 current_target.to_terminal_inferior = debug_to_terminal_inferior;
4923 current_target.to_terminal_ours_for_output
4924 = debug_to_terminal_ours_for_output;
4925 current_target.to_terminal_ours = debug_to_terminal_ours;
4926 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
4927 current_target.to_terminal_info = debug_to_terminal_info;
4928 current_target.to_load = debug_to_load;
4929 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
4930 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
4931 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
4932 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
4933 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
4934 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
4935 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
4936 current_target.to_has_exited = debug_to_has_exited;
4937 current_target.to_can_run = debug_to_can_run;
4938 current_target.to_stop = debug_to_stop;
4939 current_target.to_rcmd = debug_to_rcmd;
4940 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
4941 current_target.to_thread_architecture = debug_to_thread_architecture;
4945 static char targ_desc[] =
4946 "Names of targets and files being debugged.\nShows the entire \
4947 stack of targets currently in use (including the exec-file,\n\
4948 core-file, and process, if any), as well as the symbol file name.";
4951 do_monitor_command (char *cmd,
4954 if ((current_target.to_rcmd
4955 == (void (*) (char *, struct ui_file *)) tcomplain)
4956 || (current_target.to_rcmd == debug_to_rcmd
4957 && (debug_target.to_rcmd
4958 == (void (*) (char *, struct ui_file *)) tcomplain)))
4959 error (_("\"monitor\" command not supported by this target."));
4960 target_rcmd (cmd, gdb_stdtarg);
4963 /* Print the name of each layers of our target stack. */
4966 maintenance_print_target_stack (char *cmd, int from_tty)
4968 struct target_ops *t;
4970 printf_filtered (_("The current target stack is:\n"));
4972 for (t = target_stack; t != NULL; t = t->beneath)
4974 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
4978 /* Controls if async mode is permitted. */
4979 int target_async_permitted = 0;
4981 /* The set command writes to this variable. If the inferior is
4982 executing, linux_nat_async_permitted is *not* updated. */
4983 static int target_async_permitted_1 = 0;
4986 set_target_async_command (char *args, int from_tty,
4987 struct cmd_list_element *c)
4989 if (have_live_inferiors ())
4991 target_async_permitted_1 = target_async_permitted;
4992 error (_("Cannot change this setting while the inferior is running."));
4995 target_async_permitted = target_async_permitted_1;
4999 show_target_async_command (struct ui_file *file, int from_tty,
5000 struct cmd_list_element *c,
5003 fprintf_filtered (file,
5004 _("Controlling the inferior in "
5005 "asynchronous mode is %s.\n"), value);
5008 /* Temporary copies of permission settings. */
5010 static int may_write_registers_1 = 1;
5011 static int may_write_memory_1 = 1;
5012 static int may_insert_breakpoints_1 = 1;
5013 static int may_insert_tracepoints_1 = 1;
5014 static int may_insert_fast_tracepoints_1 = 1;
5015 static int may_stop_1 = 1;
5017 /* Make the user-set values match the real values again. */
5020 update_target_permissions (void)
5022 may_write_registers_1 = may_write_registers;
5023 may_write_memory_1 = may_write_memory;
5024 may_insert_breakpoints_1 = may_insert_breakpoints;
5025 may_insert_tracepoints_1 = may_insert_tracepoints;
5026 may_insert_fast_tracepoints_1 = may_insert_fast_tracepoints;
5027 may_stop_1 = may_stop;
5030 /* The one function handles (most of) the permission flags in the same
5034 set_target_permissions (char *args, int from_tty,
5035 struct cmd_list_element *c)
5037 if (target_has_execution)
5039 update_target_permissions ();
5040 error (_("Cannot change this setting while the inferior is running."));
5043 /* Make the real values match the user-changed values. */
5044 may_write_registers = may_write_registers_1;
5045 may_insert_breakpoints = may_insert_breakpoints_1;
5046 may_insert_tracepoints = may_insert_tracepoints_1;
5047 may_insert_fast_tracepoints = may_insert_fast_tracepoints_1;
5048 may_stop = may_stop_1;
5049 update_observer_mode ();
5052 /* Set memory write permission independently of observer mode. */
5055 set_write_memory_permission (char *args, int from_tty,
5056 struct cmd_list_element *c)
5058 /* Make the real values match the user-changed values. */
5059 may_write_memory = may_write_memory_1;
5060 update_observer_mode ();
5065 initialize_targets (void)
5067 init_dummy_target ();
5068 push_target (&dummy_target);
5070 add_info ("target", target_info, targ_desc);
5071 add_info ("files", target_info, targ_desc);
5073 add_setshow_zuinteger_cmd ("target", class_maintenance, &targetdebug, _("\
5074 Set target debugging."), _("\
5075 Show target debugging."), _("\
5076 When non-zero, target debugging is enabled. Higher numbers are more\n\
5077 verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
5081 &setdebuglist, &showdebuglist);
5083 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
5084 &trust_readonly, _("\
5085 Set mode for reading from readonly sections."), _("\
5086 Show mode for reading from readonly sections."), _("\
5087 When this mode is on, memory reads from readonly sections (such as .text)\n\
5088 will be read from the object file instead of from the target. This will\n\
5089 result in significant performance improvement for remote targets."),
5091 show_trust_readonly,
5092 &setlist, &showlist);
5094 add_com ("monitor", class_obscure, do_monitor_command,
5095 _("Send a command to the remote monitor (remote targets only)."));
5097 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
5098 _("Print the name of each layer of the internal target stack."),
5099 &maintenanceprintlist);
5101 add_setshow_boolean_cmd ("target-async", no_class,
5102 &target_async_permitted_1, _("\
5103 Set whether gdb controls the inferior in asynchronous mode."), _("\
5104 Show whether gdb controls the inferior in asynchronous mode."), _("\
5105 Tells gdb whether to control the inferior in asynchronous mode."),
5106 set_target_async_command,
5107 show_target_async_command,
5111 add_setshow_boolean_cmd ("stack-cache", class_support,
5112 &stack_cache_enabled_p_1, _("\
5113 Set cache use for stack access."), _("\
5114 Show cache use for stack access."), _("\
5115 When on, use the data cache for all stack access, regardless of any\n\
5116 configured memory regions. This improves remote performance significantly.\n\
5117 By default, caching for stack access is on."),
5118 set_stack_cache_enabled_p,
5119 show_stack_cache_enabled_p,
5120 &setlist, &showlist);
5122 add_setshow_boolean_cmd ("may-write-registers", class_support,
5123 &may_write_registers_1, _("\
5124 Set permission to write into registers."), _("\
5125 Show permission to write into registers."), _("\
5126 When this permission is on, GDB may write into the target's registers.\n\
5127 Otherwise, any sort of write attempt will result in an error."),
5128 set_target_permissions, NULL,
5129 &setlist, &showlist);
5131 add_setshow_boolean_cmd ("may-write-memory", class_support,
5132 &may_write_memory_1, _("\
5133 Set permission to write into target memory."), _("\
5134 Show permission to write into target memory."), _("\
5135 When this permission is on, GDB may write into the target's memory.\n\
5136 Otherwise, any sort of write attempt will result in an error."),
5137 set_write_memory_permission, NULL,
5138 &setlist, &showlist);
5140 add_setshow_boolean_cmd ("may-insert-breakpoints", class_support,
5141 &may_insert_breakpoints_1, _("\
5142 Set permission to insert breakpoints in the target."), _("\
5143 Show permission to insert breakpoints in the target."), _("\
5144 When this permission is on, GDB may insert breakpoints in the program.\n\
5145 Otherwise, any sort of insertion attempt will result in an error."),
5146 set_target_permissions, NULL,
5147 &setlist, &showlist);
5149 add_setshow_boolean_cmd ("may-insert-tracepoints", class_support,
5150 &may_insert_tracepoints_1, _("\
5151 Set permission to insert tracepoints in the target."), _("\
5152 Show permission to insert tracepoints in the target."), _("\
5153 When this permission is on, GDB may insert tracepoints in the program.\n\
5154 Otherwise, any sort of insertion attempt will result in an error."),
5155 set_target_permissions, NULL,
5156 &setlist, &showlist);
5158 add_setshow_boolean_cmd ("may-insert-fast-tracepoints", class_support,
5159 &may_insert_fast_tracepoints_1, _("\
5160 Set permission to insert fast tracepoints in the target."), _("\
5161 Show permission to insert fast tracepoints in the target."), _("\
5162 When this permission is on, GDB may insert fast tracepoints.\n\
5163 Otherwise, any sort of insertion attempt will result in an error."),
5164 set_target_permissions, NULL,
5165 &setlist, &showlist);
5167 add_setshow_boolean_cmd ("may-interrupt", class_support,
5169 Set permission to interrupt or signal the target."), _("\
5170 Show permission to interrupt or signal the target."), _("\
5171 When this permission is on, GDB may interrupt/stop the target's execution.\n\
5172 Otherwise, any attempt to interrupt or stop will be ignored."),
5173 set_target_permissions, NULL,
5174 &setlist, &showlist);
5177 target_dcache = dcache_init ();