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
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 int nosymbol (char *, CORE_ADDR *);
59 static void tcomplain (void) ATTR_NORETURN;
61 static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
63 static int return_zero (void);
65 static int return_one (void);
67 static int return_minus_one (void);
69 void target_ignore (void);
71 static void target_command (char *, int);
73 static struct target_ops *find_default_run_target (char *);
75 static LONGEST default_xfer_partial (struct target_ops *ops,
76 enum target_object object,
77 const char *annex, gdb_byte *readbuf,
78 const gdb_byte *writebuf,
79 ULONGEST offset, LONGEST len);
81 static LONGEST current_xfer_partial (struct target_ops *ops,
82 enum target_object object,
83 const char *annex, gdb_byte *readbuf,
84 const gdb_byte *writebuf,
85 ULONGEST offset, LONGEST len);
87 static LONGEST target_xfer_partial (struct target_ops *ops,
88 enum target_object object,
90 void *readbuf, const void *writebuf,
91 ULONGEST offset, LONGEST len);
93 static struct gdbarch *default_thread_architecture (struct target_ops *ops,
96 static void init_dummy_target (void);
98 static struct target_ops debug_target;
100 static void debug_to_open (char *, int);
102 static void debug_to_prepare_to_store (struct regcache *);
104 static void debug_to_files_info (struct target_ops *);
106 static int debug_to_insert_breakpoint (struct gdbarch *,
107 struct bp_target_info *);
109 static int debug_to_remove_breakpoint (struct gdbarch *,
110 struct bp_target_info *);
112 static int debug_to_can_use_hw_breakpoint (int, int, int);
114 static int debug_to_insert_hw_breakpoint (struct gdbarch *,
115 struct bp_target_info *);
117 static int debug_to_remove_hw_breakpoint (struct gdbarch *,
118 struct bp_target_info *);
120 static int debug_to_insert_watchpoint (CORE_ADDR, int, int);
122 static int debug_to_remove_watchpoint (CORE_ADDR, int, int);
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 void debug_to_terminal_init (void);
135 static void debug_to_terminal_inferior (void);
137 static void debug_to_terminal_ours_for_output (void);
139 static void debug_to_terminal_save_ours (void);
141 static void debug_to_terminal_ours (void);
143 static void debug_to_terminal_info (char *, int);
145 static void debug_to_load (char *, int);
147 static int debug_to_lookup_symbol (char *, CORE_ADDR *);
149 static int debug_to_can_run (void);
151 static void debug_to_notice_signals (ptid_t);
153 static void debug_to_stop (ptid_t);
155 /* NOTE: cagney/2004-09-29: Many targets reference this variable in
156 wierd and mysterious ways. Putting the variable here lets those
157 wierd and mysterious ways keep building while they are being
158 converted to the inferior inheritance structure. */
159 struct target_ops deprecated_child_ops;
161 /* Pointer to array of target architecture structures; the size of the
162 array; the current index into the array; the allocated size of the
164 struct target_ops **target_structs;
165 unsigned target_struct_size;
166 unsigned target_struct_index;
167 unsigned target_struct_allocsize;
168 #define DEFAULT_ALLOCSIZE 10
170 /* The initial current target, so that there is always a semi-valid
173 static struct target_ops dummy_target;
175 /* Top of target stack. */
177 static struct target_ops *target_stack;
179 /* The target structure we are currently using to talk to a process
180 or file or whatever "inferior" we have. */
182 struct target_ops current_target;
184 /* Command list for target. */
186 static struct cmd_list_element *targetlist = NULL;
188 /* Nonzero if we should trust readonly sections from the
189 executable when reading memory. */
191 static int trust_readonly = 0;
193 /* Nonzero if we should show true memory content including
194 memory breakpoint inserted by gdb. */
196 static int show_memory_breakpoints = 0;
198 /* Non-zero if we want to see trace of target level stuff. */
200 static int targetdebug = 0;
202 show_targetdebug (struct ui_file *file, int from_tty,
203 struct cmd_list_element *c, const char *value)
205 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
208 static void setup_target_debug (void);
210 /* The option sets this. */
211 static int stack_cache_enabled_p_1 = 1;
212 /* And set_stack_cache_enabled_p updates this.
213 The reason for the separation is so that we don't flush the cache for
214 on->on transitions. */
215 static int stack_cache_enabled_p = 1;
217 /* This is called *after* the stack-cache has been set.
218 Flush the cache for off->on and on->off transitions.
219 There's no real need to flush the cache for on->off transitions,
220 except cleanliness. */
223 set_stack_cache_enabled_p (char *args, int from_tty,
224 struct cmd_list_element *c)
226 if (stack_cache_enabled_p != stack_cache_enabled_p_1)
227 target_dcache_invalidate ();
229 stack_cache_enabled_p = stack_cache_enabled_p_1;
233 show_stack_cache_enabled_p (struct ui_file *file, int from_tty,
234 struct cmd_list_element *c, const char *value)
236 fprintf_filtered (file, _("Cache use for stack accesses is %s.\n"), value);
239 /* Cache of memory operations, to speed up remote access. */
240 static DCACHE *target_dcache;
242 /* Invalidate the target dcache. */
245 target_dcache_invalidate (void)
247 dcache_invalidate (target_dcache);
250 /* The user just typed 'target' without the name of a target. */
253 target_command (char *arg, int from_tty)
255 fputs_filtered ("Argument required (target name). Try `help target'\n",
259 /* Default target_has_* methods for process_stratum targets. */
262 default_child_has_all_memory (struct target_ops *ops)
264 /* If no inferior selected, then we can't read memory here. */
265 if (ptid_equal (inferior_ptid, null_ptid))
272 default_child_has_memory (struct target_ops *ops)
274 /* If no inferior selected, then we can't read memory here. */
275 if (ptid_equal (inferior_ptid, null_ptid))
282 default_child_has_stack (struct target_ops *ops)
284 /* If no inferior selected, there's no stack. */
285 if (ptid_equal (inferior_ptid, null_ptid))
292 default_child_has_registers (struct target_ops *ops)
294 /* Can't read registers from no inferior. */
295 if (ptid_equal (inferior_ptid, null_ptid))
302 default_child_has_execution (struct target_ops *ops)
304 /* If there's no thread selected, then we can't make it run through
306 if (ptid_equal (inferior_ptid, null_ptid))
314 target_has_all_memory_1 (void)
316 struct target_ops *t;
318 for (t = current_target.beneath; t != NULL; t = t->beneath)
319 if (t->to_has_all_memory (t))
326 target_has_memory_1 (void)
328 struct target_ops *t;
330 for (t = current_target.beneath; t != NULL; t = t->beneath)
331 if (t->to_has_memory (t))
338 target_has_stack_1 (void)
340 struct target_ops *t;
342 for (t = current_target.beneath; t != NULL; t = t->beneath)
343 if (t->to_has_stack (t))
350 target_has_registers_1 (void)
352 struct target_ops *t;
354 for (t = current_target.beneath; t != NULL; t = t->beneath)
355 if (t->to_has_registers (t))
362 target_has_execution_1 (void)
364 struct target_ops *t;
366 for (t = current_target.beneath; t != NULL; t = t->beneath)
367 if (t->to_has_execution (t))
373 /* Add a possible target architecture to the list. */
376 add_target (struct target_ops *t)
378 /* Provide default values for all "must have" methods. */
379 if (t->to_xfer_partial == NULL)
380 t->to_xfer_partial = default_xfer_partial;
382 if (t->to_has_all_memory == NULL)
383 t->to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
385 if (t->to_has_memory == NULL)
386 t->to_has_memory = (int (*) (struct target_ops *)) return_zero;
388 if (t->to_has_stack == NULL)
389 t->to_has_stack = (int (*) (struct target_ops *)) return_zero;
391 if (t->to_has_registers == NULL)
392 t->to_has_registers = (int (*) (struct target_ops *)) return_zero;
394 if (t->to_has_execution == NULL)
395 t->to_has_execution = (int (*) (struct target_ops *)) return_zero;
399 target_struct_allocsize = DEFAULT_ALLOCSIZE;
400 target_structs = (struct target_ops **) xmalloc
401 (target_struct_allocsize * sizeof (*target_structs));
403 if (target_struct_size >= target_struct_allocsize)
405 target_struct_allocsize *= 2;
406 target_structs = (struct target_ops **)
407 xrealloc ((char *) target_structs,
408 target_struct_allocsize * sizeof (*target_structs));
410 target_structs[target_struct_size++] = t;
412 if (targetlist == NULL)
413 add_prefix_cmd ("target", class_run, target_command, _("\
414 Connect to a target machine or process.\n\
415 The first argument is the type or protocol of the target machine.\n\
416 Remaining arguments are interpreted by the target protocol. For more\n\
417 information on the arguments for a particular protocol, type\n\
418 `help target ' followed by the protocol name."),
419 &targetlist, "target ", 0, &cmdlist);
420 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
433 struct target_ops *t;
435 for (t = current_target.beneath; t != NULL; t = t->beneath)
436 if (t->to_kill != NULL)
439 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
449 target_load (char *arg, int from_tty)
451 target_dcache_invalidate ();
452 (*current_target.to_load) (arg, from_tty);
456 target_create_inferior (char *exec_file, char *args,
457 char **env, int from_tty)
459 struct target_ops *t;
460 for (t = current_target.beneath; t != NULL; t = t->beneath)
462 if (t->to_create_inferior != NULL)
464 t->to_create_inferior (t, exec_file, args, env, from_tty);
466 fprintf_unfiltered (gdb_stdlog,
467 "target_create_inferior (%s, %s, xxx, %d)\n",
468 exec_file, args, from_tty);
473 internal_error (__FILE__, __LINE__,
474 "could not find a target to create inferior");
478 target_terminal_inferior (void)
480 /* A background resume (``run&'') should leave GDB in control of the
481 terminal. Use target_can_async_p, not target_is_async_p, since at
482 this point the target is not async yet. However, if sync_execution
483 is not set, we know it will become async prior to resume. */
484 if (target_can_async_p () && !sync_execution)
487 /* If GDB is resuming the inferior in the foreground, install
488 inferior's terminal modes. */
489 (*current_target.to_terminal_inferior) ();
493 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
494 struct target_ops *t)
496 errno = EIO; /* Can't read/write this location */
497 return 0; /* No bytes handled */
503 error (_("You can't do that when your target is `%s'"),
504 current_target.to_shortname);
510 error (_("You can't do that without a process to debug."));
514 nosymbol (char *name, CORE_ADDR *addrp)
516 return 1; /* Symbol does not exist in target env */
520 default_terminal_info (char *args, int from_tty)
522 printf_unfiltered (_("No saved terminal information.\n"));
525 /* A default implementation for the to_get_ada_task_ptid target method.
527 This function builds the PTID by using both LWP and TID as part of
528 the PTID lwp and tid elements. The pid used is the pid of the
532 default_get_ada_task_ptid (long lwp, long tid)
534 return ptid_build (ptid_get_pid (inferior_ptid), lwp, tid);
537 /* Go through the target stack from top to bottom, copying over zero
538 entries in current_target, then filling in still empty entries. In
539 effect, we are doing class inheritance through the pushed target
542 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
543 is currently implemented, is that it discards any knowledge of
544 which target an inherited method originally belonged to.
545 Consequently, new new target methods should instead explicitly and
546 locally search the target stack for the target that can handle the
550 update_current_target (void)
552 struct target_ops *t;
554 /* First, reset current's contents. */
555 memset (¤t_target, 0, sizeof (current_target));
557 #define INHERIT(FIELD, TARGET) \
558 if (!current_target.FIELD) \
559 current_target.FIELD = (TARGET)->FIELD
561 for (t = target_stack; t; t = t->beneath)
563 INHERIT (to_shortname, t);
564 INHERIT (to_longname, t);
566 /* Do not inherit to_open. */
567 /* Do not inherit to_close. */
568 /* Do not inherit to_attach. */
569 INHERIT (to_post_attach, t);
570 INHERIT (to_attach_no_wait, t);
571 /* Do not inherit to_detach. */
572 /* Do not inherit to_disconnect. */
573 /* Do not inherit to_resume. */
574 /* Do not inherit to_wait. */
575 /* Do not inherit to_fetch_registers. */
576 /* Do not inherit to_store_registers. */
577 INHERIT (to_prepare_to_store, t);
578 INHERIT (deprecated_xfer_memory, t);
579 INHERIT (to_files_info, t);
580 INHERIT (to_insert_breakpoint, t);
581 INHERIT (to_remove_breakpoint, t);
582 INHERIT (to_can_use_hw_breakpoint, t);
583 INHERIT (to_insert_hw_breakpoint, t);
584 INHERIT (to_remove_hw_breakpoint, t);
585 INHERIT (to_insert_watchpoint, t);
586 INHERIT (to_remove_watchpoint, t);
587 INHERIT (to_stopped_data_address, t);
588 INHERIT (to_have_steppable_watchpoint, t);
589 INHERIT (to_have_continuable_watchpoint, t);
590 INHERIT (to_stopped_by_watchpoint, t);
591 INHERIT (to_watchpoint_addr_within_range, t);
592 INHERIT (to_region_ok_for_hw_watchpoint, t);
593 INHERIT (to_terminal_init, t);
594 INHERIT (to_terminal_inferior, t);
595 INHERIT (to_terminal_ours_for_output, t);
596 INHERIT (to_terminal_ours, t);
597 INHERIT (to_terminal_save_ours, t);
598 INHERIT (to_terminal_info, t);
599 /* Do not inherit to_kill. */
600 INHERIT (to_load, t);
601 INHERIT (to_lookup_symbol, t);
602 /* Do no inherit to_create_inferior. */
603 INHERIT (to_post_startup_inferior, t);
604 INHERIT (to_acknowledge_created_inferior, t);
605 INHERIT (to_insert_fork_catchpoint, t);
606 INHERIT (to_remove_fork_catchpoint, t);
607 INHERIT (to_insert_vfork_catchpoint, t);
608 INHERIT (to_remove_vfork_catchpoint, t);
609 /* Do not inherit to_follow_fork. */
610 INHERIT (to_insert_exec_catchpoint, t);
611 INHERIT (to_remove_exec_catchpoint, t);
612 INHERIT (to_set_syscall_catchpoint, t);
613 INHERIT (to_has_exited, t);
614 /* Do not inherit to_mourn_inferiour. */
615 INHERIT (to_can_run, t);
616 INHERIT (to_notice_signals, t);
617 /* Do not inherit to_thread_alive. */
618 /* Do not inherit to_find_new_threads. */
619 /* Do not inherit to_pid_to_str. */
620 INHERIT (to_extra_thread_info, t);
621 INHERIT (to_stop, t);
622 /* Do not inherit to_xfer_partial. */
623 INHERIT (to_rcmd, t);
624 INHERIT (to_pid_to_exec_file, t);
625 INHERIT (to_log_command, t);
626 INHERIT (to_stratum, t);
627 /* Do not inherit to_has_all_memory */
628 /* Do not inherit to_has_memory */
629 /* Do not inherit to_has_stack */
630 /* Do not inherit to_has_registers */
631 /* Do not inherit to_has_execution */
632 INHERIT (to_has_thread_control, t);
633 INHERIT (to_can_async_p, t);
634 INHERIT (to_is_async_p, t);
635 INHERIT (to_async, t);
636 INHERIT (to_async_mask, t);
637 INHERIT (to_find_memory_regions, t);
638 INHERIT (to_make_corefile_notes, t);
639 INHERIT (to_get_bookmark, t);
640 INHERIT (to_goto_bookmark, t);
641 /* Do not inherit to_get_thread_local_address. */
642 INHERIT (to_can_execute_reverse, t);
643 INHERIT (to_thread_architecture, t);
644 /* Do not inherit to_read_description. */
645 INHERIT (to_get_ada_task_ptid, t);
646 /* Do not inherit to_search_memory. */
647 INHERIT (to_supports_multi_process, t);
648 INHERIT (to_trace_init, t);
649 INHERIT (to_download_tracepoint, t);
650 INHERIT (to_download_trace_state_variable, t);
651 INHERIT (to_trace_set_readonly_regions, t);
652 INHERIT (to_trace_start, t);
653 INHERIT (to_get_trace_status, t);
654 INHERIT (to_trace_stop, t);
655 INHERIT (to_trace_find, t);
656 INHERIT (to_get_trace_state_variable_value, t);
657 INHERIT (to_save_trace_data, t);
658 INHERIT (to_upload_tracepoints, t);
659 INHERIT (to_upload_trace_state_variables, t);
660 INHERIT (to_get_raw_trace_data, t);
661 INHERIT (to_set_disconnected_tracing, t);
662 INHERIT (to_set_circular_trace_buffer, t);
663 INHERIT (to_get_tib_address, t);
664 INHERIT (to_magic, t);
665 /* Do not inherit to_memory_map. */
666 /* Do not inherit to_flash_erase. */
667 /* Do not inherit to_flash_done. */
671 /* Clean up a target struct so it no longer has any zero pointers in
672 it. Some entries are defaulted to a method that print an error,
673 others are hard-wired to a standard recursive default. */
675 #define de_fault(field, value) \
676 if (!current_target.field) \
677 current_target.field = value
680 (void (*) (char *, int))
685 de_fault (to_post_attach,
688 de_fault (to_prepare_to_store,
689 (void (*) (struct regcache *))
691 de_fault (deprecated_xfer_memory,
692 (int (*) (CORE_ADDR, gdb_byte *, int, int, struct mem_attrib *, struct target_ops *))
694 de_fault (to_files_info,
695 (void (*) (struct target_ops *))
697 de_fault (to_insert_breakpoint,
698 memory_insert_breakpoint);
699 de_fault (to_remove_breakpoint,
700 memory_remove_breakpoint);
701 de_fault (to_can_use_hw_breakpoint,
702 (int (*) (int, int, int))
704 de_fault (to_insert_hw_breakpoint,
705 (int (*) (struct gdbarch *, struct bp_target_info *))
707 de_fault (to_remove_hw_breakpoint,
708 (int (*) (struct gdbarch *, struct bp_target_info *))
710 de_fault (to_insert_watchpoint,
711 (int (*) (CORE_ADDR, int, int))
713 de_fault (to_remove_watchpoint,
714 (int (*) (CORE_ADDR, int, int))
716 de_fault (to_stopped_by_watchpoint,
719 de_fault (to_stopped_data_address,
720 (int (*) (struct target_ops *, CORE_ADDR *))
722 de_fault (to_watchpoint_addr_within_range,
723 default_watchpoint_addr_within_range);
724 de_fault (to_region_ok_for_hw_watchpoint,
725 default_region_ok_for_hw_watchpoint);
726 de_fault (to_terminal_init,
729 de_fault (to_terminal_inferior,
732 de_fault (to_terminal_ours_for_output,
735 de_fault (to_terminal_ours,
738 de_fault (to_terminal_save_ours,
741 de_fault (to_terminal_info,
742 default_terminal_info);
744 (void (*) (char *, int))
746 de_fault (to_lookup_symbol,
747 (int (*) (char *, CORE_ADDR *))
749 de_fault (to_post_startup_inferior,
752 de_fault (to_acknowledge_created_inferior,
755 de_fault (to_insert_fork_catchpoint,
758 de_fault (to_remove_fork_catchpoint,
761 de_fault (to_insert_vfork_catchpoint,
764 de_fault (to_remove_vfork_catchpoint,
767 de_fault (to_insert_exec_catchpoint,
770 de_fault (to_remove_exec_catchpoint,
773 de_fault (to_set_syscall_catchpoint,
774 (int (*) (int, int, int, int, int *))
776 de_fault (to_has_exited,
777 (int (*) (int, int, int *))
779 de_fault (to_can_run,
781 de_fault (to_notice_signals,
784 de_fault (to_extra_thread_info,
785 (char *(*) (struct thread_info *))
790 current_target.to_xfer_partial = current_xfer_partial;
792 (void (*) (char *, struct ui_file *))
794 de_fault (to_pid_to_exec_file,
798 (void (*) (void (*) (enum inferior_event_type, void*), void*))
800 de_fault (to_async_mask,
803 de_fault (to_thread_architecture,
804 default_thread_architecture);
805 current_target.to_read_description = NULL;
806 de_fault (to_get_ada_task_ptid,
807 (ptid_t (*) (long, long))
808 default_get_ada_task_ptid);
809 de_fault (to_supports_multi_process,
812 de_fault (to_trace_init,
815 de_fault (to_download_tracepoint,
816 (void (*) (struct breakpoint *))
818 de_fault (to_download_trace_state_variable,
819 (void (*) (struct trace_state_variable *))
821 de_fault (to_trace_set_readonly_regions,
824 de_fault (to_trace_start,
827 de_fault (to_get_trace_status,
828 (int (*) (struct trace_status *))
830 de_fault (to_trace_stop,
833 de_fault (to_trace_find,
834 (int (*) (enum trace_find_type, int, ULONGEST, ULONGEST, int *))
836 de_fault (to_get_trace_state_variable_value,
837 (int (*) (int, LONGEST *))
839 de_fault (to_save_trace_data,
840 (int (*) (const char *))
842 de_fault (to_upload_tracepoints,
843 (int (*) (struct uploaded_tp **))
845 de_fault (to_upload_trace_state_variables,
846 (int (*) (struct uploaded_tsv **))
848 de_fault (to_get_raw_trace_data,
849 (LONGEST (*) (gdb_byte *, ULONGEST, LONGEST))
851 de_fault (to_set_disconnected_tracing,
854 de_fault (to_set_circular_trace_buffer,
857 de_fault (to_get_tib_address,
858 (int (*) (ptid_t, CORE_ADDR *))
862 /* Finally, position the target-stack beneath the squashed
863 "current_target". That way code looking for a non-inherited
864 target method can quickly and simply find it. */
865 current_target.beneath = target_stack;
868 setup_target_debug ();
871 /* Push a new target type into the stack of the existing target accessors,
872 possibly superseding some of the existing accessors.
874 Result is zero if the pushed target ended up on top of the stack,
875 nonzero if at least one target is on top of it.
877 Rather than allow an empty stack, we always have the dummy target at
878 the bottom stratum, so we can call the function vectors without
882 push_target (struct target_ops *t)
884 struct target_ops **cur;
886 /* Check magic number. If wrong, it probably means someone changed
887 the struct definition, but not all the places that initialize one. */
888 if (t->to_magic != OPS_MAGIC)
890 fprintf_unfiltered (gdb_stderr,
891 "Magic number of %s target struct wrong\n",
893 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
896 /* Find the proper stratum to install this target in. */
897 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
899 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
903 /* If there's already targets at this stratum, remove them. */
904 /* FIXME: cagney/2003-10-15: I think this should be popping all
905 targets to CUR, and not just those at this stratum level. */
906 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
908 /* There's already something at this stratum level. Close it,
909 and un-hook it from the stack. */
910 struct target_ops *tmp = (*cur);
911 (*cur) = (*cur)->beneath;
913 target_close (tmp, 0);
916 /* We have removed all targets in our stratum, now add the new one. */
920 update_current_target ();
923 return (t != target_stack);
926 /* Remove a target_ops vector from the stack, wherever it may be.
927 Return how many times it was removed (0 or 1). */
930 unpush_target (struct target_ops *t)
932 struct target_ops **cur;
933 struct target_ops *tmp;
935 if (t->to_stratum == dummy_stratum)
936 internal_error (__FILE__, __LINE__,
937 "Attempt to unpush the dummy target");
939 /* Look for the specified target. Note that we assume that a target
940 can only occur once in the target stack. */
942 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
949 return 0; /* Didn't find target_ops, quit now */
951 /* NOTE: cagney/2003-12-06: In '94 the close call was made
952 unconditional by moving it to before the above check that the
953 target was in the target stack (something about "Change the way
954 pushing and popping of targets work to support target overlays
955 and inheritance"). This doesn't make much sense - only open
956 targets should be closed. */
959 /* Unchain the target */
961 (*cur) = (*cur)->beneath;
964 update_current_target ();
972 target_close (target_stack, 0); /* Let it clean up */
973 if (unpush_target (target_stack) == 1)
976 fprintf_unfiltered (gdb_stderr,
977 "pop_target couldn't find target %s\n",
978 current_target.to_shortname);
979 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
983 pop_all_targets_above (enum strata above_stratum, int quitting)
985 while ((int) (current_target.to_stratum) > (int) above_stratum)
987 target_close (target_stack, quitting);
988 if (!unpush_target (target_stack))
990 fprintf_unfiltered (gdb_stderr,
991 "pop_all_targets couldn't find target %s\n",
992 target_stack->to_shortname);
993 internal_error (__FILE__, __LINE__,
994 _("failed internal consistency check"));
1001 pop_all_targets (int quitting)
1003 pop_all_targets_above (dummy_stratum, quitting);
1006 /* Using the objfile specified in OBJFILE, find the address for the
1007 current thread's thread-local storage with offset OFFSET. */
1009 target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
1011 volatile CORE_ADDR addr = 0;
1012 struct target_ops *target;
1014 for (target = current_target.beneath;
1016 target = target->beneath)
1018 if (target->to_get_thread_local_address != NULL)
1023 && gdbarch_fetch_tls_load_module_address_p (target_gdbarch))
1025 ptid_t ptid = inferior_ptid;
1026 volatile struct gdb_exception ex;
1028 TRY_CATCH (ex, RETURN_MASK_ALL)
1032 /* Fetch the load module address for this objfile. */
1033 lm_addr = gdbarch_fetch_tls_load_module_address (target_gdbarch,
1035 /* If it's 0, throw the appropriate exception. */
1037 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
1038 _("TLS load module not found"));
1040 addr = target->to_get_thread_local_address (target, ptid, lm_addr, offset);
1042 /* If an error occurred, print TLS related messages here. Otherwise,
1043 throw the error to some higher catcher. */
1046 int objfile_is_library = (objfile->flags & OBJF_SHARED);
1050 case TLS_NO_LIBRARY_SUPPORT_ERROR:
1051 error (_("Cannot find thread-local variables in this thread library."));
1053 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
1054 if (objfile_is_library)
1055 error (_("Cannot find shared library `%s' in dynamic"
1056 " linker's load module list"), objfile->name);
1058 error (_("Cannot find executable file `%s' in dynamic"
1059 " linker's load module list"), objfile->name);
1061 case TLS_NOT_ALLOCATED_YET_ERROR:
1062 if (objfile_is_library)
1063 error (_("The inferior has not yet allocated storage for"
1064 " thread-local variables in\n"
1065 "the shared library `%s'\n"
1067 objfile->name, target_pid_to_str (ptid));
1069 error (_("The inferior has not yet allocated storage for"
1070 " thread-local variables in\n"
1071 "the executable `%s'\n"
1073 objfile->name, target_pid_to_str (ptid));
1075 case TLS_GENERIC_ERROR:
1076 if (objfile_is_library)
1077 error (_("Cannot find thread-local storage for %s, "
1078 "shared library %s:\n%s"),
1079 target_pid_to_str (ptid),
1080 objfile->name, ex.message);
1082 error (_("Cannot find thread-local storage for %s, "
1083 "executable file %s:\n%s"),
1084 target_pid_to_str (ptid),
1085 objfile->name, ex.message);
1088 throw_exception (ex);
1093 /* It wouldn't be wrong here to try a gdbarch method, too; finding
1094 TLS is an ABI-specific thing. But we don't do that yet. */
1096 error (_("Cannot find thread-local variables on this target"));
1102 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
1104 /* target_read_string -- read a null terminated string, up to LEN bytes,
1105 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
1106 Set *STRING to a pointer to malloc'd memory containing the data; the caller
1107 is responsible for freeing it. Return the number of bytes successfully
1111 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
1113 int tlen, origlen, offset, i;
1117 int buffer_allocated;
1119 unsigned int nbytes_read = 0;
1121 gdb_assert (string);
1123 /* Small for testing. */
1124 buffer_allocated = 4;
1125 buffer = xmalloc (buffer_allocated);
1132 tlen = MIN (len, 4 - (memaddr & 3));
1133 offset = memaddr & 3;
1135 errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
1138 /* The transfer request might have crossed the boundary to an
1139 unallocated region of memory. Retry the transfer, requesting
1143 errcode = target_read_memory (memaddr, buf, 1);
1148 if (bufptr - buffer + tlen > buffer_allocated)
1151 bytes = bufptr - buffer;
1152 buffer_allocated *= 2;
1153 buffer = xrealloc (buffer, buffer_allocated);
1154 bufptr = buffer + bytes;
1157 for (i = 0; i < tlen; i++)
1159 *bufptr++ = buf[i + offset];
1160 if (buf[i + offset] == '\000')
1162 nbytes_read += i + 1;
1169 nbytes_read += tlen;
1178 struct target_section_table *
1179 target_get_section_table (struct target_ops *target)
1181 struct target_ops *t;
1184 fprintf_unfiltered (gdb_stdlog, "target_get_section_table ()\n");
1186 for (t = target; t != NULL; t = t->beneath)
1187 if (t->to_get_section_table != NULL)
1188 return (*t->to_get_section_table) (t);
1193 /* Find a section containing ADDR. */
1195 struct target_section *
1196 target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1198 struct target_section_table *table = target_get_section_table (target);
1199 struct target_section *secp;
1204 for (secp = table->sections; secp < table->sections_end; secp++)
1206 if (addr >= secp->addr && addr < secp->endaddr)
1212 /* Perform a partial memory transfer.
1213 For docs see target.h, to_xfer_partial. */
1216 memory_xfer_partial (struct target_ops *ops, enum target_object object,
1217 void *readbuf, const void *writebuf, ULONGEST memaddr,
1222 struct mem_region *region;
1223 struct inferior *inf;
1225 /* Zero length requests are ok and require no work. */
1229 /* For accesses to unmapped overlay sections, read directly from
1230 files. Must do this first, as MEMADDR may need adjustment. */
1231 if (readbuf != NULL && overlay_debugging)
1233 struct obj_section *section = find_pc_overlay (memaddr);
1234 if (pc_in_unmapped_range (memaddr, section))
1236 struct target_section_table *table
1237 = target_get_section_table (ops);
1238 const char *section_name = section->the_bfd_section->name;
1239 memaddr = overlay_mapped_address (memaddr, section);
1240 return section_table_xfer_memory_partial (readbuf, writebuf,
1243 table->sections_end,
1248 /* Try the executable files, if "trust-readonly-sections" is set. */
1249 if (readbuf != NULL && trust_readonly)
1251 struct target_section *secp;
1252 struct target_section_table *table;
1254 secp = target_section_by_addr (ops, memaddr);
1256 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
1259 table = target_get_section_table (ops);
1260 return section_table_xfer_memory_partial (readbuf, writebuf,
1263 table->sections_end,
1268 /* Try GDB's internal data cache. */
1269 region = lookup_mem_region (memaddr);
1270 /* region->hi == 0 means there's no upper bound. */
1271 if (memaddr + len < region->hi || region->hi == 0)
1274 reg_len = region->hi - memaddr;
1276 switch (region->attrib.mode)
1279 if (writebuf != NULL)
1284 if (readbuf != NULL)
1289 /* We only support writing to flash during "load" for now. */
1290 if (writebuf != NULL)
1291 error (_("Writing to flash memory forbidden in this context"));
1298 if (!ptid_equal (inferior_ptid, null_ptid))
1299 inf = find_inferior_pid (ptid_get_pid (inferior_ptid));
1304 /* The dcache reads whole cache lines; that doesn't play well
1305 with reading from a trace buffer, because reading outside of
1306 the collected memory range fails. */
1307 && get_traceframe_number () == -1
1308 && (region->attrib.cache
1309 || (stack_cache_enabled_p && object == TARGET_OBJECT_STACK_MEMORY)))
1311 if (readbuf != NULL)
1312 res = dcache_xfer_memory (ops, target_dcache, memaddr, readbuf,
1315 /* FIXME drow/2006-08-09: If we're going to preserve const
1316 correctness dcache_xfer_memory should take readbuf and
1318 res = dcache_xfer_memory (ops, target_dcache, memaddr,
1325 if (readbuf && !show_memory_breakpoints)
1326 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1331 /* If none of those methods found the memory we wanted, fall back
1332 to a target partial transfer. Normally a single call to
1333 to_xfer_partial is enough; if it doesn't recognize an object
1334 it will call the to_xfer_partial of the next target down.
1335 But for memory this won't do. Memory is the only target
1336 object which can be read from more than one valid target.
1337 A core file, for instance, could have some of memory but
1338 delegate other bits to the target below it. So, we must
1339 manually try all targets. */
1343 res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1344 readbuf, writebuf, memaddr, reg_len);
1348 /* We want to continue past core files to executables, but not
1349 past a running target's memory. */
1350 if (ops->to_has_all_memory (ops))
1355 while (ops != NULL);
1357 if (readbuf && !show_memory_breakpoints)
1358 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1360 /* Make sure the cache gets updated no matter what - if we are writing
1361 to the stack. Even if this write is not tagged as such, we still need
1362 to update the cache. */
1367 && !region->attrib.cache
1368 && stack_cache_enabled_p
1369 && object != TARGET_OBJECT_STACK_MEMORY)
1371 dcache_update (target_dcache, memaddr, (void *) writebuf, res);
1374 /* If we still haven't got anything, return the last error. We
1380 restore_show_memory_breakpoints (void *arg)
1382 show_memory_breakpoints = (uintptr_t) arg;
1386 make_show_memory_breakpoints_cleanup (int show)
1388 int current = show_memory_breakpoints;
1389 show_memory_breakpoints = show;
1391 return make_cleanup (restore_show_memory_breakpoints,
1392 (void *) (uintptr_t) current);
1395 /* For docs see target.h, to_xfer_partial. */
1398 target_xfer_partial (struct target_ops *ops,
1399 enum target_object object, const char *annex,
1400 void *readbuf, const void *writebuf,
1401 ULONGEST offset, LONGEST len)
1405 gdb_assert (ops->to_xfer_partial != NULL);
1407 /* If this is a memory transfer, let the memory-specific code
1408 have a look at it instead. Memory transfers are more
1410 if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY)
1411 retval = memory_xfer_partial (ops, object, readbuf,
1412 writebuf, offset, len);
1415 enum target_object raw_object = object;
1417 /* If this is a raw memory transfer, request the normal
1418 memory object from other layers. */
1419 if (raw_object == TARGET_OBJECT_RAW_MEMORY)
1420 raw_object = TARGET_OBJECT_MEMORY;
1422 retval = ops->to_xfer_partial (ops, raw_object, annex, readbuf,
1423 writebuf, offset, len);
1428 const unsigned char *myaddr = NULL;
1430 fprintf_unfiltered (gdb_stdlog,
1431 "%s:target_xfer_partial (%d, %s, %s, %s, %s, %s) = %s",
1434 (annex ? annex : "(null)"),
1435 host_address_to_string (readbuf),
1436 host_address_to_string (writebuf),
1437 core_addr_to_string_nz (offset),
1438 plongest (len), plongest (retval));
1444 if (retval > 0 && myaddr != NULL)
1448 fputs_unfiltered (", bytes =", gdb_stdlog);
1449 for (i = 0; i < retval; i++)
1451 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
1453 if (targetdebug < 2 && i > 0)
1455 fprintf_unfiltered (gdb_stdlog, " ...");
1458 fprintf_unfiltered (gdb_stdlog, "\n");
1461 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1465 fputc_unfiltered ('\n', gdb_stdlog);
1470 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
1471 GDB's memory at MYADDR. Returns either 0 for success or an errno value
1472 if any error occurs.
1474 If an error occurs, no guarantee is made about the contents of the data at
1475 MYADDR. In particular, the caller should not depend upon partial reads
1476 filling the buffer with good data. There is no way for the caller to know
1477 how much good data might have been transfered anyway. Callers that can
1478 deal with partial reads should call target_read (which will retry until
1479 it makes no progress, and then return how much was transferred). */
1482 target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
1484 /* Dispatch to the topmost target, not the flattened current_target.
1485 Memory accesses check target->to_has_(all_)memory, and the
1486 flattened target doesn't inherit those. */
1487 if (target_read (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1488 myaddr, memaddr, len) == len)
1494 /* Like target_read_memory, but specify explicitly that this is a read from
1495 the target's stack. This may trigger different cache behavior. */
1498 target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
1500 /* Dispatch to the topmost target, not the flattened current_target.
1501 Memory accesses check target->to_has_(all_)memory, and the
1502 flattened target doesn't inherit those. */
1504 if (target_read (current_target.beneath, TARGET_OBJECT_STACK_MEMORY, NULL,
1505 myaddr, memaddr, len) == len)
1511 /* Write LEN bytes from MYADDR to target memory at address MEMADDR.
1512 Returns either 0 for success or an errno value if any error occurs.
1513 If an error occurs, no guarantee is made about how much data got written.
1514 Callers that can deal with partial writes should call target_write. */
1517 target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
1519 /* Dispatch to the topmost target, not the flattened current_target.
1520 Memory accesses check target->to_has_(all_)memory, and the
1521 flattened target doesn't inherit those. */
1522 if (target_write (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1523 myaddr, memaddr, len) == len)
1529 /* Fetch the target's memory map. */
1532 target_memory_map (void)
1534 VEC(mem_region_s) *result;
1535 struct mem_region *last_one, *this_one;
1537 struct target_ops *t;
1540 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1542 for (t = current_target.beneath; t != NULL; t = t->beneath)
1543 if (t->to_memory_map != NULL)
1549 result = t->to_memory_map (t);
1553 qsort (VEC_address (mem_region_s, result),
1554 VEC_length (mem_region_s, result),
1555 sizeof (struct mem_region), mem_region_cmp);
1557 /* Check that regions do not overlap. Simultaneously assign
1558 a numbering for the "mem" commands to use to refer to
1561 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1563 this_one->number = ix;
1565 if (last_one && last_one->hi > this_one->lo)
1567 warning (_("Overlapping regions in memory map: ignoring"));
1568 VEC_free (mem_region_s, result);
1571 last_one = this_one;
1578 target_flash_erase (ULONGEST address, LONGEST length)
1580 struct target_ops *t;
1582 for (t = current_target.beneath; t != NULL; t = t->beneath)
1583 if (t->to_flash_erase != NULL)
1586 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
1587 hex_string (address), phex (length, 0));
1588 t->to_flash_erase (t, address, length);
1596 target_flash_done (void)
1598 struct target_ops *t;
1600 for (t = current_target.beneath; t != NULL; t = t->beneath)
1601 if (t->to_flash_done != NULL)
1604 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
1605 t->to_flash_done (t);
1613 show_trust_readonly (struct ui_file *file, int from_tty,
1614 struct cmd_list_element *c, const char *value)
1616 fprintf_filtered (file, _("\
1617 Mode for reading from readonly sections is %s.\n"),
1621 /* More generic transfers. */
1624 default_xfer_partial (struct target_ops *ops, enum target_object object,
1625 const char *annex, gdb_byte *readbuf,
1626 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1628 if (object == TARGET_OBJECT_MEMORY
1629 && ops->deprecated_xfer_memory != NULL)
1630 /* If available, fall back to the target's
1631 "deprecated_xfer_memory" method. */
1635 if (writebuf != NULL)
1637 void *buffer = xmalloc (len);
1638 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1639 memcpy (buffer, writebuf, len);
1640 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1641 1/*write*/, NULL, ops);
1642 do_cleanups (cleanup);
1644 if (readbuf != NULL)
1645 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1646 0/*read*/, NULL, ops);
1649 else if (xfered == 0 && errno == 0)
1650 /* "deprecated_xfer_memory" uses 0, cross checked against
1651 ERRNO as one indication of an error. */
1656 else if (ops->beneath != NULL)
1657 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1658 readbuf, writebuf, offset, len);
1663 /* The xfer_partial handler for the topmost target. Unlike the default,
1664 it does not need to handle memory specially; it just passes all
1665 requests down the stack. */
1668 current_xfer_partial (struct target_ops *ops, enum target_object object,
1669 const char *annex, gdb_byte *readbuf,
1670 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1672 if (ops->beneath != NULL)
1673 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1674 readbuf, writebuf, offset, len);
1679 /* Target vector read/write partial wrapper functions. */
1682 target_read_partial (struct target_ops *ops,
1683 enum target_object object,
1684 const char *annex, gdb_byte *buf,
1685 ULONGEST offset, LONGEST len)
1687 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len);
1691 target_write_partial (struct target_ops *ops,
1692 enum target_object object,
1693 const char *annex, const gdb_byte *buf,
1694 ULONGEST offset, LONGEST len)
1696 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len);
1699 /* Wrappers to perform the full transfer. */
1701 /* For docs on target_read see target.h. */
1704 target_read (struct target_ops *ops,
1705 enum target_object object,
1706 const char *annex, gdb_byte *buf,
1707 ULONGEST offset, LONGEST len)
1710 while (xfered < len)
1712 LONGEST xfer = target_read_partial (ops, object, annex,
1713 (gdb_byte *) buf + xfered,
1714 offset + xfered, len - xfered);
1715 /* Call an observer, notifying them of the xfer progress? */
1727 target_read_until_error (struct target_ops *ops,
1728 enum target_object object,
1729 const char *annex, gdb_byte *buf,
1730 ULONGEST offset, LONGEST len)
1733 while (xfered < len)
1735 LONGEST xfer = target_read_partial (ops, object, annex,
1736 (gdb_byte *) buf + xfered,
1737 offset + xfered, len - xfered);
1738 /* Call an observer, notifying them of the xfer progress? */
1743 /* We've got an error. Try to read in smaller blocks. */
1744 ULONGEST start = offset + xfered;
1745 ULONGEST remaining = len - xfered;
1748 /* If an attempt was made to read a random memory address,
1749 it's likely that the very first byte is not accessible.
1750 Try reading the first byte, to avoid doing log N tries
1752 xfer = target_read_partial (ops, object, annex,
1753 (gdb_byte *) buf + xfered, start, 1);
1762 xfer = target_read_partial (ops, object, annex,
1763 (gdb_byte *) buf + xfered,
1773 /* We have successfully read the first half. So, the
1774 error must be in the second half. Adjust start and
1775 remaining to point at the second half. */
1791 /* An alternative to target_write with progress callbacks. */
1794 target_write_with_progress (struct target_ops *ops,
1795 enum target_object object,
1796 const char *annex, const gdb_byte *buf,
1797 ULONGEST offset, LONGEST len,
1798 void (*progress) (ULONGEST, void *), void *baton)
1802 /* Give the progress callback a chance to set up. */
1804 (*progress) (0, baton);
1806 while (xfered < len)
1808 LONGEST xfer = target_write_partial (ops, object, annex,
1809 (gdb_byte *) buf + xfered,
1810 offset + xfered, len - xfered);
1818 (*progress) (xfer, baton);
1826 /* For docs on target_write see target.h. */
1829 target_write (struct target_ops *ops,
1830 enum target_object object,
1831 const char *annex, const gdb_byte *buf,
1832 ULONGEST offset, LONGEST len)
1834 return target_write_with_progress (ops, object, annex, buf, offset, len,
1838 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1839 the size of the transferred data. PADDING additional bytes are
1840 available in *BUF_P. This is a helper function for
1841 target_read_alloc; see the declaration of that function for more
1845 target_read_alloc_1 (struct target_ops *ops, enum target_object object,
1846 const char *annex, gdb_byte **buf_p, int padding)
1848 size_t buf_alloc, buf_pos;
1852 /* This function does not have a length parameter; it reads the
1853 entire OBJECT). Also, it doesn't support objects fetched partly
1854 from one target and partly from another (in a different stratum,
1855 e.g. a core file and an executable). Both reasons make it
1856 unsuitable for reading memory. */
1857 gdb_assert (object != TARGET_OBJECT_MEMORY);
1859 /* Start by reading up to 4K at a time. The target will throttle
1860 this number down if necessary. */
1862 buf = xmalloc (buf_alloc);
1866 n = target_read_partial (ops, object, annex, &buf[buf_pos],
1867 buf_pos, buf_alloc - buf_pos - padding);
1870 /* An error occurred. */
1876 /* Read all there was. */
1886 /* If the buffer is filling up, expand it. */
1887 if (buf_alloc < buf_pos * 2)
1890 buf = xrealloc (buf, buf_alloc);
1897 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1898 the size of the transferred data. See the declaration in "target.h"
1899 function for more information about the return value. */
1902 target_read_alloc (struct target_ops *ops, enum target_object object,
1903 const char *annex, gdb_byte **buf_p)
1905 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
1908 /* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
1909 returned as a string, allocated using xmalloc. If an error occurs
1910 or the transfer is unsupported, NULL is returned. Empty objects
1911 are returned as allocated but empty strings. A warning is issued
1912 if the result contains any embedded NUL bytes. */
1915 target_read_stralloc (struct target_ops *ops, enum target_object object,
1919 LONGEST transferred;
1921 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
1923 if (transferred < 0)
1926 if (transferred == 0)
1927 return xstrdup ("");
1929 buffer[transferred] = 0;
1930 if (strlen (buffer) < transferred)
1931 warning (_("target object %d, annex %s, "
1932 "contained unexpected null characters"),
1933 (int) object, annex ? annex : "(none)");
1935 return (char *) buffer;
1938 /* Memory transfer methods. */
1941 get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
1944 /* This method is used to read from an alternate, non-current
1945 target. This read must bypass the overlay support (as symbols
1946 don't match this target), and GDB's internal cache (wrong cache
1947 for this target). */
1948 if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
1950 memory_error (EIO, addr);
1954 get_target_memory_unsigned (struct target_ops *ops,
1955 CORE_ADDR addr, int len, enum bfd_endian byte_order)
1957 gdb_byte buf[sizeof (ULONGEST)];
1959 gdb_assert (len <= sizeof (buf));
1960 get_target_memory (ops, addr, buf, len);
1961 return extract_unsigned_integer (buf, len, byte_order);
1965 target_info (char *args, int from_tty)
1967 struct target_ops *t;
1968 int has_all_mem = 0;
1970 if (symfile_objfile != NULL)
1971 printf_unfiltered (_("Symbols from \"%s\".\n"), symfile_objfile->name);
1973 for (t = target_stack; t != NULL; t = t->beneath)
1975 if (!(*t->to_has_memory) (t))
1978 if ((int) (t->to_stratum) <= (int) dummy_stratum)
1981 printf_unfiltered (_("\tWhile running this, GDB does not access memory from...\n"));
1982 printf_unfiltered ("%s:\n", t->to_longname);
1983 (t->to_files_info) (t);
1984 has_all_mem = (*t->to_has_all_memory) (t);
1988 /* This function is called before any new inferior is created, e.g.
1989 by running a program, attaching, or connecting to a target.
1990 It cleans up any state from previous invocations which might
1991 change between runs. This is a subset of what target_preopen
1992 resets (things which might change between targets). */
1995 target_pre_inferior (int from_tty)
1997 /* Clear out solib state. Otherwise the solib state of the previous
1998 inferior might have survived and is entirely wrong for the new
1999 target. This has been observed on GNU/Linux using glibc 2.3. How
2011 Cannot access memory at address 0xdeadbeef
2014 /* In some OSs, the shared library list is the same/global/shared
2015 across inferiors. If code is shared between processes, so are
2016 memory regions and features. */
2017 if (!gdbarch_has_global_solist (target_gdbarch))
2019 no_shared_libraries (NULL, from_tty);
2021 invalidate_target_mem_regions ();
2023 target_clear_description ();
2027 /* Callback for iterate_over_inferiors. Gets rid of the given
2031 dispose_inferior (struct inferior *inf, void *args)
2033 struct thread_info *thread;
2035 thread = any_thread_of_process (inf->pid);
2038 switch_to_thread (thread->ptid);
2040 /* Core inferiors actually should be detached, not killed. */
2041 if (target_has_execution)
2044 target_detach (NULL, 0);
2050 /* This is to be called by the open routine before it does
2054 target_preopen (int from_tty)
2058 if (have_inferiors ())
2061 || !have_live_inferiors ()
2062 || query (_("A program is being debugged already. Kill it? ")))
2063 iterate_over_inferiors (dispose_inferior, NULL);
2065 error (_("Program not killed."));
2068 /* Calling target_kill may remove the target from the stack. But if
2069 it doesn't (which seems like a win for UDI), remove it now. */
2070 /* Leave the exec target, though. The user may be switching from a
2071 live process to a core of the same program. */
2072 pop_all_targets_above (file_stratum, 0);
2074 target_pre_inferior (from_tty);
2077 /* Detach a target after doing deferred register stores. */
2080 target_detach (char *args, int from_tty)
2082 struct target_ops* t;
2084 if (gdbarch_has_global_breakpoints (target_gdbarch))
2085 /* Don't remove global breakpoints here. They're removed on
2086 disconnection from the target. */
2089 /* If we're in breakpoints-always-inserted mode, have to remove
2090 them before detaching. */
2091 remove_breakpoints_pid (PIDGET (inferior_ptid));
2093 prepare_for_detach ();
2095 for (t = current_target.beneath; t != NULL; t = t->beneath)
2097 if (t->to_detach != NULL)
2099 t->to_detach (t, args, from_tty);
2101 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n",
2107 internal_error (__FILE__, __LINE__, "could not find a target to detach");
2111 target_disconnect (char *args, int from_tty)
2113 struct target_ops *t;
2115 /* If we're in breakpoints-always-inserted mode or if breakpoints
2116 are global across processes, we have to remove them before
2118 remove_breakpoints ();
2120 for (t = current_target.beneath; t != NULL; t = t->beneath)
2121 if (t->to_disconnect != NULL)
2124 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
2126 t->to_disconnect (t, args, from_tty);
2134 target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
2136 struct target_ops *t;
2138 for (t = current_target.beneath; t != NULL; t = t->beneath)
2140 if (t->to_wait != NULL)
2142 ptid_t retval = (*t->to_wait) (t, ptid, status, options);
2146 char *status_string;
2148 status_string = target_waitstatus_to_string (status);
2149 fprintf_unfiltered (gdb_stdlog,
2150 "target_wait (%d, status) = %d, %s\n",
2151 PIDGET (ptid), PIDGET (retval),
2153 xfree (status_string);
2164 target_pid_to_str (ptid_t ptid)
2166 struct target_ops *t;
2168 for (t = current_target.beneath; t != NULL; t = t->beneath)
2170 if (t->to_pid_to_str != NULL)
2171 return (*t->to_pid_to_str) (t, ptid);
2174 return normal_pid_to_str (ptid);
2178 target_resume (ptid_t ptid, int step, enum target_signal signal)
2180 struct target_ops *t;
2182 target_dcache_invalidate ();
2184 for (t = current_target.beneath; t != NULL; t = t->beneath)
2186 if (t->to_resume != NULL)
2188 t->to_resume (t, ptid, step, signal);
2190 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n",
2192 step ? "step" : "continue",
2193 target_signal_to_name (signal));
2195 set_executing (ptid, 1);
2196 set_running (ptid, 1);
2197 clear_inline_frame_state (ptid);
2204 /* Look through the list of possible targets for a target that can
2208 target_follow_fork (int follow_child)
2210 struct target_ops *t;
2212 for (t = current_target.beneath; t != NULL; t = t->beneath)
2214 if (t->to_follow_fork != NULL)
2216 int retval = t->to_follow_fork (t, follow_child);
2218 fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n",
2219 follow_child, retval);
2224 /* Some target returned a fork event, but did not know how to follow it. */
2225 internal_error (__FILE__, __LINE__,
2226 "could not find a target to follow fork");
2230 target_mourn_inferior (void)
2232 struct target_ops *t;
2233 for (t = current_target.beneath; t != NULL; t = t->beneath)
2235 if (t->to_mourn_inferior != NULL)
2237 t->to_mourn_inferior (t);
2239 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2241 /* We no longer need to keep handles on any of the object files.
2242 Make sure to release them to avoid unnecessarily locking any
2243 of them while we're not actually debugging. */
2244 bfd_cache_close_all ();
2250 internal_error (__FILE__, __LINE__,
2251 "could not find a target to follow mourn inferiour");
2254 /* Look for a target which can describe architectural features, starting
2255 from TARGET. If we find one, return its description. */
2257 const struct target_desc *
2258 target_read_description (struct target_ops *target)
2260 struct target_ops *t;
2262 for (t = target; t != NULL; t = t->beneath)
2263 if (t->to_read_description != NULL)
2265 const struct target_desc *tdesc;
2267 tdesc = t->to_read_description (t);
2275 /* The default implementation of to_search_memory.
2276 This implements a basic search of memory, reading target memory and
2277 performing the search here (as opposed to performing the search in on the
2278 target side with, for example, gdbserver). */
2281 simple_search_memory (struct target_ops *ops,
2282 CORE_ADDR start_addr, ULONGEST search_space_len,
2283 const gdb_byte *pattern, ULONGEST pattern_len,
2284 CORE_ADDR *found_addrp)
2286 /* NOTE: also defined in find.c testcase. */
2287 #define SEARCH_CHUNK_SIZE 16000
2288 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
2289 /* Buffer to hold memory contents for searching. */
2290 gdb_byte *search_buf;
2291 unsigned search_buf_size;
2292 struct cleanup *old_cleanups;
2294 search_buf_size = chunk_size + pattern_len - 1;
2296 /* No point in trying to allocate a buffer larger than the search space. */
2297 if (search_space_len < search_buf_size)
2298 search_buf_size = search_space_len;
2300 search_buf = malloc (search_buf_size);
2301 if (search_buf == NULL)
2302 error (_("Unable to allocate memory to perform the search."));
2303 old_cleanups = make_cleanup (free_current_contents, &search_buf);
2305 /* Prime the search buffer. */
2307 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2308 search_buf, start_addr, search_buf_size) != search_buf_size)
2310 warning (_("Unable to access target memory at %s, halting search."),
2311 hex_string (start_addr));
2312 do_cleanups (old_cleanups);
2316 /* Perform the search.
2318 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
2319 When we've scanned N bytes we copy the trailing bytes to the start and
2320 read in another N bytes. */
2322 while (search_space_len >= pattern_len)
2324 gdb_byte *found_ptr;
2325 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
2327 found_ptr = memmem (search_buf, nr_search_bytes,
2328 pattern, pattern_len);
2330 if (found_ptr != NULL)
2332 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
2333 *found_addrp = found_addr;
2334 do_cleanups (old_cleanups);
2338 /* Not found in this chunk, skip to next chunk. */
2340 /* Don't let search_space_len wrap here, it's unsigned. */
2341 if (search_space_len >= chunk_size)
2342 search_space_len -= chunk_size;
2344 search_space_len = 0;
2346 if (search_space_len >= pattern_len)
2348 unsigned keep_len = search_buf_size - chunk_size;
2349 CORE_ADDR read_addr = start_addr + chunk_size + keep_len;
2352 /* Copy the trailing part of the previous iteration to the front
2353 of the buffer for the next iteration. */
2354 gdb_assert (keep_len == pattern_len - 1);
2355 memcpy (search_buf, search_buf + chunk_size, keep_len);
2357 nr_to_read = min (search_space_len - keep_len, chunk_size);
2359 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2360 search_buf + keep_len, read_addr,
2361 nr_to_read) != nr_to_read)
2363 warning (_("Unable to access target memory at %s, halting search."),
2364 hex_string (read_addr));
2365 do_cleanups (old_cleanups);
2369 start_addr += chunk_size;
2375 do_cleanups (old_cleanups);
2379 /* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2380 sequence of bytes in PATTERN with length PATTERN_LEN.
2382 The result is 1 if found, 0 if not found, and -1 if there was an error
2383 requiring halting of the search (e.g. memory read error).
2384 If the pattern is found the address is recorded in FOUND_ADDRP. */
2387 target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2388 const gdb_byte *pattern, ULONGEST pattern_len,
2389 CORE_ADDR *found_addrp)
2391 struct target_ops *t;
2394 /* We don't use INHERIT to set current_target.to_search_memory,
2395 so we have to scan the target stack and handle targetdebug
2399 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
2400 hex_string (start_addr));
2402 for (t = current_target.beneath; t != NULL; t = t->beneath)
2403 if (t->to_search_memory != NULL)
2408 found = t->to_search_memory (t, start_addr, search_space_len,
2409 pattern, pattern_len, found_addrp);
2413 /* If a special version of to_search_memory isn't available, use the
2415 found = simple_search_memory (current_target.beneath,
2416 start_addr, search_space_len,
2417 pattern, pattern_len, found_addrp);
2421 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
2426 /* Look through the currently pushed targets. If none of them will
2427 be able to restart the currently running process, issue an error
2431 target_require_runnable (void)
2433 struct target_ops *t;
2435 for (t = target_stack; t != NULL; t = t->beneath)
2437 /* If this target knows how to create a new program, then
2438 assume we will still be able to after killing the current
2439 one. Either killing and mourning will not pop T, or else
2440 find_default_run_target will find it again. */
2441 if (t->to_create_inferior != NULL)
2444 /* Do not worry about thread_stratum targets that can not
2445 create inferiors. Assume they will be pushed again if
2446 necessary, and continue to the process_stratum. */
2447 if (t->to_stratum == thread_stratum
2448 || t->to_stratum == arch_stratum)
2452 The \"%s\" target does not support \"run\". Try \"help target\" or \"continue\"."),
2456 /* This function is only called if the target is running. In that
2457 case there should have been a process_stratum target and it
2458 should either know how to create inferiors, or not... */
2459 internal_error (__FILE__, __LINE__, "No targets found");
2462 /* Look through the list of possible targets for a target that can
2463 execute a run or attach command without any other data. This is
2464 used to locate the default process stratum.
2466 If DO_MESG is not NULL, the result is always valid (error() is
2467 called for errors); else, return NULL on error. */
2469 static struct target_ops *
2470 find_default_run_target (char *do_mesg)
2472 struct target_ops **t;
2473 struct target_ops *runable = NULL;
2478 for (t = target_structs; t < target_structs + target_struct_size;
2481 if ((*t)->to_can_run && target_can_run (*t))
2491 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
2500 find_default_attach (struct target_ops *ops, char *args, int from_tty)
2502 struct target_ops *t;
2504 t = find_default_run_target ("attach");
2505 (t->to_attach) (t, args, from_tty);
2510 find_default_create_inferior (struct target_ops *ops,
2511 char *exec_file, char *allargs, char **env,
2514 struct target_ops *t;
2516 t = find_default_run_target ("run");
2517 (t->to_create_inferior) (t, exec_file, allargs, env, from_tty);
2522 find_default_can_async_p (void)
2524 struct target_ops *t;
2526 /* This may be called before the target is pushed on the stack;
2527 look for the default process stratum. If there's none, gdb isn't
2528 configured with a native debugger, and target remote isn't
2530 t = find_default_run_target (NULL);
2531 if (t && t->to_can_async_p)
2532 return (t->to_can_async_p) ();
2537 find_default_is_async_p (void)
2539 struct target_ops *t;
2541 /* This may be called before the target is pushed on the stack;
2542 look for the default process stratum. If there's none, gdb isn't
2543 configured with a native debugger, and target remote isn't
2545 t = find_default_run_target (NULL);
2546 if (t && t->to_is_async_p)
2547 return (t->to_is_async_p) ();
2552 find_default_supports_non_stop (void)
2554 struct target_ops *t;
2556 t = find_default_run_target (NULL);
2557 if (t && t->to_supports_non_stop)
2558 return (t->to_supports_non_stop) ();
2563 target_supports_non_stop (void)
2565 struct target_ops *t;
2566 for (t = ¤t_target; t != NULL; t = t->beneath)
2567 if (t->to_supports_non_stop)
2568 return t->to_supports_non_stop ();
2575 target_get_osdata (const char *type)
2578 struct target_ops *t;
2580 /* If we're already connected to something that can get us OS
2581 related data, use it. Otherwise, try using the native
2583 if (current_target.to_stratum >= process_stratum)
2584 t = current_target.beneath;
2586 t = find_default_run_target ("get OS data");
2591 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
2594 /* Determine the current address space of thread PTID. */
2596 struct address_space *
2597 target_thread_address_space (ptid_t ptid)
2599 struct address_space *aspace;
2600 struct inferior *inf;
2601 struct target_ops *t;
2603 for (t = current_target.beneath; t != NULL; t = t->beneath)
2605 if (t->to_thread_address_space != NULL)
2607 aspace = t->to_thread_address_space (t, ptid);
2608 gdb_assert (aspace);
2611 fprintf_unfiltered (gdb_stdlog,
2612 "target_thread_address_space (%s) = %d\n",
2613 target_pid_to_str (ptid),
2614 address_space_num (aspace));
2619 /* Fall-back to the "main" address space of the inferior. */
2620 inf = find_inferior_pid (ptid_get_pid (ptid));
2622 if (inf == NULL || inf->aspace == NULL)
2623 internal_error (__FILE__, __LINE__, "\
2624 Can't determine the current address space of thread %s\n",
2625 target_pid_to_str (ptid));
2631 default_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
2633 return (len <= gdbarch_ptr_bit (target_gdbarch) / TARGET_CHAR_BIT);
2637 default_watchpoint_addr_within_range (struct target_ops *target,
2639 CORE_ADDR start, int length)
2641 return addr >= start && addr < start + length;
2644 static struct gdbarch *
2645 default_thread_architecture (struct target_ops *ops, ptid_t ptid)
2647 return target_gdbarch;
2663 return_minus_one (void)
2668 /* Find a single runnable target in the stack and return it. If for
2669 some reason there is more than one, return NULL. */
2672 find_run_target (void)
2674 struct target_ops **t;
2675 struct target_ops *runable = NULL;
2680 for (t = target_structs; t < target_structs + target_struct_size; ++t)
2682 if ((*t)->to_can_run && target_can_run (*t))
2689 return (count == 1 ? runable : NULL);
2692 /* Find a single core_stratum target in the list of targets and return it.
2693 If for some reason there is more than one, return NULL. */
2696 find_core_target (void)
2698 struct target_ops **t;
2699 struct target_ops *runable = NULL;
2704 for (t = target_structs; t < target_structs + target_struct_size;
2707 if ((*t)->to_stratum == core_stratum)
2714 return (count == 1 ? runable : NULL);
2718 * Find the next target down the stack from the specified target.
2722 find_target_beneath (struct target_ops *t)
2728 /* The inferior process has died. Long live the inferior! */
2731 generic_mourn_inferior (void)
2735 ptid = inferior_ptid;
2736 inferior_ptid = null_ptid;
2738 if (!ptid_equal (ptid, null_ptid))
2740 int pid = ptid_get_pid (ptid);
2741 exit_inferior (pid);
2744 breakpoint_init_inferior (inf_exited);
2745 registers_changed ();
2747 reopen_exec_file ();
2748 reinit_frame_cache ();
2750 if (deprecated_detach_hook)
2751 deprecated_detach_hook ();
2754 /* Helper function for child_wait and the derivatives of child_wait.
2755 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
2756 translation of that in OURSTATUS. */
2758 store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
2760 if (WIFEXITED (hoststatus))
2762 ourstatus->kind = TARGET_WAITKIND_EXITED;
2763 ourstatus->value.integer = WEXITSTATUS (hoststatus);
2765 else if (!WIFSTOPPED (hoststatus))
2767 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
2768 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
2772 ourstatus->kind = TARGET_WAITKIND_STOPPED;
2773 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
2777 /* Convert a normal process ID to a string. Returns the string in a
2781 normal_pid_to_str (ptid_t ptid)
2783 static char buf[32];
2785 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
2790 dummy_pid_to_str (struct target_ops *ops, ptid_t ptid)
2792 return normal_pid_to_str (ptid);
2795 /* Error-catcher for target_find_memory_regions. */
2797 dummy_find_memory_regions (int (*ignore1) (), void *ignore2)
2799 error (_("Command not implemented for this target."));
2803 /* Error-catcher for target_make_corefile_notes. */
2805 dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
2807 error (_("Command not implemented for this target."));
2811 /* Error-catcher for target_get_bookmark. */
2813 dummy_get_bookmark (char *ignore1, int ignore2)
2819 /* Error-catcher for target_goto_bookmark. */
2821 dummy_goto_bookmark (gdb_byte *ignore, int from_tty)
2826 /* Set up the handful of non-empty slots needed by the dummy target
2830 init_dummy_target (void)
2832 dummy_target.to_shortname = "None";
2833 dummy_target.to_longname = "None";
2834 dummy_target.to_doc = "";
2835 dummy_target.to_attach = find_default_attach;
2836 dummy_target.to_detach =
2837 (void (*)(struct target_ops *, char *, int))target_ignore;
2838 dummy_target.to_create_inferior = find_default_create_inferior;
2839 dummy_target.to_can_async_p = find_default_can_async_p;
2840 dummy_target.to_is_async_p = find_default_is_async_p;
2841 dummy_target.to_supports_non_stop = find_default_supports_non_stop;
2842 dummy_target.to_pid_to_str = dummy_pid_to_str;
2843 dummy_target.to_stratum = dummy_stratum;
2844 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
2845 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
2846 dummy_target.to_get_bookmark = dummy_get_bookmark;
2847 dummy_target.to_goto_bookmark = dummy_goto_bookmark;
2848 dummy_target.to_xfer_partial = default_xfer_partial;
2849 dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
2850 dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero;
2851 dummy_target.to_has_stack = (int (*) (struct target_ops *)) return_zero;
2852 dummy_target.to_has_registers = (int (*) (struct target_ops *)) return_zero;
2853 dummy_target.to_has_execution = (int (*) (struct target_ops *)) return_zero;
2854 dummy_target.to_stopped_by_watchpoint = return_zero;
2855 dummy_target.to_stopped_data_address =
2856 (int (*) (struct target_ops *, CORE_ADDR *)) return_zero;
2857 dummy_target.to_magic = OPS_MAGIC;
2861 debug_to_open (char *args, int from_tty)
2863 debug_target.to_open (args, from_tty);
2865 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
2869 target_close (struct target_ops *targ, int quitting)
2871 if (targ->to_xclose != NULL)
2872 targ->to_xclose (targ, quitting);
2873 else if (targ->to_close != NULL)
2874 targ->to_close (quitting);
2877 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
2881 target_attach (char *args, int from_tty)
2883 struct target_ops *t;
2884 for (t = current_target.beneath; t != NULL; t = t->beneath)
2886 if (t->to_attach != NULL)
2888 t->to_attach (t, args, from_tty);
2890 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n",
2896 internal_error (__FILE__, __LINE__,
2897 "could not find a target to attach");
2901 target_thread_alive (ptid_t ptid)
2903 struct target_ops *t;
2904 for (t = current_target.beneath; t != NULL; t = t->beneath)
2906 if (t->to_thread_alive != NULL)
2910 retval = t->to_thread_alive (t, ptid);
2912 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
2913 PIDGET (ptid), retval);
2923 target_find_new_threads (void)
2925 struct target_ops *t;
2926 for (t = current_target.beneath; t != NULL; t = t->beneath)
2928 if (t->to_find_new_threads != NULL)
2930 t->to_find_new_threads (t);
2932 fprintf_unfiltered (gdb_stdlog, "target_find_new_threads ()\n");
2940 debug_to_post_attach (int pid)
2942 debug_target.to_post_attach (pid);
2944 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
2947 /* Return a pretty printed form of target_waitstatus.
2948 Space for the result is malloc'd, caller must free. */
2951 target_waitstatus_to_string (const struct target_waitstatus *ws)
2953 const char *kind_str = "status->kind = ";
2957 case TARGET_WAITKIND_EXITED:
2958 return xstrprintf ("%sexited, status = %d",
2959 kind_str, ws->value.integer);
2960 case TARGET_WAITKIND_STOPPED:
2961 return xstrprintf ("%sstopped, signal = %s",
2962 kind_str, target_signal_to_name (ws->value.sig));
2963 case TARGET_WAITKIND_SIGNALLED:
2964 return xstrprintf ("%ssignalled, signal = %s",
2965 kind_str, target_signal_to_name (ws->value.sig));
2966 case TARGET_WAITKIND_LOADED:
2967 return xstrprintf ("%sloaded", kind_str);
2968 case TARGET_WAITKIND_FORKED:
2969 return xstrprintf ("%sforked", kind_str);
2970 case TARGET_WAITKIND_VFORKED:
2971 return xstrprintf ("%svforked", kind_str);
2972 case TARGET_WAITKIND_EXECD:
2973 return xstrprintf ("%sexecd", kind_str);
2974 case TARGET_WAITKIND_SYSCALL_ENTRY:
2975 return xstrprintf ("%sentered syscall", kind_str);
2976 case TARGET_WAITKIND_SYSCALL_RETURN:
2977 return xstrprintf ("%sexited syscall", kind_str);
2978 case TARGET_WAITKIND_SPURIOUS:
2979 return xstrprintf ("%sspurious", kind_str);
2980 case TARGET_WAITKIND_IGNORE:
2981 return xstrprintf ("%signore", kind_str);
2982 case TARGET_WAITKIND_NO_HISTORY:
2983 return xstrprintf ("%sno-history", kind_str);
2985 return xstrprintf ("%sunknown???", kind_str);
2990 debug_print_register (const char * func,
2991 struct regcache *regcache, int regno)
2993 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2994 fprintf_unfiltered (gdb_stdlog, "%s ", func);
2995 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
2996 && gdbarch_register_name (gdbarch, regno) != NULL
2997 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
2998 fprintf_unfiltered (gdb_stdlog, "(%s)",
2999 gdbarch_register_name (gdbarch, regno));
3001 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
3002 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
3004 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3005 int i, size = register_size (gdbarch, regno);
3006 unsigned char buf[MAX_REGISTER_SIZE];
3007 regcache_raw_collect (regcache, regno, buf);
3008 fprintf_unfiltered (gdb_stdlog, " = ");
3009 for (i = 0; i < size; i++)
3011 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3013 if (size <= sizeof (LONGEST))
3015 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
3016 fprintf_unfiltered (gdb_stdlog, " %s %s",
3017 core_addr_to_string_nz (val), plongest (val));
3020 fprintf_unfiltered (gdb_stdlog, "\n");
3024 target_fetch_registers (struct regcache *regcache, int regno)
3026 struct target_ops *t;
3027 for (t = current_target.beneath; t != NULL; t = t->beneath)
3029 if (t->to_fetch_registers != NULL)
3031 t->to_fetch_registers (t, regcache, regno);
3033 debug_print_register ("target_fetch_registers", regcache, regno);
3040 target_store_registers (struct regcache *regcache, int regno)
3043 struct target_ops *t;
3044 for (t = current_target.beneath; t != NULL; t = t->beneath)
3046 if (t->to_store_registers != NULL)
3048 t->to_store_registers (t, regcache, regno);
3051 debug_print_register ("target_store_registers", regcache, regno);
3061 target_core_of_thread (ptid_t ptid)
3063 struct target_ops *t;
3065 for (t = current_target.beneath; t != NULL; t = t->beneath)
3067 if (t->to_core_of_thread != NULL)
3069 int retval = t->to_core_of_thread (t, ptid);
3071 fprintf_unfiltered (gdb_stdlog, "target_core_of_thread (%d) = %d\n",
3072 PIDGET (ptid), retval);
3081 target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3083 struct target_ops *t;
3085 for (t = current_target.beneath; t != NULL; t = t->beneath)
3087 if (t->to_verify_memory != NULL)
3089 int retval = t->to_verify_memory (t, data, memaddr, size);
3091 fprintf_unfiltered (gdb_stdlog, "target_verify_memory (%s, %s) = %d\n",
3092 paddress (target_gdbarch, memaddr),
3103 debug_to_prepare_to_store (struct regcache *regcache)
3105 debug_target.to_prepare_to_store (regcache);
3107 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
3111 deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
3112 int write, struct mem_attrib *attrib,
3113 struct target_ops *target)
3117 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
3120 fprintf_unfiltered (gdb_stdlog,
3121 "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
3122 paddress (target_gdbarch, memaddr), len,
3123 write ? "write" : "read", retval);
3129 fputs_unfiltered (", bytes =", gdb_stdlog);
3130 for (i = 0; i < retval; i++)
3132 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
3134 if (targetdebug < 2 && i > 0)
3136 fprintf_unfiltered (gdb_stdlog, " ...");
3139 fprintf_unfiltered (gdb_stdlog, "\n");
3142 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
3146 fputc_unfiltered ('\n', gdb_stdlog);
3152 debug_to_files_info (struct target_ops *target)
3154 debug_target.to_files_info (target);
3156 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
3160 debug_to_insert_breakpoint (struct gdbarch *gdbarch,
3161 struct bp_target_info *bp_tgt)
3165 retval = debug_target.to_insert_breakpoint (gdbarch, bp_tgt);
3167 fprintf_unfiltered (gdb_stdlog,
3168 "target_insert_breakpoint (0x%lx, xxx) = %ld\n",
3169 (unsigned long) bp_tgt->placed_address,
3170 (unsigned long) retval);
3175 debug_to_remove_breakpoint (struct gdbarch *gdbarch,
3176 struct bp_target_info *bp_tgt)
3180 retval = debug_target.to_remove_breakpoint (gdbarch, bp_tgt);
3182 fprintf_unfiltered (gdb_stdlog,
3183 "target_remove_breakpoint (0x%lx, xxx) = %ld\n",
3184 (unsigned long) bp_tgt->placed_address,
3185 (unsigned long) retval);
3190 debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
3194 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
3196 fprintf_unfiltered (gdb_stdlog,
3197 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
3198 (unsigned long) type,
3199 (unsigned long) cnt,
3200 (unsigned long) from_tty,
3201 (unsigned long) retval);
3206 debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
3210 retval = debug_target.to_region_ok_for_hw_watchpoint (addr, len);
3212 fprintf_unfiltered (gdb_stdlog,
3213 "target_region_ok_for_hw_watchpoint (%ld, %ld) = 0x%lx\n",
3214 (unsigned long) addr,
3215 (unsigned long) len,
3216 (unsigned long) retval);
3221 debug_to_stopped_by_watchpoint (void)
3225 retval = debug_target.to_stopped_by_watchpoint ();
3227 fprintf_unfiltered (gdb_stdlog,
3228 "target_stopped_by_watchpoint () = %ld\n",
3229 (unsigned long) retval);
3234 debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
3238 retval = debug_target.to_stopped_data_address (target, addr);
3240 fprintf_unfiltered (gdb_stdlog,
3241 "target_stopped_data_address ([0x%lx]) = %ld\n",
3242 (unsigned long)*addr,
3243 (unsigned long)retval);
3248 debug_to_watchpoint_addr_within_range (struct target_ops *target,
3250 CORE_ADDR start, int length)
3254 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
3257 fprintf_filtered (gdb_stdlog,
3258 "target_watchpoint_addr_within_range (0x%lx, 0x%lx, %d) = %d\n",
3259 (unsigned long) addr, (unsigned long) start, length,
3265 debug_to_insert_hw_breakpoint (struct gdbarch *gdbarch,
3266 struct bp_target_info *bp_tgt)
3270 retval = debug_target.to_insert_hw_breakpoint (gdbarch, bp_tgt);
3272 fprintf_unfiltered (gdb_stdlog,
3273 "target_insert_hw_breakpoint (0x%lx, xxx) = %ld\n",
3274 (unsigned long) bp_tgt->placed_address,
3275 (unsigned long) retval);
3280 debug_to_remove_hw_breakpoint (struct gdbarch *gdbarch,
3281 struct bp_target_info *bp_tgt)
3285 retval = debug_target.to_remove_hw_breakpoint (gdbarch, bp_tgt);
3287 fprintf_unfiltered (gdb_stdlog,
3288 "target_remove_hw_breakpoint (0x%lx, xxx) = %ld\n",
3289 (unsigned long) bp_tgt->placed_address,
3290 (unsigned long) retval);
3295 debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type)
3299 retval = debug_target.to_insert_watchpoint (addr, len, type);
3301 fprintf_unfiltered (gdb_stdlog,
3302 "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n",
3303 (unsigned long) addr, len, type, (unsigned long) retval);
3308 debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type)
3312 retval = debug_target.to_remove_watchpoint (addr, len, type);
3314 fprintf_unfiltered (gdb_stdlog,
3315 "target_remove_watchpoint (0x%lx, %d, %d) = %ld\n",
3316 (unsigned long) addr, len, type, (unsigned long) retval);
3321 debug_to_terminal_init (void)
3323 debug_target.to_terminal_init ();
3325 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
3329 debug_to_terminal_inferior (void)
3331 debug_target.to_terminal_inferior ();
3333 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
3337 debug_to_terminal_ours_for_output (void)
3339 debug_target.to_terminal_ours_for_output ();
3341 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
3345 debug_to_terminal_ours (void)
3347 debug_target.to_terminal_ours ();
3349 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
3353 debug_to_terminal_save_ours (void)
3355 debug_target.to_terminal_save_ours ();
3357 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
3361 debug_to_terminal_info (char *arg, int from_tty)
3363 debug_target.to_terminal_info (arg, from_tty);
3365 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
3370 debug_to_load (char *args, int from_tty)
3372 debug_target.to_load (args, from_tty);
3374 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
3378 debug_to_lookup_symbol (char *name, CORE_ADDR *addrp)
3382 retval = debug_target.to_lookup_symbol (name, addrp);
3384 fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name);
3390 debug_to_post_startup_inferior (ptid_t ptid)
3392 debug_target.to_post_startup_inferior (ptid);
3394 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
3399 debug_to_acknowledge_created_inferior (int pid)
3401 debug_target.to_acknowledge_created_inferior (pid);
3403 fprintf_unfiltered (gdb_stdlog, "target_acknowledge_created_inferior (%d)\n",
3408 debug_to_insert_fork_catchpoint (int pid)
3410 debug_target.to_insert_fork_catchpoint (pid);
3412 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d)\n",
3417 debug_to_remove_fork_catchpoint (int pid)
3421 retval = debug_target.to_remove_fork_catchpoint (pid);
3423 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
3430 debug_to_insert_vfork_catchpoint (int pid)
3432 debug_target.to_insert_vfork_catchpoint (pid);
3434 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d)\n",
3439 debug_to_remove_vfork_catchpoint (int pid)
3443 retval = debug_target.to_remove_vfork_catchpoint (pid);
3445 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
3452 debug_to_insert_exec_catchpoint (int pid)
3454 debug_target.to_insert_exec_catchpoint (pid);
3456 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d)\n",
3461 debug_to_remove_exec_catchpoint (int pid)
3465 retval = debug_target.to_remove_exec_catchpoint (pid);
3467 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
3474 debug_to_has_exited (int pid, int wait_status, int *exit_status)
3478 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
3480 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
3481 pid, wait_status, *exit_status, has_exited);
3487 debug_to_can_run (void)
3491 retval = debug_target.to_can_run ();
3493 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
3499 debug_to_notice_signals (ptid_t ptid)
3501 debug_target.to_notice_signals (ptid);
3503 fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n",
3507 static struct gdbarch *
3508 debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid)
3510 struct gdbarch *retval;
3512 retval = debug_target.to_thread_architecture (ops, ptid);
3514 fprintf_unfiltered (gdb_stdlog, "target_thread_architecture (%s) = %s [%s]\n",
3515 target_pid_to_str (ptid), host_address_to_string (retval),
3516 gdbarch_bfd_arch_info (retval)->printable_name);
3521 debug_to_stop (ptid_t ptid)
3523 debug_target.to_stop (ptid);
3525 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
3526 target_pid_to_str (ptid));
3530 debug_to_rcmd (char *command,
3531 struct ui_file *outbuf)
3533 debug_target.to_rcmd (command, outbuf);
3534 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
3538 debug_to_pid_to_exec_file (int pid)
3542 exec_file = debug_target.to_pid_to_exec_file (pid);
3544 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
3551 setup_target_debug (void)
3553 memcpy (&debug_target, ¤t_target, sizeof debug_target);
3555 current_target.to_open = debug_to_open;
3556 current_target.to_post_attach = debug_to_post_attach;
3557 current_target.to_prepare_to_store = debug_to_prepare_to_store;
3558 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
3559 current_target.to_files_info = debug_to_files_info;
3560 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
3561 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
3562 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
3563 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
3564 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
3565 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
3566 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
3567 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
3568 current_target.to_stopped_data_address = debug_to_stopped_data_address;
3569 current_target.to_watchpoint_addr_within_range = debug_to_watchpoint_addr_within_range;
3570 current_target.to_region_ok_for_hw_watchpoint = debug_to_region_ok_for_hw_watchpoint;
3571 current_target.to_terminal_init = debug_to_terminal_init;
3572 current_target.to_terminal_inferior = debug_to_terminal_inferior;
3573 current_target.to_terminal_ours_for_output = debug_to_terminal_ours_for_output;
3574 current_target.to_terminal_ours = debug_to_terminal_ours;
3575 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
3576 current_target.to_terminal_info = debug_to_terminal_info;
3577 current_target.to_load = debug_to_load;
3578 current_target.to_lookup_symbol = debug_to_lookup_symbol;
3579 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
3580 current_target.to_acknowledge_created_inferior = debug_to_acknowledge_created_inferior;
3581 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
3582 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
3583 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
3584 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
3585 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
3586 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
3587 current_target.to_has_exited = debug_to_has_exited;
3588 current_target.to_can_run = debug_to_can_run;
3589 current_target.to_notice_signals = debug_to_notice_signals;
3590 current_target.to_stop = debug_to_stop;
3591 current_target.to_rcmd = debug_to_rcmd;
3592 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
3593 current_target.to_thread_architecture = debug_to_thread_architecture;
3597 static char targ_desc[] =
3598 "Names of targets and files being debugged.\n\
3599 Shows the entire stack of targets currently in use (including the exec-file,\n\
3600 core-file, and process, if any), as well as the symbol file name.";
3603 do_monitor_command (char *cmd,
3606 if ((current_target.to_rcmd
3607 == (void (*) (char *, struct ui_file *)) tcomplain)
3608 || (current_target.to_rcmd == debug_to_rcmd
3609 && (debug_target.to_rcmd
3610 == (void (*) (char *, struct ui_file *)) tcomplain)))
3611 error (_("\"monitor\" command not supported by this target."));
3612 target_rcmd (cmd, gdb_stdtarg);
3615 /* Print the name of each layers of our target stack. */
3618 maintenance_print_target_stack (char *cmd, int from_tty)
3620 struct target_ops *t;
3622 printf_filtered (_("The current target stack is:\n"));
3624 for (t = target_stack; t != NULL; t = t->beneath)
3626 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
3630 /* Controls if async mode is permitted. */
3631 int target_async_permitted = 0;
3633 /* The set command writes to this variable. If the inferior is
3634 executing, linux_nat_async_permitted is *not* updated. */
3635 static int target_async_permitted_1 = 0;
3638 set_maintenance_target_async_permitted (char *args, int from_tty,
3639 struct cmd_list_element *c)
3641 if (have_live_inferiors ())
3643 target_async_permitted_1 = target_async_permitted;
3644 error (_("Cannot change this setting while the inferior is running."));
3647 target_async_permitted = target_async_permitted_1;
3651 show_maintenance_target_async_permitted (struct ui_file *file, int from_tty,
3652 struct cmd_list_element *c,
3655 fprintf_filtered (file, _("\
3656 Controlling the inferior in asynchronous mode is %s.\n"), value);
3660 initialize_targets (void)
3662 init_dummy_target ();
3663 push_target (&dummy_target);
3665 add_info ("target", target_info, targ_desc);
3666 add_info ("files", target_info, targ_desc);
3668 add_setshow_zinteger_cmd ("target", class_maintenance, &targetdebug, _("\
3669 Set target debugging."), _("\
3670 Show target debugging."), _("\
3671 When non-zero, target debugging is enabled. Higher numbers are more\n\
3672 verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
3676 &setdebuglist, &showdebuglist);
3678 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
3679 &trust_readonly, _("\
3680 Set mode for reading from readonly sections."), _("\
3681 Show mode for reading from readonly sections."), _("\
3682 When this mode is on, memory reads from readonly sections (such as .text)\n\
3683 will be read from the object file instead of from the target. This will\n\
3684 result in significant performance improvement for remote targets."),
3686 show_trust_readonly,
3687 &setlist, &showlist);
3689 add_com ("monitor", class_obscure, do_monitor_command,
3690 _("Send a command to the remote monitor (remote targets only)."));
3692 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
3693 _("Print the name of each layer of the internal target stack."),
3694 &maintenanceprintlist);
3696 add_setshow_boolean_cmd ("target-async", no_class,
3697 &target_async_permitted_1, _("\
3698 Set whether gdb controls the inferior in asynchronous mode."), _("\
3699 Show whether gdb controls the inferior in asynchronous mode."), _("\
3700 Tells gdb whether to control the inferior in asynchronous mode."),
3701 set_maintenance_target_async_permitted,
3702 show_maintenance_target_async_permitted,
3706 add_setshow_boolean_cmd ("stack-cache", class_support,
3707 &stack_cache_enabled_p_1, _("\
3708 Set cache use for stack access."), _("\
3709 Show cache use for stack access."), _("\
3710 When on, use the data cache for all stack access, regardless of any\n\
3711 configured memory regions. This improves remote performance significantly.\n\
3712 By default, caching for stack access is on."),
3713 set_stack_cache_enabled_p,
3714 show_stack_cache_enabled_p,
3715 &setlist, &showlist);
3717 target_dcache = dcache_init ();