1 /* Select target systems and architectures at runtime for GDB.
3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
5 Free Software Foundation, Inc.
7 Contributed by Cygnus Support.
9 This file is part of GDB.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include "gdb_string.h"
38 #include "gdb_assert.h"
40 #include "exceptions.h"
41 #include "target-descriptions.h"
42 #include "gdbthread.h"
45 #include "inline-frame.h"
46 #include "tracepoint.h"
48 static void target_info (char *, int);
50 static void default_terminal_info (char *, int);
52 static int default_watchpoint_addr_within_range (struct target_ops *,
53 CORE_ADDR, CORE_ADDR, int);
55 static int default_region_ok_for_hw_watchpoint (CORE_ADDR, int);
57 static void tcomplain (void) ATTRIBUTE_NORETURN;
59 static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
61 static int return_zero (void);
63 static int return_one (void);
65 static int return_minus_one (void);
67 void target_ignore (void);
69 static void target_command (char *, int);
71 static struct target_ops *find_default_run_target (char *);
73 static LONGEST default_xfer_partial (struct target_ops *ops,
74 enum target_object object,
75 const char *annex, gdb_byte *readbuf,
76 const gdb_byte *writebuf,
77 ULONGEST offset, LONGEST len);
79 static LONGEST current_xfer_partial (struct target_ops *ops,
80 enum target_object object,
81 const char *annex, gdb_byte *readbuf,
82 const gdb_byte *writebuf,
83 ULONGEST offset, LONGEST len);
85 static LONGEST target_xfer_partial (struct target_ops *ops,
86 enum target_object object,
88 void *readbuf, const void *writebuf,
89 ULONGEST offset, LONGEST len);
91 static struct gdbarch *default_thread_architecture (struct target_ops *ops,
94 static void init_dummy_target (void);
96 static struct target_ops debug_target;
98 static void debug_to_open (char *, int);
100 static void debug_to_prepare_to_store (struct regcache *);
102 static void debug_to_files_info (struct target_ops *);
104 static int debug_to_insert_breakpoint (struct gdbarch *,
105 struct bp_target_info *);
107 static int debug_to_remove_breakpoint (struct gdbarch *,
108 struct bp_target_info *);
110 static int debug_to_can_use_hw_breakpoint (int, int, int);
112 static int debug_to_insert_hw_breakpoint (struct gdbarch *,
113 struct bp_target_info *);
115 static int debug_to_remove_hw_breakpoint (struct gdbarch *,
116 struct bp_target_info *);
118 static int debug_to_insert_watchpoint (CORE_ADDR, int, int,
119 struct expression *);
121 static int debug_to_remove_watchpoint (CORE_ADDR, int, int,
122 struct expression *);
124 static int debug_to_stopped_by_watchpoint (void);
126 static int debug_to_stopped_data_address (struct target_ops *, CORE_ADDR *);
128 static int debug_to_watchpoint_addr_within_range (struct target_ops *,
129 CORE_ADDR, CORE_ADDR, int);
131 static int debug_to_region_ok_for_hw_watchpoint (CORE_ADDR, int);
133 static int debug_to_can_accel_watchpoint_condition (CORE_ADDR, int, int,
134 struct expression *);
136 static void debug_to_terminal_init (void);
138 static void debug_to_terminal_inferior (void);
140 static void debug_to_terminal_ours_for_output (void);
142 static void debug_to_terminal_save_ours (void);
144 static void debug_to_terminal_ours (void);
146 static void debug_to_terminal_info (char *, int);
148 static void debug_to_load (char *, int);
150 static int debug_to_can_run (void);
152 static void debug_to_stop (ptid_t);
154 /* Pointer to array of target architecture structures; the size of the
155 array; the current index into the array; the allocated size of the
157 struct target_ops **target_structs;
158 unsigned target_struct_size;
159 unsigned target_struct_index;
160 unsigned target_struct_allocsize;
161 #define DEFAULT_ALLOCSIZE 10
163 /* The initial current target, so that there is always a semi-valid
166 static struct target_ops dummy_target;
168 /* Top of target stack. */
170 static struct target_ops *target_stack;
172 /* The target structure we are currently using to talk to a process
173 or file or whatever "inferior" we have. */
175 struct target_ops current_target;
177 /* Command list for target. */
179 static struct cmd_list_element *targetlist = NULL;
181 /* Nonzero if we should trust readonly sections from the
182 executable when reading memory. */
184 static int trust_readonly = 0;
186 /* Nonzero if we should show true memory content including
187 memory breakpoint inserted by gdb. */
189 static int show_memory_breakpoints = 0;
191 /* These globals control whether GDB attempts to perform these
192 operations; they are useful for targets that need to prevent
193 inadvertant disruption, such as in non-stop mode. */
195 int may_write_registers = 1;
197 int may_write_memory = 1;
199 int may_insert_breakpoints = 1;
201 int may_insert_tracepoints = 1;
203 int may_insert_fast_tracepoints = 1;
207 /* Non-zero if we want to see trace of target level stuff. */
209 static int targetdebug = 0;
211 show_targetdebug (struct ui_file *file, int from_tty,
212 struct cmd_list_element *c, const char *value)
214 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
217 static void setup_target_debug (void);
219 /* The option sets this. */
220 static int stack_cache_enabled_p_1 = 1;
221 /* And set_stack_cache_enabled_p updates this.
222 The reason for the separation is so that we don't flush the cache for
223 on->on transitions. */
224 static int stack_cache_enabled_p = 1;
226 /* This is called *after* the stack-cache has been set.
227 Flush the cache for off->on and on->off transitions.
228 There's no real need to flush the cache for on->off transitions,
229 except cleanliness. */
232 set_stack_cache_enabled_p (char *args, int from_tty,
233 struct cmd_list_element *c)
235 if (stack_cache_enabled_p != stack_cache_enabled_p_1)
236 target_dcache_invalidate ();
238 stack_cache_enabled_p = stack_cache_enabled_p_1;
242 show_stack_cache_enabled_p (struct ui_file *file, int from_tty,
243 struct cmd_list_element *c, const char *value)
245 fprintf_filtered (file, _("Cache use for stack accesses is %s.\n"), value);
248 /* Cache of memory operations, to speed up remote access. */
249 static DCACHE *target_dcache;
251 /* Invalidate the target dcache. */
254 target_dcache_invalidate (void)
256 dcache_invalidate (target_dcache);
259 /* The user just typed 'target' without the name of a target. */
262 target_command (char *arg, int from_tty)
264 fputs_filtered ("Argument required (target name). Try `help target'\n",
268 /* Default target_has_* methods for process_stratum targets. */
271 default_child_has_all_memory (struct target_ops *ops)
273 /* If no inferior selected, then we can't read memory here. */
274 if (ptid_equal (inferior_ptid, null_ptid))
281 default_child_has_memory (struct target_ops *ops)
283 /* If no inferior selected, then we can't read memory here. */
284 if (ptid_equal (inferior_ptid, null_ptid))
291 default_child_has_stack (struct target_ops *ops)
293 /* If no inferior selected, there's no stack. */
294 if (ptid_equal (inferior_ptid, null_ptid))
301 default_child_has_registers (struct target_ops *ops)
303 /* Can't read registers from no inferior. */
304 if (ptid_equal (inferior_ptid, null_ptid))
311 default_child_has_execution (struct target_ops *ops, ptid_t the_ptid)
313 /* If there's no thread selected, then we can't make it run through
315 if (ptid_equal (the_ptid, null_ptid))
323 target_has_all_memory_1 (void)
325 struct target_ops *t;
327 for (t = current_target.beneath; t != NULL; t = t->beneath)
328 if (t->to_has_all_memory (t))
335 target_has_memory_1 (void)
337 struct target_ops *t;
339 for (t = current_target.beneath; t != NULL; t = t->beneath)
340 if (t->to_has_memory (t))
347 target_has_stack_1 (void)
349 struct target_ops *t;
351 for (t = current_target.beneath; t != NULL; t = t->beneath)
352 if (t->to_has_stack (t))
359 target_has_registers_1 (void)
361 struct target_ops *t;
363 for (t = current_target.beneath; t != NULL; t = t->beneath)
364 if (t->to_has_registers (t))
371 target_has_execution_1 (ptid_t the_ptid)
373 struct target_ops *t;
375 for (t = current_target.beneath; t != NULL; t = t->beneath)
376 if (t->to_has_execution (t, the_ptid))
383 target_has_execution_current (void)
385 return target_has_execution_1 (inferior_ptid);
388 /* Add a possible target architecture to the list. */
391 add_target (struct target_ops *t)
393 /* Provide default values for all "must have" methods. */
394 if (t->to_xfer_partial == NULL)
395 t->to_xfer_partial = default_xfer_partial;
397 if (t->to_has_all_memory == NULL)
398 t->to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
400 if (t->to_has_memory == NULL)
401 t->to_has_memory = (int (*) (struct target_ops *)) return_zero;
403 if (t->to_has_stack == NULL)
404 t->to_has_stack = (int (*) (struct target_ops *)) return_zero;
406 if (t->to_has_registers == NULL)
407 t->to_has_registers = (int (*) (struct target_ops *)) return_zero;
409 if (t->to_has_execution == NULL)
410 t->to_has_execution = (int (*) (struct target_ops *, ptid_t)) return_zero;
414 target_struct_allocsize = DEFAULT_ALLOCSIZE;
415 target_structs = (struct target_ops **) xmalloc
416 (target_struct_allocsize * sizeof (*target_structs));
418 if (target_struct_size >= target_struct_allocsize)
420 target_struct_allocsize *= 2;
421 target_structs = (struct target_ops **)
422 xrealloc ((char *) target_structs,
423 target_struct_allocsize * sizeof (*target_structs));
425 target_structs[target_struct_size++] = t;
427 if (targetlist == NULL)
428 add_prefix_cmd ("target", class_run, target_command, _("\
429 Connect to a target machine or process.\n\
430 The first argument is the type or protocol of the target machine.\n\
431 Remaining arguments are interpreted by the target protocol. For more\n\
432 information on the arguments for a particular protocol, type\n\
433 `help target ' followed by the protocol name."),
434 &targetlist, "target ", 0, &cmdlist);
435 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
448 struct target_ops *t;
450 for (t = current_target.beneath; t != NULL; t = t->beneath)
451 if (t->to_kill != NULL)
454 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
464 target_load (char *arg, int from_tty)
466 target_dcache_invalidate ();
467 (*current_target.to_load) (arg, from_tty);
471 target_create_inferior (char *exec_file, char *args,
472 char **env, int from_tty)
474 struct target_ops *t;
476 for (t = current_target.beneath; t != NULL; t = t->beneath)
478 if (t->to_create_inferior != NULL)
480 t->to_create_inferior (t, exec_file, args, env, from_tty);
482 fprintf_unfiltered (gdb_stdlog,
483 "target_create_inferior (%s, %s, xxx, %d)\n",
484 exec_file, args, from_tty);
489 internal_error (__FILE__, __LINE__,
490 _("could not find a target to create inferior"));
494 target_terminal_inferior (void)
496 /* A background resume (``run&'') should leave GDB in control of the
497 terminal. Use target_can_async_p, not target_is_async_p, since at
498 this point the target is not async yet. However, if sync_execution
499 is not set, we know it will become async prior to resume. */
500 if (target_can_async_p () && !sync_execution)
503 /* If GDB is resuming the inferior in the foreground, install
504 inferior's terminal modes. */
505 (*current_target.to_terminal_inferior) ();
509 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
510 struct target_ops *t)
512 errno = EIO; /* Can't read/write this location. */
513 return 0; /* No bytes handled. */
519 error (_("You can't do that when your target is `%s'"),
520 current_target.to_shortname);
526 error (_("You can't do that without a process to debug."));
530 default_terminal_info (char *args, int from_tty)
532 printf_unfiltered (_("No saved terminal information.\n"));
535 /* A default implementation for the to_get_ada_task_ptid target method.
537 This function builds the PTID by using both LWP and TID as part of
538 the PTID lwp and tid elements. The pid used is the pid of the
542 default_get_ada_task_ptid (long lwp, long tid)
544 return ptid_build (ptid_get_pid (inferior_ptid), lwp, tid);
547 static enum exec_direction_kind
548 default_execution_direction (void)
550 if (!target_can_execute_reverse)
552 else if (!target_can_async_p ())
555 gdb_assert_not_reached ("\
556 to_execution_direction must be implemented for reverse async");
559 /* Go through the target stack from top to bottom, copying over zero
560 entries in current_target, then filling in still empty entries. In
561 effect, we are doing class inheritance through the pushed target
564 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
565 is currently implemented, is that it discards any knowledge of
566 which target an inherited method originally belonged to.
567 Consequently, new new target methods should instead explicitly and
568 locally search the target stack for the target that can handle the
572 update_current_target (void)
574 struct target_ops *t;
576 /* First, reset current's contents. */
577 memset (¤t_target, 0, sizeof (current_target));
579 #define INHERIT(FIELD, TARGET) \
580 if (!current_target.FIELD) \
581 current_target.FIELD = (TARGET)->FIELD
583 for (t = target_stack; t; t = t->beneath)
585 INHERIT (to_shortname, t);
586 INHERIT (to_longname, t);
588 /* Do not inherit to_open. */
589 /* Do not inherit to_close. */
590 /* Do not inherit to_attach. */
591 INHERIT (to_post_attach, t);
592 INHERIT (to_attach_no_wait, t);
593 /* Do not inherit to_detach. */
594 /* Do not inherit to_disconnect. */
595 /* Do not inherit to_resume. */
596 /* Do not inherit to_wait. */
597 /* Do not inherit to_fetch_registers. */
598 /* Do not inherit to_store_registers. */
599 INHERIT (to_prepare_to_store, t);
600 INHERIT (deprecated_xfer_memory, t);
601 INHERIT (to_files_info, t);
602 INHERIT (to_insert_breakpoint, t);
603 INHERIT (to_remove_breakpoint, t);
604 INHERIT (to_can_use_hw_breakpoint, t);
605 INHERIT (to_insert_hw_breakpoint, t);
606 INHERIT (to_remove_hw_breakpoint, t);
607 /* Do not inherit to_ranged_break_num_registers. */
608 INHERIT (to_insert_watchpoint, t);
609 INHERIT (to_remove_watchpoint, t);
610 /* Do not inherit to_insert_mask_watchpoint. */
611 /* Do not inherit to_remove_mask_watchpoint. */
612 INHERIT (to_stopped_data_address, t);
613 INHERIT (to_have_steppable_watchpoint, t);
614 INHERIT (to_have_continuable_watchpoint, t);
615 INHERIT (to_stopped_by_watchpoint, t);
616 INHERIT (to_watchpoint_addr_within_range, t);
617 INHERIT (to_region_ok_for_hw_watchpoint, t);
618 INHERIT (to_can_accel_watchpoint_condition, t);
619 /* Do not inherit to_masked_watch_num_registers. */
620 INHERIT (to_terminal_init, t);
621 INHERIT (to_terminal_inferior, t);
622 INHERIT (to_terminal_ours_for_output, t);
623 INHERIT (to_terminal_ours, t);
624 INHERIT (to_terminal_save_ours, t);
625 INHERIT (to_terminal_info, t);
626 /* Do not inherit to_kill. */
627 INHERIT (to_load, t);
628 /* Do no inherit to_create_inferior. */
629 INHERIT (to_post_startup_inferior, t);
630 INHERIT (to_insert_fork_catchpoint, t);
631 INHERIT (to_remove_fork_catchpoint, t);
632 INHERIT (to_insert_vfork_catchpoint, t);
633 INHERIT (to_remove_vfork_catchpoint, t);
634 /* Do not inherit to_follow_fork. */
635 INHERIT (to_insert_exec_catchpoint, t);
636 INHERIT (to_remove_exec_catchpoint, t);
637 INHERIT (to_set_syscall_catchpoint, t);
638 INHERIT (to_has_exited, t);
639 /* Do not inherit to_mourn_inferior. */
640 INHERIT (to_can_run, t);
641 /* Do not inherit to_pass_signals. */
642 /* Do not inherit to_thread_alive. */
643 /* Do not inherit to_find_new_threads. */
644 /* Do not inherit to_pid_to_str. */
645 INHERIT (to_extra_thread_info, t);
646 INHERIT (to_thread_name, t);
647 INHERIT (to_stop, t);
648 /* Do not inherit to_xfer_partial. */
649 INHERIT (to_rcmd, t);
650 INHERIT (to_pid_to_exec_file, t);
651 INHERIT (to_log_command, t);
652 INHERIT (to_stratum, t);
653 /* Do not inherit to_has_all_memory. */
654 /* Do not inherit to_has_memory. */
655 /* Do not inherit to_has_stack. */
656 /* Do not inherit to_has_registers. */
657 /* Do not inherit to_has_execution. */
658 INHERIT (to_has_thread_control, t);
659 INHERIT (to_can_async_p, t);
660 INHERIT (to_is_async_p, t);
661 INHERIT (to_async, t);
662 INHERIT (to_find_memory_regions, t);
663 INHERIT (to_make_corefile_notes, t);
664 INHERIT (to_get_bookmark, t);
665 INHERIT (to_goto_bookmark, t);
666 /* Do not inherit to_get_thread_local_address. */
667 INHERIT (to_can_execute_reverse, t);
668 INHERIT (to_execution_direction, t);
669 INHERIT (to_thread_architecture, t);
670 /* Do not inherit to_read_description. */
671 INHERIT (to_get_ada_task_ptid, t);
672 /* Do not inherit to_search_memory. */
673 INHERIT (to_supports_multi_process, t);
674 INHERIT (to_supports_enable_disable_tracepoint, t);
675 INHERIT (to_supports_string_tracing, t);
676 INHERIT (to_trace_init, t);
677 INHERIT (to_download_tracepoint, t);
678 INHERIT (to_download_trace_state_variable, t);
679 INHERIT (to_enable_tracepoint, t);
680 INHERIT (to_disable_tracepoint, t);
681 INHERIT (to_trace_set_readonly_regions, t);
682 INHERIT (to_trace_start, t);
683 INHERIT (to_get_trace_status, t);
684 INHERIT (to_trace_stop, t);
685 INHERIT (to_trace_find, t);
686 INHERIT (to_get_trace_state_variable_value, t);
687 INHERIT (to_save_trace_data, t);
688 INHERIT (to_upload_tracepoints, t);
689 INHERIT (to_upload_trace_state_variables, t);
690 INHERIT (to_get_raw_trace_data, t);
691 INHERIT (to_set_disconnected_tracing, t);
692 INHERIT (to_set_circular_trace_buffer, t);
693 INHERIT (to_get_tib_address, t);
694 INHERIT (to_set_permissions, t);
695 INHERIT (to_static_tracepoint_marker_at, t);
696 INHERIT (to_static_tracepoint_markers_by_strid, t);
697 INHERIT (to_traceframe_info, t);
698 INHERIT (to_magic, t);
699 /* Do not inherit to_memory_map. */
700 /* Do not inherit to_flash_erase. */
701 /* Do not inherit to_flash_done. */
705 /* Clean up a target struct so it no longer has any zero pointers in
706 it. Some entries are defaulted to a method that print an error,
707 others are hard-wired to a standard recursive default. */
709 #define de_fault(field, value) \
710 if (!current_target.field) \
711 current_target.field = value
714 (void (*) (char *, int))
719 de_fault (to_post_attach,
722 de_fault (to_prepare_to_store,
723 (void (*) (struct regcache *))
725 de_fault (deprecated_xfer_memory,
726 (int (*) (CORE_ADDR, gdb_byte *, int, int,
727 struct mem_attrib *, struct target_ops *))
729 de_fault (to_files_info,
730 (void (*) (struct target_ops *))
732 de_fault (to_insert_breakpoint,
733 memory_insert_breakpoint);
734 de_fault (to_remove_breakpoint,
735 memory_remove_breakpoint);
736 de_fault (to_can_use_hw_breakpoint,
737 (int (*) (int, int, int))
739 de_fault (to_insert_hw_breakpoint,
740 (int (*) (struct gdbarch *, struct bp_target_info *))
742 de_fault (to_remove_hw_breakpoint,
743 (int (*) (struct gdbarch *, struct bp_target_info *))
745 de_fault (to_insert_watchpoint,
746 (int (*) (CORE_ADDR, int, int, struct expression *))
748 de_fault (to_remove_watchpoint,
749 (int (*) (CORE_ADDR, int, int, struct expression *))
751 de_fault (to_stopped_by_watchpoint,
754 de_fault (to_stopped_data_address,
755 (int (*) (struct target_ops *, CORE_ADDR *))
757 de_fault (to_watchpoint_addr_within_range,
758 default_watchpoint_addr_within_range);
759 de_fault (to_region_ok_for_hw_watchpoint,
760 default_region_ok_for_hw_watchpoint);
761 de_fault (to_can_accel_watchpoint_condition,
762 (int (*) (CORE_ADDR, int, int, struct expression *))
764 de_fault (to_terminal_init,
767 de_fault (to_terminal_inferior,
770 de_fault (to_terminal_ours_for_output,
773 de_fault (to_terminal_ours,
776 de_fault (to_terminal_save_ours,
779 de_fault (to_terminal_info,
780 default_terminal_info);
782 (void (*) (char *, int))
784 de_fault (to_post_startup_inferior,
787 de_fault (to_insert_fork_catchpoint,
790 de_fault (to_remove_fork_catchpoint,
793 de_fault (to_insert_vfork_catchpoint,
796 de_fault (to_remove_vfork_catchpoint,
799 de_fault (to_insert_exec_catchpoint,
802 de_fault (to_remove_exec_catchpoint,
805 de_fault (to_set_syscall_catchpoint,
806 (int (*) (int, int, int, int, int *))
808 de_fault (to_has_exited,
809 (int (*) (int, int, int *))
811 de_fault (to_can_run,
813 de_fault (to_extra_thread_info,
814 (char *(*) (struct thread_info *))
816 de_fault (to_thread_name,
817 (char *(*) (struct thread_info *))
822 current_target.to_xfer_partial = current_xfer_partial;
824 (void (*) (char *, struct ui_file *))
826 de_fault (to_pid_to_exec_file,
830 (void (*) (void (*) (enum inferior_event_type, void*), void*))
832 de_fault (to_thread_architecture,
833 default_thread_architecture);
834 current_target.to_read_description = NULL;
835 de_fault (to_get_ada_task_ptid,
836 (ptid_t (*) (long, long))
837 default_get_ada_task_ptid);
838 de_fault (to_supports_multi_process,
841 de_fault (to_supports_enable_disable_tracepoint,
844 de_fault (to_supports_string_tracing,
847 de_fault (to_trace_init,
850 de_fault (to_download_tracepoint,
851 (void (*) (struct breakpoint *))
853 de_fault (to_download_trace_state_variable,
854 (void (*) (struct trace_state_variable *))
856 de_fault (to_enable_tracepoint,
857 (void (*) (struct bp_location *))
859 de_fault (to_disable_tracepoint,
860 (void (*) (struct bp_location *))
862 de_fault (to_trace_set_readonly_regions,
865 de_fault (to_trace_start,
868 de_fault (to_get_trace_status,
869 (int (*) (struct trace_status *))
871 de_fault (to_trace_stop,
874 de_fault (to_trace_find,
875 (int (*) (enum trace_find_type, int, ULONGEST, ULONGEST, int *))
877 de_fault (to_get_trace_state_variable_value,
878 (int (*) (int, LONGEST *))
880 de_fault (to_save_trace_data,
881 (int (*) (const char *))
883 de_fault (to_upload_tracepoints,
884 (int (*) (struct uploaded_tp **))
886 de_fault (to_upload_trace_state_variables,
887 (int (*) (struct uploaded_tsv **))
889 de_fault (to_get_raw_trace_data,
890 (LONGEST (*) (gdb_byte *, ULONGEST, LONGEST))
892 de_fault (to_set_disconnected_tracing,
895 de_fault (to_set_circular_trace_buffer,
898 de_fault (to_get_tib_address,
899 (int (*) (ptid_t, CORE_ADDR *))
901 de_fault (to_set_permissions,
904 de_fault (to_static_tracepoint_marker_at,
905 (int (*) (CORE_ADDR, struct static_tracepoint_marker *))
907 de_fault (to_static_tracepoint_markers_by_strid,
908 (VEC(static_tracepoint_marker_p) * (*) (const char *))
910 de_fault (to_traceframe_info,
911 (struct traceframe_info * (*) (void))
913 de_fault (to_execution_direction, default_execution_direction);
917 /* Finally, position the target-stack beneath the squashed
918 "current_target". That way code looking for a non-inherited
919 target method can quickly and simply find it. */
920 current_target.beneath = target_stack;
923 setup_target_debug ();
926 /* Push a new target type into the stack of the existing target accessors,
927 possibly superseding some of the existing accessors.
929 Rather than allow an empty stack, we always have the dummy target at
930 the bottom stratum, so we can call the function vectors without
934 push_target (struct target_ops *t)
936 struct target_ops **cur;
938 /* Check magic number. If wrong, it probably means someone changed
939 the struct definition, but not all the places that initialize one. */
940 if (t->to_magic != OPS_MAGIC)
942 fprintf_unfiltered (gdb_stderr,
943 "Magic number of %s target struct wrong\n",
945 internal_error (__FILE__, __LINE__,
946 _("failed internal consistency check"));
949 /* Find the proper stratum to install this target in. */
950 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
952 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
956 /* If there's already targets at this stratum, remove them. */
957 /* FIXME: cagney/2003-10-15: I think this should be popping all
958 targets to CUR, and not just those at this stratum level. */
959 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
961 /* There's already something at this stratum level. Close it,
962 and un-hook it from the stack. */
963 struct target_ops *tmp = (*cur);
965 (*cur) = (*cur)->beneath;
967 target_close (tmp, 0);
970 /* We have removed all targets in our stratum, now add the new one. */
974 update_current_target ();
977 /* Remove a target_ops vector from the stack, wherever it may be.
978 Return how many times it was removed (0 or 1). */
981 unpush_target (struct target_ops *t)
983 struct target_ops **cur;
984 struct target_ops *tmp;
986 if (t->to_stratum == dummy_stratum)
987 internal_error (__FILE__, __LINE__,
988 _("Attempt to unpush the dummy target"));
990 /* Look for the specified target. Note that we assume that a target
991 can only occur once in the target stack. */
993 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
1000 return 0; /* Didn't find target_ops, quit now. */
1002 /* NOTE: cagney/2003-12-06: In '94 the close call was made
1003 unconditional by moving it to before the above check that the
1004 target was in the target stack (something about "Change the way
1005 pushing and popping of targets work to support target overlays
1006 and inheritance"). This doesn't make much sense - only open
1007 targets should be closed. */
1008 target_close (t, 0);
1010 /* Unchain the target. */
1012 (*cur) = (*cur)->beneath;
1013 tmp->beneath = NULL;
1015 update_current_target ();
1023 target_close (target_stack, 0); /* Let it clean up. */
1024 if (unpush_target (target_stack) == 1)
1027 fprintf_unfiltered (gdb_stderr,
1028 "pop_target couldn't find target %s\n",
1029 current_target.to_shortname);
1030 internal_error (__FILE__, __LINE__,
1031 _("failed internal consistency check"));
1035 pop_all_targets_above (enum strata above_stratum, int quitting)
1037 while ((int) (current_target.to_stratum) > (int) above_stratum)
1039 target_close (target_stack, quitting);
1040 if (!unpush_target (target_stack))
1042 fprintf_unfiltered (gdb_stderr,
1043 "pop_all_targets couldn't find target %s\n",
1044 target_stack->to_shortname);
1045 internal_error (__FILE__, __LINE__,
1046 _("failed internal consistency check"));
1053 pop_all_targets (int quitting)
1055 pop_all_targets_above (dummy_stratum, quitting);
1058 /* Return 1 if T is now pushed in the target stack. Return 0 otherwise. */
1061 target_is_pushed (struct target_ops *t)
1063 struct target_ops **cur;
1065 /* Check magic number. If wrong, it probably means someone changed
1066 the struct definition, but not all the places that initialize one. */
1067 if (t->to_magic != OPS_MAGIC)
1069 fprintf_unfiltered (gdb_stderr,
1070 "Magic number of %s target struct wrong\n",
1072 internal_error (__FILE__, __LINE__,
1073 _("failed internal consistency check"));
1076 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
1083 /* Using the objfile specified in OBJFILE, find the address for the
1084 current thread's thread-local storage with offset OFFSET. */
1086 target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
1088 volatile CORE_ADDR addr = 0;
1089 struct target_ops *target;
1091 for (target = current_target.beneath;
1093 target = target->beneath)
1095 if (target->to_get_thread_local_address != NULL)
1100 && gdbarch_fetch_tls_load_module_address_p (target_gdbarch))
1102 ptid_t ptid = inferior_ptid;
1103 volatile struct gdb_exception ex;
1105 TRY_CATCH (ex, RETURN_MASK_ALL)
1109 /* Fetch the load module address for this objfile. */
1110 lm_addr = gdbarch_fetch_tls_load_module_address (target_gdbarch,
1112 /* If it's 0, throw the appropriate exception. */
1114 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
1115 _("TLS load module not found"));
1117 addr = target->to_get_thread_local_address (target, ptid,
1120 /* If an error occurred, print TLS related messages here. Otherwise,
1121 throw the error to some higher catcher. */
1124 int objfile_is_library = (objfile->flags & OBJF_SHARED);
1128 case TLS_NO_LIBRARY_SUPPORT_ERROR:
1129 error (_("Cannot find thread-local variables "
1130 "in this thread library."));
1132 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
1133 if (objfile_is_library)
1134 error (_("Cannot find shared library `%s' in dynamic"
1135 " linker's load module list"), objfile->name);
1137 error (_("Cannot find executable file `%s' in dynamic"
1138 " linker's load module list"), objfile->name);
1140 case TLS_NOT_ALLOCATED_YET_ERROR:
1141 if (objfile_is_library)
1142 error (_("The inferior has not yet allocated storage for"
1143 " thread-local variables in\n"
1144 "the shared library `%s'\n"
1146 objfile->name, target_pid_to_str (ptid));
1148 error (_("The inferior has not yet allocated storage for"
1149 " thread-local variables in\n"
1150 "the executable `%s'\n"
1152 objfile->name, target_pid_to_str (ptid));
1154 case TLS_GENERIC_ERROR:
1155 if (objfile_is_library)
1156 error (_("Cannot find thread-local storage for %s, "
1157 "shared library %s:\n%s"),
1158 target_pid_to_str (ptid),
1159 objfile->name, ex.message);
1161 error (_("Cannot find thread-local storage for %s, "
1162 "executable file %s:\n%s"),
1163 target_pid_to_str (ptid),
1164 objfile->name, ex.message);
1167 throw_exception (ex);
1172 /* It wouldn't be wrong here to try a gdbarch method, too; finding
1173 TLS is an ABI-specific thing. But we don't do that yet. */
1175 error (_("Cannot find thread-local variables on this target"));
1181 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
1183 /* target_read_string -- read a null terminated string, up to LEN bytes,
1184 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
1185 Set *STRING to a pointer to malloc'd memory containing the data; the caller
1186 is responsible for freeing it. Return the number of bytes successfully
1190 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
1192 int tlen, origlen, offset, i;
1196 int buffer_allocated;
1198 unsigned int nbytes_read = 0;
1200 gdb_assert (string);
1202 /* Small for testing. */
1203 buffer_allocated = 4;
1204 buffer = xmalloc (buffer_allocated);
1211 tlen = MIN (len, 4 - (memaddr & 3));
1212 offset = memaddr & 3;
1214 errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
1217 /* The transfer request might have crossed the boundary to an
1218 unallocated region of memory. Retry the transfer, requesting
1222 errcode = target_read_memory (memaddr, buf, 1);
1227 if (bufptr - buffer + tlen > buffer_allocated)
1231 bytes = bufptr - buffer;
1232 buffer_allocated *= 2;
1233 buffer = xrealloc (buffer, buffer_allocated);
1234 bufptr = buffer + bytes;
1237 for (i = 0; i < tlen; i++)
1239 *bufptr++ = buf[i + offset];
1240 if (buf[i + offset] == '\000')
1242 nbytes_read += i + 1;
1249 nbytes_read += tlen;
1258 struct target_section_table *
1259 target_get_section_table (struct target_ops *target)
1261 struct target_ops *t;
1264 fprintf_unfiltered (gdb_stdlog, "target_get_section_table ()\n");
1266 for (t = target; t != NULL; t = t->beneath)
1267 if (t->to_get_section_table != NULL)
1268 return (*t->to_get_section_table) (t);
1273 /* Find a section containing ADDR. */
1275 struct target_section *
1276 target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1278 struct target_section_table *table = target_get_section_table (target);
1279 struct target_section *secp;
1284 for (secp = table->sections; secp < table->sections_end; secp++)
1286 if (addr >= secp->addr && addr < secp->endaddr)
1292 /* Read memory from the live target, even if currently inspecting a
1293 traceframe. The return is the same as that of target_read. */
1296 target_read_live_memory (enum target_object object,
1297 ULONGEST memaddr, gdb_byte *myaddr, LONGEST len)
1300 struct cleanup *cleanup;
1302 /* Switch momentarily out of tfind mode so to access live memory.
1303 Note that this must not clear global state, such as the frame
1304 cache, which must still remain valid for the previous traceframe.
1305 We may be _building_ the frame cache at this point. */
1306 cleanup = make_cleanup_restore_traceframe_number ();
1307 set_traceframe_number (-1);
1309 ret = target_read (current_target.beneath, object, NULL,
1310 myaddr, memaddr, len);
1312 do_cleanups (cleanup);
1316 /* Using the set of read-only target sections of OPS, read live
1317 read-only memory. Note that the actual reads start from the
1318 top-most target again.
1320 For interface/parameters/return description see target.h,
1324 memory_xfer_live_readonly_partial (struct target_ops *ops,
1325 enum target_object object,
1326 gdb_byte *readbuf, ULONGEST memaddr,
1329 struct target_section *secp;
1330 struct target_section_table *table;
1332 secp = target_section_by_addr (ops, memaddr);
1334 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
1337 struct target_section *p;
1338 ULONGEST memend = memaddr + len;
1340 table = target_get_section_table (ops);
1342 for (p = table->sections; p < table->sections_end; p++)
1344 if (memaddr >= p->addr)
1346 if (memend <= p->endaddr)
1348 /* Entire transfer is within this section. */
1349 return target_read_live_memory (object, memaddr,
1352 else if (memaddr >= p->endaddr)
1354 /* This section ends before the transfer starts. */
1359 /* This section overlaps the transfer. Just do half. */
1360 len = p->endaddr - memaddr;
1361 return target_read_live_memory (object, memaddr,
1371 /* Perform a partial memory transfer.
1372 For docs see target.h, to_xfer_partial. */
1375 memory_xfer_partial (struct target_ops *ops, enum target_object object,
1376 void *readbuf, const void *writebuf, ULONGEST memaddr,
1381 struct mem_region *region;
1382 struct inferior *inf;
1384 /* Zero length requests are ok and require no work. */
1388 /* For accesses to unmapped overlay sections, read directly from
1389 files. Must do this first, as MEMADDR may need adjustment. */
1390 if (readbuf != NULL && overlay_debugging)
1392 struct obj_section *section = find_pc_overlay (memaddr);
1394 if (pc_in_unmapped_range (memaddr, section))
1396 struct target_section_table *table
1397 = target_get_section_table (ops);
1398 const char *section_name = section->the_bfd_section->name;
1400 memaddr = overlay_mapped_address (memaddr, section);
1401 return section_table_xfer_memory_partial (readbuf, writebuf,
1404 table->sections_end,
1409 /* Try the executable files, if "trust-readonly-sections" is set. */
1410 if (readbuf != NULL && trust_readonly)
1412 struct target_section *secp;
1413 struct target_section_table *table;
1415 secp = target_section_by_addr (ops, memaddr);
1417 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
1420 table = target_get_section_table (ops);
1421 return section_table_xfer_memory_partial (readbuf, writebuf,
1424 table->sections_end,
1429 /* If reading unavailable memory in the context of traceframes, and
1430 this address falls within a read-only section, fallback to
1431 reading from live memory. */
1432 if (readbuf != NULL && get_traceframe_number () != -1)
1434 VEC(mem_range_s) *available;
1436 /* If we fail to get the set of available memory, then the
1437 target does not support querying traceframe info, and so we
1438 attempt reading from the traceframe anyway (assuming the
1439 target implements the old QTro packet then). */
1440 if (traceframe_available_memory (&available, memaddr, len))
1442 struct cleanup *old_chain;
1444 old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
1446 if (VEC_empty (mem_range_s, available)
1447 || VEC_index (mem_range_s, available, 0)->start != memaddr)
1449 /* Don't read into the traceframe's available
1451 if (!VEC_empty (mem_range_s, available))
1453 LONGEST oldlen = len;
1455 len = VEC_index (mem_range_s, available, 0)->start - memaddr;
1456 gdb_assert (len <= oldlen);
1459 do_cleanups (old_chain);
1461 /* This goes through the topmost target again. */
1462 res = memory_xfer_live_readonly_partial (ops, object,
1463 readbuf, memaddr, len);
1467 /* No use trying further, we know some memory starting
1468 at MEMADDR isn't available. */
1472 /* Don't try to read more than how much is available, in
1473 case the target implements the deprecated QTro packet to
1474 cater for older GDBs (the target's knowledge of read-only
1475 sections may be outdated by now). */
1476 len = VEC_index (mem_range_s, available, 0)->length;
1478 do_cleanups (old_chain);
1482 /* Try GDB's internal data cache. */
1483 region = lookup_mem_region (memaddr);
1484 /* region->hi == 0 means there's no upper bound. */
1485 if (memaddr + len < region->hi || region->hi == 0)
1488 reg_len = region->hi - memaddr;
1490 switch (region->attrib.mode)
1493 if (writebuf != NULL)
1498 if (readbuf != NULL)
1503 /* We only support writing to flash during "load" for now. */
1504 if (writebuf != NULL)
1505 error (_("Writing to flash memory forbidden in this context"));
1512 if (!ptid_equal (inferior_ptid, null_ptid))
1513 inf = find_inferior_pid (ptid_get_pid (inferior_ptid));
1518 /* The dcache reads whole cache lines; that doesn't play well
1519 with reading from a trace buffer, because reading outside of
1520 the collected memory range fails. */
1521 && get_traceframe_number () == -1
1522 && (region->attrib.cache
1523 || (stack_cache_enabled_p && object == TARGET_OBJECT_STACK_MEMORY)))
1525 if (readbuf != NULL)
1526 res = dcache_xfer_memory (ops, target_dcache, memaddr, readbuf,
1529 /* FIXME drow/2006-08-09: If we're going to preserve const
1530 correctness dcache_xfer_memory should take readbuf and
1532 res = dcache_xfer_memory (ops, target_dcache, memaddr,
1539 if (readbuf && !show_memory_breakpoints)
1540 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1545 /* If none of those methods found the memory we wanted, fall back
1546 to a target partial transfer. Normally a single call to
1547 to_xfer_partial is enough; if it doesn't recognize an object
1548 it will call the to_xfer_partial of the next target down.
1549 But for memory this won't do. Memory is the only target
1550 object which can be read from more than one valid target.
1551 A core file, for instance, could have some of memory but
1552 delegate other bits to the target below it. So, we must
1553 manually try all targets. */
1557 res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1558 readbuf, writebuf, memaddr, reg_len);
1562 /* We want to continue past core files to executables, but not
1563 past a running target's memory. */
1564 if (ops->to_has_all_memory (ops))
1569 while (ops != NULL);
1571 if (res > 0 && readbuf != NULL && !show_memory_breakpoints)
1572 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1574 /* Make sure the cache gets updated no matter what - if we are writing
1575 to the stack. Even if this write is not tagged as such, we still need
1576 to update the cache. */
1581 && !region->attrib.cache
1582 && stack_cache_enabled_p
1583 && object != TARGET_OBJECT_STACK_MEMORY)
1585 dcache_update (target_dcache, memaddr, (void *) writebuf, res);
1588 /* If we still haven't got anything, return the last error. We
1594 restore_show_memory_breakpoints (void *arg)
1596 show_memory_breakpoints = (uintptr_t) arg;
1600 make_show_memory_breakpoints_cleanup (int show)
1602 int current = show_memory_breakpoints;
1604 show_memory_breakpoints = show;
1605 return make_cleanup (restore_show_memory_breakpoints,
1606 (void *) (uintptr_t) current);
1609 /* For docs see target.h, to_xfer_partial. */
1612 target_xfer_partial (struct target_ops *ops,
1613 enum target_object object, const char *annex,
1614 void *readbuf, const void *writebuf,
1615 ULONGEST offset, LONGEST len)
1619 gdb_assert (ops->to_xfer_partial != NULL);
1621 if (writebuf && !may_write_memory)
1622 error (_("Writing to memory is not allowed (addr %s, len %s)"),
1623 core_addr_to_string_nz (offset), plongest (len));
1625 /* If this is a memory transfer, let the memory-specific code
1626 have a look at it instead. Memory transfers are more
1628 if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY)
1629 retval = memory_xfer_partial (ops, object, readbuf,
1630 writebuf, offset, len);
1633 enum target_object raw_object = object;
1635 /* If this is a raw memory transfer, request the normal
1636 memory object from other layers. */
1637 if (raw_object == TARGET_OBJECT_RAW_MEMORY)
1638 raw_object = TARGET_OBJECT_MEMORY;
1640 retval = ops->to_xfer_partial (ops, raw_object, annex, readbuf,
1641 writebuf, offset, len);
1646 const unsigned char *myaddr = NULL;
1648 fprintf_unfiltered (gdb_stdlog,
1649 "%s:target_xfer_partial "
1650 "(%d, %s, %s, %s, %s, %s) = %s",
1653 (annex ? annex : "(null)"),
1654 host_address_to_string (readbuf),
1655 host_address_to_string (writebuf),
1656 core_addr_to_string_nz (offset),
1657 plongest (len), plongest (retval));
1663 if (retval > 0 && myaddr != NULL)
1667 fputs_unfiltered (", bytes =", gdb_stdlog);
1668 for (i = 0; i < retval; i++)
1670 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
1672 if (targetdebug < 2 && i > 0)
1674 fprintf_unfiltered (gdb_stdlog, " ...");
1677 fprintf_unfiltered (gdb_stdlog, "\n");
1680 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1684 fputc_unfiltered ('\n', gdb_stdlog);
1689 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
1690 GDB's memory at MYADDR. Returns either 0 for success or an errno value
1691 if any error occurs.
1693 If an error occurs, no guarantee is made about the contents of the data at
1694 MYADDR. In particular, the caller should not depend upon partial reads
1695 filling the buffer with good data. There is no way for the caller to know
1696 how much good data might have been transfered anyway. Callers that can
1697 deal with partial reads should call target_read (which will retry until
1698 it makes no progress, and then return how much was transferred). */
1701 target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
1703 /* Dispatch to the topmost target, not the flattened current_target.
1704 Memory accesses check target->to_has_(all_)memory, and the
1705 flattened target doesn't inherit those. */
1706 if (target_read (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1707 myaddr, memaddr, len) == len)
1713 /* Like target_read_memory, but specify explicitly that this is a read from
1714 the target's stack. This may trigger different cache behavior. */
1717 target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
1719 /* Dispatch to the topmost target, not the flattened current_target.
1720 Memory accesses check target->to_has_(all_)memory, and the
1721 flattened target doesn't inherit those. */
1723 if (target_read (current_target.beneath, TARGET_OBJECT_STACK_MEMORY, NULL,
1724 myaddr, memaddr, len) == len)
1730 /* Write LEN bytes from MYADDR to target memory at address MEMADDR.
1731 Returns either 0 for success or an errno value if any error occurs.
1732 If an error occurs, no guarantee is made about how much data got written.
1733 Callers that can deal with partial writes should call target_write. */
1736 target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
1738 /* Dispatch to the topmost target, not the flattened current_target.
1739 Memory accesses check target->to_has_(all_)memory, and the
1740 flattened target doesn't inherit those. */
1741 if (target_write (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1742 myaddr, memaddr, len) == len)
1748 /* Fetch the target's memory map. */
1751 target_memory_map (void)
1753 VEC(mem_region_s) *result;
1754 struct mem_region *last_one, *this_one;
1756 struct target_ops *t;
1759 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1761 for (t = current_target.beneath; t != NULL; t = t->beneath)
1762 if (t->to_memory_map != NULL)
1768 result = t->to_memory_map (t);
1772 qsort (VEC_address (mem_region_s, result),
1773 VEC_length (mem_region_s, result),
1774 sizeof (struct mem_region), mem_region_cmp);
1776 /* Check that regions do not overlap. Simultaneously assign
1777 a numbering for the "mem" commands to use to refer to
1780 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1782 this_one->number = ix;
1784 if (last_one && last_one->hi > this_one->lo)
1786 warning (_("Overlapping regions in memory map: ignoring"));
1787 VEC_free (mem_region_s, result);
1790 last_one = this_one;
1797 target_flash_erase (ULONGEST address, LONGEST length)
1799 struct target_ops *t;
1801 for (t = current_target.beneath; t != NULL; t = t->beneath)
1802 if (t->to_flash_erase != NULL)
1805 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
1806 hex_string (address), phex (length, 0));
1807 t->to_flash_erase (t, address, length);
1815 target_flash_done (void)
1817 struct target_ops *t;
1819 for (t = current_target.beneath; t != NULL; t = t->beneath)
1820 if (t->to_flash_done != NULL)
1823 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
1824 t->to_flash_done (t);
1832 show_trust_readonly (struct ui_file *file, int from_tty,
1833 struct cmd_list_element *c, const char *value)
1835 fprintf_filtered (file,
1836 _("Mode for reading from readonly sections is %s.\n"),
1840 /* More generic transfers. */
1843 default_xfer_partial (struct target_ops *ops, enum target_object object,
1844 const char *annex, gdb_byte *readbuf,
1845 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1847 if (object == TARGET_OBJECT_MEMORY
1848 && ops->deprecated_xfer_memory != NULL)
1849 /* If available, fall back to the target's
1850 "deprecated_xfer_memory" method. */
1855 if (writebuf != NULL)
1857 void *buffer = xmalloc (len);
1858 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1860 memcpy (buffer, writebuf, len);
1861 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1862 1/*write*/, NULL, ops);
1863 do_cleanups (cleanup);
1865 if (readbuf != NULL)
1866 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1867 0/*read*/, NULL, ops);
1870 else if (xfered == 0 && errno == 0)
1871 /* "deprecated_xfer_memory" uses 0, cross checked against
1872 ERRNO as one indication of an error. */
1877 else if (ops->beneath != NULL)
1878 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1879 readbuf, writebuf, offset, len);
1884 /* The xfer_partial handler for the topmost target. Unlike the default,
1885 it does not need to handle memory specially; it just passes all
1886 requests down the stack. */
1889 current_xfer_partial (struct target_ops *ops, enum target_object object,
1890 const char *annex, gdb_byte *readbuf,
1891 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1893 if (ops->beneath != NULL)
1894 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1895 readbuf, writebuf, offset, len);
1900 /* Target vector read/write partial wrapper functions. */
1903 target_read_partial (struct target_ops *ops,
1904 enum target_object object,
1905 const char *annex, gdb_byte *buf,
1906 ULONGEST offset, LONGEST len)
1908 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len);
1912 target_write_partial (struct target_ops *ops,
1913 enum target_object object,
1914 const char *annex, const gdb_byte *buf,
1915 ULONGEST offset, LONGEST len)
1917 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len);
1920 /* Wrappers to perform the full transfer. */
1922 /* For docs on target_read see target.h. */
1925 target_read (struct target_ops *ops,
1926 enum target_object object,
1927 const char *annex, gdb_byte *buf,
1928 ULONGEST offset, LONGEST len)
1932 while (xfered < len)
1934 LONGEST xfer = target_read_partial (ops, object, annex,
1935 (gdb_byte *) buf + xfered,
1936 offset + xfered, len - xfered);
1938 /* Call an observer, notifying them of the xfer progress? */
1949 /* Assuming that the entire [begin, end) range of memory cannot be
1950 read, try to read whatever subrange is possible to read.
1952 The function returns, in RESULT, either zero or one memory block.
1953 If there's a readable subrange at the beginning, it is completely
1954 read and returned. Any further readable subrange will not be read.
1955 Otherwise, if there's a readable subrange at the end, it will be
1956 completely read and returned. Any readable subranges before it
1957 (obviously, not starting at the beginning), will be ignored. In
1958 other cases -- either no readable subrange, or readable subrange(s)
1959 that is neither at the beginning, or end, nothing is returned.
1961 The purpose of this function is to handle a read across a boundary
1962 of accessible memory in a case when memory map is not available.
1963 The above restrictions are fine for this case, but will give
1964 incorrect results if the memory is 'patchy'. However, supporting
1965 'patchy' memory would require trying to read every single byte,
1966 and it seems unacceptable solution. Explicit memory map is
1967 recommended for this case -- and target_read_memory_robust will
1968 take care of reading multiple ranges then. */
1971 read_whatever_is_readable (struct target_ops *ops,
1972 ULONGEST begin, ULONGEST end,
1973 VEC(memory_read_result_s) **result)
1975 gdb_byte *buf = xmalloc (end - begin);
1976 ULONGEST current_begin = begin;
1977 ULONGEST current_end = end;
1979 memory_read_result_s r;
1981 /* If we previously failed to read 1 byte, nothing can be done here. */
1982 if (end - begin <= 1)
1988 /* Check that either first or the last byte is readable, and give up
1989 if not. This heuristic is meant to permit reading accessible memory
1990 at the boundary of accessible region. */
1991 if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1992 buf, begin, 1) == 1)
1997 else if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1998 buf + (end-begin) - 1, end - 1, 1) == 1)
2009 /* Loop invariant is that the [current_begin, current_end) was previously
2010 found to be not readable as a whole.
2012 Note loop condition -- if the range has 1 byte, we can't divide the range
2013 so there's no point trying further. */
2014 while (current_end - current_begin > 1)
2016 ULONGEST first_half_begin, first_half_end;
2017 ULONGEST second_half_begin, second_half_end;
2019 ULONGEST middle = current_begin + (current_end - current_begin)/2;
2023 first_half_begin = current_begin;
2024 first_half_end = middle;
2025 second_half_begin = middle;
2026 second_half_end = current_end;
2030 first_half_begin = middle;
2031 first_half_end = current_end;
2032 second_half_begin = current_begin;
2033 second_half_end = middle;
2036 xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2037 buf + (first_half_begin - begin),
2039 first_half_end - first_half_begin);
2041 if (xfer == first_half_end - first_half_begin)
2043 /* This half reads up fine. So, the error must be in the
2045 current_begin = second_half_begin;
2046 current_end = second_half_end;
2050 /* This half is not readable. Because we've tried one byte, we
2051 know some part of this half if actually redable. Go to the next
2052 iteration to divide again and try to read.
2054 We don't handle the other half, because this function only tries
2055 to read a single readable subrange. */
2056 current_begin = first_half_begin;
2057 current_end = first_half_end;
2063 /* The [begin, current_begin) range has been read. */
2065 r.end = current_begin;
2070 /* The [current_end, end) range has been read. */
2071 LONGEST rlen = end - current_end;
2073 r.data = xmalloc (rlen);
2074 memcpy (r.data, buf + current_end - begin, rlen);
2075 r.begin = current_end;
2079 VEC_safe_push(memory_read_result_s, (*result), &r);
2083 free_memory_read_result_vector (void *x)
2085 VEC(memory_read_result_s) *v = x;
2086 memory_read_result_s *current;
2089 for (ix = 0; VEC_iterate (memory_read_result_s, v, ix, current); ++ix)
2091 xfree (current->data);
2093 VEC_free (memory_read_result_s, v);
2096 VEC(memory_read_result_s) *
2097 read_memory_robust (struct target_ops *ops, ULONGEST offset, LONGEST len)
2099 VEC(memory_read_result_s) *result = 0;
2102 while (xfered < len)
2104 struct mem_region *region = lookup_mem_region (offset + xfered);
2107 /* If there is no explicit region, a fake one should be created. */
2108 gdb_assert (region);
2110 if (region->hi == 0)
2111 rlen = len - xfered;
2113 rlen = region->hi - offset;
2115 if (region->attrib.mode == MEM_NONE || region->attrib.mode == MEM_WO)
2117 /* Cannot read this region. Note that we can end up here only
2118 if the region is explicitly marked inaccessible, or
2119 'inaccessible-by-default' is in effect. */
2124 LONGEST to_read = min (len - xfered, rlen);
2125 gdb_byte *buffer = (gdb_byte *)xmalloc (to_read);
2127 LONGEST xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2128 (gdb_byte *) buffer,
2129 offset + xfered, to_read);
2130 /* Call an observer, notifying them of the xfer progress? */
2133 /* Got an error reading full chunk. See if maybe we can read
2136 read_whatever_is_readable (ops, offset + xfered,
2137 offset + xfered + to_read, &result);
2142 struct memory_read_result r;
2144 r.begin = offset + xfered;
2145 r.end = r.begin + xfer;
2146 VEC_safe_push (memory_read_result_s, result, &r);
2156 /* An alternative to target_write with progress callbacks. */
2159 target_write_with_progress (struct target_ops *ops,
2160 enum target_object object,
2161 const char *annex, const gdb_byte *buf,
2162 ULONGEST offset, LONGEST len,
2163 void (*progress) (ULONGEST, void *), void *baton)
2167 /* Give the progress callback a chance to set up. */
2169 (*progress) (0, baton);
2171 while (xfered < len)
2173 LONGEST xfer = target_write_partial (ops, object, annex,
2174 (gdb_byte *) buf + xfered,
2175 offset + xfered, len - xfered);
2183 (*progress) (xfer, baton);
2191 /* For docs on target_write see target.h. */
2194 target_write (struct target_ops *ops,
2195 enum target_object object,
2196 const char *annex, const gdb_byte *buf,
2197 ULONGEST offset, LONGEST len)
2199 return target_write_with_progress (ops, object, annex, buf, offset, len,
2203 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2204 the size of the transferred data. PADDING additional bytes are
2205 available in *BUF_P. This is a helper function for
2206 target_read_alloc; see the declaration of that function for more
2210 target_read_alloc_1 (struct target_ops *ops, enum target_object object,
2211 const char *annex, gdb_byte **buf_p, int padding)
2213 size_t buf_alloc, buf_pos;
2217 /* This function does not have a length parameter; it reads the
2218 entire OBJECT). Also, it doesn't support objects fetched partly
2219 from one target and partly from another (in a different stratum,
2220 e.g. a core file and an executable). Both reasons make it
2221 unsuitable for reading memory. */
2222 gdb_assert (object != TARGET_OBJECT_MEMORY);
2224 /* Start by reading up to 4K at a time. The target will throttle
2225 this number down if necessary. */
2227 buf = xmalloc (buf_alloc);
2231 n = target_read_partial (ops, object, annex, &buf[buf_pos],
2232 buf_pos, buf_alloc - buf_pos - padding);
2235 /* An error occurred. */
2241 /* Read all there was. */
2251 /* If the buffer is filling up, expand it. */
2252 if (buf_alloc < buf_pos * 2)
2255 buf = xrealloc (buf, buf_alloc);
2262 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2263 the size of the transferred data. See the declaration in "target.h"
2264 function for more information about the return value. */
2267 target_read_alloc (struct target_ops *ops, enum target_object object,
2268 const char *annex, gdb_byte **buf_p)
2270 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
2273 /* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
2274 returned as a string, allocated using xmalloc. If an error occurs
2275 or the transfer is unsupported, NULL is returned. Empty objects
2276 are returned as allocated but empty strings. A warning is issued
2277 if the result contains any embedded NUL bytes. */
2280 target_read_stralloc (struct target_ops *ops, enum target_object object,
2284 LONGEST transferred;
2286 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
2288 if (transferred < 0)
2291 if (transferred == 0)
2292 return xstrdup ("");
2294 buffer[transferred] = 0;
2295 if (strlen (buffer) < transferred)
2296 warning (_("target object %d, annex %s, "
2297 "contained unexpected null characters"),
2298 (int) object, annex ? annex : "(none)");
2300 return (char *) buffer;
2303 /* Memory transfer methods. */
2306 get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
2309 /* This method is used to read from an alternate, non-current
2310 target. This read must bypass the overlay support (as symbols
2311 don't match this target), and GDB's internal cache (wrong cache
2312 for this target). */
2313 if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
2315 memory_error (EIO, addr);
2319 get_target_memory_unsigned (struct target_ops *ops, CORE_ADDR addr,
2320 int len, enum bfd_endian byte_order)
2322 gdb_byte buf[sizeof (ULONGEST)];
2324 gdb_assert (len <= sizeof (buf));
2325 get_target_memory (ops, addr, buf, len);
2326 return extract_unsigned_integer (buf, len, byte_order);
2330 target_insert_breakpoint (struct gdbarch *gdbarch,
2331 struct bp_target_info *bp_tgt)
2333 if (!may_insert_breakpoints)
2335 warning (_("May not insert breakpoints"));
2339 return (*current_target.to_insert_breakpoint) (gdbarch, bp_tgt);
2343 target_remove_breakpoint (struct gdbarch *gdbarch,
2344 struct bp_target_info *bp_tgt)
2346 /* This is kind of a weird case to handle, but the permission might
2347 have been changed after breakpoints were inserted - in which case
2348 we should just take the user literally and assume that any
2349 breakpoints should be left in place. */
2350 if (!may_insert_breakpoints)
2352 warning (_("May not remove breakpoints"));
2356 return (*current_target.to_remove_breakpoint) (gdbarch, bp_tgt);
2360 target_info (char *args, int from_tty)
2362 struct target_ops *t;
2363 int has_all_mem = 0;
2365 if (symfile_objfile != NULL)
2366 printf_unfiltered (_("Symbols from \"%s\".\n"), symfile_objfile->name);
2368 for (t = target_stack; t != NULL; t = t->beneath)
2370 if (!(*t->to_has_memory) (t))
2373 if ((int) (t->to_stratum) <= (int) dummy_stratum)
2376 printf_unfiltered (_("\tWhile running this, "
2377 "GDB does not access memory from...\n"));
2378 printf_unfiltered ("%s:\n", t->to_longname);
2379 (t->to_files_info) (t);
2380 has_all_mem = (*t->to_has_all_memory) (t);
2384 /* This function is called before any new inferior is created, e.g.
2385 by running a program, attaching, or connecting to a target.
2386 It cleans up any state from previous invocations which might
2387 change between runs. This is a subset of what target_preopen
2388 resets (things which might change between targets). */
2391 target_pre_inferior (int from_tty)
2393 /* Clear out solib state. Otherwise the solib state of the previous
2394 inferior might have survived and is entirely wrong for the new
2395 target. This has been observed on GNU/Linux using glibc 2.3. How
2407 Cannot access memory at address 0xdeadbeef
2410 /* In some OSs, the shared library list is the same/global/shared
2411 across inferiors. If code is shared between processes, so are
2412 memory regions and features. */
2413 if (!gdbarch_has_global_solist (target_gdbarch))
2415 no_shared_libraries (NULL, from_tty);
2417 invalidate_target_mem_regions ();
2419 target_clear_description ();
2423 /* Callback for iterate_over_inferiors. Gets rid of the given
2427 dispose_inferior (struct inferior *inf, void *args)
2429 struct thread_info *thread;
2431 thread = any_thread_of_process (inf->pid);
2434 switch_to_thread (thread->ptid);
2436 /* Core inferiors actually should be detached, not killed. */
2437 if (target_has_execution)
2440 target_detach (NULL, 0);
2446 /* This is to be called by the open routine before it does
2450 target_preopen (int from_tty)
2454 if (have_inferiors ())
2457 || !have_live_inferiors ()
2458 || query (_("A program is being debugged already. Kill it? ")))
2459 iterate_over_inferiors (dispose_inferior, NULL);
2461 error (_("Program not killed."));
2464 /* Calling target_kill may remove the target from the stack. But if
2465 it doesn't (which seems like a win for UDI), remove it now. */
2466 /* Leave the exec target, though. The user may be switching from a
2467 live process to a core of the same program. */
2468 pop_all_targets_above (file_stratum, 0);
2470 target_pre_inferior (from_tty);
2473 /* Detach a target after doing deferred register stores. */
2476 target_detach (char *args, int from_tty)
2478 struct target_ops* t;
2480 if (gdbarch_has_global_breakpoints (target_gdbarch))
2481 /* Don't remove global breakpoints here. They're removed on
2482 disconnection from the target. */
2485 /* If we're in breakpoints-always-inserted mode, have to remove
2486 them before detaching. */
2487 remove_breakpoints_pid (PIDGET (inferior_ptid));
2489 prepare_for_detach ();
2491 for (t = current_target.beneath; t != NULL; t = t->beneath)
2493 if (t->to_detach != NULL)
2495 t->to_detach (t, args, from_tty);
2497 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n",
2503 internal_error (__FILE__, __LINE__, _("could not find a target to detach"));
2507 target_disconnect (char *args, int from_tty)
2509 struct target_ops *t;
2511 /* If we're in breakpoints-always-inserted mode or if breakpoints
2512 are global across processes, we have to remove them before
2514 remove_breakpoints ();
2516 for (t = current_target.beneath; t != NULL; t = t->beneath)
2517 if (t->to_disconnect != NULL)
2520 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
2522 t->to_disconnect (t, args, from_tty);
2530 target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
2532 struct target_ops *t;
2534 for (t = current_target.beneath; t != NULL; t = t->beneath)
2536 if (t->to_wait != NULL)
2538 ptid_t retval = (*t->to_wait) (t, ptid, status, options);
2542 char *status_string;
2544 status_string = target_waitstatus_to_string (status);
2545 fprintf_unfiltered (gdb_stdlog,
2546 "target_wait (%d, status) = %d, %s\n",
2547 PIDGET (ptid), PIDGET (retval),
2549 xfree (status_string);
2560 target_pid_to_str (ptid_t ptid)
2562 struct target_ops *t;
2564 for (t = current_target.beneath; t != NULL; t = t->beneath)
2566 if (t->to_pid_to_str != NULL)
2567 return (*t->to_pid_to_str) (t, ptid);
2570 return normal_pid_to_str (ptid);
2574 target_thread_name (struct thread_info *info)
2576 struct target_ops *t;
2578 for (t = current_target.beneath; t != NULL; t = t->beneath)
2580 if (t->to_thread_name != NULL)
2581 return (*t->to_thread_name) (info);
2588 target_resume (ptid_t ptid, int step, enum target_signal signal)
2590 struct target_ops *t;
2592 target_dcache_invalidate ();
2594 for (t = current_target.beneath; t != NULL; t = t->beneath)
2596 if (t->to_resume != NULL)
2598 t->to_resume (t, ptid, step, signal);
2600 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n",
2602 step ? "step" : "continue",
2603 target_signal_to_name (signal));
2605 registers_changed_ptid (ptid);
2606 set_executing (ptid, 1);
2607 set_running (ptid, 1);
2608 clear_inline_frame_state (ptid);
2617 target_pass_signals (int numsigs, unsigned char *pass_signals)
2619 struct target_ops *t;
2621 for (t = current_target.beneath; t != NULL; t = t->beneath)
2623 if (t->to_pass_signals != NULL)
2629 fprintf_unfiltered (gdb_stdlog, "target_pass_signals (%d, {",
2632 for (i = 0; i < numsigs; i++)
2633 if (pass_signals[i])
2634 fprintf_unfiltered (gdb_stdlog, " %s",
2635 target_signal_to_name (i));
2637 fprintf_unfiltered (gdb_stdlog, " })\n");
2640 (*t->to_pass_signals) (numsigs, pass_signals);
2646 /* Look through the list of possible targets for a target that can
2650 target_follow_fork (int follow_child)
2652 struct target_ops *t;
2654 for (t = current_target.beneath; t != NULL; t = t->beneath)
2656 if (t->to_follow_fork != NULL)
2658 int retval = t->to_follow_fork (t, follow_child);
2661 fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n",
2662 follow_child, retval);
2667 /* Some target returned a fork event, but did not know how to follow it. */
2668 internal_error (__FILE__, __LINE__,
2669 _("could not find a target to follow fork"));
2673 target_mourn_inferior (void)
2675 struct target_ops *t;
2677 for (t = current_target.beneath; t != NULL; t = t->beneath)
2679 if (t->to_mourn_inferior != NULL)
2681 t->to_mourn_inferior (t);
2683 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2685 /* We no longer need to keep handles on any of the object files.
2686 Make sure to release them to avoid unnecessarily locking any
2687 of them while we're not actually debugging. */
2688 bfd_cache_close_all ();
2694 internal_error (__FILE__, __LINE__,
2695 _("could not find a target to follow mourn inferior"));
2698 /* Look for a target which can describe architectural features, starting
2699 from TARGET. If we find one, return its description. */
2701 const struct target_desc *
2702 target_read_description (struct target_ops *target)
2704 struct target_ops *t;
2706 for (t = target; t != NULL; t = t->beneath)
2707 if (t->to_read_description != NULL)
2709 const struct target_desc *tdesc;
2711 tdesc = t->to_read_description (t);
2719 /* The default implementation of to_search_memory.
2720 This implements a basic search of memory, reading target memory and
2721 performing the search here (as opposed to performing the search in on the
2722 target side with, for example, gdbserver). */
2725 simple_search_memory (struct target_ops *ops,
2726 CORE_ADDR start_addr, ULONGEST search_space_len,
2727 const gdb_byte *pattern, ULONGEST pattern_len,
2728 CORE_ADDR *found_addrp)
2730 /* NOTE: also defined in find.c testcase. */
2731 #define SEARCH_CHUNK_SIZE 16000
2732 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
2733 /* Buffer to hold memory contents for searching. */
2734 gdb_byte *search_buf;
2735 unsigned search_buf_size;
2736 struct cleanup *old_cleanups;
2738 search_buf_size = chunk_size + pattern_len - 1;
2740 /* No point in trying to allocate a buffer larger than the search space. */
2741 if (search_space_len < search_buf_size)
2742 search_buf_size = search_space_len;
2744 search_buf = malloc (search_buf_size);
2745 if (search_buf == NULL)
2746 error (_("Unable to allocate memory to perform the search."));
2747 old_cleanups = make_cleanup (free_current_contents, &search_buf);
2749 /* Prime the search buffer. */
2751 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2752 search_buf, start_addr, search_buf_size) != search_buf_size)
2754 warning (_("Unable to access target memory at %s, halting search."),
2755 hex_string (start_addr));
2756 do_cleanups (old_cleanups);
2760 /* Perform the search.
2762 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
2763 When we've scanned N bytes we copy the trailing bytes to the start and
2764 read in another N bytes. */
2766 while (search_space_len >= pattern_len)
2768 gdb_byte *found_ptr;
2769 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
2771 found_ptr = memmem (search_buf, nr_search_bytes,
2772 pattern, pattern_len);
2774 if (found_ptr != NULL)
2776 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
2778 *found_addrp = found_addr;
2779 do_cleanups (old_cleanups);
2783 /* Not found in this chunk, skip to next chunk. */
2785 /* Don't let search_space_len wrap here, it's unsigned. */
2786 if (search_space_len >= chunk_size)
2787 search_space_len -= chunk_size;
2789 search_space_len = 0;
2791 if (search_space_len >= pattern_len)
2793 unsigned keep_len = search_buf_size - chunk_size;
2794 CORE_ADDR read_addr = start_addr + chunk_size + keep_len;
2797 /* Copy the trailing part of the previous iteration to the front
2798 of the buffer for the next iteration. */
2799 gdb_assert (keep_len == pattern_len - 1);
2800 memcpy (search_buf, search_buf + chunk_size, keep_len);
2802 nr_to_read = min (search_space_len - keep_len, chunk_size);
2804 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2805 search_buf + keep_len, read_addr,
2806 nr_to_read) != nr_to_read)
2808 warning (_("Unable to access target "
2809 "memory at %s, halting search."),
2810 hex_string (read_addr));
2811 do_cleanups (old_cleanups);
2815 start_addr += chunk_size;
2821 do_cleanups (old_cleanups);
2825 /* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2826 sequence of bytes in PATTERN with length PATTERN_LEN.
2828 The result is 1 if found, 0 if not found, and -1 if there was an error
2829 requiring halting of the search (e.g. memory read error).
2830 If the pattern is found the address is recorded in FOUND_ADDRP. */
2833 target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2834 const gdb_byte *pattern, ULONGEST pattern_len,
2835 CORE_ADDR *found_addrp)
2837 struct target_ops *t;
2840 /* We don't use INHERIT to set current_target.to_search_memory,
2841 so we have to scan the target stack and handle targetdebug
2845 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
2846 hex_string (start_addr));
2848 for (t = current_target.beneath; t != NULL; t = t->beneath)
2849 if (t->to_search_memory != NULL)
2854 found = t->to_search_memory (t, start_addr, search_space_len,
2855 pattern, pattern_len, found_addrp);
2859 /* If a special version of to_search_memory isn't available, use the
2861 found = simple_search_memory (current_target.beneath,
2862 start_addr, search_space_len,
2863 pattern, pattern_len, found_addrp);
2867 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
2872 /* Look through the currently pushed targets. If none of them will
2873 be able to restart the currently running process, issue an error
2877 target_require_runnable (void)
2879 struct target_ops *t;
2881 for (t = target_stack; t != NULL; t = t->beneath)
2883 /* If this target knows how to create a new program, then
2884 assume we will still be able to after killing the current
2885 one. Either killing and mourning will not pop T, or else
2886 find_default_run_target will find it again. */
2887 if (t->to_create_inferior != NULL)
2890 /* Do not worry about thread_stratum targets that can not
2891 create inferiors. Assume they will be pushed again if
2892 necessary, and continue to the process_stratum. */
2893 if (t->to_stratum == thread_stratum
2894 || t->to_stratum == arch_stratum)
2897 error (_("The \"%s\" target does not support \"run\". "
2898 "Try \"help target\" or \"continue\"."),
2902 /* This function is only called if the target is running. In that
2903 case there should have been a process_stratum target and it
2904 should either know how to create inferiors, or not... */
2905 internal_error (__FILE__, __LINE__, _("No targets found"));
2908 /* Look through the list of possible targets for a target that can
2909 execute a run or attach command without any other data. This is
2910 used to locate the default process stratum.
2912 If DO_MESG is not NULL, the result is always valid (error() is
2913 called for errors); else, return NULL on error. */
2915 static struct target_ops *
2916 find_default_run_target (char *do_mesg)
2918 struct target_ops **t;
2919 struct target_ops *runable = NULL;
2924 for (t = target_structs; t < target_structs + target_struct_size;
2927 if ((*t)->to_can_run && target_can_run (*t))
2937 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
2946 find_default_attach (struct target_ops *ops, char *args, int from_tty)
2948 struct target_ops *t;
2950 t = find_default_run_target ("attach");
2951 (t->to_attach) (t, args, from_tty);
2956 find_default_create_inferior (struct target_ops *ops,
2957 char *exec_file, char *allargs, char **env,
2960 struct target_ops *t;
2962 t = find_default_run_target ("run");
2963 (t->to_create_inferior) (t, exec_file, allargs, env, from_tty);
2968 find_default_can_async_p (void)
2970 struct target_ops *t;
2972 /* This may be called before the target is pushed on the stack;
2973 look for the default process stratum. If there's none, gdb isn't
2974 configured with a native debugger, and target remote isn't
2976 t = find_default_run_target (NULL);
2977 if (t && t->to_can_async_p)
2978 return (t->to_can_async_p) ();
2983 find_default_is_async_p (void)
2985 struct target_ops *t;
2987 /* This may be called before the target is pushed on the stack;
2988 look for the default process stratum. If there's none, gdb isn't
2989 configured with a native debugger, and target remote isn't
2991 t = find_default_run_target (NULL);
2992 if (t && t->to_is_async_p)
2993 return (t->to_is_async_p) ();
2998 find_default_supports_non_stop (void)
3000 struct target_ops *t;
3002 t = find_default_run_target (NULL);
3003 if (t && t->to_supports_non_stop)
3004 return (t->to_supports_non_stop) ();
3009 target_supports_non_stop (void)
3011 struct target_ops *t;
3013 for (t = ¤t_target; t != NULL; t = t->beneath)
3014 if (t->to_supports_non_stop)
3015 return t->to_supports_non_stop ();
3021 find_default_supports_disable_randomization (void)
3023 struct target_ops *t;
3025 t = find_default_run_target (NULL);
3026 if (t && t->to_supports_disable_randomization)
3027 return (t->to_supports_disable_randomization) ();
3032 target_supports_disable_randomization (void)
3034 struct target_ops *t;
3036 for (t = ¤t_target; t != NULL; t = t->beneath)
3037 if (t->to_supports_disable_randomization)
3038 return t->to_supports_disable_randomization ();
3044 target_get_osdata (const char *type)
3046 struct target_ops *t;
3048 /* If we're already connected to something that can get us OS
3049 related data, use it. Otherwise, try using the native
3051 if (current_target.to_stratum >= process_stratum)
3052 t = current_target.beneath;
3054 t = find_default_run_target ("get OS data");
3059 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
3062 /* Determine the current address space of thread PTID. */
3064 struct address_space *
3065 target_thread_address_space (ptid_t ptid)
3067 struct address_space *aspace;
3068 struct inferior *inf;
3069 struct target_ops *t;
3071 for (t = current_target.beneath; t != NULL; t = t->beneath)
3073 if (t->to_thread_address_space != NULL)
3075 aspace = t->to_thread_address_space (t, ptid);
3076 gdb_assert (aspace);
3079 fprintf_unfiltered (gdb_stdlog,
3080 "target_thread_address_space (%s) = %d\n",
3081 target_pid_to_str (ptid),
3082 address_space_num (aspace));
3087 /* Fall-back to the "main" address space of the inferior. */
3088 inf = find_inferior_pid (ptid_get_pid (ptid));
3090 if (inf == NULL || inf->aspace == NULL)
3091 internal_error (__FILE__, __LINE__,
3092 _("Can't determine the current "
3093 "address space of thread %s\n"),
3094 target_pid_to_str (ptid));
3100 default_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
3102 return (len <= gdbarch_ptr_bit (target_gdbarch) / TARGET_CHAR_BIT);
3106 default_watchpoint_addr_within_range (struct target_ops *target,
3108 CORE_ADDR start, int length)
3110 return addr >= start && addr < start + length;
3113 static struct gdbarch *
3114 default_thread_architecture (struct target_ops *ops, ptid_t ptid)
3116 return target_gdbarch;
3132 return_minus_one (void)
3137 /* Find a single runnable target in the stack and return it. If for
3138 some reason there is more than one, return NULL. */
3141 find_run_target (void)
3143 struct target_ops **t;
3144 struct target_ops *runable = NULL;
3149 for (t = target_structs; t < target_structs + target_struct_size; ++t)
3151 if ((*t)->to_can_run && target_can_run (*t))
3158 return (count == 1 ? runable : NULL);
3162 * Find the next target down the stack from the specified target.
3166 find_target_beneath (struct target_ops *t)
3172 /* The inferior process has died. Long live the inferior! */
3175 generic_mourn_inferior (void)
3179 ptid = inferior_ptid;
3180 inferior_ptid = null_ptid;
3182 if (!ptid_equal (ptid, null_ptid))
3184 int pid = ptid_get_pid (ptid);
3185 exit_inferior (pid);
3188 breakpoint_init_inferior (inf_exited);
3189 registers_changed ();
3191 reopen_exec_file ();
3192 reinit_frame_cache ();
3194 if (deprecated_detach_hook)
3195 deprecated_detach_hook ();
3198 /* Helper function for child_wait and the derivatives of child_wait.
3199 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
3200 translation of that in OURSTATUS. */
3202 store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
3204 if (WIFEXITED (hoststatus))
3206 ourstatus->kind = TARGET_WAITKIND_EXITED;
3207 ourstatus->value.integer = WEXITSTATUS (hoststatus);
3209 else if (!WIFSTOPPED (hoststatus))
3211 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
3212 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
3216 ourstatus->kind = TARGET_WAITKIND_STOPPED;
3217 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
3221 /* Convert a normal process ID to a string. Returns the string in a
3225 normal_pid_to_str (ptid_t ptid)
3227 static char buf[32];
3229 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
3234 dummy_pid_to_str (struct target_ops *ops, ptid_t ptid)
3236 return normal_pid_to_str (ptid);
3239 /* Error-catcher for target_find_memory_regions. */
3241 dummy_find_memory_regions (find_memory_region_ftype ignore1, void *ignore2)
3243 error (_("Command not implemented for this target."));
3247 /* Error-catcher for target_make_corefile_notes. */
3249 dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
3251 error (_("Command not implemented for this target."));
3255 /* Error-catcher for target_get_bookmark. */
3257 dummy_get_bookmark (char *ignore1, int ignore2)
3263 /* Error-catcher for target_goto_bookmark. */
3265 dummy_goto_bookmark (gdb_byte *ignore, int from_tty)
3270 /* Set up the handful of non-empty slots needed by the dummy target
3274 init_dummy_target (void)
3276 dummy_target.to_shortname = "None";
3277 dummy_target.to_longname = "None";
3278 dummy_target.to_doc = "";
3279 dummy_target.to_attach = find_default_attach;
3280 dummy_target.to_detach =
3281 (void (*)(struct target_ops *, char *, int))target_ignore;
3282 dummy_target.to_create_inferior = find_default_create_inferior;
3283 dummy_target.to_can_async_p = find_default_can_async_p;
3284 dummy_target.to_is_async_p = find_default_is_async_p;
3285 dummy_target.to_supports_non_stop = find_default_supports_non_stop;
3286 dummy_target.to_supports_disable_randomization
3287 = find_default_supports_disable_randomization;
3288 dummy_target.to_pid_to_str = dummy_pid_to_str;
3289 dummy_target.to_stratum = dummy_stratum;
3290 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
3291 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
3292 dummy_target.to_get_bookmark = dummy_get_bookmark;
3293 dummy_target.to_goto_bookmark = dummy_goto_bookmark;
3294 dummy_target.to_xfer_partial = default_xfer_partial;
3295 dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
3296 dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero;
3297 dummy_target.to_has_stack = (int (*) (struct target_ops *)) return_zero;
3298 dummy_target.to_has_registers = (int (*) (struct target_ops *)) return_zero;
3299 dummy_target.to_has_execution
3300 = (int (*) (struct target_ops *, ptid_t)) return_zero;
3301 dummy_target.to_stopped_by_watchpoint = return_zero;
3302 dummy_target.to_stopped_data_address =
3303 (int (*) (struct target_ops *, CORE_ADDR *)) return_zero;
3304 dummy_target.to_magic = OPS_MAGIC;
3308 debug_to_open (char *args, int from_tty)
3310 debug_target.to_open (args, from_tty);
3312 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
3316 target_close (struct target_ops *targ, int quitting)
3318 if (targ->to_xclose != NULL)
3319 targ->to_xclose (targ, quitting);
3320 else if (targ->to_close != NULL)
3321 targ->to_close (quitting);
3324 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
3328 target_attach (char *args, int from_tty)
3330 struct target_ops *t;
3332 for (t = current_target.beneath; t != NULL; t = t->beneath)
3334 if (t->to_attach != NULL)
3336 t->to_attach (t, args, from_tty);
3338 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n",
3344 internal_error (__FILE__, __LINE__,
3345 _("could not find a target to attach"));
3349 target_thread_alive (ptid_t ptid)
3351 struct target_ops *t;
3353 for (t = current_target.beneath; t != NULL; t = t->beneath)
3355 if (t->to_thread_alive != NULL)
3359 retval = t->to_thread_alive (t, ptid);
3361 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
3362 PIDGET (ptid), retval);
3372 target_find_new_threads (void)
3374 struct target_ops *t;
3376 for (t = current_target.beneath; t != NULL; t = t->beneath)
3378 if (t->to_find_new_threads != NULL)
3380 t->to_find_new_threads (t);
3382 fprintf_unfiltered (gdb_stdlog, "target_find_new_threads ()\n");
3390 target_stop (ptid_t ptid)
3394 warning (_("May not interrupt or stop the target, ignoring attempt"));
3398 (*current_target.to_stop) (ptid);
3402 debug_to_post_attach (int pid)
3404 debug_target.to_post_attach (pid);
3406 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
3409 /* Return a pretty printed form of target_waitstatus.
3410 Space for the result is malloc'd, caller must free. */
3413 target_waitstatus_to_string (const struct target_waitstatus *ws)
3415 const char *kind_str = "status->kind = ";
3419 case TARGET_WAITKIND_EXITED:
3420 return xstrprintf ("%sexited, status = %d",
3421 kind_str, ws->value.integer);
3422 case TARGET_WAITKIND_STOPPED:
3423 return xstrprintf ("%sstopped, signal = %s",
3424 kind_str, target_signal_to_name (ws->value.sig));
3425 case TARGET_WAITKIND_SIGNALLED:
3426 return xstrprintf ("%ssignalled, signal = %s",
3427 kind_str, target_signal_to_name (ws->value.sig));
3428 case TARGET_WAITKIND_LOADED:
3429 return xstrprintf ("%sloaded", kind_str);
3430 case TARGET_WAITKIND_FORKED:
3431 return xstrprintf ("%sforked", kind_str);
3432 case TARGET_WAITKIND_VFORKED:
3433 return xstrprintf ("%svforked", kind_str);
3434 case TARGET_WAITKIND_EXECD:
3435 return xstrprintf ("%sexecd", kind_str);
3436 case TARGET_WAITKIND_SYSCALL_ENTRY:
3437 return xstrprintf ("%sentered syscall", kind_str);
3438 case TARGET_WAITKIND_SYSCALL_RETURN:
3439 return xstrprintf ("%sexited syscall", kind_str);
3440 case TARGET_WAITKIND_SPURIOUS:
3441 return xstrprintf ("%sspurious", kind_str);
3442 case TARGET_WAITKIND_IGNORE:
3443 return xstrprintf ("%signore", kind_str);
3444 case TARGET_WAITKIND_NO_HISTORY:
3445 return xstrprintf ("%sno-history", kind_str);
3446 case TARGET_WAITKIND_NO_RESUMED:
3447 return xstrprintf ("%sno-resumed", kind_str);
3449 return xstrprintf ("%sunknown???", kind_str);
3454 debug_print_register (const char * func,
3455 struct regcache *regcache, int regno)
3457 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3459 fprintf_unfiltered (gdb_stdlog, "%s ", func);
3460 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
3461 && gdbarch_register_name (gdbarch, regno) != NULL
3462 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
3463 fprintf_unfiltered (gdb_stdlog, "(%s)",
3464 gdbarch_register_name (gdbarch, regno));
3466 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
3467 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
3469 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3470 int i, size = register_size (gdbarch, regno);
3471 unsigned char buf[MAX_REGISTER_SIZE];
3473 regcache_raw_collect (regcache, regno, buf);
3474 fprintf_unfiltered (gdb_stdlog, " = ");
3475 for (i = 0; i < size; i++)
3477 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3479 if (size <= sizeof (LONGEST))
3481 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
3483 fprintf_unfiltered (gdb_stdlog, " %s %s",
3484 core_addr_to_string_nz (val), plongest (val));
3487 fprintf_unfiltered (gdb_stdlog, "\n");
3491 target_fetch_registers (struct regcache *regcache, int regno)
3493 struct target_ops *t;
3495 for (t = current_target.beneath; t != NULL; t = t->beneath)
3497 if (t->to_fetch_registers != NULL)
3499 t->to_fetch_registers (t, regcache, regno);
3501 debug_print_register ("target_fetch_registers", regcache, regno);
3508 target_store_registers (struct regcache *regcache, int regno)
3510 struct target_ops *t;
3512 if (!may_write_registers)
3513 error (_("Writing to registers is not allowed (regno %d)"), regno);
3515 for (t = current_target.beneath; t != NULL; t = t->beneath)
3517 if (t->to_store_registers != NULL)
3519 t->to_store_registers (t, regcache, regno);
3522 debug_print_register ("target_store_registers", regcache, regno);
3532 target_core_of_thread (ptid_t ptid)
3534 struct target_ops *t;
3536 for (t = current_target.beneath; t != NULL; t = t->beneath)
3538 if (t->to_core_of_thread != NULL)
3540 int retval = t->to_core_of_thread (t, ptid);
3543 fprintf_unfiltered (gdb_stdlog,
3544 "target_core_of_thread (%d) = %d\n",
3545 PIDGET (ptid), retval);
3554 target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3556 struct target_ops *t;
3558 for (t = current_target.beneath; t != NULL; t = t->beneath)
3560 if (t->to_verify_memory != NULL)
3562 int retval = t->to_verify_memory (t, data, memaddr, size);
3565 fprintf_unfiltered (gdb_stdlog,
3566 "target_verify_memory (%s, %s) = %d\n",
3567 paddress (target_gdbarch, memaddr),
3577 /* The documentation for this function is in its prototype declaration in
3581 target_insert_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
3583 struct target_ops *t;
3585 for (t = current_target.beneath; t != NULL; t = t->beneath)
3586 if (t->to_insert_mask_watchpoint != NULL)
3590 ret = t->to_insert_mask_watchpoint (t, addr, mask, rw);
3593 fprintf_unfiltered (gdb_stdlog, "\
3594 target_insert_mask_watchpoint (%s, %s, %d) = %d\n",
3595 core_addr_to_string (addr),
3596 core_addr_to_string (mask), rw, ret);
3604 /* The documentation for this function is in its prototype declaration in
3608 target_remove_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
3610 struct target_ops *t;
3612 for (t = current_target.beneath; t != NULL; t = t->beneath)
3613 if (t->to_remove_mask_watchpoint != NULL)
3617 ret = t->to_remove_mask_watchpoint (t, addr, mask, rw);
3620 fprintf_unfiltered (gdb_stdlog, "\
3621 target_remove_mask_watchpoint (%s, %s, %d) = %d\n",
3622 core_addr_to_string (addr),
3623 core_addr_to_string (mask), rw, ret);
3631 /* The documentation for this function is in its prototype declaration
3635 target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask)
3637 struct target_ops *t;
3639 for (t = current_target.beneath; t != NULL; t = t->beneath)
3640 if (t->to_masked_watch_num_registers != NULL)
3641 return t->to_masked_watch_num_registers (t, addr, mask);
3646 /* The documentation for this function is in its prototype declaration
3650 target_ranged_break_num_registers (void)
3652 struct target_ops *t;
3654 for (t = current_target.beneath; t != NULL; t = t->beneath)
3655 if (t->to_ranged_break_num_registers != NULL)
3656 return t->to_ranged_break_num_registers (t);
3662 debug_to_prepare_to_store (struct regcache *regcache)
3664 debug_target.to_prepare_to_store (regcache);
3666 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
3670 deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
3671 int write, struct mem_attrib *attrib,
3672 struct target_ops *target)
3676 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
3679 fprintf_unfiltered (gdb_stdlog,
3680 "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
3681 paddress (target_gdbarch, memaddr), len,
3682 write ? "write" : "read", retval);
3688 fputs_unfiltered (", bytes =", gdb_stdlog);
3689 for (i = 0; i < retval; i++)
3691 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
3693 if (targetdebug < 2 && i > 0)
3695 fprintf_unfiltered (gdb_stdlog, " ...");
3698 fprintf_unfiltered (gdb_stdlog, "\n");
3701 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
3705 fputc_unfiltered ('\n', gdb_stdlog);
3711 debug_to_files_info (struct target_ops *target)
3713 debug_target.to_files_info (target);
3715 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
3719 debug_to_insert_breakpoint (struct gdbarch *gdbarch,
3720 struct bp_target_info *bp_tgt)
3724 retval = debug_target.to_insert_breakpoint (gdbarch, bp_tgt);
3726 fprintf_unfiltered (gdb_stdlog,
3727 "target_insert_breakpoint (%s, xxx) = %ld\n",
3728 core_addr_to_string (bp_tgt->placed_address),
3729 (unsigned long) retval);
3734 debug_to_remove_breakpoint (struct gdbarch *gdbarch,
3735 struct bp_target_info *bp_tgt)
3739 retval = debug_target.to_remove_breakpoint (gdbarch, bp_tgt);
3741 fprintf_unfiltered (gdb_stdlog,
3742 "target_remove_breakpoint (%s, xxx) = %ld\n",
3743 core_addr_to_string (bp_tgt->placed_address),
3744 (unsigned long) retval);
3749 debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
3753 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
3755 fprintf_unfiltered (gdb_stdlog,
3756 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
3757 (unsigned long) type,
3758 (unsigned long) cnt,
3759 (unsigned long) from_tty,
3760 (unsigned long) retval);
3765 debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
3769 retval = debug_target.to_region_ok_for_hw_watchpoint (addr, len);
3771 fprintf_unfiltered (gdb_stdlog,
3772 "target_region_ok_for_hw_watchpoint (%s, %ld) = %s\n",
3773 core_addr_to_string (addr), (unsigned long) len,
3774 core_addr_to_string (retval));
3779 debug_to_can_accel_watchpoint_condition (CORE_ADDR addr, int len, int rw,
3780 struct expression *cond)
3784 retval = debug_target.to_can_accel_watchpoint_condition (addr, len,
3787 fprintf_unfiltered (gdb_stdlog,
3788 "target_can_accel_watchpoint_condition "
3789 "(%s, %d, %d, %s) = %ld\n",
3790 core_addr_to_string (addr), len, rw,
3791 host_address_to_string (cond), (unsigned long) retval);
3796 debug_to_stopped_by_watchpoint (void)
3800 retval = debug_target.to_stopped_by_watchpoint ();
3802 fprintf_unfiltered (gdb_stdlog,
3803 "target_stopped_by_watchpoint () = %ld\n",
3804 (unsigned long) retval);
3809 debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
3813 retval = debug_target.to_stopped_data_address (target, addr);
3815 fprintf_unfiltered (gdb_stdlog,
3816 "target_stopped_data_address ([%s]) = %ld\n",
3817 core_addr_to_string (*addr),
3818 (unsigned long)retval);
3823 debug_to_watchpoint_addr_within_range (struct target_ops *target,
3825 CORE_ADDR start, int length)
3829 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
3832 fprintf_filtered (gdb_stdlog,
3833 "target_watchpoint_addr_within_range (%s, %s, %d) = %d\n",
3834 core_addr_to_string (addr), core_addr_to_string (start),
3840 debug_to_insert_hw_breakpoint (struct gdbarch *gdbarch,
3841 struct bp_target_info *bp_tgt)
3845 retval = debug_target.to_insert_hw_breakpoint (gdbarch, bp_tgt);
3847 fprintf_unfiltered (gdb_stdlog,
3848 "target_insert_hw_breakpoint (%s, xxx) = %ld\n",
3849 core_addr_to_string (bp_tgt->placed_address),
3850 (unsigned long) retval);
3855 debug_to_remove_hw_breakpoint (struct gdbarch *gdbarch,
3856 struct bp_target_info *bp_tgt)
3860 retval = debug_target.to_remove_hw_breakpoint (gdbarch, bp_tgt);
3862 fprintf_unfiltered (gdb_stdlog,
3863 "target_remove_hw_breakpoint (%s, xxx) = %ld\n",
3864 core_addr_to_string (bp_tgt->placed_address),
3865 (unsigned long) retval);
3870 debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type,
3871 struct expression *cond)
3875 retval = debug_target.to_insert_watchpoint (addr, len, type, cond);
3877 fprintf_unfiltered (gdb_stdlog,
3878 "target_insert_watchpoint (%s, %d, %d, %s) = %ld\n",
3879 core_addr_to_string (addr), len, type,
3880 host_address_to_string (cond), (unsigned long) retval);
3885 debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type,
3886 struct expression *cond)
3890 retval = debug_target.to_remove_watchpoint (addr, len, type, cond);
3892 fprintf_unfiltered (gdb_stdlog,
3893 "target_remove_watchpoint (%s, %d, %d, %s) = %ld\n",
3894 core_addr_to_string (addr), len, type,
3895 host_address_to_string (cond), (unsigned long) retval);
3900 debug_to_terminal_init (void)
3902 debug_target.to_terminal_init ();
3904 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
3908 debug_to_terminal_inferior (void)
3910 debug_target.to_terminal_inferior ();
3912 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
3916 debug_to_terminal_ours_for_output (void)
3918 debug_target.to_terminal_ours_for_output ();
3920 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
3924 debug_to_terminal_ours (void)
3926 debug_target.to_terminal_ours ();
3928 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
3932 debug_to_terminal_save_ours (void)
3934 debug_target.to_terminal_save_ours ();
3936 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
3940 debug_to_terminal_info (char *arg, int from_tty)
3942 debug_target.to_terminal_info (arg, from_tty);
3944 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
3949 debug_to_load (char *args, int from_tty)
3951 debug_target.to_load (args, from_tty);
3953 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
3957 debug_to_post_startup_inferior (ptid_t ptid)
3959 debug_target.to_post_startup_inferior (ptid);
3961 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
3966 debug_to_insert_fork_catchpoint (int pid)
3970 retval = debug_target.to_insert_fork_catchpoint (pid);
3972 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n",
3979 debug_to_remove_fork_catchpoint (int pid)
3983 retval = debug_target.to_remove_fork_catchpoint (pid);
3985 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
3992 debug_to_insert_vfork_catchpoint (int pid)
3996 retval = debug_target.to_insert_vfork_catchpoint (pid);
3998 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d) = %d\n",
4005 debug_to_remove_vfork_catchpoint (int pid)
4009 retval = debug_target.to_remove_vfork_catchpoint (pid);
4011 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
4018 debug_to_insert_exec_catchpoint (int pid)
4022 retval = debug_target.to_insert_exec_catchpoint (pid);
4024 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
4031 debug_to_remove_exec_catchpoint (int pid)
4035 retval = debug_target.to_remove_exec_catchpoint (pid);
4037 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
4044 debug_to_has_exited (int pid, int wait_status, int *exit_status)
4048 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
4050 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
4051 pid, wait_status, *exit_status, has_exited);
4057 debug_to_can_run (void)
4061 retval = debug_target.to_can_run ();
4063 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
4068 static struct gdbarch *
4069 debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid)
4071 struct gdbarch *retval;
4073 retval = debug_target.to_thread_architecture (ops, ptid);
4075 fprintf_unfiltered (gdb_stdlog,
4076 "target_thread_architecture (%s) = %s [%s]\n",
4077 target_pid_to_str (ptid),
4078 host_address_to_string (retval),
4079 gdbarch_bfd_arch_info (retval)->printable_name);
4084 debug_to_stop (ptid_t ptid)
4086 debug_target.to_stop (ptid);
4088 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
4089 target_pid_to_str (ptid));
4093 debug_to_rcmd (char *command,
4094 struct ui_file *outbuf)
4096 debug_target.to_rcmd (command, outbuf);
4097 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
4101 debug_to_pid_to_exec_file (int pid)
4105 exec_file = debug_target.to_pid_to_exec_file (pid);
4107 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
4114 setup_target_debug (void)
4116 memcpy (&debug_target, ¤t_target, sizeof debug_target);
4118 current_target.to_open = debug_to_open;
4119 current_target.to_post_attach = debug_to_post_attach;
4120 current_target.to_prepare_to_store = debug_to_prepare_to_store;
4121 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
4122 current_target.to_files_info = debug_to_files_info;
4123 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
4124 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
4125 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
4126 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
4127 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
4128 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
4129 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
4130 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
4131 current_target.to_stopped_data_address = debug_to_stopped_data_address;
4132 current_target.to_watchpoint_addr_within_range
4133 = debug_to_watchpoint_addr_within_range;
4134 current_target.to_region_ok_for_hw_watchpoint
4135 = debug_to_region_ok_for_hw_watchpoint;
4136 current_target.to_can_accel_watchpoint_condition
4137 = debug_to_can_accel_watchpoint_condition;
4138 current_target.to_terminal_init = debug_to_terminal_init;
4139 current_target.to_terminal_inferior = debug_to_terminal_inferior;
4140 current_target.to_terminal_ours_for_output
4141 = debug_to_terminal_ours_for_output;
4142 current_target.to_terminal_ours = debug_to_terminal_ours;
4143 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
4144 current_target.to_terminal_info = debug_to_terminal_info;
4145 current_target.to_load = debug_to_load;
4146 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
4147 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
4148 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
4149 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
4150 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
4151 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
4152 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
4153 current_target.to_has_exited = debug_to_has_exited;
4154 current_target.to_can_run = debug_to_can_run;
4155 current_target.to_stop = debug_to_stop;
4156 current_target.to_rcmd = debug_to_rcmd;
4157 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
4158 current_target.to_thread_architecture = debug_to_thread_architecture;
4162 static char targ_desc[] =
4163 "Names of targets and files being debugged.\nShows the entire \
4164 stack of targets currently in use (including the exec-file,\n\
4165 core-file, and process, if any), as well as the symbol file name.";
4168 do_monitor_command (char *cmd,
4171 if ((current_target.to_rcmd
4172 == (void (*) (char *, struct ui_file *)) tcomplain)
4173 || (current_target.to_rcmd == debug_to_rcmd
4174 && (debug_target.to_rcmd
4175 == (void (*) (char *, struct ui_file *)) tcomplain)))
4176 error (_("\"monitor\" command not supported by this target."));
4177 target_rcmd (cmd, gdb_stdtarg);
4180 /* Print the name of each layers of our target stack. */
4183 maintenance_print_target_stack (char *cmd, int from_tty)
4185 struct target_ops *t;
4187 printf_filtered (_("The current target stack is:\n"));
4189 for (t = target_stack; t != NULL; t = t->beneath)
4191 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
4195 /* Controls if async mode is permitted. */
4196 int target_async_permitted = 0;
4198 /* The set command writes to this variable. If the inferior is
4199 executing, linux_nat_async_permitted is *not* updated. */
4200 static int target_async_permitted_1 = 0;
4203 set_maintenance_target_async_permitted (char *args, int from_tty,
4204 struct cmd_list_element *c)
4206 if (have_live_inferiors ())
4208 target_async_permitted_1 = target_async_permitted;
4209 error (_("Cannot change this setting while the inferior is running."));
4212 target_async_permitted = target_async_permitted_1;
4216 show_maintenance_target_async_permitted (struct ui_file *file, int from_tty,
4217 struct cmd_list_element *c,
4220 fprintf_filtered (file,
4221 _("Controlling the inferior in "
4222 "asynchronous mode is %s.\n"), value);
4225 /* Temporary copies of permission settings. */
4227 static int may_write_registers_1 = 1;
4228 static int may_write_memory_1 = 1;
4229 static int may_insert_breakpoints_1 = 1;
4230 static int may_insert_tracepoints_1 = 1;
4231 static int may_insert_fast_tracepoints_1 = 1;
4232 static int may_stop_1 = 1;
4234 /* Make the user-set values match the real values again. */
4237 update_target_permissions (void)
4239 may_write_registers_1 = may_write_registers;
4240 may_write_memory_1 = may_write_memory;
4241 may_insert_breakpoints_1 = may_insert_breakpoints;
4242 may_insert_tracepoints_1 = may_insert_tracepoints;
4243 may_insert_fast_tracepoints_1 = may_insert_fast_tracepoints;
4244 may_stop_1 = may_stop;
4247 /* The one function handles (most of) the permission flags in the same
4251 set_target_permissions (char *args, int from_tty,
4252 struct cmd_list_element *c)
4254 if (target_has_execution)
4256 update_target_permissions ();
4257 error (_("Cannot change this setting while the inferior is running."));
4260 /* Make the real values match the user-changed values. */
4261 may_write_registers = may_write_registers_1;
4262 may_insert_breakpoints = may_insert_breakpoints_1;
4263 may_insert_tracepoints = may_insert_tracepoints_1;
4264 may_insert_fast_tracepoints = may_insert_fast_tracepoints_1;
4265 may_stop = may_stop_1;
4266 update_observer_mode ();
4269 /* Set memory write permission independently of observer mode. */
4272 set_write_memory_permission (char *args, int from_tty,
4273 struct cmd_list_element *c)
4275 /* Make the real values match the user-changed values. */
4276 may_write_memory = may_write_memory_1;
4277 update_observer_mode ();
4282 initialize_targets (void)
4284 init_dummy_target ();
4285 push_target (&dummy_target);
4287 add_info ("target", target_info, targ_desc);
4288 add_info ("files", target_info, targ_desc);
4290 add_setshow_zinteger_cmd ("target", class_maintenance, &targetdebug, _("\
4291 Set target debugging."), _("\
4292 Show target debugging."), _("\
4293 When non-zero, target debugging is enabled. Higher numbers are more\n\
4294 verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
4298 &setdebuglist, &showdebuglist);
4300 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
4301 &trust_readonly, _("\
4302 Set mode for reading from readonly sections."), _("\
4303 Show mode for reading from readonly sections."), _("\
4304 When this mode is on, memory reads from readonly sections (such as .text)\n\
4305 will be read from the object file instead of from the target. This will\n\
4306 result in significant performance improvement for remote targets."),
4308 show_trust_readonly,
4309 &setlist, &showlist);
4311 add_com ("monitor", class_obscure, do_monitor_command,
4312 _("Send a command to the remote monitor (remote targets only)."));
4314 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
4315 _("Print the name of each layer of the internal target stack."),
4316 &maintenanceprintlist);
4318 add_setshow_boolean_cmd ("target-async", no_class,
4319 &target_async_permitted_1, _("\
4320 Set whether gdb controls the inferior in asynchronous mode."), _("\
4321 Show whether gdb controls the inferior in asynchronous mode."), _("\
4322 Tells gdb whether to control the inferior in asynchronous mode."),
4323 set_maintenance_target_async_permitted,
4324 show_maintenance_target_async_permitted,
4328 add_setshow_boolean_cmd ("stack-cache", class_support,
4329 &stack_cache_enabled_p_1, _("\
4330 Set cache use for stack access."), _("\
4331 Show cache use for stack access."), _("\
4332 When on, use the data cache for all stack access, regardless of any\n\
4333 configured memory regions. This improves remote performance significantly.\n\
4334 By default, caching for stack access is on."),
4335 set_stack_cache_enabled_p,
4336 show_stack_cache_enabled_p,
4337 &setlist, &showlist);
4339 add_setshow_boolean_cmd ("may-write-registers", class_support,
4340 &may_write_registers_1, _("\
4341 Set permission to write into registers."), _("\
4342 Show permission to write into registers."), _("\
4343 When this permission is on, GDB may write into the target's registers.\n\
4344 Otherwise, any sort of write attempt will result in an error."),
4345 set_target_permissions, NULL,
4346 &setlist, &showlist);
4348 add_setshow_boolean_cmd ("may-write-memory", class_support,
4349 &may_write_memory_1, _("\
4350 Set permission to write into target memory."), _("\
4351 Show permission to write into target memory."), _("\
4352 When this permission is on, GDB may write into the target's memory.\n\
4353 Otherwise, any sort of write attempt will result in an error."),
4354 set_write_memory_permission, NULL,
4355 &setlist, &showlist);
4357 add_setshow_boolean_cmd ("may-insert-breakpoints", class_support,
4358 &may_insert_breakpoints_1, _("\
4359 Set permission to insert breakpoints in the target."), _("\
4360 Show permission to insert breakpoints in the target."), _("\
4361 When this permission is on, GDB may insert breakpoints in the program.\n\
4362 Otherwise, any sort of insertion attempt will result in an error."),
4363 set_target_permissions, NULL,
4364 &setlist, &showlist);
4366 add_setshow_boolean_cmd ("may-insert-tracepoints", class_support,
4367 &may_insert_tracepoints_1, _("\
4368 Set permission to insert tracepoints in the target."), _("\
4369 Show permission to insert tracepoints in the target."), _("\
4370 When this permission is on, GDB may insert tracepoints in the program.\n\
4371 Otherwise, any sort of insertion attempt will result in an error."),
4372 set_target_permissions, NULL,
4373 &setlist, &showlist);
4375 add_setshow_boolean_cmd ("may-insert-fast-tracepoints", class_support,
4376 &may_insert_fast_tracepoints_1, _("\
4377 Set permission to insert fast tracepoints in the target."), _("\
4378 Show permission to insert fast tracepoints in the target."), _("\
4379 When this permission is on, GDB may insert fast tracepoints.\n\
4380 Otherwise, any sort of insertion attempt will result in an error."),
4381 set_target_permissions, NULL,
4382 &setlist, &showlist);
4384 add_setshow_boolean_cmd ("may-interrupt", class_support,
4386 Set permission to interrupt or signal the target."), _("\
4387 Show permission to interrupt or signal the target."), _("\
4388 When this permission is on, GDB may interrupt/stop the target's execution.\n\
4389 Otherwise, any attempt to interrupt or stop will be ignored."),
4390 set_target_permissions, NULL,
4391 &setlist, &showlist);
4394 target_dcache = dcache_init ();