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
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"
44 static void target_info (char *, int);
46 static void maybe_kill_then_attach (char *, int);
48 static void kill_or_be_killed (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 void nosupport_runtime (void);
77 static LONGEST default_xfer_partial (struct target_ops *ops,
78 enum target_object object,
79 const char *annex, gdb_byte *readbuf,
80 const gdb_byte *writebuf,
81 ULONGEST offset, LONGEST len);
83 static LONGEST current_xfer_partial (struct target_ops *ops,
84 enum target_object object,
85 const char *annex, gdb_byte *readbuf,
86 const gdb_byte *writebuf,
87 ULONGEST offset, LONGEST len);
89 static LONGEST target_xfer_partial (struct target_ops *ops,
90 enum target_object object,
92 void *readbuf, const void *writebuf,
93 ULONGEST offset, LONGEST len);
95 static void init_dummy_target (void);
97 static struct target_ops debug_target;
99 static void debug_to_open (char *, int);
101 static void debug_to_close (int);
103 static void debug_to_attach (char *, int);
105 static void debug_to_detach (char *, int);
107 static void debug_to_resume (ptid_t, int, enum target_signal);
109 static ptid_t debug_to_wait (ptid_t, struct target_waitstatus *);
111 static void debug_to_fetch_registers (struct regcache *, int);
113 static void debug_to_store_registers (struct regcache *, int);
115 static void debug_to_prepare_to_store (struct regcache *);
117 static void debug_to_files_info (struct target_ops *);
119 static int debug_to_insert_breakpoint (struct bp_target_info *);
121 static int debug_to_remove_breakpoint (struct bp_target_info *);
123 static int debug_to_can_use_hw_breakpoint (int, int, int);
125 static int debug_to_insert_hw_breakpoint (struct bp_target_info *);
127 static int debug_to_remove_hw_breakpoint (struct bp_target_info *);
129 static int debug_to_insert_watchpoint (CORE_ADDR, int, int);
131 static int debug_to_remove_watchpoint (CORE_ADDR, int, int);
133 static int debug_to_stopped_by_watchpoint (void);
135 static int debug_to_stopped_data_address (struct target_ops *, CORE_ADDR *);
137 static int debug_to_watchpoint_addr_within_range (struct target_ops *,
138 CORE_ADDR, CORE_ADDR, int);
140 static int debug_to_region_ok_for_hw_watchpoint (CORE_ADDR, int);
142 static void debug_to_terminal_init (void);
144 static void debug_to_terminal_inferior (void);
146 static void debug_to_terminal_ours_for_output (void);
148 static void debug_to_terminal_save_ours (void);
150 static void debug_to_terminal_ours (void);
152 static void debug_to_terminal_info (char *, int);
154 static void debug_to_kill (void);
156 static void debug_to_load (char *, int);
158 static int debug_to_lookup_symbol (char *, CORE_ADDR *);
160 static void debug_to_mourn_inferior (void);
162 static int debug_to_can_run (void);
164 static void debug_to_notice_signals (ptid_t);
166 static int debug_to_thread_alive (ptid_t);
168 static void debug_to_stop (void);
170 /* NOTE: cagney/2004-09-29: Many targets reference this variable in
171 wierd and mysterious ways. Putting the variable here lets those
172 wierd and mysterious ways keep building while they are being
173 converted to the inferior inheritance structure. */
174 struct target_ops deprecated_child_ops;
176 /* Pointer to array of target architecture structures; the size of the
177 array; the current index into the array; the allocated size of the
179 struct target_ops **target_structs;
180 unsigned target_struct_size;
181 unsigned target_struct_index;
182 unsigned target_struct_allocsize;
183 #define DEFAULT_ALLOCSIZE 10
185 /* The initial current target, so that there is always a semi-valid
188 static struct target_ops dummy_target;
190 /* Top of target stack. */
192 static struct target_ops *target_stack;
194 /* The target structure we are currently using to talk to a process
195 or file or whatever "inferior" we have. */
197 struct target_ops current_target;
199 /* Command list for target. */
201 static struct cmd_list_element *targetlist = NULL;
203 /* Nonzero if we are debugging an attached outside process
204 rather than an inferior. */
208 /* Nonzero if we should trust readonly sections from the
209 executable when reading memory. */
211 static int trust_readonly = 0;
213 /* Nonzero if we should show true memory content including
214 memory breakpoint inserted by gdb. */
216 static int show_memory_breakpoints = 0;
218 /* Non-zero if we want to see trace of target level stuff. */
220 static int targetdebug = 0;
222 show_targetdebug (struct ui_file *file, int from_tty,
223 struct cmd_list_element *c, const char *value)
225 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
228 static void setup_target_debug (void);
230 DCACHE *target_dcache;
232 /* The user just typed 'target' without the name of a target. */
235 target_command (char *arg, int from_tty)
237 fputs_filtered ("Argument required (target name). Try `help target'\n",
241 /* Add a possible target architecture to the list. */
244 add_target (struct target_ops *t)
246 /* Provide default values for all "must have" methods. */
247 if (t->to_xfer_partial == NULL)
248 t->to_xfer_partial = default_xfer_partial;
252 target_struct_allocsize = DEFAULT_ALLOCSIZE;
253 target_structs = (struct target_ops **) xmalloc
254 (target_struct_allocsize * sizeof (*target_structs));
256 if (target_struct_size >= target_struct_allocsize)
258 target_struct_allocsize *= 2;
259 target_structs = (struct target_ops **)
260 xrealloc ((char *) target_structs,
261 target_struct_allocsize * sizeof (*target_structs));
263 target_structs[target_struct_size++] = t;
265 if (targetlist == NULL)
266 add_prefix_cmd ("target", class_run, target_command, _("\
267 Connect to a target machine or process.\n\
268 The first argument is the type or protocol of the target machine.\n\
269 Remaining arguments are interpreted by the target protocol. For more\n\
270 information on the arguments for a particular protocol, type\n\
271 `help target ' followed by the protocol name."),
272 &targetlist, "target ", 0, &cmdlist);
273 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
284 target_load (char *arg, int from_tty)
286 dcache_invalidate (target_dcache);
287 (*current_target.to_load) (arg, from_tty);
291 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
292 struct target_ops *t)
294 errno = EIO; /* Can't read/write this location */
295 return 0; /* No bytes handled */
301 error (_("You can't do that when your target is `%s'"),
302 current_target.to_shortname);
308 error (_("You can't do that without a process to debug."));
312 nosymbol (char *name, CORE_ADDR *addrp)
314 return 1; /* Symbol does not exist in target env */
318 nosupport_runtime (void)
320 if (ptid_equal (inferior_ptid, null_ptid))
323 error (_("No run-time support for this"));
328 default_terminal_info (char *args, int from_tty)
330 printf_unfiltered (_("No saved terminal information.\n"));
333 /* This is the default target_create_inferior and target_attach function.
334 If the current target is executing, it asks whether to kill it off.
335 If this function returns without calling error(), it has killed off
336 the target, and the operation should be attempted. */
339 kill_or_be_killed (int from_tty)
341 if (target_has_execution)
343 printf_unfiltered (_("You are already running a program:\n"));
344 target_files_info ();
345 if (query ("Kill it? "))
348 if (target_has_execution)
349 error (_("Killing the program did not help."));
354 error (_("Program not killed."));
361 maybe_kill_then_attach (char *args, int from_tty)
363 kill_or_be_killed (from_tty);
364 target_attach (args, from_tty);
368 maybe_kill_then_create_inferior (char *exec, char *args, char **env,
371 kill_or_be_killed (0);
372 target_create_inferior (exec, args, env, from_tty);
375 /* Go through the target stack from top to bottom, copying over zero
376 entries in current_target, then filling in still empty entries. In
377 effect, we are doing class inheritance through the pushed target
380 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
381 is currently implemented, is that it discards any knowledge of
382 which target an inherited method originally belonged to.
383 Consequently, new new target methods should instead explicitly and
384 locally search the target stack for the target that can handle the
388 update_current_target (void)
390 struct target_ops *t;
392 /* First, reset current's contents. */
393 memset (¤t_target, 0, sizeof (current_target));
395 #define INHERIT(FIELD, TARGET) \
396 if (!current_target.FIELD) \
397 current_target.FIELD = (TARGET)->FIELD
399 for (t = target_stack; t; t = t->beneath)
401 INHERIT (to_shortname, t);
402 INHERIT (to_longname, t);
404 INHERIT (to_open, t);
405 INHERIT (to_close, t);
406 INHERIT (to_attach, t);
407 INHERIT (to_post_attach, t);
408 INHERIT (to_attach_no_wait, t);
409 INHERIT (to_detach, t);
410 /* Do not inherit to_disconnect. */
411 INHERIT (to_resume, t);
412 INHERIT (to_wait, t);
413 INHERIT (to_fetch_registers, t);
414 INHERIT (to_store_registers, t);
415 INHERIT (to_prepare_to_store, t);
416 INHERIT (deprecated_xfer_memory, t);
417 INHERIT (to_files_info, t);
418 INHERIT (to_insert_breakpoint, t);
419 INHERIT (to_remove_breakpoint, t);
420 INHERIT (to_can_use_hw_breakpoint, t);
421 INHERIT (to_insert_hw_breakpoint, t);
422 INHERIT (to_remove_hw_breakpoint, t);
423 INHERIT (to_insert_watchpoint, t);
424 INHERIT (to_remove_watchpoint, t);
425 INHERIT (to_stopped_data_address, t);
426 INHERIT (to_have_steppable_watchpoint, t);
427 INHERIT (to_have_continuable_watchpoint, t);
428 INHERIT (to_stopped_by_watchpoint, t);
429 INHERIT (to_watchpoint_addr_within_range, t);
430 INHERIT (to_region_ok_for_hw_watchpoint, t);
431 INHERIT (to_terminal_init, t);
432 INHERIT (to_terminal_inferior, t);
433 INHERIT (to_terminal_ours_for_output, t);
434 INHERIT (to_terminal_ours, t);
435 INHERIT (to_terminal_save_ours, t);
436 INHERIT (to_terminal_info, t);
437 INHERIT (to_kill, t);
438 INHERIT (to_load, t);
439 INHERIT (to_lookup_symbol, t);
440 INHERIT (to_create_inferior, t);
441 INHERIT (to_post_startup_inferior, t);
442 INHERIT (to_acknowledge_created_inferior, t);
443 INHERIT (to_insert_fork_catchpoint, t);
444 INHERIT (to_remove_fork_catchpoint, t);
445 INHERIT (to_insert_vfork_catchpoint, t);
446 INHERIT (to_remove_vfork_catchpoint, t);
447 /* Do not inherit to_follow_fork. */
448 INHERIT (to_insert_exec_catchpoint, t);
449 INHERIT (to_remove_exec_catchpoint, t);
450 INHERIT (to_has_exited, t);
451 INHERIT (to_mourn_inferior, t);
452 INHERIT (to_can_run, t);
453 INHERIT (to_notice_signals, t);
454 INHERIT (to_thread_alive, t);
455 INHERIT (to_find_new_threads, t);
456 INHERIT (to_pid_to_str, t);
457 INHERIT (to_extra_thread_info, t);
458 INHERIT (to_stop, t);
459 /* Do not inherit to_xfer_partial. */
460 INHERIT (to_rcmd, t);
461 INHERIT (to_pid_to_exec_file, t);
462 INHERIT (to_log_command, t);
463 INHERIT (to_stratum, t);
464 INHERIT (to_has_all_memory, t);
465 INHERIT (to_has_memory, t);
466 INHERIT (to_has_stack, t);
467 INHERIT (to_has_registers, t);
468 INHERIT (to_has_execution, t);
469 INHERIT (to_has_thread_control, t);
470 INHERIT (to_sections, t);
471 INHERIT (to_sections_end, t);
472 INHERIT (to_can_async_p, t);
473 INHERIT (to_is_async_p, t);
474 INHERIT (to_async, t);
475 INHERIT (to_async_mask, t);
476 INHERIT (to_find_memory_regions, t);
477 INHERIT (to_make_corefile_notes, t);
478 INHERIT (to_get_thread_local_address, t);
479 /* Do not inherit to_read_description. */
480 /* Do not inherit to_search_memory. */
481 INHERIT (to_magic, t);
482 /* Do not inherit to_memory_map. */
483 /* Do not inherit to_flash_erase. */
484 /* Do not inherit to_flash_done. */
488 /* Clean up a target struct so it no longer has any zero pointers in
489 it. Some entries are defaulted to a method that print an error,
490 others are hard-wired to a standard recursive default. */
492 #define de_fault(field, value) \
493 if (!current_target.field) \
494 current_target.field = value
497 (void (*) (char *, int))
503 maybe_kill_then_attach);
504 de_fault (to_post_attach,
508 (void (*) (char *, int))
511 (void (*) (ptid_t, int, enum target_signal))
514 (ptid_t (*) (ptid_t, struct target_waitstatus *))
516 de_fault (to_fetch_registers,
517 (void (*) (struct regcache *, int))
519 de_fault (to_store_registers,
520 (void (*) (struct regcache *, int))
522 de_fault (to_prepare_to_store,
523 (void (*) (struct regcache *))
525 de_fault (deprecated_xfer_memory,
526 (int (*) (CORE_ADDR, gdb_byte *, int, int, struct mem_attrib *, struct target_ops *))
528 de_fault (to_files_info,
529 (void (*) (struct target_ops *))
531 de_fault (to_insert_breakpoint,
532 memory_insert_breakpoint);
533 de_fault (to_remove_breakpoint,
534 memory_remove_breakpoint);
535 de_fault (to_can_use_hw_breakpoint,
536 (int (*) (int, int, int))
538 de_fault (to_insert_hw_breakpoint,
539 (int (*) (struct bp_target_info *))
541 de_fault (to_remove_hw_breakpoint,
542 (int (*) (struct bp_target_info *))
544 de_fault (to_insert_watchpoint,
545 (int (*) (CORE_ADDR, int, int))
547 de_fault (to_remove_watchpoint,
548 (int (*) (CORE_ADDR, int, int))
550 de_fault (to_stopped_by_watchpoint,
553 de_fault (to_stopped_data_address,
554 (int (*) (struct target_ops *, CORE_ADDR *))
556 de_fault (to_watchpoint_addr_within_range,
557 default_watchpoint_addr_within_range);
558 de_fault (to_region_ok_for_hw_watchpoint,
559 default_region_ok_for_hw_watchpoint);
560 de_fault (to_terminal_init,
563 de_fault (to_terminal_inferior,
566 de_fault (to_terminal_ours_for_output,
569 de_fault (to_terminal_ours,
572 de_fault (to_terminal_save_ours,
575 de_fault (to_terminal_info,
576 default_terminal_info);
581 (void (*) (char *, int))
583 de_fault (to_lookup_symbol,
584 (int (*) (char *, CORE_ADDR *))
586 de_fault (to_create_inferior,
587 maybe_kill_then_create_inferior);
588 de_fault (to_post_startup_inferior,
591 de_fault (to_acknowledge_created_inferior,
594 de_fault (to_insert_fork_catchpoint,
597 de_fault (to_remove_fork_catchpoint,
600 de_fault (to_insert_vfork_catchpoint,
603 de_fault (to_remove_vfork_catchpoint,
606 de_fault (to_insert_exec_catchpoint,
609 de_fault (to_remove_exec_catchpoint,
612 de_fault (to_has_exited,
613 (int (*) (int, int, int *))
615 de_fault (to_mourn_inferior,
618 de_fault (to_can_run,
620 de_fault (to_notice_signals,
623 de_fault (to_thread_alive,
626 de_fault (to_find_new_threads,
629 de_fault (to_extra_thread_info,
630 (char *(*) (struct thread_info *))
635 current_target.to_xfer_partial = current_xfer_partial;
637 (void (*) (char *, struct ui_file *))
639 de_fault (to_pid_to_exec_file,
642 de_fault (to_can_async_p,
645 de_fault (to_is_async_p,
649 (void (*) (void (*) (enum inferior_event_type, void*), void*))
651 de_fault (to_async_mask,
654 current_target.to_read_description = NULL;
657 /* Finally, position the target-stack beneath the squashed
658 "current_target". That way code looking for a non-inherited
659 target method can quickly and simply find it. */
660 current_target.beneath = target_stack;
663 setup_target_debug ();
666 /* Mark OPS as a running target. This reverses the effect
667 of target_mark_exited. */
670 target_mark_running (struct target_ops *ops)
672 struct target_ops *t;
674 for (t = target_stack; t != NULL; t = t->beneath)
678 internal_error (__FILE__, __LINE__,
679 "Attempted to mark unpushed target \"%s\" as running",
682 ops->to_has_execution = 1;
683 ops->to_has_all_memory = 1;
684 ops->to_has_memory = 1;
685 ops->to_has_stack = 1;
686 ops->to_has_registers = 1;
688 update_current_target ();
691 /* Mark OPS as a non-running target. This reverses the effect
692 of target_mark_running. */
695 target_mark_exited (struct target_ops *ops)
697 struct target_ops *t;
699 for (t = target_stack; t != NULL; t = t->beneath)
703 internal_error (__FILE__, __LINE__,
704 "Attempted to mark unpushed target \"%s\" as running",
707 ops->to_has_execution = 0;
708 ops->to_has_all_memory = 0;
709 ops->to_has_memory = 0;
710 ops->to_has_stack = 0;
711 ops->to_has_registers = 0;
713 update_current_target ();
716 /* Push a new target type into the stack of the existing target accessors,
717 possibly superseding some of the existing accessors.
719 Result is zero if the pushed target ended up on top of the stack,
720 nonzero if at least one target is on top of it.
722 Rather than allow an empty stack, we always have the dummy target at
723 the bottom stratum, so we can call the function vectors without
727 push_target (struct target_ops *t)
729 struct target_ops **cur;
731 /* Check magic number. If wrong, it probably means someone changed
732 the struct definition, but not all the places that initialize one. */
733 if (t->to_magic != OPS_MAGIC)
735 fprintf_unfiltered (gdb_stderr,
736 "Magic number of %s target struct wrong\n",
738 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
741 /* Find the proper stratum to install this target in. */
742 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
744 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
748 /* If there's already targets at this stratum, remove them. */
749 /* FIXME: cagney/2003-10-15: I think this should be popping all
750 targets to CUR, and not just those at this stratum level. */
751 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
753 /* There's already something at this stratum level. Close it,
754 and un-hook it from the stack. */
755 struct target_ops *tmp = (*cur);
756 (*cur) = (*cur)->beneath;
758 target_close (tmp, 0);
761 /* We have removed all targets in our stratum, now add the new one. */
765 update_current_target ();
768 return (t != target_stack);
771 /* Remove a target_ops vector from the stack, wherever it may be.
772 Return how many times it was removed (0 or 1). */
775 unpush_target (struct target_ops *t)
777 struct target_ops **cur;
778 struct target_ops *tmp;
780 /* Look for the specified target. Note that we assume that a target
781 can only occur once in the target stack. */
783 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
790 return 0; /* Didn't find target_ops, quit now */
792 /* NOTE: cagney/2003-12-06: In '94 the close call was made
793 unconditional by moving it to before the above check that the
794 target was in the target stack (something about "Change the way
795 pushing and popping of targets work to support target overlays
796 and inheritance"). This doesn't make much sense - only open
797 targets should be closed. */
800 /* Unchain the target */
802 (*cur) = (*cur)->beneath;
805 update_current_target ();
813 target_close (¤t_target, 0); /* Let it clean up */
814 if (unpush_target (target_stack) == 1)
817 fprintf_unfiltered (gdb_stderr,
818 "pop_target couldn't find target %s\n",
819 current_target.to_shortname);
820 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
823 /* Using the objfile specified in OBJFILE, find the address for the
824 current thread's thread-local storage with offset OFFSET. */
826 target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
828 volatile CORE_ADDR addr = 0;
830 if (target_get_thread_local_address_p ()
831 && gdbarch_fetch_tls_load_module_address_p (current_gdbarch))
833 ptid_t ptid = inferior_ptid;
834 volatile struct gdb_exception ex;
836 TRY_CATCH (ex, RETURN_MASK_ALL)
840 /* Fetch the load module address for this objfile. */
841 lm_addr = gdbarch_fetch_tls_load_module_address (current_gdbarch,
843 /* If it's 0, throw the appropriate exception. */
845 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
846 _("TLS load module not found"));
848 addr = target_get_thread_local_address (ptid, lm_addr, offset);
850 /* If an error occurred, print TLS related messages here. Otherwise,
851 throw the error to some higher catcher. */
854 int objfile_is_library = (objfile->flags & OBJF_SHARED);
858 case TLS_NO_LIBRARY_SUPPORT_ERROR:
859 error (_("Cannot find thread-local variables in this thread library."));
861 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
862 if (objfile_is_library)
863 error (_("Cannot find shared library `%s' in dynamic"
864 " linker's load module list"), objfile->name);
866 error (_("Cannot find executable file `%s' in dynamic"
867 " linker's load module list"), objfile->name);
869 case TLS_NOT_ALLOCATED_YET_ERROR:
870 if (objfile_is_library)
871 error (_("The inferior has not yet allocated storage for"
872 " thread-local variables in\n"
873 "the shared library `%s'\n"
875 objfile->name, target_pid_to_str (ptid));
877 error (_("The inferior has not yet allocated storage for"
878 " thread-local variables in\n"
879 "the executable `%s'\n"
881 objfile->name, target_pid_to_str (ptid));
883 case TLS_GENERIC_ERROR:
884 if (objfile_is_library)
885 error (_("Cannot find thread-local storage for %s, "
886 "shared library %s:\n%s"),
887 target_pid_to_str (ptid),
888 objfile->name, ex.message);
890 error (_("Cannot find thread-local storage for %s, "
891 "executable file %s:\n%s"),
892 target_pid_to_str (ptid),
893 objfile->name, ex.message);
896 throw_exception (ex);
901 /* It wouldn't be wrong here to try a gdbarch method, too; finding
902 TLS is an ABI-specific thing. But we don't do that yet. */
904 error (_("Cannot find thread-local variables on this target"));
910 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
912 /* target_read_string -- read a null terminated string, up to LEN bytes,
913 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
914 Set *STRING to a pointer to malloc'd memory containing the data; the caller
915 is responsible for freeing it. Return the number of bytes successfully
919 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
921 int tlen, origlen, offset, i;
925 int buffer_allocated;
927 unsigned int nbytes_read = 0;
931 /* Small for testing. */
932 buffer_allocated = 4;
933 buffer = xmalloc (buffer_allocated);
940 tlen = MIN (len, 4 - (memaddr & 3));
941 offset = memaddr & 3;
943 errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
946 /* The transfer request might have crossed the boundary to an
947 unallocated region of memory. Retry the transfer, requesting
951 errcode = target_read_memory (memaddr, buf, 1);
956 if (bufptr - buffer + tlen > buffer_allocated)
959 bytes = bufptr - buffer;
960 buffer_allocated *= 2;
961 buffer = xrealloc (buffer, buffer_allocated);
962 bufptr = buffer + bytes;
965 for (i = 0; i < tlen; i++)
967 *bufptr++ = buf[i + offset];
968 if (buf[i + offset] == '\000')
970 nbytes_read += i + 1;
986 /* Find a section containing ADDR. */
987 struct section_table *
988 target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
990 struct section_table *secp;
991 for (secp = target->to_sections;
992 secp < target->to_sections_end;
995 if (addr >= secp->addr && addr < secp->endaddr)
1001 /* Perform a partial memory transfer. The arguments and return
1002 value are just as for target_xfer_partial. */
1005 memory_xfer_partial (struct target_ops *ops, void *readbuf, const void *writebuf,
1006 ULONGEST memaddr, LONGEST len)
1010 struct mem_region *region;
1012 /* Zero length requests are ok and require no work. */
1016 /* Try the executable file, if "trust-readonly-sections" is set. */
1017 if (readbuf != NULL && trust_readonly)
1019 struct section_table *secp;
1021 secp = target_section_by_addr (ops, memaddr);
1023 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
1025 return xfer_memory (memaddr, readbuf, len, 0, NULL, ops);
1028 /* Likewise for accesses to unmapped overlay sections. */
1029 if (readbuf != NULL && overlay_debugging)
1031 asection *section = find_pc_overlay (memaddr);
1032 if (pc_in_unmapped_range (memaddr, section))
1033 return xfer_memory (memaddr, readbuf, len, 0, NULL, ops);
1036 /* Try GDB's internal data cache. */
1037 region = lookup_mem_region (memaddr);
1038 /* region->hi == 0 means there's no upper bound. */
1039 if (memaddr + len < region->hi || region->hi == 0)
1042 reg_len = region->hi - memaddr;
1044 switch (region->attrib.mode)
1047 if (writebuf != NULL)
1052 if (readbuf != NULL)
1057 /* We only support writing to flash during "load" for now. */
1058 if (writebuf != NULL)
1059 error (_("Writing to flash memory forbidden in this context"));
1066 if (region->attrib.cache)
1068 /* FIXME drow/2006-08-09: This call discards OPS, so the raw
1069 memory request will start back at current_target. */
1070 if (readbuf != NULL)
1071 res = dcache_xfer_memory (target_dcache, memaddr, readbuf,
1074 /* FIXME drow/2006-08-09: If we're going to preserve const
1075 correctness dcache_xfer_memory should take readbuf and
1077 res = dcache_xfer_memory (target_dcache, memaddr,
1084 if (readbuf && !show_memory_breakpoints)
1085 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1090 /* If none of those methods found the memory we wanted, fall back
1091 to a target partial transfer. Normally a single call to
1092 to_xfer_partial is enough; if it doesn't recognize an object
1093 it will call the to_xfer_partial of the next target down.
1094 But for memory this won't do. Memory is the only target
1095 object which can be read from more than one valid target.
1096 A core file, for instance, could have some of memory but
1097 delegate other bits to the target below it. So, we must
1098 manually try all targets. */
1102 res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1103 readbuf, writebuf, memaddr, reg_len);
1107 /* We want to continue past core files to executables, but not
1108 past a running target's memory. */
1109 if (ops->to_has_all_memory)
1114 while (ops != NULL);
1116 if (readbuf && !show_memory_breakpoints)
1117 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1119 /* If we still haven't got anything, return the last error. We
1125 restore_show_memory_breakpoints (void *arg)
1127 show_memory_breakpoints = (uintptr_t) arg;
1131 make_show_memory_breakpoints_cleanup (int show)
1133 int current = show_memory_breakpoints;
1134 show_memory_breakpoints = show;
1136 return make_cleanup (restore_show_memory_breakpoints,
1137 (void *) (uintptr_t) current);
1141 target_xfer_partial (struct target_ops *ops,
1142 enum target_object object, const char *annex,
1143 void *readbuf, const void *writebuf,
1144 ULONGEST offset, LONGEST len)
1148 gdb_assert (ops->to_xfer_partial != NULL);
1150 /* If this is a memory transfer, let the memory-specific code
1151 have a look at it instead. Memory transfers are more
1153 if (object == TARGET_OBJECT_MEMORY)
1154 retval = memory_xfer_partial (ops, readbuf, writebuf, offset, len);
1157 enum target_object raw_object = object;
1159 /* If this is a raw memory transfer, request the normal
1160 memory object from other layers. */
1161 if (raw_object == TARGET_OBJECT_RAW_MEMORY)
1162 raw_object = TARGET_OBJECT_MEMORY;
1164 retval = ops->to_xfer_partial (ops, raw_object, annex, readbuf,
1165 writebuf, offset, len);
1170 const unsigned char *myaddr = NULL;
1172 fprintf_unfiltered (gdb_stdlog,
1173 "%s:target_xfer_partial (%d, %s, 0x%lx, 0x%lx, 0x%s, %s) = %s",
1176 (annex ? annex : "(null)"),
1177 (long) readbuf, (long) writebuf,
1178 paddr_nz (offset), paddr_d (len), paddr_d (retval));
1184 if (retval > 0 && myaddr != NULL)
1188 fputs_unfiltered (", bytes =", gdb_stdlog);
1189 for (i = 0; i < retval; i++)
1191 if ((((long) &(myaddr[i])) & 0xf) == 0)
1193 if (targetdebug < 2 && i > 0)
1195 fprintf_unfiltered (gdb_stdlog, " ...");
1198 fprintf_unfiltered (gdb_stdlog, "\n");
1201 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1205 fputc_unfiltered ('\n', gdb_stdlog);
1210 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
1211 GDB's memory at MYADDR. Returns either 0 for success or an errno value
1212 if any error occurs.
1214 If an error occurs, no guarantee is made about the contents of the data at
1215 MYADDR. In particular, the caller should not depend upon partial reads
1216 filling the buffer with good data. There is no way for the caller to know
1217 how much good data might have been transfered anyway. Callers that can
1218 deal with partial reads should call target_read (which will retry until
1219 it makes no progress, and then return how much was transferred). */
1222 target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
1224 if (target_read (¤t_target, TARGET_OBJECT_MEMORY, NULL,
1225 myaddr, memaddr, len) == len)
1232 target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
1234 if (target_write (¤t_target, TARGET_OBJECT_MEMORY, NULL,
1235 myaddr, memaddr, len) == len)
1241 /* Fetch the target's memory map. */
1244 target_memory_map (void)
1246 VEC(mem_region_s) *result;
1247 struct mem_region *last_one, *this_one;
1249 struct target_ops *t;
1252 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1254 for (t = current_target.beneath; t != NULL; t = t->beneath)
1255 if (t->to_memory_map != NULL)
1261 result = t->to_memory_map (t);
1265 qsort (VEC_address (mem_region_s, result),
1266 VEC_length (mem_region_s, result),
1267 sizeof (struct mem_region), mem_region_cmp);
1269 /* Check that regions do not overlap. Simultaneously assign
1270 a numbering for the "mem" commands to use to refer to
1273 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1275 this_one->number = ix;
1277 if (last_one && last_one->hi > this_one->lo)
1279 warning (_("Overlapping regions in memory map: ignoring"));
1280 VEC_free (mem_region_s, result);
1283 last_one = this_one;
1290 target_flash_erase (ULONGEST address, LONGEST length)
1292 struct target_ops *t;
1294 for (t = current_target.beneath; t != NULL; t = t->beneath)
1295 if (t->to_flash_erase != NULL)
1298 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
1299 paddr (address), phex (length, 0));
1300 t->to_flash_erase (t, address, length);
1308 target_flash_done (void)
1310 struct target_ops *t;
1312 for (t = current_target.beneath; t != NULL; t = t->beneath)
1313 if (t->to_flash_done != NULL)
1316 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
1317 t->to_flash_done (t);
1324 #ifndef target_stopped_data_address_p
1326 target_stopped_data_address_p (struct target_ops *target)
1328 if (target->to_stopped_data_address
1329 == (int (*) (struct target_ops *, CORE_ADDR *)) return_zero)
1331 if (target->to_stopped_data_address == debug_to_stopped_data_address
1332 && (debug_target.to_stopped_data_address
1333 == (int (*) (struct target_ops *, CORE_ADDR *)) return_zero))
1340 show_trust_readonly (struct ui_file *file, int from_tty,
1341 struct cmd_list_element *c, const char *value)
1343 fprintf_filtered (file, _("\
1344 Mode for reading from readonly sections is %s.\n"),
1348 /* More generic transfers. */
1351 default_xfer_partial (struct target_ops *ops, enum target_object object,
1352 const char *annex, gdb_byte *readbuf,
1353 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1355 if (object == TARGET_OBJECT_MEMORY
1356 && ops->deprecated_xfer_memory != NULL)
1357 /* If available, fall back to the target's
1358 "deprecated_xfer_memory" method. */
1362 if (writebuf != NULL)
1364 void *buffer = xmalloc (len);
1365 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1366 memcpy (buffer, writebuf, len);
1367 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1368 1/*write*/, NULL, ops);
1369 do_cleanups (cleanup);
1371 if (readbuf != NULL)
1372 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1373 0/*read*/, NULL, ops);
1376 else if (xfered == 0 && errno == 0)
1377 /* "deprecated_xfer_memory" uses 0, cross checked against
1378 ERRNO as one indication of an error. */
1383 else if (ops->beneath != NULL)
1384 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1385 readbuf, writebuf, offset, len);
1390 /* The xfer_partial handler for the topmost target. Unlike the default,
1391 it does not need to handle memory specially; it just passes all
1392 requests down the stack. */
1395 current_xfer_partial (struct target_ops *ops, enum target_object object,
1396 const char *annex, gdb_byte *readbuf,
1397 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1399 if (ops->beneath != NULL)
1400 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1401 readbuf, writebuf, offset, len);
1406 /* Target vector read/write partial wrapper functions.
1408 NOTE: cagney/2003-10-21: I wonder if having "to_xfer_partial
1409 (inbuf, outbuf)", instead of separate read/write methods, make life
1413 target_read_partial (struct target_ops *ops,
1414 enum target_object object,
1415 const char *annex, gdb_byte *buf,
1416 ULONGEST offset, LONGEST len)
1418 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len);
1422 target_write_partial (struct target_ops *ops,
1423 enum target_object object,
1424 const char *annex, const gdb_byte *buf,
1425 ULONGEST offset, LONGEST len)
1427 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len);
1430 /* Wrappers to perform the full transfer. */
1432 target_read (struct target_ops *ops,
1433 enum target_object object,
1434 const char *annex, gdb_byte *buf,
1435 ULONGEST offset, LONGEST len)
1438 while (xfered < len)
1440 LONGEST xfer = target_read_partial (ops, object, annex,
1441 (gdb_byte *) buf + xfered,
1442 offset + xfered, len - xfered);
1443 /* Call an observer, notifying them of the xfer progress? */
1455 target_read_until_error (struct target_ops *ops,
1456 enum target_object object,
1457 const char *annex, gdb_byte *buf,
1458 ULONGEST offset, LONGEST len)
1461 while (xfered < len)
1463 LONGEST xfer = target_read_partial (ops, object, annex,
1464 (gdb_byte *) buf + xfered,
1465 offset + xfered, len - xfered);
1466 /* Call an observer, notifying them of the xfer progress? */
1471 /* We've got an error. Try to read in smaller blocks. */
1472 ULONGEST start = offset + xfered;
1473 ULONGEST remaining = len - xfered;
1476 /* If an attempt was made to read a random memory address,
1477 it's likely that the very first byte is not accessible.
1478 Try reading the first byte, to avoid doing log N tries
1480 xfer = target_read_partial (ops, object, annex,
1481 (gdb_byte *) buf + xfered, start, 1);
1490 xfer = target_read_partial (ops, object, annex,
1491 (gdb_byte *) buf + xfered,
1501 /* We have successfully read the first half. So, the
1502 error must be in the second half. Adjust start and
1503 remaining to point at the second half. */
1520 /* An alternative to target_write with progress callbacks. */
1523 target_write_with_progress (struct target_ops *ops,
1524 enum target_object object,
1525 const char *annex, const gdb_byte *buf,
1526 ULONGEST offset, LONGEST len,
1527 void (*progress) (ULONGEST, void *), void *baton)
1531 /* Give the progress callback a chance to set up. */
1533 (*progress) (0, baton);
1535 while (xfered < len)
1537 LONGEST xfer = target_write_partial (ops, object, annex,
1538 (gdb_byte *) buf + xfered,
1539 offset + xfered, len - xfered);
1547 (*progress) (xfer, baton);
1556 target_write (struct target_ops *ops,
1557 enum target_object object,
1558 const char *annex, const gdb_byte *buf,
1559 ULONGEST offset, LONGEST len)
1561 return target_write_with_progress (ops, object, annex, buf, offset, len,
1565 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1566 the size of the transferred data. PADDING additional bytes are
1567 available in *BUF_P. This is a helper function for
1568 target_read_alloc; see the declaration of that function for more
1572 target_read_alloc_1 (struct target_ops *ops, enum target_object object,
1573 const char *annex, gdb_byte **buf_p, int padding)
1575 size_t buf_alloc, buf_pos;
1579 /* This function does not have a length parameter; it reads the
1580 entire OBJECT). Also, it doesn't support objects fetched partly
1581 from one target and partly from another (in a different stratum,
1582 e.g. a core file and an executable). Both reasons make it
1583 unsuitable for reading memory. */
1584 gdb_assert (object != TARGET_OBJECT_MEMORY);
1586 /* Start by reading up to 4K at a time. The target will throttle
1587 this number down if necessary. */
1589 buf = xmalloc (buf_alloc);
1593 n = target_read_partial (ops, object, annex, &buf[buf_pos],
1594 buf_pos, buf_alloc - buf_pos - padding);
1597 /* An error occurred. */
1603 /* Read all there was. */
1613 /* If the buffer is filling up, expand it. */
1614 if (buf_alloc < buf_pos * 2)
1617 buf = xrealloc (buf, buf_alloc);
1624 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1625 the size of the transferred data. See the declaration in "target.h"
1626 function for more information about the return value. */
1629 target_read_alloc (struct target_ops *ops, enum target_object object,
1630 const char *annex, gdb_byte **buf_p)
1632 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
1635 /* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
1636 returned as a string, allocated using xmalloc. If an error occurs
1637 or the transfer is unsupported, NULL is returned. Empty objects
1638 are returned as allocated but empty strings. A warning is issued
1639 if the result contains any embedded NUL bytes. */
1642 target_read_stralloc (struct target_ops *ops, enum target_object object,
1646 LONGEST transferred;
1648 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
1650 if (transferred < 0)
1653 if (transferred == 0)
1654 return xstrdup ("");
1656 buffer[transferred] = 0;
1657 if (strlen (buffer) < transferred)
1658 warning (_("target object %d, annex %s, "
1659 "contained unexpected null characters"),
1660 (int) object, annex ? annex : "(none)");
1662 return (char *) buffer;
1665 /* Memory transfer methods. */
1668 get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
1671 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL, buf, addr, len)
1673 memory_error (EIO, addr);
1677 get_target_memory_unsigned (struct target_ops *ops,
1678 CORE_ADDR addr, int len)
1680 gdb_byte buf[sizeof (ULONGEST)];
1682 gdb_assert (len <= sizeof (buf));
1683 get_target_memory (ops, addr, buf, len);
1684 return extract_unsigned_integer (buf, len);
1688 target_info (char *args, int from_tty)
1690 struct target_ops *t;
1691 int has_all_mem = 0;
1693 if (symfile_objfile != NULL)
1694 printf_unfiltered (_("Symbols from \"%s\".\n"), symfile_objfile->name);
1696 for (t = target_stack; t != NULL; t = t->beneath)
1698 if (!t->to_has_memory)
1701 if ((int) (t->to_stratum) <= (int) dummy_stratum)
1704 printf_unfiltered (_("\tWhile running this, GDB does not access memory from...\n"));
1705 printf_unfiltered ("%s:\n", t->to_longname);
1706 (t->to_files_info) (t);
1707 has_all_mem = t->to_has_all_memory;
1711 /* This function is called before any new inferior is created, e.g.
1712 by running a program, attaching, or connecting to a target.
1713 It cleans up any state from previous invocations which might
1714 change between runs. This is a subset of what target_preopen
1715 resets (things which might change between targets). */
1718 target_pre_inferior (int from_tty)
1720 invalidate_target_mem_regions ();
1722 target_clear_description ();
1725 /* This is to be called by the open routine before it does
1729 target_preopen (int from_tty)
1733 if (target_has_execution)
1736 || query (_("A program is being debugged already. Kill it? ")))
1739 error (_("Program not killed."));
1742 /* Calling target_kill may remove the target from the stack. But if
1743 it doesn't (which seems like a win for UDI), remove it now. */
1745 if (target_has_execution)
1748 target_pre_inferior (from_tty);
1751 /* Detach a target after doing deferred register stores. */
1754 target_detach (char *args, int from_tty)
1756 /* If we're in breakpoints-always-inserted mode, have to
1757 remove them before detaching. */
1758 remove_breakpoints ();
1760 (current_target.to_detach) (args, from_tty);
1764 target_disconnect (char *args, int from_tty)
1766 struct target_ops *t;
1768 /* If we're in breakpoints-always-inserted mode, have to
1769 remove them before disconnecting. */
1770 remove_breakpoints ();
1772 for (t = current_target.beneath; t != NULL; t = t->beneath)
1773 if (t->to_disconnect != NULL)
1776 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
1778 t->to_disconnect (t, args, from_tty);
1786 target_resume (ptid_t ptid, int step, enum target_signal signal)
1788 dcache_invalidate (target_dcache);
1789 (*current_target.to_resume) (ptid, step, signal);
1790 set_executing (ptid, 1);
1791 set_running (ptid, 1);
1793 /* Look through the list of possible targets for a target that can
1797 target_follow_fork (int follow_child)
1799 struct target_ops *t;
1801 for (t = current_target.beneath; t != NULL; t = t->beneath)
1803 if (t->to_follow_fork != NULL)
1805 int retval = t->to_follow_fork (t, follow_child);
1807 fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n",
1808 follow_child, retval);
1813 /* Some target returned a fork event, but did not know how to follow it. */
1814 internal_error (__FILE__, __LINE__,
1815 "could not find a target to follow fork");
1818 /* Look for a target which can describe architectural features, starting
1819 from TARGET. If we find one, return its description. */
1821 const struct target_desc *
1822 target_read_description (struct target_ops *target)
1824 struct target_ops *t;
1826 for (t = target; t != NULL; t = t->beneath)
1827 if (t->to_read_description != NULL)
1829 const struct target_desc *tdesc;
1831 tdesc = t->to_read_description (t);
1839 /* The default implementation of to_search_memory.
1840 This implements a basic search of memory, reading target memory and
1841 performing the search here (as opposed to performing the search in on the
1842 target side with, for example, gdbserver). */
1845 simple_search_memory (struct target_ops *ops,
1846 CORE_ADDR start_addr, ULONGEST search_space_len,
1847 const gdb_byte *pattern, ULONGEST pattern_len,
1848 CORE_ADDR *found_addrp)
1850 /* NOTE: also defined in find.c testcase. */
1851 #define SEARCH_CHUNK_SIZE 16000
1852 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
1853 /* Buffer to hold memory contents for searching. */
1854 gdb_byte *search_buf;
1855 unsigned search_buf_size;
1856 struct cleanup *old_cleanups;
1858 search_buf_size = chunk_size + pattern_len - 1;
1860 /* No point in trying to allocate a buffer larger than the search space. */
1861 if (search_space_len < search_buf_size)
1862 search_buf_size = search_space_len;
1864 search_buf = malloc (search_buf_size);
1865 if (search_buf == NULL)
1866 error (_("Unable to allocate memory to perform the search."));
1867 old_cleanups = make_cleanup (free_current_contents, &search_buf);
1869 /* Prime the search buffer. */
1871 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
1872 search_buf, start_addr, search_buf_size) != search_buf_size)
1874 warning (_("Unable to access target memory at %s, halting search."),
1875 hex_string (start_addr));
1876 do_cleanups (old_cleanups);
1880 /* Perform the search.
1882 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
1883 When we've scanned N bytes we copy the trailing bytes to the start and
1884 read in another N bytes. */
1886 while (search_space_len >= pattern_len)
1888 gdb_byte *found_ptr;
1889 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
1891 found_ptr = memmem (search_buf, nr_search_bytes,
1892 pattern, pattern_len);
1894 if (found_ptr != NULL)
1896 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
1897 *found_addrp = found_addr;
1898 do_cleanups (old_cleanups);
1902 /* Not found in this chunk, skip to next chunk. */
1904 /* Don't let search_space_len wrap here, it's unsigned. */
1905 if (search_space_len >= chunk_size)
1906 search_space_len -= chunk_size;
1908 search_space_len = 0;
1910 if (search_space_len >= pattern_len)
1912 unsigned keep_len = search_buf_size - chunk_size;
1913 CORE_ADDR read_addr = start_addr + keep_len;
1916 /* Copy the trailing part of the previous iteration to the front
1917 of the buffer for the next iteration. */
1918 gdb_assert (keep_len == pattern_len - 1);
1919 memcpy (search_buf, search_buf + chunk_size, keep_len);
1921 nr_to_read = min (search_space_len - keep_len, chunk_size);
1923 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
1924 search_buf + keep_len, read_addr,
1925 nr_to_read) != nr_to_read)
1927 warning (_("Unable to access target memory at %s, halting search."),
1928 hex_string (read_addr));
1929 do_cleanups (old_cleanups);
1933 start_addr += chunk_size;
1939 do_cleanups (old_cleanups);
1943 /* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
1944 sequence of bytes in PATTERN with length PATTERN_LEN.
1946 The result is 1 if found, 0 if not found, and -1 if there was an error
1947 requiring halting of the search (e.g. memory read error).
1948 If the pattern is found the address is recorded in FOUND_ADDRP. */
1951 target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
1952 const gdb_byte *pattern, ULONGEST pattern_len,
1953 CORE_ADDR *found_addrp)
1955 struct target_ops *t;
1958 /* We don't use INHERIT to set current_target.to_search_memory,
1959 so we have to scan the target stack and handle targetdebug
1963 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
1964 hex_string (start_addr));
1966 for (t = current_target.beneath; t != NULL; t = t->beneath)
1967 if (t->to_search_memory != NULL)
1972 found = t->to_search_memory (t, start_addr, search_space_len,
1973 pattern, pattern_len, found_addrp);
1977 /* If a special version of to_search_memory isn't available, use the
1979 found = simple_search_memory (¤t_target,
1980 start_addr, search_space_len,
1981 pattern, pattern_len, found_addrp);
1985 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
1990 /* Look through the currently pushed targets. If none of them will
1991 be able to restart the currently running process, issue an error
1995 target_require_runnable (void)
1997 struct target_ops *t;
1999 for (t = target_stack; t != NULL; t = t->beneath)
2001 /* If this target knows how to create a new program, then
2002 assume we will still be able to after killing the current
2003 one. Either killing and mourning will not pop T, or else
2004 find_default_run_target will find it again. */
2005 if (t->to_create_inferior != NULL)
2008 /* Do not worry about thread_stratum targets that can not
2009 create inferiors. Assume they will be pushed again if
2010 necessary, and continue to the process_stratum. */
2011 if (t->to_stratum == thread_stratum)
2015 The \"%s\" target does not support \"run\". Try \"help target\" or \"continue\"."),
2019 /* This function is only called if the target is running. In that
2020 case there should have been a process_stratum target and it
2021 should either know how to create inferiors, or not... */
2022 internal_error (__FILE__, __LINE__, "No targets found");
2025 /* Look through the list of possible targets for a target that can
2026 execute a run or attach command without any other data. This is
2027 used to locate the default process stratum.
2029 If DO_MESG is not NULL, the result is always valid (error() is
2030 called for errors); else, return NULL on error. */
2032 static struct target_ops *
2033 find_default_run_target (char *do_mesg)
2035 struct target_ops **t;
2036 struct target_ops *runable = NULL;
2041 for (t = target_structs; t < target_structs + target_struct_size;
2044 if ((*t)->to_can_run && target_can_run (*t))
2054 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
2063 find_default_attach (char *args, int from_tty)
2065 struct target_ops *t;
2067 t = find_default_run_target ("attach");
2068 (t->to_attach) (args, from_tty);
2073 find_default_create_inferior (char *exec_file, char *allargs, char **env,
2076 struct target_ops *t;
2078 t = find_default_run_target ("run");
2079 (t->to_create_inferior) (exec_file, allargs, env, from_tty);
2084 find_default_can_async_p (void)
2086 struct target_ops *t;
2088 /* This may be called before the target is pushed on the stack;
2089 look for the default process stratum. If there's none, gdb isn't
2090 configured with a native debugger, and target remote isn't
2092 t = find_default_run_target (NULL);
2093 if (t && t->to_can_async_p)
2094 return (t->to_can_async_p) ();
2099 find_default_is_async_p (void)
2101 struct target_ops *t;
2103 /* This may be called before the target is pushed on the stack;
2104 look for the default process stratum. If there's none, gdb isn't
2105 configured with a native debugger, and target remote isn't
2107 t = find_default_run_target (NULL);
2108 if (t && t->to_is_async_p)
2109 return (t->to_is_async_p) ();
2114 default_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
2116 return (len <= TYPE_LENGTH (builtin_type_void_data_ptr));
2120 default_watchpoint_addr_within_range (struct target_ops *target,
2122 CORE_ADDR start, int length)
2124 return addr >= start && addr < start + length;
2140 return_minus_one (void)
2146 * Resize the to_sections pointer. Also make sure that anyone that
2147 * was holding on to an old value of it gets updated.
2148 * Returns the old size.
2152 target_resize_to_sections (struct target_ops *target, int num_added)
2154 struct target_ops **t;
2155 struct section_table *old_value;
2158 old_value = target->to_sections;
2160 if (target->to_sections)
2162 old_count = target->to_sections_end - target->to_sections;
2163 target->to_sections = (struct section_table *)
2164 xrealloc ((char *) target->to_sections,
2165 (sizeof (struct section_table)) * (num_added + old_count));
2170 target->to_sections = (struct section_table *)
2171 xmalloc ((sizeof (struct section_table)) * num_added);
2173 target->to_sections_end = target->to_sections + (num_added + old_count);
2175 /* Check to see if anyone else was pointing to this structure.
2176 If old_value was null, then no one was. */
2180 for (t = target_structs; t < target_structs + target_struct_size;
2183 if ((*t)->to_sections == old_value)
2185 (*t)->to_sections = target->to_sections;
2186 (*t)->to_sections_end = target->to_sections_end;
2189 /* There is a flattened view of the target stack in current_target,
2190 so its to_sections pointer might also need updating. */
2191 if (current_target.to_sections == old_value)
2193 current_target.to_sections = target->to_sections;
2194 current_target.to_sections_end = target->to_sections_end;
2202 /* Remove all target sections taken from ABFD.
2204 Scan the current target stack for targets whose section tables
2205 refer to sections from BFD, and remove those sections. We use this
2206 when we notice that the inferior has unloaded a shared object, for
2209 remove_target_sections (bfd *abfd)
2211 struct target_ops **t;
2213 for (t = target_structs; t < target_structs + target_struct_size; t++)
2215 struct section_table *src, *dest;
2217 dest = (*t)->to_sections;
2218 for (src = (*t)->to_sections; src < (*t)->to_sections_end; src++)
2219 if (src->bfd != abfd)
2221 /* Keep this section. */
2222 if (dest < src) *dest = *src;
2226 /* If we've dropped any sections, resize the section table. */
2228 target_resize_to_sections (*t, dest - src);
2235 /* Find a single runnable target in the stack and return it. If for
2236 some reason there is more than one, return NULL. */
2239 find_run_target (void)
2241 struct target_ops **t;
2242 struct target_ops *runable = NULL;
2247 for (t = target_structs; t < target_structs + target_struct_size; ++t)
2249 if ((*t)->to_can_run && target_can_run (*t))
2256 return (count == 1 ? runable : NULL);
2259 /* Find a single core_stratum target in the list of targets and return it.
2260 If for some reason there is more than one, return NULL. */
2263 find_core_target (void)
2265 struct target_ops **t;
2266 struct target_ops *runable = NULL;
2271 for (t = target_structs; t < target_structs + target_struct_size;
2274 if ((*t)->to_stratum == core_stratum)
2281 return (count == 1 ? runable : NULL);
2285 * Find the next target down the stack from the specified target.
2289 find_target_beneath (struct target_ops *t)
2295 /* The inferior process has died. Long live the inferior! */
2298 generic_mourn_inferior (void)
2300 extern int show_breakpoint_hit_counts;
2302 inferior_ptid = null_ptid;
2304 breakpoint_init_inferior (inf_exited);
2305 registers_changed ();
2307 reopen_exec_file ();
2308 reinit_frame_cache ();
2310 /* It is confusing to the user for ignore counts to stick around
2311 from previous runs of the inferior. So clear them. */
2312 /* However, it is more confusing for the ignore counts to disappear when
2313 using hit counts. So don't clear them if we're counting hits. */
2314 if (!show_breakpoint_hit_counts)
2315 breakpoint_clear_ignore_counts ();
2317 if (deprecated_detach_hook)
2318 deprecated_detach_hook ();
2321 /* Helper function for child_wait and the derivatives of child_wait.
2322 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
2323 translation of that in OURSTATUS. */
2325 store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
2327 if (WIFEXITED (hoststatus))
2329 ourstatus->kind = TARGET_WAITKIND_EXITED;
2330 ourstatus->value.integer = WEXITSTATUS (hoststatus);
2332 else if (!WIFSTOPPED (hoststatus))
2334 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
2335 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
2339 ourstatus->kind = TARGET_WAITKIND_STOPPED;
2340 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
2344 /* Returns zero to leave the inferior alone, one to interrupt it. */
2345 int (*target_activity_function) (void);
2346 int target_activity_fd;
2348 /* Convert a normal process ID to a string. Returns the string in a
2352 normal_pid_to_str (ptid_t ptid)
2354 static char buf[32];
2356 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
2360 /* Error-catcher for target_find_memory_regions */
2361 static int dummy_find_memory_regions (int (*ignore1) (), void *ignore2)
2363 error (_("No target."));
2367 /* Error-catcher for target_make_corefile_notes */
2368 static char * dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
2370 error (_("No target."));
2374 /* Set up the handful of non-empty slots needed by the dummy target
2378 init_dummy_target (void)
2380 dummy_target.to_shortname = "None";
2381 dummy_target.to_longname = "None";
2382 dummy_target.to_doc = "";
2383 dummy_target.to_attach = find_default_attach;
2384 dummy_target.to_create_inferior = find_default_create_inferior;
2385 dummy_target.to_can_async_p = find_default_can_async_p;
2386 dummy_target.to_is_async_p = find_default_is_async_p;
2387 dummy_target.to_pid_to_str = normal_pid_to_str;
2388 dummy_target.to_stratum = dummy_stratum;
2389 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
2390 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
2391 dummy_target.to_xfer_partial = default_xfer_partial;
2392 dummy_target.to_magic = OPS_MAGIC;
2396 debug_to_open (char *args, int from_tty)
2398 debug_target.to_open (args, from_tty);
2400 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
2404 debug_to_close (int quitting)
2406 target_close (&debug_target, quitting);
2407 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
2411 target_close (struct target_ops *targ, int quitting)
2413 if (targ->to_xclose != NULL)
2414 targ->to_xclose (targ, quitting);
2415 else if (targ->to_close != NULL)
2416 targ->to_close (quitting);
2420 debug_to_attach (char *args, int from_tty)
2422 debug_target.to_attach (args, from_tty);
2424 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n", args, from_tty);
2429 debug_to_post_attach (int pid)
2431 debug_target.to_post_attach (pid);
2433 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
2437 debug_to_detach (char *args, int from_tty)
2439 debug_target.to_detach (args, from_tty);
2441 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n", args, from_tty);
2445 debug_to_resume (ptid_t ptid, int step, enum target_signal siggnal)
2447 debug_target.to_resume (ptid, step, siggnal);
2449 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n", PIDGET (ptid),
2450 step ? "step" : "continue",
2451 target_signal_to_name (siggnal));
2455 debug_to_wait (ptid_t ptid, struct target_waitstatus *status)
2459 retval = debug_target.to_wait (ptid, status);
2461 fprintf_unfiltered (gdb_stdlog,
2462 "target_wait (%d, status) = %d, ", PIDGET (ptid),
2464 fprintf_unfiltered (gdb_stdlog, "status->kind = ");
2465 switch (status->kind)
2467 case TARGET_WAITKIND_EXITED:
2468 fprintf_unfiltered (gdb_stdlog, "exited, status = %d\n",
2469 status->value.integer);
2471 case TARGET_WAITKIND_STOPPED:
2472 fprintf_unfiltered (gdb_stdlog, "stopped, signal = %s\n",
2473 target_signal_to_name (status->value.sig));
2475 case TARGET_WAITKIND_SIGNALLED:
2476 fprintf_unfiltered (gdb_stdlog, "signalled, signal = %s\n",
2477 target_signal_to_name (status->value.sig));
2479 case TARGET_WAITKIND_LOADED:
2480 fprintf_unfiltered (gdb_stdlog, "loaded\n");
2482 case TARGET_WAITKIND_FORKED:
2483 fprintf_unfiltered (gdb_stdlog, "forked\n");
2485 case TARGET_WAITKIND_VFORKED:
2486 fprintf_unfiltered (gdb_stdlog, "vforked\n");
2488 case TARGET_WAITKIND_EXECD:
2489 fprintf_unfiltered (gdb_stdlog, "execd\n");
2491 case TARGET_WAITKIND_SPURIOUS:
2492 fprintf_unfiltered (gdb_stdlog, "spurious\n");
2495 fprintf_unfiltered (gdb_stdlog, "unknown???\n");
2503 debug_print_register (const char * func,
2504 struct regcache *regcache, int regno)
2506 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2507 fprintf_unfiltered (gdb_stdlog, "%s ", func);
2508 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
2509 + gdbarch_num_pseudo_regs (gdbarch)
2510 && gdbarch_register_name (gdbarch, regno) != NULL
2511 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
2512 fprintf_unfiltered (gdb_stdlog, "(%s)",
2513 gdbarch_register_name (gdbarch, regno));
2515 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
2518 int i, size = register_size (gdbarch, regno);
2519 unsigned char buf[MAX_REGISTER_SIZE];
2520 regcache_cooked_read (regcache, regno, buf);
2521 fprintf_unfiltered (gdb_stdlog, " = ");
2522 for (i = 0; i < size; i++)
2524 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
2526 if (size <= sizeof (LONGEST))
2528 ULONGEST val = extract_unsigned_integer (buf, size);
2529 fprintf_unfiltered (gdb_stdlog, " 0x%s %s",
2530 paddr_nz (val), paddr_d (val));
2533 fprintf_unfiltered (gdb_stdlog, "\n");
2537 debug_to_fetch_registers (struct regcache *regcache, int regno)
2539 debug_target.to_fetch_registers (regcache, regno);
2540 debug_print_register ("target_fetch_registers", regcache, regno);
2544 debug_to_store_registers (struct regcache *regcache, int regno)
2546 debug_target.to_store_registers (regcache, regno);
2547 debug_print_register ("target_store_registers", regcache, regno);
2548 fprintf_unfiltered (gdb_stdlog, "\n");
2552 debug_to_prepare_to_store (struct regcache *regcache)
2554 debug_target.to_prepare_to_store (regcache);
2556 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
2560 deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
2561 int write, struct mem_attrib *attrib,
2562 struct target_ops *target)
2566 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
2569 fprintf_unfiltered (gdb_stdlog,
2570 "target_xfer_memory (0x%x, xxx, %d, %s, xxx) = %d",
2571 (unsigned int) memaddr, /* possable truncate long long */
2572 len, write ? "write" : "read", retval);
2578 fputs_unfiltered (", bytes =", gdb_stdlog);
2579 for (i = 0; i < retval; i++)
2581 if ((((long) &(myaddr[i])) & 0xf) == 0)
2583 if (targetdebug < 2 && i > 0)
2585 fprintf_unfiltered (gdb_stdlog, " ...");
2588 fprintf_unfiltered (gdb_stdlog, "\n");
2591 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
2595 fputc_unfiltered ('\n', gdb_stdlog);
2601 debug_to_files_info (struct target_ops *target)
2603 debug_target.to_files_info (target);
2605 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
2609 debug_to_insert_breakpoint (struct bp_target_info *bp_tgt)
2613 retval = debug_target.to_insert_breakpoint (bp_tgt);
2615 fprintf_unfiltered (gdb_stdlog,
2616 "target_insert_breakpoint (0x%lx, xxx) = %ld\n",
2617 (unsigned long) bp_tgt->placed_address,
2618 (unsigned long) retval);
2623 debug_to_remove_breakpoint (struct bp_target_info *bp_tgt)
2627 retval = debug_target.to_remove_breakpoint (bp_tgt);
2629 fprintf_unfiltered (gdb_stdlog,
2630 "target_remove_breakpoint (0x%lx, xxx) = %ld\n",
2631 (unsigned long) bp_tgt->placed_address,
2632 (unsigned long) retval);
2637 debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
2641 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
2643 fprintf_unfiltered (gdb_stdlog,
2644 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
2645 (unsigned long) type,
2646 (unsigned long) cnt,
2647 (unsigned long) from_tty,
2648 (unsigned long) retval);
2653 debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
2657 retval = debug_target.to_region_ok_for_hw_watchpoint (addr, len);
2659 fprintf_unfiltered (gdb_stdlog,
2660 "TARGET_REGION_OK_FOR_HW_WATCHPOINT (%ld, %ld) = 0x%lx\n",
2661 (unsigned long) addr,
2662 (unsigned long) len,
2663 (unsigned long) retval);
2668 debug_to_stopped_by_watchpoint (void)
2672 retval = debug_target.to_stopped_by_watchpoint ();
2674 fprintf_unfiltered (gdb_stdlog,
2675 "STOPPED_BY_WATCHPOINT () = %ld\n",
2676 (unsigned long) retval);
2681 debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
2685 retval = debug_target.to_stopped_data_address (target, addr);
2687 fprintf_unfiltered (gdb_stdlog,
2688 "target_stopped_data_address ([0x%lx]) = %ld\n",
2689 (unsigned long)*addr,
2690 (unsigned long)retval);
2695 debug_to_watchpoint_addr_within_range (struct target_ops *target,
2697 CORE_ADDR start, int length)
2701 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
2704 fprintf_filtered (gdb_stdlog,
2705 "target_watchpoint_addr_within_range (0x%lx, 0x%lx, %d) = %d\n",
2706 (unsigned long) addr, (unsigned long) start, length,
2712 debug_to_insert_hw_breakpoint (struct bp_target_info *bp_tgt)
2716 retval = debug_target.to_insert_hw_breakpoint (bp_tgt);
2718 fprintf_unfiltered (gdb_stdlog,
2719 "target_insert_hw_breakpoint (0x%lx, xxx) = %ld\n",
2720 (unsigned long) bp_tgt->placed_address,
2721 (unsigned long) retval);
2726 debug_to_remove_hw_breakpoint (struct bp_target_info *bp_tgt)
2730 retval = debug_target.to_remove_hw_breakpoint (bp_tgt);
2732 fprintf_unfiltered (gdb_stdlog,
2733 "target_remove_hw_breakpoint (0x%lx, xxx) = %ld\n",
2734 (unsigned long) bp_tgt->placed_address,
2735 (unsigned long) retval);
2740 debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type)
2744 retval = debug_target.to_insert_watchpoint (addr, len, type);
2746 fprintf_unfiltered (gdb_stdlog,
2747 "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n",
2748 (unsigned long) addr, len, type, (unsigned long) retval);
2753 debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type)
2757 retval = debug_target.to_remove_watchpoint (addr, len, type);
2759 fprintf_unfiltered (gdb_stdlog,
2760 "target_remove_watchpoint (0x%lx, %d, %d) = %ld\n",
2761 (unsigned long) addr, len, type, (unsigned long) retval);
2766 debug_to_terminal_init (void)
2768 debug_target.to_terminal_init ();
2770 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
2774 debug_to_terminal_inferior (void)
2776 debug_target.to_terminal_inferior ();
2778 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
2782 debug_to_terminal_ours_for_output (void)
2784 debug_target.to_terminal_ours_for_output ();
2786 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
2790 debug_to_terminal_ours (void)
2792 debug_target.to_terminal_ours ();
2794 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
2798 debug_to_terminal_save_ours (void)
2800 debug_target.to_terminal_save_ours ();
2802 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
2806 debug_to_terminal_info (char *arg, int from_tty)
2808 debug_target.to_terminal_info (arg, from_tty);
2810 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
2815 debug_to_kill (void)
2817 debug_target.to_kill ();
2819 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
2823 debug_to_load (char *args, int from_tty)
2825 debug_target.to_load (args, from_tty);
2827 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
2831 debug_to_lookup_symbol (char *name, CORE_ADDR *addrp)
2835 retval = debug_target.to_lookup_symbol (name, addrp);
2837 fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name);
2843 debug_to_create_inferior (char *exec_file, char *args, char **env,
2846 debug_target.to_create_inferior (exec_file, args, env, from_tty);
2848 fprintf_unfiltered (gdb_stdlog, "target_create_inferior (%s, %s, xxx, %d)\n",
2849 exec_file, args, from_tty);
2853 debug_to_post_startup_inferior (ptid_t ptid)
2855 debug_target.to_post_startup_inferior (ptid);
2857 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
2862 debug_to_acknowledge_created_inferior (int pid)
2864 debug_target.to_acknowledge_created_inferior (pid);
2866 fprintf_unfiltered (gdb_stdlog, "target_acknowledge_created_inferior (%d)\n",
2871 debug_to_insert_fork_catchpoint (int pid)
2873 debug_target.to_insert_fork_catchpoint (pid);
2875 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d)\n",
2880 debug_to_remove_fork_catchpoint (int pid)
2884 retval = debug_target.to_remove_fork_catchpoint (pid);
2886 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
2893 debug_to_insert_vfork_catchpoint (int pid)
2895 debug_target.to_insert_vfork_catchpoint (pid);
2897 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d)\n",
2902 debug_to_remove_vfork_catchpoint (int pid)
2906 retval = debug_target.to_remove_vfork_catchpoint (pid);
2908 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
2915 debug_to_insert_exec_catchpoint (int pid)
2917 debug_target.to_insert_exec_catchpoint (pid);
2919 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d)\n",
2924 debug_to_remove_exec_catchpoint (int pid)
2928 retval = debug_target.to_remove_exec_catchpoint (pid);
2930 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
2937 debug_to_has_exited (int pid, int wait_status, int *exit_status)
2941 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
2943 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
2944 pid, wait_status, *exit_status, has_exited);
2950 debug_to_mourn_inferior (void)
2952 debug_target.to_mourn_inferior ();
2954 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2958 debug_to_can_run (void)
2962 retval = debug_target.to_can_run ();
2964 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
2970 debug_to_notice_signals (ptid_t ptid)
2972 debug_target.to_notice_signals (ptid);
2974 fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n",
2979 debug_to_thread_alive (ptid_t ptid)
2983 retval = debug_target.to_thread_alive (ptid);
2985 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
2986 PIDGET (ptid), retval);
2992 debug_to_find_new_threads (void)
2994 debug_target.to_find_new_threads ();
2996 fputs_unfiltered ("target_find_new_threads ()\n", gdb_stdlog);
3000 debug_to_stop (void)
3002 debug_target.to_stop ();
3004 fprintf_unfiltered (gdb_stdlog, "target_stop ()\n");
3008 debug_to_rcmd (char *command,
3009 struct ui_file *outbuf)
3011 debug_target.to_rcmd (command, outbuf);
3012 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
3016 debug_to_pid_to_exec_file (int pid)
3020 exec_file = debug_target.to_pid_to_exec_file (pid);
3022 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
3029 setup_target_debug (void)
3031 memcpy (&debug_target, ¤t_target, sizeof debug_target);
3033 current_target.to_open = debug_to_open;
3034 current_target.to_close = debug_to_close;
3035 current_target.to_attach = debug_to_attach;
3036 current_target.to_post_attach = debug_to_post_attach;
3037 current_target.to_detach = debug_to_detach;
3038 current_target.to_resume = debug_to_resume;
3039 current_target.to_wait = debug_to_wait;
3040 current_target.to_fetch_registers = debug_to_fetch_registers;
3041 current_target.to_store_registers = debug_to_store_registers;
3042 current_target.to_prepare_to_store = debug_to_prepare_to_store;
3043 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
3044 current_target.to_files_info = debug_to_files_info;
3045 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
3046 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
3047 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
3048 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
3049 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
3050 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
3051 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
3052 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
3053 current_target.to_stopped_data_address = debug_to_stopped_data_address;
3054 current_target.to_watchpoint_addr_within_range = debug_to_watchpoint_addr_within_range;
3055 current_target.to_region_ok_for_hw_watchpoint = debug_to_region_ok_for_hw_watchpoint;
3056 current_target.to_terminal_init = debug_to_terminal_init;
3057 current_target.to_terminal_inferior = debug_to_terminal_inferior;
3058 current_target.to_terminal_ours_for_output = debug_to_terminal_ours_for_output;
3059 current_target.to_terminal_ours = debug_to_terminal_ours;
3060 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
3061 current_target.to_terminal_info = debug_to_terminal_info;
3062 current_target.to_kill = debug_to_kill;
3063 current_target.to_load = debug_to_load;
3064 current_target.to_lookup_symbol = debug_to_lookup_symbol;
3065 current_target.to_create_inferior = debug_to_create_inferior;
3066 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
3067 current_target.to_acknowledge_created_inferior = debug_to_acknowledge_created_inferior;
3068 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
3069 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
3070 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
3071 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
3072 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
3073 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
3074 current_target.to_has_exited = debug_to_has_exited;
3075 current_target.to_mourn_inferior = debug_to_mourn_inferior;
3076 current_target.to_can_run = debug_to_can_run;
3077 current_target.to_notice_signals = debug_to_notice_signals;
3078 current_target.to_thread_alive = debug_to_thread_alive;
3079 current_target.to_find_new_threads = debug_to_find_new_threads;
3080 current_target.to_stop = debug_to_stop;
3081 current_target.to_rcmd = debug_to_rcmd;
3082 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
3086 static char targ_desc[] =
3087 "Names of targets and files being debugged.\n\
3088 Shows the entire stack of targets currently in use (including the exec-file,\n\
3089 core-file, and process, if any), as well as the symbol file name.";
3092 do_monitor_command (char *cmd,
3095 if ((current_target.to_rcmd
3096 == (void (*) (char *, struct ui_file *)) tcomplain)
3097 || (current_target.to_rcmd == debug_to_rcmd
3098 && (debug_target.to_rcmd
3099 == (void (*) (char *, struct ui_file *)) tcomplain)))
3100 error (_("\"monitor\" command not supported by this target."));
3101 target_rcmd (cmd, gdb_stdtarg);
3104 /* Print the name of each layers of our target stack. */
3107 maintenance_print_target_stack (char *cmd, int from_tty)
3109 struct target_ops *t;
3111 printf_filtered (_("The current target stack is:\n"));
3113 for (t = target_stack; t != NULL; t = t->beneath)
3115 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
3120 initialize_targets (void)
3122 init_dummy_target ();
3123 push_target (&dummy_target);
3125 add_info ("target", target_info, targ_desc);
3126 add_info ("files", target_info, targ_desc);
3128 add_setshow_zinteger_cmd ("target", class_maintenance, &targetdebug, _("\
3129 Set target debugging."), _("\
3130 Show target debugging."), _("\
3131 When non-zero, target debugging is enabled. Higher numbers are more\n\
3132 verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
3136 &setdebuglist, &showdebuglist);
3138 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
3139 &trust_readonly, _("\
3140 Set mode for reading from readonly sections."), _("\
3141 Show mode for reading from readonly sections."), _("\
3142 When this mode is on, memory reads from readonly sections (such as .text)\n\
3143 will be read from the object file instead of from the target. This will\n\
3144 result in significant performance improvement for remote targets."),
3146 show_trust_readonly,
3147 &setlist, &showlist);
3149 add_com ("monitor", class_obscure, do_monitor_command,
3150 _("Send a command to the remote monitor (remote targets only)."));
3152 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
3153 _("Print the name of each layer of the internal target stack."),
3154 &maintenanceprintlist);
3156 target_dcache = dcache_init ();