morse(6): correct email for original author
[dragonfly.git] / contrib / gdb-7 / gdb / target.c
bloba961d7b831ee2b9fe317c20aa18f6393a80db860
1 /* Select target systems and architectures at runtime for GDB.
3 Copyright (C) 1990-2013 Free Software Foundation, Inc.
5 Contributed by Cygnus Support.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "defs.h"
23 #include <errno.h>
24 #include "gdb_string.h"
25 #include "target.h"
26 #include "gdbcmd.h"
27 #include "symtab.h"
28 #include "inferior.h"
29 #include "bfd.h"
30 #include "symfile.h"
31 #include "objfiles.h"
32 #include "dcache.h"
33 #include <signal.h>
34 #include "regcache.h"
35 #include "gdb_assert.h"
36 #include "gdbcore.h"
37 #include "exceptions.h"
38 #include "target-descriptions.h"
39 #include "gdbthread.h"
40 #include "solib.h"
41 #include "exec.h"
42 #include "inline-frame.h"
43 #include "tracepoint.h"
44 #include "gdb/fileio.h"
45 #include "agent.h"
47 static void target_info (char *, int);
49 static void default_terminal_info (char *, int);
51 static int default_watchpoint_addr_within_range (struct target_ops *,
52 CORE_ADDR, CORE_ADDR, int);
54 static int default_region_ok_for_hw_watchpoint (CORE_ADDR, int);
56 static void tcomplain (void) ATTRIBUTE_NORETURN;
58 static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
60 static int return_zero (void);
62 static int return_one (void);
64 static int return_minus_one (void);
66 void target_ignore (void);
68 static void target_command (char *, int);
70 static struct target_ops *find_default_run_target (char *);
72 static LONGEST default_xfer_partial (struct target_ops *ops,
73 enum target_object object,
74 const char *annex, gdb_byte *readbuf,
75 const gdb_byte *writebuf,
76 ULONGEST offset, LONGEST len);
78 static LONGEST current_xfer_partial (struct target_ops *ops,
79 enum target_object object,
80 const char *annex, gdb_byte *readbuf,
81 const gdb_byte *writebuf,
82 ULONGEST offset, LONGEST len);
84 static LONGEST target_xfer_partial (struct target_ops *ops,
85 enum target_object object,
86 const char *annex,
87 void *readbuf, const void *writebuf,
88 ULONGEST offset, LONGEST len);
90 static struct gdbarch *default_thread_architecture (struct target_ops *ops,
91 ptid_t ptid);
93 static void init_dummy_target (void);
95 static struct target_ops debug_target;
97 static void debug_to_open (char *, int);
99 static void debug_to_prepare_to_store (struct regcache *);
101 static void debug_to_files_info (struct target_ops *);
103 static int debug_to_insert_breakpoint (struct gdbarch *,
104 struct bp_target_info *);
106 static int debug_to_remove_breakpoint (struct gdbarch *,
107 struct bp_target_info *);
109 static int debug_to_can_use_hw_breakpoint (int, int, int);
111 static int debug_to_insert_hw_breakpoint (struct gdbarch *,
112 struct bp_target_info *);
114 static int debug_to_remove_hw_breakpoint (struct gdbarch *,
115 struct bp_target_info *);
117 static int debug_to_insert_watchpoint (CORE_ADDR, int, int,
118 struct expression *);
120 static int debug_to_remove_watchpoint (CORE_ADDR, int, int,
121 struct expression *);
123 static int debug_to_stopped_by_watchpoint (void);
125 static int debug_to_stopped_data_address (struct target_ops *, CORE_ADDR *);
127 static int debug_to_watchpoint_addr_within_range (struct target_ops *,
128 CORE_ADDR, CORE_ADDR, int);
130 static int debug_to_region_ok_for_hw_watchpoint (CORE_ADDR, int);
132 static int debug_to_can_accel_watchpoint_condition (CORE_ADDR, int, int,
133 struct expression *);
135 static void debug_to_terminal_init (void);
137 static void debug_to_terminal_inferior (void);
139 static void debug_to_terminal_ours_for_output (void);
141 static void debug_to_terminal_save_ours (void);
143 static void debug_to_terminal_ours (void);
145 static void debug_to_terminal_info (char *, int);
147 static void debug_to_load (char *, int);
149 static int debug_to_can_run (void);
151 static void debug_to_stop (ptid_t);
153 /* Pointer to array of target architecture structures; the size of the
154 array; the current index into the array; the allocated size of the
155 array. */
156 struct target_ops **target_structs;
157 unsigned target_struct_size;
158 unsigned target_struct_index;
159 unsigned target_struct_allocsize;
160 #define DEFAULT_ALLOCSIZE 10
162 /* The initial current target, so that there is always a semi-valid
163 current target. */
165 static struct target_ops dummy_target;
167 /* Top of target stack. */
169 static struct target_ops *target_stack;
171 /* The target structure we are currently using to talk to a process
172 or file or whatever "inferior" we have. */
174 struct target_ops current_target;
176 /* Command list for target. */
178 static struct cmd_list_element *targetlist = NULL;
180 /* Nonzero if we should trust readonly sections from the
181 executable when reading memory. */
183 static int trust_readonly = 0;
185 /* Nonzero if we should show true memory content including
186 memory breakpoint inserted by gdb. */
188 static int show_memory_breakpoints = 0;
190 /* These globals control whether GDB attempts to perform these
191 operations; they are useful for targets that need to prevent
192 inadvertant disruption, such as in non-stop mode. */
194 int may_write_registers = 1;
196 int may_write_memory = 1;
198 int may_insert_breakpoints = 1;
200 int may_insert_tracepoints = 1;
202 int may_insert_fast_tracepoints = 1;
204 int may_stop = 1;
206 /* Non-zero if we want to see trace of target level stuff. */
208 static unsigned int targetdebug = 0;
209 static void
210 show_targetdebug (struct ui_file *file, int from_tty,
211 struct cmd_list_element *c, const char *value)
213 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
216 static void setup_target_debug (void);
218 /* The option sets this. */
219 static int stack_cache_enabled_p_1 = 1;
220 /* And set_stack_cache_enabled_p updates this.
221 The reason for the separation is so that we don't flush the cache for
222 on->on transitions. */
223 static int stack_cache_enabled_p = 1;
225 /* This is called *after* the stack-cache has been set.
226 Flush the cache for off->on and on->off transitions.
227 There's no real need to flush the cache for on->off transitions,
228 except cleanliness. */
230 static void
231 set_stack_cache_enabled_p (char *args, int from_tty,
232 struct cmd_list_element *c)
234 if (stack_cache_enabled_p != stack_cache_enabled_p_1)
235 target_dcache_invalidate ();
237 stack_cache_enabled_p = stack_cache_enabled_p_1;
240 static void
241 show_stack_cache_enabled_p (struct ui_file *file, int from_tty,
242 struct cmd_list_element *c, const char *value)
244 fprintf_filtered (file, _("Cache use for stack accesses is %s.\n"), value);
247 /* Cache of memory operations, to speed up remote access. */
248 static DCACHE *target_dcache;
250 /* Invalidate the target dcache. */
252 void
253 target_dcache_invalidate (void)
255 dcache_invalidate (target_dcache);
258 /* The user just typed 'target' without the name of a target. */
260 static void
261 target_command (char *arg, int from_tty)
263 fputs_filtered ("Argument required (target name). Try `help target'\n",
264 gdb_stdout);
267 /* Default target_has_* methods for process_stratum targets. */
270 default_child_has_all_memory (struct target_ops *ops)
272 /* If no inferior selected, then we can't read memory here. */
273 if (ptid_equal (inferior_ptid, null_ptid))
274 return 0;
276 return 1;
280 default_child_has_memory (struct target_ops *ops)
282 /* If no inferior selected, then we can't read memory here. */
283 if (ptid_equal (inferior_ptid, null_ptid))
284 return 0;
286 return 1;
290 default_child_has_stack (struct target_ops *ops)
292 /* If no inferior selected, there's no stack. */
293 if (ptid_equal (inferior_ptid, null_ptid))
294 return 0;
296 return 1;
300 default_child_has_registers (struct target_ops *ops)
302 /* Can't read registers from no inferior. */
303 if (ptid_equal (inferior_ptid, null_ptid))
304 return 0;
306 return 1;
310 default_child_has_execution (struct target_ops *ops, ptid_t the_ptid)
312 /* If there's no thread selected, then we can't make it run through
313 hoops. */
314 if (ptid_equal (the_ptid, null_ptid))
315 return 0;
317 return 1;
322 target_has_all_memory_1 (void)
324 struct target_ops *t;
326 for (t = current_target.beneath; t != NULL; t = t->beneath)
327 if (t->to_has_all_memory (t))
328 return 1;
330 return 0;
334 target_has_memory_1 (void)
336 struct target_ops *t;
338 for (t = current_target.beneath; t != NULL; t = t->beneath)
339 if (t->to_has_memory (t))
340 return 1;
342 return 0;
346 target_has_stack_1 (void)
348 struct target_ops *t;
350 for (t = current_target.beneath; t != NULL; t = t->beneath)
351 if (t->to_has_stack (t))
352 return 1;
354 return 0;
358 target_has_registers_1 (void)
360 struct target_ops *t;
362 for (t = current_target.beneath; t != NULL; t = t->beneath)
363 if (t->to_has_registers (t))
364 return 1;
366 return 0;
370 target_has_execution_1 (ptid_t the_ptid)
372 struct target_ops *t;
374 for (t = current_target.beneath; t != NULL; t = t->beneath)
375 if (t->to_has_execution (t, the_ptid))
376 return 1;
378 return 0;
382 target_has_execution_current (void)
384 return target_has_execution_1 (inferior_ptid);
387 /* Add a possible target architecture to the list. */
389 void
390 add_target (struct target_ops *t)
392 /* Provide default values for all "must have" methods. */
393 if (t->to_xfer_partial == NULL)
394 t->to_xfer_partial = default_xfer_partial;
396 if (t->to_has_all_memory == NULL)
397 t->to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
399 if (t->to_has_memory == NULL)
400 t->to_has_memory = (int (*) (struct target_ops *)) return_zero;
402 if (t->to_has_stack == NULL)
403 t->to_has_stack = (int (*) (struct target_ops *)) return_zero;
405 if (t->to_has_registers == NULL)
406 t->to_has_registers = (int (*) (struct target_ops *)) return_zero;
408 if (t->to_has_execution == NULL)
409 t->to_has_execution = (int (*) (struct target_ops *, ptid_t)) return_zero;
411 if (!target_structs)
413 target_struct_allocsize = DEFAULT_ALLOCSIZE;
414 target_structs = (struct target_ops **) xmalloc
415 (target_struct_allocsize * sizeof (*target_structs));
417 if (target_struct_size >= target_struct_allocsize)
419 target_struct_allocsize *= 2;
420 target_structs = (struct target_ops **)
421 xrealloc ((char *) target_structs,
422 target_struct_allocsize * sizeof (*target_structs));
424 target_structs[target_struct_size++] = t;
426 if (targetlist == NULL)
427 add_prefix_cmd ("target", class_run, target_command, _("\
428 Connect to a target machine or process.\n\
429 The first argument is the type or protocol of the target machine.\n\
430 Remaining arguments are interpreted by the target protocol. For more\n\
431 information on the arguments for a particular protocol, type\n\
432 `help target ' followed by the protocol name."),
433 &targetlist, "target ", 0, &cmdlist);
434 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
437 /* See target.h. */
439 void
440 add_deprecated_target_alias (struct target_ops *t, char *alias)
442 struct cmd_list_element *c;
443 char *alt;
445 /* If we use add_alias_cmd, here, we do not get the deprecated warning,
446 see PR cli/15104. */
447 c = add_cmd (alias, no_class, t->to_open, t->to_doc, &targetlist);
448 alt = xstrprintf ("target %s", t->to_shortname);
449 deprecate_cmd (c, alt);
452 /* Stub functions */
454 void
455 target_ignore (void)
459 void
460 target_kill (void)
462 struct target_ops *t;
464 for (t = current_target.beneath; t != NULL; t = t->beneath)
465 if (t->to_kill != NULL)
467 if (targetdebug)
468 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
470 t->to_kill (t);
471 return;
474 noprocess ();
477 void
478 target_load (char *arg, int from_tty)
480 target_dcache_invalidate ();
481 (*current_target.to_load) (arg, from_tty);
484 void
485 target_create_inferior (char *exec_file, char *args,
486 char **env, int from_tty)
488 struct target_ops *t;
490 for (t = current_target.beneath; t != NULL; t = t->beneath)
492 if (t->to_create_inferior != NULL)
494 t->to_create_inferior (t, exec_file, args, env, from_tty);
495 if (targetdebug)
496 fprintf_unfiltered (gdb_stdlog,
497 "target_create_inferior (%s, %s, xxx, %d)\n",
498 exec_file, args, from_tty);
499 return;
503 internal_error (__FILE__, __LINE__,
504 _("could not find a target to create inferior"));
507 void
508 target_terminal_inferior (void)
510 /* A background resume (``run&'') should leave GDB in control of the
511 terminal. Use target_can_async_p, not target_is_async_p, since at
512 this point the target is not async yet. However, if sync_execution
513 is not set, we know it will become async prior to resume. */
514 if (target_can_async_p () && !sync_execution)
515 return;
517 /* If GDB is resuming the inferior in the foreground, install
518 inferior's terminal modes. */
519 (*current_target.to_terminal_inferior) ();
522 static int
523 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
524 struct target_ops *t)
526 errno = EIO; /* Can't read/write this location. */
527 return 0; /* No bytes handled. */
530 static void
531 tcomplain (void)
533 error (_("You can't do that when your target is `%s'"),
534 current_target.to_shortname);
537 void
538 noprocess (void)
540 error (_("You can't do that without a process to debug."));
543 static void
544 default_terminal_info (char *args, int from_tty)
546 printf_unfiltered (_("No saved terminal information.\n"));
549 /* A default implementation for the to_get_ada_task_ptid target method.
551 This function builds the PTID by using both LWP and TID as part of
552 the PTID lwp and tid elements. The pid used is the pid of the
553 inferior_ptid. */
555 static ptid_t
556 default_get_ada_task_ptid (long lwp, long tid)
558 return ptid_build (ptid_get_pid (inferior_ptid), lwp, tid);
561 static enum exec_direction_kind
562 default_execution_direction (void)
564 if (!target_can_execute_reverse)
565 return EXEC_FORWARD;
566 else if (!target_can_async_p ())
567 return EXEC_FORWARD;
568 else
569 gdb_assert_not_reached ("\
570 to_execution_direction must be implemented for reverse async");
573 /* Go through the target stack from top to bottom, copying over zero
574 entries in current_target, then filling in still empty entries. In
575 effect, we are doing class inheritance through the pushed target
576 vectors.
578 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
579 is currently implemented, is that it discards any knowledge of
580 which target an inherited method originally belonged to.
581 Consequently, new new target methods should instead explicitly and
582 locally search the target stack for the target that can handle the
583 request. */
585 static void
586 update_current_target (void)
588 struct target_ops *t;
590 /* First, reset current's contents. */
591 memset (&current_target, 0, sizeof (current_target));
593 #define INHERIT(FIELD, TARGET) \
594 if (!current_target.FIELD) \
595 current_target.FIELD = (TARGET)->FIELD
597 for (t = target_stack; t; t = t->beneath)
599 INHERIT (to_shortname, t);
600 INHERIT (to_longname, t);
601 INHERIT (to_doc, t);
602 /* Do not inherit to_open. */
603 /* Do not inherit to_close. */
604 /* Do not inherit to_attach. */
605 INHERIT (to_post_attach, t);
606 INHERIT (to_attach_no_wait, t);
607 /* Do not inherit to_detach. */
608 /* Do not inherit to_disconnect. */
609 /* Do not inherit to_resume. */
610 /* Do not inherit to_wait. */
611 /* Do not inherit to_fetch_registers. */
612 /* Do not inherit to_store_registers. */
613 INHERIT (to_prepare_to_store, t);
614 INHERIT (deprecated_xfer_memory, t);
615 INHERIT (to_files_info, t);
616 INHERIT (to_insert_breakpoint, t);
617 INHERIT (to_remove_breakpoint, t);
618 INHERIT (to_can_use_hw_breakpoint, t);
619 INHERIT (to_insert_hw_breakpoint, t);
620 INHERIT (to_remove_hw_breakpoint, t);
621 /* Do not inherit to_ranged_break_num_registers. */
622 INHERIT (to_insert_watchpoint, t);
623 INHERIT (to_remove_watchpoint, t);
624 /* Do not inherit to_insert_mask_watchpoint. */
625 /* Do not inherit to_remove_mask_watchpoint. */
626 INHERIT (to_stopped_data_address, t);
627 INHERIT (to_have_steppable_watchpoint, t);
628 INHERIT (to_have_continuable_watchpoint, t);
629 INHERIT (to_stopped_by_watchpoint, t);
630 INHERIT (to_watchpoint_addr_within_range, t);
631 INHERIT (to_region_ok_for_hw_watchpoint, t);
632 INHERIT (to_can_accel_watchpoint_condition, t);
633 /* Do not inherit to_masked_watch_num_registers. */
634 INHERIT (to_terminal_init, t);
635 INHERIT (to_terminal_inferior, t);
636 INHERIT (to_terminal_ours_for_output, t);
637 INHERIT (to_terminal_ours, t);
638 INHERIT (to_terminal_save_ours, t);
639 INHERIT (to_terminal_info, t);
640 /* Do not inherit to_kill. */
641 INHERIT (to_load, t);
642 /* Do no inherit to_create_inferior. */
643 INHERIT (to_post_startup_inferior, t);
644 INHERIT (to_insert_fork_catchpoint, t);
645 INHERIT (to_remove_fork_catchpoint, t);
646 INHERIT (to_insert_vfork_catchpoint, t);
647 INHERIT (to_remove_vfork_catchpoint, t);
648 /* Do not inherit to_follow_fork. */
649 INHERIT (to_insert_exec_catchpoint, t);
650 INHERIT (to_remove_exec_catchpoint, t);
651 INHERIT (to_set_syscall_catchpoint, t);
652 INHERIT (to_has_exited, t);
653 /* Do not inherit to_mourn_inferior. */
654 INHERIT (to_can_run, t);
655 /* Do not inherit to_pass_signals. */
656 /* Do not inherit to_program_signals. */
657 /* Do not inherit to_thread_alive. */
658 /* Do not inherit to_find_new_threads. */
659 /* Do not inherit to_pid_to_str. */
660 INHERIT (to_extra_thread_info, t);
661 INHERIT (to_thread_name, t);
662 INHERIT (to_stop, t);
663 /* Do not inherit to_xfer_partial. */
664 INHERIT (to_rcmd, t);
665 INHERIT (to_pid_to_exec_file, t);
666 INHERIT (to_log_command, t);
667 INHERIT (to_stratum, t);
668 /* Do not inherit to_has_all_memory. */
669 /* Do not inherit to_has_memory. */
670 /* Do not inherit to_has_stack. */
671 /* Do not inherit to_has_registers. */
672 /* Do not inherit to_has_execution. */
673 INHERIT (to_has_thread_control, t);
674 INHERIT (to_can_async_p, t);
675 INHERIT (to_is_async_p, t);
676 INHERIT (to_async, t);
677 INHERIT (to_find_memory_regions, t);
678 INHERIT (to_make_corefile_notes, t);
679 INHERIT (to_get_bookmark, t);
680 INHERIT (to_goto_bookmark, t);
681 /* Do not inherit to_get_thread_local_address. */
682 INHERIT (to_can_execute_reverse, t);
683 INHERIT (to_execution_direction, t);
684 INHERIT (to_thread_architecture, t);
685 /* Do not inherit to_read_description. */
686 INHERIT (to_get_ada_task_ptid, t);
687 /* Do not inherit to_search_memory. */
688 INHERIT (to_supports_multi_process, t);
689 INHERIT (to_supports_enable_disable_tracepoint, t);
690 INHERIT (to_supports_string_tracing, t);
691 INHERIT (to_trace_init, t);
692 INHERIT (to_download_tracepoint, t);
693 INHERIT (to_can_download_tracepoint, t);
694 INHERIT (to_download_trace_state_variable, t);
695 INHERIT (to_enable_tracepoint, t);
696 INHERIT (to_disable_tracepoint, t);
697 INHERIT (to_trace_set_readonly_regions, t);
698 INHERIT (to_trace_start, t);
699 INHERIT (to_get_trace_status, t);
700 INHERIT (to_get_tracepoint_status, t);
701 INHERIT (to_trace_stop, t);
702 INHERIT (to_trace_find, t);
703 INHERIT (to_get_trace_state_variable_value, t);
704 INHERIT (to_save_trace_data, t);
705 INHERIT (to_upload_tracepoints, t);
706 INHERIT (to_upload_trace_state_variables, t);
707 INHERIT (to_get_raw_trace_data, t);
708 INHERIT (to_get_min_fast_tracepoint_insn_len, t);
709 INHERIT (to_set_disconnected_tracing, t);
710 INHERIT (to_set_circular_trace_buffer, t);
711 INHERIT (to_set_trace_buffer_size, t);
712 INHERIT (to_set_trace_notes, t);
713 INHERIT (to_get_tib_address, t);
714 INHERIT (to_set_permissions, t);
715 INHERIT (to_static_tracepoint_marker_at, t);
716 INHERIT (to_static_tracepoint_markers_by_strid, t);
717 INHERIT (to_traceframe_info, t);
718 INHERIT (to_use_agent, t);
719 INHERIT (to_can_use_agent, t);
720 INHERIT (to_magic, t);
721 INHERIT (to_supports_evaluation_of_breakpoint_conditions, t);
722 INHERIT (to_can_run_breakpoint_commands, t);
723 /* Do not inherit to_memory_map. */
724 /* Do not inherit to_flash_erase. */
725 /* Do not inherit to_flash_done. */
727 #undef INHERIT
729 /* Clean up a target struct so it no longer has any zero pointers in
730 it. Some entries are defaulted to a method that print an error,
731 others are hard-wired to a standard recursive default. */
733 #define de_fault(field, value) \
734 if (!current_target.field) \
735 current_target.field = value
737 de_fault (to_open,
738 (void (*) (char *, int))
739 tcomplain);
740 de_fault (to_close,
741 (void (*) (int))
742 target_ignore);
743 de_fault (to_post_attach,
744 (void (*) (int))
745 target_ignore);
746 de_fault (to_prepare_to_store,
747 (void (*) (struct regcache *))
748 noprocess);
749 de_fault (deprecated_xfer_memory,
750 (int (*) (CORE_ADDR, gdb_byte *, int, int,
751 struct mem_attrib *, struct target_ops *))
752 nomemory);
753 de_fault (to_files_info,
754 (void (*) (struct target_ops *))
755 target_ignore);
756 de_fault (to_insert_breakpoint,
757 memory_insert_breakpoint);
758 de_fault (to_remove_breakpoint,
759 memory_remove_breakpoint);
760 de_fault (to_can_use_hw_breakpoint,
761 (int (*) (int, int, int))
762 return_zero);
763 de_fault (to_insert_hw_breakpoint,
764 (int (*) (struct gdbarch *, struct bp_target_info *))
765 return_minus_one);
766 de_fault (to_remove_hw_breakpoint,
767 (int (*) (struct gdbarch *, struct bp_target_info *))
768 return_minus_one);
769 de_fault (to_insert_watchpoint,
770 (int (*) (CORE_ADDR, int, int, struct expression *))
771 return_minus_one);
772 de_fault (to_remove_watchpoint,
773 (int (*) (CORE_ADDR, int, int, struct expression *))
774 return_minus_one);
775 de_fault (to_stopped_by_watchpoint,
776 (int (*) (void))
777 return_zero);
778 de_fault (to_stopped_data_address,
779 (int (*) (struct target_ops *, CORE_ADDR *))
780 return_zero);
781 de_fault (to_watchpoint_addr_within_range,
782 default_watchpoint_addr_within_range);
783 de_fault (to_region_ok_for_hw_watchpoint,
784 default_region_ok_for_hw_watchpoint);
785 de_fault (to_can_accel_watchpoint_condition,
786 (int (*) (CORE_ADDR, int, int, struct expression *))
787 return_zero);
788 de_fault (to_terminal_init,
789 (void (*) (void))
790 target_ignore);
791 de_fault (to_terminal_inferior,
792 (void (*) (void))
793 target_ignore);
794 de_fault (to_terminal_ours_for_output,
795 (void (*) (void))
796 target_ignore);
797 de_fault (to_terminal_ours,
798 (void (*) (void))
799 target_ignore);
800 de_fault (to_terminal_save_ours,
801 (void (*) (void))
802 target_ignore);
803 de_fault (to_terminal_info,
804 default_terminal_info);
805 de_fault (to_load,
806 (void (*) (char *, int))
807 tcomplain);
808 de_fault (to_post_startup_inferior,
809 (void (*) (ptid_t))
810 target_ignore);
811 de_fault (to_insert_fork_catchpoint,
812 (int (*) (int))
813 return_one);
814 de_fault (to_remove_fork_catchpoint,
815 (int (*) (int))
816 return_one);
817 de_fault (to_insert_vfork_catchpoint,
818 (int (*) (int))
819 return_one);
820 de_fault (to_remove_vfork_catchpoint,
821 (int (*) (int))
822 return_one);
823 de_fault (to_insert_exec_catchpoint,
824 (int (*) (int))
825 return_one);
826 de_fault (to_remove_exec_catchpoint,
827 (int (*) (int))
828 return_one);
829 de_fault (to_set_syscall_catchpoint,
830 (int (*) (int, int, int, int, int *))
831 return_one);
832 de_fault (to_has_exited,
833 (int (*) (int, int, int *))
834 return_zero);
835 de_fault (to_can_run,
836 return_zero);
837 de_fault (to_extra_thread_info,
838 (char *(*) (struct thread_info *))
839 return_zero);
840 de_fault (to_thread_name,
841 (char *(*) (struct thread_info *))
842 return_zero);
843 de_fault (to_stop,
844 (void (*) (ptid_t))
845 target_ignore);
846 current_target.to_xfer_partial = current_xfer_partial;
847 de_fault (to_rcmd,
848 (void (*) (char *, struct ui_file *))
849 tcomplain);
850 de_fault (to_pid_to_exec_file,
851 (char *(*) (int))
852 return_zero);
853 de_fault (to_async,
854 (void (*) (void (*) (enum inferior_event_type, void*), void*))
855 tcomplain);
856 de_fault (to_thread_architecture,
857 default_thread_architecture);
858 current_target.to_read_description = NULL;
859 de_fault (to_get_ada_task_ptid,
860 (ptid_t (*) (long, long))
861 default_get_ada_task_ptid);
862 de_fault (to_supports_multi_process,
863 (int (*) (void))
864 return_zero);
865 de_fault (to_supports_enable_disable_tracepoint,
866 (int (*) (void))
867 return_zero);
868 de_fault (to_supports_string_tracing,
869 (int (*) (void))
870 return_zero);
871 de_fault (to_trace_init,
872 (void (*) (void))
873 tcomplain);
874 de_fault (to_download_tracepoint,
875 (void (*) (struct bp_location *))
876 tcomplain);
877 de_fault (to_can_download_tracepoint,
878 (int (*) (void))
879 return_zero);
880 de_fault (to_download_trace_state_variable,
881 (void (*) (struct trace_state_variable *))
882 tcomplain);
883 de_fault (to_enable_tracepoint,
884 (void (*) (struct bp_location *))
885 tcomplain);
886 de_fault (to_disable_tracepoint,
887 (void (*) (struct bp_location *))
888 tcomplain);
889 de_fault (to_trace_set_readonly_regions,
890 (void (*) (void))
891 tcomplain);
892 de_fault (to_trace_start,
893 (void (*) (void))
894 tcomplain);
895 de_fault (to_get_trace_status,
896 (int (*) (struct trace_status *))
897 return_minus_one);
898 de_fault (to_get_tracepoint_status,
899 (void (*) (struct breakpoint *, struct uploaded_tp *))
900 tcomplain);
901 de_fault (to_trace_stop,
902 (void (*) (void))
903 tcomplain);
904 de_fault (to_trace_find,
905 (int (*) (enum trace_find_type, int, ULONGEST, ULONGEST, int *))
906 return_minus_one);
907 de_fault (to_get_trace_state_variable_value,
908 (int (*) (int, LONGEST *))
909 return_zero);
910 de_fault (to_save_trace_data,
911 (int (*) (const char *))
912 tcomplain);
913 de_fault (to_upload_tracepoints,
914 (int (*) (struct uploaded_tp **))
915 return_zero);
916 de_fault (to_upload_trace_state_variables,
917 (int (*) (struct uploaded_tsv **))
918 return_zero);
919 de_fault (to_get_raw_trace_data,
920 (LONGEST (*) (gdb_byte *, ULONGEST, LONGEST))
921 tcomplain);
922 de_fault (to_get_min_fast_tracepoint_insn_len,
923 (int (*) (void))
924 return_minus_one);
925 de_fault (to_set_disconnected_tracing,
926 (void (*) (int))
927 target_ignore);
928 de_fault (to_set_circular_trace_buffer,
929 (void (*) (int))
930 target_ignore);
931 de_fault (to_set_trace_buffer_size,
932 (void (*) (LONGEST))
933 target_ignore);
934 de_fault (to_set_trace_notes,
935 (int (*) (char *, char *, char *))
936 return_zero);
937 de_fault (to_get_tib_address,
938 (int (*) (ptid_t, CORE_ADDR *))
939 tcomplain);
940 de_fault (to_set_permissions,
941 (void (*) (void))
942 target_ignore);
943 de_fault (to_static_tracepoint_marker_at,
944 (int (*) (CORE_ADDR, struct static_tracepoint_marker *))
945 return_zero);
946 de_fault (to_static_tracepoint_markers_by_strid,
947 (VEC(static_tracepoint_marker_p) * (*) (const char *))
948 tcomplain);
949 de_fault (to_traceframe_info,
950 (struct traceframe_info * (*) (void))
951 tcomplain);
952 de_fault (to_supports_evaluation_of_breakpoint_conditions,
953 (int (*) (void))
954 return_zero);
955 de_fault (to_can_run_breakpoint_commands,
956 (int (*) (void))
957 return_zero);
958 de_fault (to_use_agent,
959 (int (*) (int))
960 tcomplain);
961 de_fault (to_can_use_agent,
962 (int (*) (void))
963 return_zero);
964 de_fault (to_execution_direction, default_execution_direction);
966 #undef de_fault
968 /* Finally, position the target-stack beneath the squashed
969 "current_target". That way code looking for a non-inherited
970 target method can quickly and simply find it. */
971 current_target.beneath = target_stack;
973 if (targetdebug)
974 setup_target_debug ();
977 /* Push a new target type into the stack of the existing target accessors,
978 possibly superseding some of the existing accessors.
980 Rather than allow an empty stack, we always have the dummy target at
981 the bottom stratum, so we can call the function vectors without
982 checking them. */
984 void
985 push_target (struct target_ops *t)
987 struct target_ops **cur;
989 /* Check magic number. If wrong, it probably means someone changed
990 the struct definition, but not all the places that initialize one. */
991 if (t->to_magic != OPS_MAGIC)
993 fprintf_unfiltered (gdb_stderr,
994 "Magic number of %s target struct wrong\n",
995 t->to_shortname);
996 internal_error (__FILE__, __LINE__,
997 _("failed internal consistency check"));
1000 /* Find the proper stratum to install this target in. */
1001 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
1003 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
1004 break;
1007 /* If there's already targets at this stratum, remove them. */
1008 /* FIXME: cagney/2003-10-15: I think this should be popping all
1009 targets to CUR, and not just those at this stratum level. */
1010 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
1012 /* There's already something at this stratum level. Close it,
1013 and un-hook it from the stack. */
1014 struct target_ops *tmp = (*cur);
1016 (*cur) = (*cur)->beneath;
1017 tmp->beneath = NULL;
1018 target_close (tmp, 0);
1021 /* We have removed all targets in our stratum, now add the new one. */
1022 t->beneath = (*cur);
1023 (*cur) = t;
1025 update_current_target ();
1028 /* Remove a target_ops vector from the stack, wherever it may be.
1029 Return how many times it was removed (0 or 1). */
1032 unpush_target (struct target_ops *t)
1034 struct target_ops **cur;
1035 struct target_ops *tmp;
1037 if (t->to_stratum == dummy_stratum)
1038 internal_error (__FILE__, __LINE__,
1039 _("Attempt to unpush the dummy target"));
1041 /* Look for the specified target. Note that we assume that a target
1042 can only occur once in the target stack. */
1044 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
1046 if ((*cur) == t)
1047 break;
1050 /* If we don't find target_ops, quit. Only open targets should be
1051 closed. */
1052 if ((*cur) == NULL)
1053 return 0;
1055 /* Unchain the target. */
1056 tmp = (*cur);
1057 (*cur) = (*cur)->beneath;
1058 tmp->beneath = NULL;
1060 update_current_target ();
1062 /* Finally close the target. Note we do this after unchaining, so
1063 any target method calls from within the target_close
1064 implementation don't end up in T anymore. */
1065 target_close (t, 0);
1067 return 1;
1070 void
1071 pop_target (void)
1073 target_close (target_stack, 0); /* Let it clean up. */
1074 if (unpush_target (target_stack) == 1)
1075 return;
1077 fprintf_unfiltered (gdb_stderr,
1078 "pop_target couldn't find target %s\n",
1079 current_target.to_shortname);
1080 internal_error (__FILE__, __LINE__,
1081 _("failed internal consistency check"));
1084 void
1085 pop_all_targets_above (enum strata above_stratum, int quitting)
1087 while ((int) (current_target.to_stratum) > (int) above_stratum)
1089 target_close (target_stack, quitting);
1090 if (!unpush_target (target_stack))
1092 fprintf_unfiltered (gdb_stderr,
1093 "pop_all_targets couldn't find target %s\n",
1094 target_stack->to_shortname);
1095 internal_error (__FILE__, __LINE__,
1096 _("failed internal consistency check"));
1097 break;
1102 void
1103 pop_all_targets (int quitting)
1105 pop_all_targets_above (dummy_stratum, quitting);
1108 /* Return 1 if T is now pushed in the target stack. Return 0 otherwise. */
1111 target_is_pushed (struct target_ops *t)
1113 struct target_ops **cur;
1115 /* Check magic number. If wrong, it probably means someone changed
1116 the struct definition, but not all the places that initialize one. */
1117 if (t->to_magic != OPS_MAGIC)
1119 fprintf_unfiltered (gdb_stderr,
1120 "Magic number of %s target struct wrong\n",
1121 t->to_shortname);
1122 internal_error (__FILE__, __LINE__,
1123 _("failed internal consistency check"));
1126 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
1127 if (*cur == t)
1128 return 1;
1130 return 0;
1133 /* Using the objfile specified in OBJFILE, find the address for the
1134 current thread's thread-local storage with offset OFFSET. */
1135 CORE_ADDR
1136 target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
1138 volatile CORE_ADDR addr = 0;
1139 struct target_ops *target;
1141 for (target = current_target.beneath;
1142 target != NULL;
1143 target = target->beneath)
1145 if (target->to_get_thread_local_address != NULL)
1146 break;
1149 if (target != NULL
1150 && gdbarch_fetch_tls_load_module_address_p (target_gdbarch ()))
1152 ptid_t ptid = inferior_ptid;
1153 volatile struct gdb_exception ex;
1155 TRY_CATCH (ex, RETURN_MASK_ALL)
1157 CORE_ADDR lm_addr;
1159 /* Fetch the load module address for this objfile. */
1160 lm_addr = gdbarch_fetch_tls_load_module_address (target_gdbarch (),
1161 objfile);
1162 /* If it's 0, throw the appropriate exception. */
1163 if (lm_addr == 0)
1164 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
1165 _("TLS load module not found"));
1167 addr = target->to_get_thread_local_address (target, ptid,
1168 lm_addr, offset);
1170 /* If an error occurred, print TLS related messages here. Otherwise,
1171 throw the error to some higher catcher. */
1172 if (ex.reason < 0)
1174 int objfile_is_library = (objfile->flags & OBJF_SHARED);
1176 switch (ex.error)
1178 case TLS_NO_LIBRARY_SUPPORT_ERROR:
1179 error (_("Cannot find thread-local variables "
1180 "in this thread library."));
1181 break;
1182 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
1183 if (objfile_is_library)
1184 error (_("Cannot find shared library `%s' in dynamic"
1185 " linker's load module list"), objfile->name);
1186 else
1187 error (_("Cannot find executable file `%s' in dynamic"
1188 " linker's load module list"), objfile->name);
1189 break;
1190 case TLS_NOT_ALLOCATED_YET_ERROR:
1191 if (objfile_is_library)
1192 error (_("The inferior has not yet allocated storage for"
1193 " thread-local variables in\n"
1194 "the shared library `%s'\n"
1195 "for %s"),
1196 objfile->name, target_pid_to_str (ptid));
1197 else
1198 error (_("The inferior has not yet allocated storage for"
1199 " thread-local variables in\n"
1200 "the executable `%s'\n"
1201 "for %s"),
1202 objfile->name, target_pid_to_str (ptid));
1203 break;
1204 case TLS_GENERIC_ERROR:
1205 if (objfile_is_library)
1206 error (_("Cannot find thread-local storage for %s, "
1207 "shared library %s:\n%s"),
1208 target_pid_to_str (ptid),
1209 objfile->name, ex.message);
1210 else
1211 error (_("Cannot find thread-local storage for %s, "
1212 "executable file %s:\n%s"),
1213 target_pid_to_str (ptid),
1214 objfile->name, ex.message);
1215 break;
1216 default:
1217 throw_exception (ex);
1218 break;
1222 /* It wouldn't be wrong here to try a gdbarch method, too; finding
1223 TLS is an ABI-specific thing. But we don't do that yet. */
1224 else
1225 error (_("Cannot find thread-local variables on this target"));
1227 return addr;
1230 #undef MIN
1231 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
1233 /* target_read_string -- read a null terminated string, up to LEN bytes,
1234 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
1235 Set *STRING to a pointer to malloc'd memory containing the data; the caller
1236 is responsible for freeing it. Return the number of bytes successfully
1237 read. */
1240 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
1242 int tlen, offset, i;
1243 gdb_byte buf[4];
1244 int errcode = 0;
1245 char *buffer;
1246 int buffer_allocated;
1247 char *bufptr;
1248 unsigned int nbytes_read = 0;
1250 gdb_assert (string);
1252 /* Small for testing. */
1253 buffer_allocated = 4;
1254 buffer = xmalloc (buffer_allocated);
1255 bufptr = buffer;
1257 while (len > 0)
1259 tlen = MIN (len, 4 - (memaddr & 3));
1260 offset = memaddr & 3;
1262 errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
1263 if (errcode != 0)
1265 /* The transfer request might have crossed the boundary to an
1266 unallocated region of memory. Retry the transfer, requesting
1267 a single byte. */
1268 tlen = 1;
1269 offset = 0;
1270 errcode = target_read_memory (memaddr, buf, 1);
1271 if (errcode != 0)
1272 goto done;
1275 if (bufptr - buffer + tlen > buffer_allocated)
1277 unsigned int bytes;
1279 bytes = bufptr - buffer;
1280 buffer_allocated *= 2;
1281 buffer = xrealloc (buffer, buffer_allocated);
1282 bufptr = buffer + bytes;
1285 for (i = 0; i < tlen; i++)
1287 *bufptr++ = buf[i + offset];
1288 if (buf[i + offset] == '\000')
1290 nbytes_read += i + 1;
1291 goto done;
1295 memaddr += tlen;
1296 len -= tlen;
1297 nbytes_read += tlen;
1299 done:
1300 *string = buffer;
1301 if (errnop != NULL)
1302 *errnop = errcode;
1303 return nbytes_read;
1306 struct target_section_table *
1307 target_get_section_table (struct target_ops *target)
1309 struct target_ops *t;
1311 if (targetdebug)
1312 fprintf_unfiltered (gdb_stdlog, "target_get_section_table ()\n");
1314 for (t = target; t != NULL; t = t->beneath)
1315 if (t->to_get_section_table != NULL)
1316 return (*t->to_get_section_table) (t);
1318 return NULL;
1321 /* Find a section containing ADDR. */
1323 struct target_section *
1324 target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1326 struct target_section_table *table = target_get_section_table (target);
1327 struct target_section *secp;
1329 if (table == NULL)
1330 return NULL;
1332 for (secp = table->sections; secp < table->sections_end; secp++)
1334 if (addr >= secp->addr && addr < secp->endaddr)
1335 return secp;
1337 return NULL;
1340 /* Read memory from the live target, even if currently inspecting a
1341 traceframe. The return is the same as that of target_read. */
1343 static LONGEST
1344 target_read_live_memory (enum target_object object,
1345 ULONGEST memaddr, gdb_byte *myaddr, LONGEST len)
1347 int ret;
1348 struct cleanup *cleanup;
1350 /* Switch momentarily out of tfind mode so to access live memory.
1351 Note that this must not clear global state, such as the frame
1352 cache, which must still remain valid for the previous traceframe.
1353 We may be _building_ the frame cache at this point. */
1354 cleanup = make_cleanup_restore_traceframe_number ();
1355 set_traceframe_number (-1);
1357 ret = target_read (current_target.beneath, object, NULL,
1358 myaddr, memaddr, len);
1360 do_cleanups (cleanup);
1361 return ret;
1364 /* Using the set of read-only target sections of OPS, read live
1365 read-only memory. Note that the actual reads start from the
1366 top-most target again.
1368 For interface/parameters/return description see target.h,
1369 to_xfer_partial. */
1371 static LONGEST
1372 memory_xfer_live_readonly_partial (struct target_ops *ops,
1373 enum target_object object,
1374 gdb_byte *readbuf, ULONGEST memaddr,
1375 LONGEST len)
1377 struct target_section *secp;
1378 struct target_section_table *table;
1380 secp = target_section_by_addr (ops, memaddr);
1381 if (secp != NULL
1382 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
1383 & SEC_READONLY))
1385 struct target_section *p;
1386 ULONGEST memend = memaddr + len;
1388 table = target_get_section_table (ops);
1390 for (p = table->sections; p < table->sections_end; p++)
1392 if (memaddr >= p->addr)
1394 if (memend <= p->endaddr)
1396 /* Entire transfer is within this section. */
1397 return target_read_live_memory (object, memaddr,
1398 readbuf, len);
1400 else if (memaddr >= p->endaddr)
1402 /* This section ends before the transfer starts. */
1403 continue;
1405 else
1407 /* This section overlaps the transfer. Just do half. */
1408 len = p->endaddr - memaddr;
1409 return target_read_live_memory (object, memaddr,
1410 readbuf, len);
1416 return 0;
1419 /* Perform a partial memory transfer.
1420 For docs see target.h, to_xfer_partial. */
1422 static LONGEST
1423 memory_xfer_partial_1 (struct target_ops *ops, enum target_object object,
1424 void *readbuf, const void *writebuf, ULONGEST memaddr,
1425 LONGEST len)
1427 LONGEST res;
1428 int reg_len;
1429 struct mem_region *region;
1430 struct inferior *inf;
1432 /* For accesses to unmapped overlay sections, read directly from
1433 files. Must do this first, as MEMADDR may need adjustment. */
1434 if (readbuf != NULL && overlay_debugging)
1436 struct obj_section *section = find_pc_overlay (memaddr);
1438 if (pc_in_unmapped_range (memaddr, section))
1440 struct target_section_table *table
1441 = target_get_section_table (ops);
1442 const char *section_name = section->the_bfd_section->name;
1444 memaddr = overlay_mapped_address (memaddr, section);
1445 return section_table_xfer_memory_partial (readbuf, writebuf,
1446 memaddr, len,
1447 table->sections,
1448 table->sections_end,
1449 section_name);
1453 /* Try the executable files, if "trust-readonly-sections" is set. */
1454 if (readbuf != NULL && trust_readonly)
1456 struct target_section *secp;
1457 struct target_section_table *table;
1459 secp = target_section_by_addr (ops, memaddr);
1460 if (secp != NULL
1461 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
1462 & SEC_READONLY))
1464 table = target_get_section_table (ops);
1465 return section_table_xfer_memory_partial (readbuf, writebuf,
1466 memaddr, len,
1467 table->sections,
1468 table->sections_end,
1469 NULL);
1473 /* If reading unavailable memory in the context of traceframes, and
1474 this address falls within a read-only section, fallback to
1475 reading from live memory. */
1476 if (readbuf != NULL && get_traceframe_number () != -1)
1478 VEC(mem_range_s) *available;
1480 /* If we fail to get the set of available memory, then the
1481 target does not support querying traceframe info, and so we
1482 attempt reading from the traceframe anyway (assuming the
1483 target implements the old QTro packet then). */
1484 if (traceframe_available_memory (&available, memaddr, len))
1486 struct cleanup *old_chain;
1488 old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
1490 if (VEC_empty (mem_range_s, available)
1491 || VEC_index (mem_range_s, available, 0)->start != memaddr)
1493 /* Don't read into the traceframe's available
1494 memory. */
1495 if (!VEC_empty (mem_range_s, available))
1497 LONGEST oldlen = len;
1499 len = VEC_index (mem_range_s, available, 0)->start - memaddr;
1500 gdb_assert (len <= oldlen);
1503 do_cleanups (old_chain);
1505 /* This goes through the topmost target again. */
1506 res = memory_xfer_live_readonly_partial (ops, object,
1507 readbuf, memaddr, len);
1508 if (res > 0)
1509 return res;
1511 /* No use trying further, we know some memory starting
1512 at MEMADDR isn't available. */
1513 return -1;
1516 /* Don't try to read more than how much is available, in
1517 case the target implements the deprecated QTro packet to
1518 cater for older GDBs (the target's knowledge of read-only
1519 sections may be outdated by now). */
1520 len = VEC_index (mem_range_s, available, 0)->length;
1522 do_cleanups (old_chain);
1526 /* Try GDB's internal data cache. */
1527 region = lookup_mem_region (memaddr);
1528 /* region->hi == 0 means there's no upper bound. */
1529 if (memaddr + len < region->hi || region->hi == 0)
1530 reg_len = len;
1531 else
1532 reg_len = region->hi - memaddr;
1534 switch (region->attrib.mode)
1536 case MEM_RO:
1537 if (writebuf != NULL)
1538 return -1;
1539 break;
1541 case MEM_WO:
1542 if (readbuf != NULL)
1543 return -1;
1544 break;
1546 case MEM_FLASH:
1547 /* We only support writing to flash during "load" for now. */
1548 if (writebuf != NULL)
1549 error (_("Writing to flash memory forbidden in this context"));
1550 break;
1552 case MEM_NONE:
1553 return -1;
1556 if (!ptid_equal (inferior_ptid, null_ptid))
1557 inf = find_inferior_pid (ptid_get_pid (inferior_ptid));
1558 else
1559 inf = NULL;
1561 if (inf != NULL
1562 /* The dcache reads whole cache lines; that doesn't play well
1563 with reading from a trace buffer, because reading outside of
1564 the collected memory range fails. */
1565 && get_traceframe_number () == -1
1566 && (region->attrib.cache
1567 || (stack_cache_enabled_p && object == TARGET_OBJECT_STACK_MEMORY)))
1569 if (readbuf != NULL)
1570 res = dcache_xfer_memory (ops, target_dcache, memaddr, readbuf,
1571 reg_len, 0);
1572 else
1573 /* FIXME drow/2006-08-09: If we're going to preserve const
1574 correctness dcache_xfer_memory should take readbuf and
1575 writebuf. */
1576 res = dcache_xfer_memory (ops, target_dcache, memaddr,
1577 (void *) writebuf,
1578 reg_len, 1);
1579 if (res <= 0)
1580 return -1;
1581 else
1582 return res;
1585 /* If none of those methods found the memory we wanted, fall back
1586 to a target partial transfer. Normally a single call to
1587 to_xfer_partial is enough; if it doesn't recognize an object
1588 it will call the to_xfer_partial of the next target down.
1589 But for memory this won't do. Memory is the only target
1590 object which can be read from more than one valid target.
1591 A core file, for instance, could have some of memory but
1592 delegate other bits to the target below it. So, we must
1593 manually try all targets. */
1597 res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1598 readbuf, writebuf, memaddr, reg_len);
1599 if (res > 0)
1600 break;
1602 /* We want to continue past core files to executables, but not
1603 past a running target's memory. */
1604 if (ops->to_has_all_memory (ops))
1605 break;
1607 ops = ops->beneath;
1609 while (ops != NULL);
1611 /* Make sure the cache gets updated no matter what - if we are writing
1612 to the stack. Even if this write is not tagged as such, we still need
1613 to update the cache. */
1615 if (res > 0
1616 && inf != NULL
1617 && writebuf != NULL
1618 && !region->attrib.cache
1619 && stack_cache_enabled_p
1620 && object != TARGET_OBJECT_STACK_MEMORY)
1622 dcache_update (target_dcache, memaddr, (void *) writebuf, res);
1625 /* If we still haven't got anything, return the last error. We
1626 give up. */
1627 return res;
1630 /* Perform a partial memory transfer. For docs see target.h,
1631 to_xfer_partial. */
1633 static LONGEST
1634 memory_xfer_partial (struct target_ops *ops, enum target_object object,
1635 void *readbuf, const void *writebuf, ULONGEST memaddr,
1636 LONGEST len)
1638 int res;
1640 /* Zero length requests are ok and require no work. */
1641 if (len == 0)
1642 return 0;
1644 /* Fill in READBUF with breakpoint shadows, or WRITEBUF with
1645 breakpoint insns, thus hiding out from higher layers whether
1646 there are software breakpoints inserted in the code stream. */
1647 if (readbuf != NULL)
1649 res = memory_xfer_partial_1 (ops, object, readbuf, NULL, memaddr, len);
1651 if (res > 0 && !show_memory_breakpoints)
1652 breakpoint_xfer_memory (readbuf, NULL, NULL, memaddr, res);
1654 else
1656 void *buf;
1657 struct cleanup *old_chain;
1659 buf = xmalloc (len);
1660 old_chain = make_cleanup (xfree, buf);
1661 memcpy (buf, writebuf, len);
1663 breakpoint_xfer_memory (NULL, buf, writebuf, memaddr, len);
1664 res = memory_xfer_partial_1 (ops, object, NULL, buf, memaddr, len);
1666 do_cleanups (old_chain);
1669 return res;
1672 static void
1673 restore_show_memory_breakpoints (void *arg)
1675 show_memory_breakpoints = (uintptr_t) arg;
1678 struct cleanup *
1679 make_show_memory_breakpoints_cleanup (int show)
1681 int current = show_memory_breakpoints;
1683 show_memory_breakpoints = show;
1684 return make_cleanup (restore_show_memory_breakpoints,
1685 (void *) (uintptr_t) current);
1688 /* For docs see target.h, to_xfer_partial. */
1690 static LONGEST
1691 target_xfer_partial (struct target_ops *ops,
1692 enum target_object object, const char *annex,
1693 void *readbuf, const void *writebuf,
1694 ULONGEST offset, LONGEST len)
1696 LONGEST retval;
1698 gdb_assert (ops->to_xfer_partial != NULL);
1700 if (writebuf && !may_write_memory)
1701 error (_("Writing to memory is not allowed (addr %s, len %s)"),
1702 core_addr_to_string_nz (offset), plongest (len));
1704 /* If this is a memory transfer, let the memory-specific code
1705 have a look at it instead. Memory transfers are more
1706 complicated. */
1707 if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY)
1708 retval = memory_xfer_partial (ops, object, readbuf,
1709 writebuf, offset, len);
1710 else
1712 enum target_object raw_object = object;
1714 /* If this is a raw memory transfer, request the normal
1715 memory object from other layers. */
1716 if (raw_object == TARGET_OBJECT_RAW_MEMORY)
1717 raw_object = TARGET_OBJECT_MEMORY;
1719 retval = ops->to_xfer_partial (ops, raw_object, annex, readbuf,
1720 writebuf, offset, len);
1723 if (targetdebug)
1725 const unsigned char *myaddr = NULL;
1727 fprintf_unfiltered (gdb_stdlog,
1728 "%s:target_xfer_partial "
1729 "(%d, %s, %s, %s, %s, %s) = %s",
1730 ops->to_shortname,
1731 (int) object,
1732 (annex ? annex : "(null)"),
1733 host_address_to_string (readbuf),
1734 host_address_to_string (writebuf),
1735 core_addr_to_string_nz (offset),
1736 plongest (len), plongest (retval));
1738 if (readbuf)
1739 myaddr = readbuf;
1740 if (writebuf)
1741 myaddr = writebuf;
1742 if (retval > 0 && myaddr != NULL)
1744 int i;
1746 fputs_unfiltered (", bytes =", gdb_stdlog);
1747 for (i = 0; i < retval; i++)
1749 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
1751 if (targetdebug < 2 && i > 0)
1753 fprintf_unfiltered (gdb_stdlog, " ...");
1754 break;
1756 fprintf_unfiltered (gdb_stdlog, "\n");
1759 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1763 fputc_unfiltered ('\n', gdb_stdlog);
1765 return retval;
1768 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
1769 GDB's memory at MYADDR. Returns either 0 for success or an errno value
1770 if any error occurs.
1772 If an error occurs, no guarantee is made about the contents of the data at
1773 MYADDR. In particular, the caller should not depend upon partial reads
1774 filling the buffer with good data. There is no way for the caller to know
1775 how much good data might have been transfered anyway. Callers that can
1776 deal with partial reads should call target_read (which will retry until
1777 it makes no progress, and then return how much was transferred). */
1780 target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1782 /* Dispatch to the topmost target, not the flattened current_target.
1783 Memory accesses check target->to_has_(all_)memory, and the
1784 flattened target doesn't inherit those. */
1785 if (target_read (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1786 myaddr, memaddr, len) == len)
1787 return 0;
1788 else
1789 return EIO;
1792 /* Like target_read_memory, but specify explicitly that this is a read from
1793 the target's stack. This may trigger different cache behavior. */
1796 target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1798 /* Dispatch to the topmost target, not the flattened current_target.
1799 Memory accesses check target->to_has_(all_)memory, and the
1800 flattened target doesn't inherit those. */
1802 if (target_read (current_target.beneath, TARGET_OBJECT_STACK_MEMORY, NULL,
1803 myaddr, memaddr, len) == len)
1804 return 0;
1805 else
1806 return EIO;
1809 /* Write LEN bytes from MYADDR to target memory at address MEMADDR.
1810 Returns either 0 for success or an errno value if any error occurs.
1811 If an error occurs, no guarantee is made about how much data got written.
1812 Callers that can deal with partial writes should call target_write. */
1815 target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
1817 /* Dispatch to the topmost target, not the flattened current_target.
1818 Memory accesses check target->to_has_(all_)memory, and the
1819 flattened target doesn't inherit those. */
1820 if (target_write (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1821 myaddr, memaddr, len) == len)
1822 return 0;
1823 else
1824 return EIO;
1827 /* Write LEN bytes from MYADDR to target raw memory at address
1828 MEMADDR. Returns either 0 for success or an errno value if any
1829 error occurs. If an error occurs, no guarantee is made about how
1830 much data got written. Callers that can deal with partial writes
1831 should call target_write. */
1834 target_write_raw_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
1836 /* Dispatch to the topmost target, not the flattened current_target.
1837 Memory accesses check target->to_has_(all_)memory, and the
1838 flattened target doesn't inherit those. */
1839 if (target_write (current_target.beneath, TARGET_OBJECT_RAW_MEMORY, NULL,
1840 myaddr, memaddr, len) == len)
1841 return 0;
1842 else
1843 return EIO;
1846 /* Fetch the target's memory map. */
1848 VEC(mem_region_s) *
1849 target_memory_map (void)
1851 VEC(mem_region_s) *result;
1852 struct mem_region *last_one, *this_one;
1853 int ix;
1854 struct target_ops *t;
1856 if (targetdebug)
1857 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1859 for (t = current_target.beneath; t != NULL; t = t->beneath)
1860 if (t->to_memory_map != NULL)
1861 break;
1863 if (t == NULL)
1864 return NULL;
1866 result = t->to_memory_map (t);
1867 if (result == NULL)
1868 return NULL;
1870 qsort (VEC_address (mem_region_s, result),
1871 VEC_length (mem_region_s, result),
1872 sizeof (struct mem_region), mem_region_cmp);
1874 /* Check that regions do not overlap. Simultaneously assign
1875 a numbering for the "mem" commands to use to refer to
1876 each region. */
1877 last_one = NULL;
1878 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1880 this_one->number = ix;
1882 if (last_one && last_one->hi > this_one->lo)
1884 warning (_("Overlapping regions in memory map: ignoring"));
1885 VEC_free (mem_region_s, result);
1886 return NULL;
1888 last_one = this_one;
1891 return result;
1894 void
1895 target_flash_erase (ULONGEST address, LONGEST length)
1897 struct target_ops *t;
1899 for (t = current_target.beneath; t != NULL; t = t->beneath)
1900 if (t->to_flash_erase != NULL)
1902 if (targetdebug)
1903 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
1904 hex_string (address), phex (length, 0));
1905 t->to_flash_erase (t, address, length);
1906 return;
1909 tcomplain ();
1912 void
1913 target_flash_done (void)
1915 struct target_ops *t;
1917 for (t = current_target.beneath; t != NULL; t = t->beneath)
1918 if (t->to_flash_done != NULL)
1920 if (targetdebug)
1921 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
1922 t->to_flash_done (t);
1923 return;
1926 tcomplain ();
1929 static void
1930 show_trust_readonly (struct ui_file *file, int from_tty,
1931 struct cmd_list_element *c, const char *value)
1933 fprintf_filtered (file,
1934 _("Mode for reading from readonly sections is %s.\n"),
1935 value);
1938 /* More generic transfers. */
1940 static LONGEST
1941 default_xfer_partial (struct target_ops *ops, enum target_object object,
1942 const char *annex, gdb_byte *readbuf,
1943 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1945 if (object == TARGET_OBJECT_MEMORY
1946 && ops->deprecated_xfer_memory != NULL)
1947 /* If available, fall back to the target's
1948 "deprecated_xfer_memory" method. */
1950 int xfered = -1;
1952 errno = 0;
1953 if (writebuf != NULL)
1955 void *buffer = xmalloc (len);
1956 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1958 memcpy (buffer, writebuf, len);
1959 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1960 1/*write*/, NULL, ops);
1961 do_cleanups (cleanup);
1963 if (readbuf != NULL)
1964 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1965 0/*read*/, NULL, ops);
1966 if (xfered > 0)
1967 return xfered;
1968 else if (xfered == 0 && errno == 0)
1969 /* "deprecated_xfer_memory" uses 0, cross checked against
1970 ERRNO as one indication of an error. */
1971 return 0;
1972 else
1973 return -1;
1975 else if (ops->beneath != NULL)
1976 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1977 readbuf, writebuf, offset, len);
1978 else
1979 return -1;
1982 /* The xfer_partial handler for the topmost target. Unlike the default,
1983 it does not need to handle memory specially; it just passes all
1984 requests down the stack. */
1986 static LONGEST
1987 current_xfer_partial (struct target_ops *ops, enum target_object object,
1988 const char *annex, gdb_byte *readbuf,
1989 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1991 if (ops->beneath != NULL)
1992 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1993 readbuf, writebuf, offset, len);
1994 else
1995 return -1;
1998 /* Target vector read/write partial wrapper functions. */
2000 static LONGEST
2001 target_read_partial (struct target_ops *ops,
2002 enum target_object object,
2003 const char *annex, gdb_byte *buf,
2004 ULONGEST offset, LONGEST len)
2006 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len);
2009 static LONGEST
2010 target_write_partial (struct target_ops *ops,
2011 enum target_object object,
2012 const char *annex, const gdb_byte *buf,
2013 ULONGEST offset, LONGEST len)
2015 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len);
2018 /* Wrappers to perform the full transfer. */
2020 /* For docs on target_read see target.h. */
2022 LONGEST
2023 target_read (struct target_ops *ops,
2024 enum target_object object,
2025 const char *annex, gdb_byte *buf,
2026 ULONGEST offset, LONGEST len)
2028 LONGEST xfered = 0;
2030 while (xfered < len)
2032 LONGEST xfer = target_read_partial (ops, object, annex,
2033 (gdb_byte *) buf + xfered,
2034 offset + xfered, len - xfered);
2036 /* Call an observer, notifying them of the xfer progress? */
2037 if (xfer == 0)
2038 return xfered;
2039 if (xfer < 0)
2040 return -1;
2041 xfered += xfer;
2042 QUIT;
2044 return len;
2047 /* Assuming that the entire [begin, end) range of memory cannot be
2048 read, try to read whatever subrange is possible to read.
2050 The function returns, in RESULT, either zero or one memory block.
2051 If there's a readable subrange at the beginning, it is completely
2052 read and returned. Any further readable subrange will not be read.
2053 Otherwise, if there's a readable subrange at the end, it will be
2054 completely read and returned. Any readable subranges before it
2055 (obviously, not starting at the beginning), will be ignored. In
2056 other cases -- either no readable subrange, or readable subrange(s)
2057 that is neither at the beginning, or end, nothing is returned.
2059 The purpose of this function is to handle a read across a boundary
2060 of accessible memory in a case when memory map is not available.
2061 The above restrictions are fine for this case, but will give
2062 incorrect results if the memory is 'patchy'. However, supporting
2063 'patchy' memory would require trying to read every single byte,
2064 and it seems unacceptable solution. Explicit memory map is
2065 recommended for this case -- and target_read_memory_robust will
2066 take care of reading multiple ranges then. */
2068 static void
2069 read_whatever_is_readable (struct target_ops *ops,
2070 ULONGEST begin, ULONGEST end,
2071 VEC(memory_read_result_s) **result)
2073 gdb_byte *buf = xmalloc (end - begin);
2074 ULONGEST current_begin = begin;
2075 ULONGEST current_end = end;
2076 int forward;
2077 memory_read_result_s r;
2079 /* If we previously failed to read 1 byte, nothing can be done here. */
2080 if (end - begin <= 1)
2082 xfree (buf);
2083 return;
2086 /* Check that either first or the last byte is readable, and give up
2087 if not. This heuristic is meant to permit reading accessible memory
2088 at the boundary of accessible region. */
2089 if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
2090 buf, begin, 1) == 1)
2092 forward = 1;
2093 ++current_begin;
2095 else if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
2096 buf + (end-begin) - 1, end - 1, 1) == 1)
2098 forward = 0;
2099 --current_end;
2101 else
2103 xfree (buf);
2104 return;
2107 /* Loop invariant is that the [current_begin, current_end) was previously
2108 found to be not readable as a whole.
2110 Note loop condition -- if the range has 1 byte, we can't divide the range
2111 so there's no point trying further. */
2112 while (current_end - current_begin > 1)
2114 ULONGEST first_half_begin, first_half_end;
2115 ULONGEST second_half_begin, second_half_end;
2116 LONGEST xfer;
2117 ULONGEST middle = current_begin + (current_end - current_begin)/2;
2119 if (forward)
2121 first_half_begin = current_begin;
2122 first_half_end = middle;
2123 second_half_begin = middle;
2124 second_half_end = current_end;
2126 else
2128 first_half_begin = middle;
2129 first_half_end = current_end;
2130 second_half_begin = current_begin;
2131 second_half_end = middle;
2134 xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2135 buf + (first_half_begin - begin),
2136 first_half_begin,
2137 first_half_end - first_half_begin);
2139 if (xfer == first_half_end - first_half_begin)
2141 /* This half reads up fine. So, the error must be in the
2142 other half. */
2143 current_begin = second_half_begin;
2144 current_end = second_half_end;
2146 else
2148 /* This half is not readable. Because we've tried one byte, we
2149 know some part of this half if actually redable. Go to the next
2150 iteration to divide again and try to read.
2152 We don't handle the other half, because this function only tries
2153 to read a single readable subrange. */
2154 current_begin = first_half_begin;
2155 current_end = first_half_end;
2159 if (forward)
2161 /* The [begin, current_begin) range has been read. */
2162 r.begin = begin;
2163 r.end = current_begin;
2164 r.data = buf;
2166 else
2168 /* The [current_end, end) range has been read. */
2169 LONGEST rlen = end - current_end;
2171 r.data = xmalloc (rlen);
2172 memcpy (r.data, buf + current_end - begin, rlen);
2173 r.begin = current_end;
2174 r.end = end;
2175 xfree (buf);
2177 VEC_safe_push(memory_read_result_s, (*result), &r);
2180 void
2181 free_memory_read_result_vector (void *x)
2183 VEC(memory_read_result_s) *v = x;
2184 memory_read_result_s *current;
2185 int ix;
2187 for (ix = 0; VEC_iterate (memory_read_result_s, v, ix, current); ++ix)
2189 xfree (current->data);
2191 VEC_free (memory_read_result_s, v);
2194 VEC(memory_read_result_s) *
2195 read_memory_robust (struct target_ops *ops, ULONGEST offset, LONGEST len)
2197 VEC(memory_read_result_s) *result = 0;
2199 LONGEST xfered = 0;
2200 while (xfered < len)
2202 struct mem_region *region = lookup_mem_region (offset + xfered);
2203 LONGEST rlen;
2205 /* If there is no explicit region, a fake one should be created. */
2206 gdb_assert (region);
2208 if (region->hi == 0)
2209 rlen = len - xfered;
2210 else
2211 rlen = region->hi - offset;
2213 if (region->attrib.mode == MEM_NONE || region->attrib.mode == MEM_WO)
2215 /* Cannot read this region. Note that we can end up here only
2216 if the region is explicitly marked inaccessible, or
2217 'inaccessible-by-default' is in effect. */
2218 xfered += rlen;
2220 else
2222 LONGEST to_read = min (len - xfered, rlen);
2223 gdb_byte *buffer = (gdb_byte *)xmalloc (to_read);
2225 LONGEST xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2226 (gdb_byte *) buffer,
2227 offset + xfered, to_read);
2228 /* Call an observer, notifying them of the xfer progress? */
2229 if (xfer <= 0)
2231 /* Got an error reading full chunk. See if maybe we can read
2232 some subrange. */
2233 xfree (buffer);
2234 read_whatever_is_readable (ops, offset + xfered,
2235 offset + xfered + to_read, &result);
2236 xfered += to_read;
2238 else
2240 struct memory_read_result r;
2241 r.data = buffer;
2242 r.begin = offset + xfered;
2243 r.end = r.begin + xfer;
2244 VEC_safe_push (memory_read_result_s, result, &r);
2245 xfered += xfer;
2247 QUIT;
2250 return result;
2254 /* An alternative to target_write with progress callbacks. */
2256 LONGEST
2257 target_write_with_progress (struct target_ops *ops,
2258 enum target_object object,
2259 const char *annex, const gdb_byte *buf,
2260 ULONGEST offset, LONGEST len,
2261 void (*progress) (ULONGEST, void *), void *baton)
2263 LONGEST xfered = 0;
2265 /* Give the progress callback a chance to set up. */
2266 if (progress)
2267 (*progress) (0, baton);
2269 while (xfered < len)
2271 LONGEST xfer = target_write_partial (ops, object, annex,
2272 (gdb_byte *) buf + xfered,
2273 offset + xfered, len - xfered);
2275 if (xfer == 0)
2276 return xfered;
2277 if (xfer < 0)
2278 return -1;
2280 if (progress)
2281 (*progress) (xfer, baton);
2283 xfered += xfer;
2284 QUIT;
2286 return len;
2289 /* For docs on target_write see target.h. */
2291 LONGEST
2292 target_write (struct target_ops *ops,
2293 enum target_object object,
2294 const char *annex, const gdb_byte *buf,
2295 ULONGEST offset, LONGEST len)
2297 return target_write_with_progress (ops, object, annex, buf, offset, len,
2298 NULL, NULL);
2301 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2302 the size of the transferred data. PADDING additional bytes are
2303 available in *BUF_P. This is a helper function for
2304 target_read_alloc; see the declaration of that function for more
2305 information. */
2307 static LONGEST
2308 target_read_alloc_1 (struct target_ops *ops, enum target_object object,
2309 const char *annex, gdb_byte **buf_p, int padding)
2311 size_t buf_alloc, buf_pos;
2312 gdb_byte *buf;
2313 LONGEST n;
2315 /* This function does not have a length parameter; it reads the
2316 entire OBJECT). Also, it doesn't support objects fetched partly
2317 from one target and partly from another (in a different stratum,
2318 e.g. a core file and an executable). Both reasons make it
2319 unsuitable for reading memory. */
2320 gdb_assert (object != TARGET_OBJECT_MEMORY);
2322 /* Start by reading up to 4K at a time. The target will throttle
2323 this number down if necessary. */
2324 buf_alloc = 4096;
2325 buf = xmalloc (buf_alloc);
2326 buf_pos = 0;
2327 while (1)
2329 n = target_read_partial (ops, object, annex, &buf[buf_pos],
2330 buf_pos, buf_alloc - buf_pos - padding);
2331 if (n < 0)
2333 /* An error occurred. */
2334 xfree (buf);
2335 return -1;
2337 else if (n == 0)
2339 /* Read all there was. */
2340 if (buf_pos == 0)
2341 xfree (buf);
2342 else
2343 *buf_p = buf;
2344 return buf_pos;
2347 buf_pos += n;
2349 /* If the buffer is filling up, expand it. */
2350 if (buf_alloc < buf_pos * 2)
2352 buf_alloc *= 2;
2353 buf = xrealloc (buf, buf_alloc);
2356 QUIT;
2360 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2361 the size of the transferred data. See the declaration in "target.h"
2362 function for more information about the return value. */
2364 LONGEST
2365 target_read_alloc (struct target_ops *ops, enum target_object object,
2366 const char *annex, gdb_byte **buf_p)
2368 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
2371 /* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
2372 returned as a string, allocated using xmalloc. If an error occurs
2373 or the transfer is unsupported, NULL is returned. Empty objects
2374 are returned as allocated but empty strings. A warning is issued
2375 if the result contains any embedded NUL bytes. */
2377 char *
2378 target_read_stralloc (struct target_ops *ops, enum target_object object,
2379 const char *annex)
2381 gdb_byte *buffer;
2382 char *bufstr;
2383 LONGEST i, transferred;
2385 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
2386 bufstr = (char *) buffer;
2388 if (transferred < 0)
2389 return NULL;
2391 if (transferred == 0)
2392 return xstrdup ("");
2394 bufstr[transferred] = 0;
2396 /* Check for embedded NUL bytes; but allow trailing NULs. */
2397 for (i = strlen (bufstr); i < transferred; i++)
2398 if (bufstr[i] != 0)
2400 warning (_("target object %d, annex %s, "
2401 "contained unexpected null characters"),
2402 (int) object, annex ? annex : "(none)");
2403 break;
2406 return bufstr;
2409 /* Memory transfer methods. */
2411 void
2412 get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
2413 LONGEST len)
2415 /* This method is used to read from an alternate, non-current
2416 target. This read must bypass the overlay support (as symbols
2417 don't match this target), and GDB's internal cache (wrong cache
2418 for this target). */
2419 if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
2420 != len)
2421 memory_error (EIO, addr);
2424 ULONGEST
2425 get_target_memory_unsigned (struct target_ops *ops, CORE_ADDR addr,
2426 int len, enum bfd_endian byte_order)
2428 gdb_byte buf[sizeof (ULONGEST)];
2430 gdb_assert (len <= sizeof (buf));
2431 get_target_memory (ops, addr, buf, len);
2432 return extract_unsigned_integer (buf, len, byte_order);
2436 target_insert_breakpoint (struct gdbarch *gdbarch,
2437 struct bp_target_info *bp_tgt)
2439 if (!may_insert_breakpoints)
2441 warning (_("May not insert breakpoints"));
2442 return 1;
2445 return (*current_target.to_insert_breakpoint) (gdbarch, bp_tgt);
2449 target_remove_breakpoint (struct gdbarch *gdbarch,
2450 struct bp_target_info *bp_tgt)
2452 /* This is kind of a weird case to handle, but the permission might
2453 have been changed after breakpoints were inserted - in which case
2454 we should just take the user literally and assume that any
2455 breakpoints should be left in place. */
2456 if (!may_insert_breakpoints)
2458 warning (_("May not remove breakpoints"));
2459 return 1;
2462 return (*current_target.to_remove_breakpoint) (gdbarch, bp_tgt);
2465 static void
2466 target_info (char *args, int from_tty)
2468 struct target_ops *t;
2469 int has_all_mem = 0;
2471 if (symfile_objfile != NULL)
2472 printf_unfiltered (_("Symbols from \"%s\".\n"), symfile_objfile->name);
2474 for (t = target_stack; t != NULL; t = t->beneath)
2476 if (!(*t->to_has_memory) (t))
2477 continue;
2479 if ((int) (t->to_stratum) <= (int) dummy_stratum)
2480 continue;
2481 if (has_all_mem)
2482 printf_unfiltered (_("\tWhile running this, "
2483 "GDB does not access memory from...\n"));
2484 printf_unfiltered ("%s:\n", t->to_longname);
2485 (t->to_files_info) (t);
2486 has_all_mem = (*t->to_has_all_memory) (t);
2490 /* This function is called before any new inferior is created, e.g.
2491 by running a program, attaching, or connecting to a target.
2492 It cleans up any state from previous invocations which might
2493 change between runs. This is a subset of what target_preopen
2494 resets (things which might change between targets). */
2496 void
2497 target_pre_inferior (int from_tty)
2499 /* Clear out solib state. Otherwise the solib state of the previous
2500 inferior might have survived and is entirely wrong for the new
2501 target. This has been observed on GNU/Linux using glibc 2.3. How
2502 to reproduce:
2504 bash$ ./foo&
2505 [1] 4711
2506 bash$ ./foo&
2507 [1] 4712
2508 bash$ gdb ./foo
2509 [...]
2510 (gdb) attach 4711
2511 (gdb) detach
2512 (gdb) attach 4712
2513 Cannot access memory at address 0xdeadbeef
2516 /* In some OSs, the shared library list is the same/global/shared
2517 across inferiors. If code is shared between processes, so are
2518 memory regions and features. */
2519 if (!gdbarch_has_global_solist (target_gdbarch ()))
2521 no_shared_libraries (NULL, from_tty);
2523 invalidate_target_mem_regions ();
2525 target_clear_description ();
2528 agent_capability_invalidate ();
2531 /* Callback for iterate_over_inferiors. Gets rid of the given
2532 inferior. */
2534 static int
2535 dispose_inferior (struct inferior *inf, void *args)
2537 struct thread_info *thread;
2539 thread = any_thread_of_process (inf->pid);
2540 if (thread)
2542 switch_to_thread (thread->ptid);
2544 /* Core inferiors actually should be detached, not killed. */
2545 if (target_has_execution)
2546 target_kill ();
2547 else
2548 target_detach (NULL, 0);
2551 return 0;
2554 /* This is to be called by the open routine before it does
2555 anything. */
2557 void
2558 target_preopen (int from_tty)
2560 dont_repeat ();
2562 if (have_inferiors ())
2564 if (!from_tty
2565 || !have_live_inferiors ()
2566 || query (_("A program is being debugged already. Kill it? ")))
2567 iterate_over_inferiors (dispose_inferior, NULL);
2568 else
2569 error (_("Program not killed."));
2572 /* Calling target_kill may remove the target from the stack. But if
2573 it doesn't (which seems like a win for UDI), remove it now. */
2574 /* Leave the exec target, though. The user may be switching from a
2575 live process to a core of the same program. */
2576 pop_all_targets_above (file_stratum, 0);
2578 target_pre_inferior (from_tty);
2581 /* Detach a target after doing deferred register stores. */
2583 void
2584 target_detach (char *args, int from_tty)
2586 struct target_ops* t;
2588 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
2589 /* Don't remove global breakpoints here. They're removed on
2590 disconnection from the target. */
2592 else
2593 /* If we're in breakpoints-always-inserted mode, have to remove
2594 them before detaching. */
2595 remove_breakpoints_pid (PIDGET (inferior_ptid));
2597 prepare_for_detach ();
2599 for (t = current_target.beneath; t != NULL; t = t->beneath)
2601 if (t->to_detach != NULL)
2603 t->to_detach (t, args, from_tty);
2604 if (targetdebug)
2605 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n",
2606 args, from_tty);
2607 return;
2611 internal_error (__FILE__, __LINE__, _("could not find a target to detach"));
2614 void
2615 target_disconnect (char *args, int from_tty)
2617 struct target_ops *t;
2619 /* If we're in breakpoints-always-inserted mode or if breakpoints
2620 are global across processes, we have to remove them before
2621 disconnecting. */
2622 remove_breakpoints ();
2624 for (t = current_target.beneath; t != NULL; t = t->beneath)
2625 if (t->to_disconnect != NULL)
2627 if (targetdebug)
2628 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
2629 args, from_tty);
2630 t->to_disconnect (t, args, from_tty);
2631 return;
2634 tcomplain ();
2637 ptid_t
2638 target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
2640 struct target_ops *t;
2642 for (t = current_target.beneath; t != NULL; t = t->beneath)
2644 if (t->to_wait != NULL)
2646 ptid_t retval = (*t->to_wait) (t, ptid, status, options);
2648 if (targetdebug)
2650 char *status_string;
2651 char *options_string;
2653 status_string = target_waitstatus_to_string (status);
2654 options_string = target_options_to_string (options);
2655 fprintf_unfiltered (gdb_stdlog,
2656 "target_wait (%d, status, options={%s})"
2657 " = %d, %s\n",
2658 PIDGET (ptid), options_string,
2659 PIDGET (retval), status_string);
2660 xfree (status_string);
2661 xfree (options_string);
2664 return retval;
2668 noprocess ();
2671 char *
2672 target_pid_to_str (ptid_t ptid)
2674 struct target_ops *t;
2676 for (t = current_target.beneath; t != NULL; t = t->beneath)
2678 if (t->to_pid_to_str != NULL)
2679 return (*t->to_pid_to_str) (t, ptid);
2682 return normal_pid_to_str (ptid);
2685 char *
2686 target_thread_name (struct thread_info *info)
2688 struct target_ops *t;
2690 for (t = current_target.beneath; t != NULL; t = t->beneath)
2692 if (t->to_thread_name != NULL)
2693 return (*t->to_thread_name) (info);
2696 return NULL;
2699 void
2700 target_resume (ptid_t ptid, int step, enum gdb_signal signal)
2702 struct target_ops *t;
2704 target_dcache_invalidate ();
2706 for (t = current_target.beneath; t != NULL; t = t->beneath)
2708 if (t->to_resume != NULL)
2710 t->to_resume (t, ptid, step, signal);
2711 if (targetdebug)
2712 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n",
2713 PIDGET (ptid),
2714 step ? "step" : "continue",
2715 gdb_signal_to_name (signal));
2717 registers_changed_ptid (ptid);
2718 set_executing (ptid, 1);
2719 set_running (ptid, 1);
2720 clear_inline_frame_state (ptid);
2721 return;
2725 noprocess ();
2728 void
2729 target_pass_signals (int numsigs, unsigned char *pass_signals)
2731 struct target_ops *t;
2733 for (t = current_target.beneath; t != NULL; t = t->beneath)
2735 if (t->to_pass_signals != NULL)
2737 if (targetdebug)
2739 int i;
2741 fprintf_unfiltered (gdb_stdlog, "target_pass_signals (%d, {",
2742 numsigs);
2744 for (i = 0; i < numsigs; i++)
2745 if (pass_signals[i])
2746 fprintf_unfiltered (gdb_stdlog, " %s",
2747 gdb_signal_to_name (i));
2749 fprintf_unfiltered (gdb_stdlog, " })\n");
2752 (*t->to_pass_signals) (numsigs, pass_signals);
2753 return;
2758 void
2759 target_program_signals (int numsigs, unsigned char *program_signals)
2761 struct target_ops *t;
2763 for (t = current_target.beneath; t != NULL; t = t->beneath)
2765 if (t->to_program_signals != NULL)
2767 if (targetdebug)
2769 int i;
2771 fprintf_unfiltered (gdb_stdlog, "target_program_signals (%d, {",
2772 numsigs);
2774 for (i = 0; i < numsigs; i++)
2775 if (program_signals[i])
2776 fprintf_unfiltered (gdb_stdlog, " %s",
2777 gdb_signal_to_name (i));
2779 fprintf_unfiltered (gdb_stdlog, " })\n");
2782 (*t->to_program_signals) (numsigs, program_signals);
2783 return;
2788 /* Look through the list of possible targets for a target that can
2789 follow forks. */
2792 target_follow_fork (int follow_child)
2794 struct target_ops *t;
2796 for (t = current_target.beneath; t != NULL; t = t->beneath)
2798 if (t->to_follow_fork != NULL)
2800 int retval = t->to_follow_fork (t, follow_child);
2802 if (targetdebug)
2803 fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n",
2804 follow_child, retval);
2805 return retval;
2809 /* Some target returned a fork event, but did not know how to follow it. */
2810 internal_error (__FILE__, __LINE__,
2811 _("could not find a target to follow fork"));
2814 void
2815 target_mourn_inferior (void)
2817 struct target_ops *t;
2819 for (t = current_target.beneath; t != NULL; t = t->beneath)
2821 if (t->to_mourn_inferior != NULL)
2823 t->to_mourn_inferior (t);
2824 if (targetdebug)
2825 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2827 /* We no longer need to keep handles on any of the object files.
2828 Make sure to release them to avoid unnecessarily locking any
2829 of them while we're not actually debugging. */
2830 bfd_cache_close_all ();
2832 return;
2836 internal_error (__FILE__, __LINE__,
2837 _("could not find a target to follow mourn inferior"));
2840 /* Look for a target which can describe architectural features, starting
2841 from TARGET. If we find one, return its description. */
2843 const struct target_desc *
2844 target_read_description (struct target_ops *target)
2846 struct target_ops *t;
2848 for (t = target; t != NULL; t = t->beneath)
2849 if (t->to_read_description != NULL)
2851 const struct target_desc *tdesc;
2853 tdesc = t->to_read_description (t);
2854 if (tdesc)
2855 return tdesc;
2858 return NULL;
2861 /* The default implementation of to_search_memory.
2862 This implements a basic search of memory, reading target memory and
2863 performing the search here (as opposed to performing the search in on the
2864 target side with, for example, gdbserver). */
2867 simple_search_memory (struct target_ops *ops,
2868 CORE_ADDR start_addr, ULONGEST search_space_len,
2869 const gdb_byte *pattern, ULONGEST pattern_len,
2870 CORE_ADDR *found_addrp)
2872 /* NOTE: also defined in find.c testcase. */
2873 #define SEARCH_CHUNK_SIZE 16000
2874 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
2875 /* Buffer to hold memory contents for searching. */
2876 gdb_byte *search_buf;
2877 unsigned search_buf_size;
2878 struct cleanup *old_cleanups;
2880 search_buf_size = chunk_size + pattern_len - 1;
2882 /* No point in trying to allocate a buffer larger than the search space. */
2883 if (search_space_len < search_buf_size)
2884 search_buf_size = search_space_len;
2886 search_buf = malloc (search_buf_size);
2887 if (search_buf == NULL)
2888 error (_("Unable to allocate memory to perform the search."));
2889 old_cleanups = make_cleanup (free_current_contents, &search_buf);
2891 /* Prime the search buffer. */
2893 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2894 search_buf, start_addr, search_buf_size) != search_buf_size)
2896 warning (_("Unable to access %s bytes of target "
2897 "memory at %s, halting search."),
2898 pulongest (search_buf_size), hex_string (start_addr));
2899 do_cleanups (old_cleanups);
2900 return -1;
2903 /* Perform the search.
2905 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
2906 When we've scanned N bytes we copy the trailing bytes to the start and
2907 read in another N bytes. */
2909 while (search_space_len >= pattern_len)
2911 gdb_byte *found_ptr;
2912 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
2914 found_ptr = memmem (search_buf, nr_search_bytes,
2915 pattern, pattern_len);
2917 if (found_ptr != NULL)
2919 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
2921 *found_addrp = found_addr;
2922 do_cleanups (old_cleanups);
2923 return 1;
2926 /* Not found in this chunk, skip to next chunk. */
2928 /* Don't let search_space_len wrap here, it's unsigned. */
2929 if (search_space_len >= chunk_size)
2930 search_space_len -= chunk_size;
2931 else
2932 search_space_len = 0;
2934 if (search_space_len >= pattern_len)
2936 unsigned keep_len = search_buf_size - chunk_size;
2937 CORE_ADDR read_addr = start_addr + chunk_size + keep_len;
2938 int nr_to_read;
2940 /* Copy the trailing part of the previous iteration to the front
2941 of the buffer for the next iteration. */
2942 gdb_assert (keep_len == pattern_len - 1);
2943 memcpy (search_buf, search_buf + chunk_size, keep_len);
2945 nr_to_read = min (search_space_len - keep_len, chunk_size);
2947 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2948 search_buf + keep_len, read_addr,
2949 nr_to_read) != nr_to_read)
2951 warning (_("Unable to access %s bytes of target "
2952 "memory at %s, halting search."),
2953 plongest (nr_to_read),
2954 hex_string (read_addr));
2955 do_cleanups (old_cleanups);
2956 return -1;
2959 start_addr += chunk_size;
2963 /* Not found. */
2965 do_cleanups (old_cleanups);
2966 return 0;
2969 /* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2970 sequence of bytes in PATTERN with length PATTERN_LEN.
2972 The result is 1 if found, 0 if not found, and -1 if there was an error
2973 requiring halting of the search (e.g. memory read error).
2974 If the pattern is found the address is recorded in FOUND_ADDRP. */
2977 target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2978 const gdb_byte *pattern, ULONGEST pattern_len,
2979 CORE_ADDR *found_addrp)
2981 struct target_ops *t;
2982 int found;
2984 /* We don't use INHERIT to set current_target.to_search_memory,
2985 so we have to scan the target stack and handle targetdebug
2986 ourselves. */
2988 if (targetdebug)
2989 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
2990 hex_string (start_addr));
2992 for (t = current_target.beneath; t != NULL; t = t->beneath)
2993 if (t->to_search_memory != NULL)
2994 break;
2996 if (t != NULL)
2998 found = t->to_search_memory (t, start_addr, search_space_len,
2999 pattern, pattern_len, found_addrp);
3001 else
3003 /* If a special version of to_search_memory isn't available, use the
3004 simple version. */
3005 found = simple_search_memory (current_target.beneath,
3006 start_addr, search_space_len,
3007 pattern, pattern_len, found_addrp);
3010 if (targetdebug)
3011 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
3013 return found;
3016 /* Look through the currently pushed targets. If none of them will
3017 be able to restart the currently running process, issue an error
3018 message. */
3020 void
3021 target_require_runnable (void)
3023 struct target_ops *t;
3025 for (t = target_stack; t != NULL; t = t->beneath)
3027 /* If this target knows how to create a new program, then
3028 assume we will still be able to after killing the current
3029 one. Either killing and mourning will not pop T, or else
3030 find_default_run_target will find it again. */
3031 if (t->to_create_inferior != NULL)
3032 return;
3034 /* Do not worry about thread_stratum targets that can not
3035 create inferiors. Assume they will be pushed again if
3036 necessary, and continue to the process_stratum. */
3037 if (t->to_stratum == thread_stratum
3038 || t->to_stratum == arch_stratum)
3039 continue;
3041 error (_("The \"%s\" target does not support \"run\". "
3042 "Try \"help target\" or \"continue\"."),
3043 t->to_shortname);
3046 /* This function is only called if the target is running. In that
3047 case there should have been a process_stratum target and it
3048 should either know how to create inferiors, or not... */
3049 internal_error (__FILE__, __LINE__, _("No targets found"));
3052 /* Look through the list of possible targets for a target that can
3053 execute a run or attach command without any other data. This is
3054 used to locate the default process stratum.
3056 If DO_MESG is not NULL, the result is always valid (error() is
3057 called for errors); else, return NULL on error. */
3059 static struct target_ops *
3060 find_default_run_target (char *do_mesg)
3062 struct target_ops **t;
3063 struct target_ops *runable = NULL;
3064 int count;
3066 count = 0;
3068 for (t = target_structs; t < target_structs + target_struct_size;
3069 ++t)
3071 if ((*t)->to_can_run && target_can_run (*t))
3073 runable = *t;
3074 ++count;
3078 if (count != 1)
3080 if (do_mesg)
3081 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
3082 else
3083 return NULL;
3086 return runable;
3089 void
3090 find_default_attach (struct target_ops *ops, char *args, int from_tty)
3092 struct target_ops *t;
3094 t = find_default_run_target ("attach");
3095 (t->to_attach) (t, args, from_tty);
3096 return;
3099 void
3100 find_default_create_inferior (struct target_ops *ops,
3101 char *exec_file, char *allargs, char **env,
3102 int from_tty)
3104 struct target_ops *t;
3106 t = find_default_run_target ("run");
3107 (t->to_create_inferior) (t, exec_file, allargs, env, from_tty);
3108 return;
3111 static int
3112 find_default_can_async_p (void)
3114 struct target_ops *t;
3116 /* This may be called before the target is pushed on the stack;
3117 look for the default process stratum. If there's none, gdb isn't
3118 configured with a native debugger, and target remote isn't
3119 connected yet. */
3120 t = find_default_run_target (NULL);
3121 if (t && t->to_can_async_p)
3122 return (t->to_can_async_p) ();
3123 return 0;
3126 static int
3127 find_default_is_async_p (void)
3129 struct target_ops *t;
3131 /* This may be called before the target is pushed on the stack;
3132 look for the default process stratum. If there's none, gdb isn't
3133 configured with a native debugger, and target remote isn't
3134 connected yet. */
3135 t = find_default_run_target (NULL);
3136 if (t && t->to_is_async_p)
3137 return (t->to_is_async_p) ();
3138 return 0;
3141 static int
3142 find_default_supports_non_stop (void)
3144 struct target_ops *t;
3146 t = find_default_run_target (NULL);
3147 if (t && t->to_supports_non_stop)
3148 return (t->to_supports_non_stop) ();
3149 return 0;
3153 target_supports_non_stop (void)
3155 struct target_ops *t;
3157 for (t = &current_target; t != NULL; t = t->beneath)
3158 if (t->to_supports_non_stop)
3159 return t->to_supports_non_stop ();
3161 return 0;
3164 /* Implement the "info proc" command. */
3167 target_info_proc (char *args, enum info_proc_what what)
3169 struct target_ops *t;
3171 /* If we're already connected to something that can get us OS
3172 related data, use it. Otherwise, try using the native
3173 target. */
3174 if (current_target.to_stratum >= process_stratum)
3175 t = current_target.beneath;
3176 else
3177 t = find_default_run_target (NULL);
3179 for (; t != NULL; t = t->beneath)
3181 if (t->to_info_proc != NULL)
3183 t->to_info_proc (t, args, what);
3185 if (targetdebug)
3186 fprintf_unfiltered (gdb_stdlog,
3187 "target_info_proc (\"%s\", %d)\n", args, what);
3189 return 1;
3193 return 0;
3196 static int
3197 find_default_supports_disable_randomization (void)
3199 struct target_ops *t;
3201 t = find_default_run_target (NULL);
3202 if (t && t->to_supports_disable_randomization)
3203 return (t->to_supports_disable_randomization) ();
3204 return 0;
3208 target_supports_disable_randomization (void)
3210 struct target_ops *t;
3212 for (t = &current_target; t != NULL; t = t->beneath)
3213 if (t->to_supports_disable_randomization)
3214 return t->to_supports_disable_randomization ();
3216 return 0;
3219 char *
3220 target_get_osdata (const char *type)
3222 struct target_ops *t;
3224 /* If we're already connected to something that can get us OS
3225 related data, use it. Otherwise, try using the native
3226 target. */
3227 if (current_target.to_stratum >= process_stratum)
3228 t = current_target.beneath;
3229 else
3230 t = find_default_run_target ("get OS data");
3232 if (!t)
3233 return NULL;
3235 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
3238 /* Determine the current address space of thread PTID. */
3240 struct address_space *
3241 target_thread_address_space (ptid_t ptid)
3243 struct address_space *aspace;
3244 struct inferior *inf;
3245 struct target_ops *t;
3247 for (t = current_target.beneath; t != NULL; t = t->beneath)
3249 if (t->to_thread_address_space != NULL)
3251 aspace = t->to_thread_address_space (t, ptid);
3252 gdb_assert (aspace);
3254 if (targetdebug)
3255 fprintf_unfiltered (gdb_stdlog,
3256 "target_thread_address_space (%s) = %d\n",
3257 target_pid_to_str (ptid),
3258 address_space_num (aspace));
3259 return aspace;
3263 /* Fall-back to the "main" address space of the inferior. */
3264 inf = find_inferior_pid (ptid_get_pid (ptid));
3266 if (inf == NULL || inf->aspace == NULL)
3267 internal_error (__FILE__, __LINE__,
3268 _("Can't determine the current "
3269 "address space of thread %s\n"),
3270 target_pid_to_str (ptid));
3272 return inf->aspace;
3276 /* Target file operations. */
3278 static struct target_ops *
3279 default_fileio_target (void)
3281 /* If we're already connected to something that can perform
3282 file I/O, use it. Otherwise, try using the native target. */
3283 if (current_target.to_stratum >= process_stratum)
3284 return current_target.beneath;
3285 else
3286 return find_default_run_target ("file I/O");
3289 /* Open FILENAME on the target, using FLAGS and MODE. Return a
3290 target file descriptor, or -1 if an error occurs (and set
3291 *TARGET_ERRNO). */
3293 target_fileio_open (const char *filename, int flags, int mode,
3294 int *target_errno)
3296 struct target_ops *t;
3298 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3300 if (t->to_fileio_open != NULL)
3302 int fd = t->to_fileio_open (filename, flags, mode, target_errno);
3304 if (targetdebug)
3305 fprintf_unfiltered (gdb_stdlog,
3306 "target_fileio_open (%s,0x%x,0%o) = %d (%d)\n",
3307 filename, flags, mode,
3308 fd, fd != -1 ? 0 : *target_errno);
3309 return fd;
3313 *target_errno = FILEIO_ENOSYS;
3314 return -1;
3317 /* Write up to LEN bytes from WRITE_BUF to FD on the target.
3318 Return the number of bytes written, or -1 if an error occurs
3319 (and set *TARGET_ERRNO). */
3321 target_fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
3322 ULONGEST offset, int *target_errno)
3324 struct target_ops *t;
3326 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3328 if (t->to_fileio_pwrite != NULL)
3330 int ret = t->to_fileio_pwrite (fd, write_buf, len, offset,
3331 target_errno);
3333 if (targetdebug)
3334 fprintf_unfiltered (gdb_stdlog,
3335 "target_fileio_pwrite (%d,...,%d,%s) "
3336 "= %d (%d)\n",
3337 fd, len, pulongest (offset),
3338 ret, ret != -1 ? 0 : *target_errno);
3339 return ret;
3343 *target_errno = FILEIO_ENOSYS;
3344 return -1;
3347 /* Read up to LEN bytes FD on the target into READ_BUF.
3348 Return the number of bytes read, or -1 if an error occurs
3349 (and set *TARGET_ERRNO). */
3351 target_fileio_pread (int fd, gdb_byte *read_buf, int len,
3352 ULONGEST offset, int *target_errno)
3354 struct target_ops *t;
3356 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3358 if (t->to_fileio_pread != NULL)
3360 int ret = t->to_fileio_pread (fd, read_buf, len, offset,
3361 target_errno);
3363 if (targetdebug)
3364 fprintf_unfiltered (gdb_stdlog,
3365 "target_fileio_pread (%d,...,%d,%s) "
3366 "= %d (%d)\n",
3367 fd, len, pulongest (offset),
3368 ret, ret != -1 ? 0 : *target_errno);
3369 return ret;
3373 *target_errno = FILEIO_ENOSYS;
3374 return -1;
3377 /* Close FD on the target. Return 0, or -1 if an error occurs
3378 (and set *TARGET_ERRNO). */
3380 target_fileio_close (int fd, int *target_errno)
3382 struct target_ops *t;
3384 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3386 if (t->to_fileio_close != NULL)
3388 int ret = t->to_fileio_close (fd, target_errno);
3390 if (targetdebug)
3391 fprintf_unfiltered (gdb_stdlog,
3392 "target_fileio_close (%d) = %d (%d)\n",
3393 fd, ret, ret != -1 ? 0 : *target_errno);
3394 return ret;
3398 *target_errno = FILEIO_ENOSYS;
3399 return -1;
3402 /* Unlink FILENAME on the target. Return 0, or -1 if an error
3403 occurs (and set *TARGET_ERRNO). */
3405 target_fileio_unlink (const char *filename, int *target_errno)
3407 struct target_ops *t;
3409 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3411 if (t->to_fileio_unlink != NULL)
3413 int ret = t->to_fileio_unlink (filename, target_errno);
3415 if (targetdebug)
3416 fprintf_unfiltered (gdb_stdlog,
3417 "target_fileio_unlink (%s) = %d (%d)\n",
3418 filename, ret, ret != -1 ? 0 : *target_errno);
3419 return ret;
3423 *target_errno = FILEIO_ENOSYS;
3424 return -1;
3427 /* Read value of symbolic link FILENAME on the target. Return a
3428 null-terminated string allocated via xmalloc, or NULL if an error
3429 occurs (and set *TARGET_ERRNO). */
3430 char *
3431 target_fileio_readlink (const char *filename, int *target_errno)
3433 struct target_ops *t;
3435 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3437 if (t->to_fileio_readlink != NULL)
3439 char *ret = t->to_fileio_readlink (filename, target_errno);
3441 if (targetdebug)
3442 fprintf_unfiltered (gdb_stdlog,
3443 "target_fileio_readlink (%s) = %s (%d)\n",
3444 filename, ret? ret : "(nil)",
3445 ret? 0 : *target_errno);
3446 return ret;
3450 *target_errno = FILEIO_ENOSYS;
3451 return NULL;
3454 static void
3455 target_fileio_close_cleanup (void *opaque)
3457 int fd = *(int *) opaque;
3458 int target_errno;
3460 target_fileio_close (fd, &target_errno);
3463 /* Read target file FILENAME. Store the result in *BUF_P and
3464 return the size of the transferred data. PADDING additional bytes are
3465 available in *BUF_P. This is a helper function for
3466 target_fileio_read_alloc; see the declaration of that function for more
3467 information. */
3469 static LONGEST
3470 target_fileio_read_alloc_1 (const char *filename,
3471 gdb_byte **buf_p, int padding)
3473 struct cleanup *close_cleanup;
3474 size_t buf_alloc, buf_pos;
3475 gdb_byte *buf;
3476 LONGEST n;
3477 int fd;
3478 int target_errno;
3480 fd = target_fileio_open (filename, FILEIO_O_RDONLY, 0700, &target_errno);
3481 if (fd == -1)
3482 return -1;
3484 close_cleanup = make_cleanup (target_fileio_close_cleanup, &fd);
3486 /* Start by reading up to 4K at a time. The target will throttle
3487 this number down if necessary. */
3488 buf_alloc = 4096;
3489 buf = xmalloc (buf_alloc);
3490 buf_pos = 0;
3491 while (1)
3493 n = target_fileio_pread (fd, &buf[buf_pos],
3494 buf_alloc - buf_pos - padding, buf_pos,
3495 &target_errno);
3496 if (n < 0)
3498 /* An error occurred. */
3499 do_cleanups (close_cleanup);
3500 xfree (buf);
3501 return -1;
3503 else if (n == 0)
3505 /* Read all there was. */
3506 do_cleanups (close_cleanup);
3507 if (buf_pos == 0)
3508 xfree (buf);
3509 else
3510 *buf_p = buf;
3511 return buf_pos;
3514 buf_pos += n;
3516 /* If the buffer is filling up, expand it. */
3517 if (buf_alloc < buf_pos * 2)
3519 buf_alloc *= 2;
3520 buf = xrealloc (buf, buf_alloc);
3523 QUIT;
3527 /* Read target file FILENAME. Store the result in *BUF_P and return
3528 the size of the transferred data. See the declaration in "target.h"
3529 function for more information about the return value. */
3531 LONGEST
3532 target_fileio_read_alloc (const char *filename, gdb_byte **buf_p)
3534 return target_fileio_read_alloc_1 (filename, buf_p, 0);
3537 /* Read target file FILENAME. The result is NUL-terminated and
3538 returned as a string, allocated using xmalloc. If an error occurs
3539 or the transfer is unsupported, NULL is returned. Empty objects
3540 are returned as allocated but empty strings. A warning is issued
3541 if the result contains any embedded NUL bytes. */
3543 char *
3544 target_fileio_read_stralloc (const char *filename)
3546 gdb_byte *buffer;
3547 char *bufstr;
3548 LONGEST i, transferred;
3550 transferred = target_fileio_read_alloc_1 (filename, &buffer, 1);
3551 bufstr = (char *) buffer;
3553 if (transferred < 0)
3554 return NULL;
3556 if (transferred == 0)
3557 return xstrdup ("");
3559 bufstr[transferred] = 0;
3561 /* Check for embedded NUL bytes; but allow trailing NULs. */
3562 for (i = strlen (bufstr); i < transferred; i++)
3563 if (bufstr[i] != 0)
3565 warning (_("target file %s "
3566 "contained unexpected null characters"),
3567 filename);
3568 break;
3571 return bufstr;
3575 static int
3576 default_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
3578 return (len <= gdbarch_ptr_bit (target_gdbarch ()) / TARGET_CHAR_BIT);
3581 static int
3582 default_watchpoint_addr_within_range (struct target_ops *target,
3583 CORE_ADDR addr,
3584 CORE_ADDR start, int length)
3586 return addr >= start && addr < start + length;
3589 static struct gdbarch *
3590 default_thread_architecture (struct target_ops *ops, ptid_t ptid)
3592 return target_gdbarch ();
3595 static int
3596 return_zero (void)
3598 return 0;
3601 static int
3602 return_one (void)
3604 return 1;
3607 static int
3608 return_minus_one (void)
3610 return -1;
3613 /* Find a single runnable target in the stack and return it. If for
3614 some reason there is more than one, return NULL. */
3616 struct target_ops *
3617 find_run_target (void)
3619 struct target_ops **t;
3620 struct target_ops *runable = NULL;
3621 int count;
3623 count = 0;
3625 for (t = target_structs; t < target_structs + target_struct_size; ++t)
3627 if ((*t)->to_can_run && target_can_run (*t))
3629 runable = *t;
3630 ++count;
3634 return (count == 1 ? runable : NULL);
3638 * Find the next target down the stack from the specified target.
3641 struct target_ops *
3642 find_target_beneath (struct target_ops *t)
3644 return t->beneath;
3648 /* The inferior process has died. Long live the inferior! */
3650 void
3651 generic_mourn_inferior (void)
3653 ptid_t ptid;
3655 ptid = inferior_ptid;
3656 inferior_ptid = null_ptid;
3658 /* Mark breakpoints uninserted in case something tries to delete a
3659 breakpoint while we delete the inferior's threads (which would
3660 fail, since the inferior is long gone). */
3661 mark_breakpoints_out ();
3663 if (!ptid_equal (ptid, null_ptid))
3665 int pid = ptid_get_pid (ptid);
3666 exit_inferior (pid);
3669 /* Note this wipes step-resume breakpoints, so needs to be done
3670 after exit_inferior, which ends up referencing the step-resume
3671 breakpoints through clear_thread_inferior_resources. */
3672 breakpoint_init_inferior (inf_exited);
3674 registers_changed ();
3676 reopen_exec_file ();
3677 reinit_frame_cache ();
3679 if (deprecated_detach_hook)
3680 deprecated_detach_hook ();
3683 /* Convert a normal process ID to a string. Returns the string in a
3684 static buffer. */
3686 char *
3687 normal_pid_to_str (ptid_t ptid)
3689 static char buf[32];
3691 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
3692 return buf;
3695 static char *
3696 dummy_pid_to_str (struct target_ops *ops, ptid_t ptid)
3698 return normal_pid_to_str (ptid);
3701 /* Error-catcher for target_find_memory_regions. */
3702 static int
3703 dummy_find_memory_regions (find_memory_region_ftype ignore1, void *ignore2)
3705 error (_("Command not implemented for this target."));
3706 return 0;
3709 /* Error-catcher for target_make_corefile_notes. */
3710 static char *
3711 dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
3713 error (_("Command not implemented for this target."));
3714 return NULL;
3717 /* Error-catcher for target_get_bookmark. */
3718 static gdb_byte *
3719 dummy_get_bookmark (char *ignore1, int ignore2)
3721 tcomplain ();
3722 return NULL;
3725 /* Error-catcher for target_goto_bookmark. */
3726 static void
3727 dummy_goto_bookmark (gdb_byte *ignore, int from_tty)
3729 tcomplain ();
3732 /* Set up the handful of non-empty slots needed by the dummy target
3733 vector. */
3735 static void
3736 init_dummy_target (void)
3738 dummy_target.to_shortname = "None";
3739 dummy_target.to_longname = "None";
3740 dummy_target.to_doc = "";
3741 dummy_target.to_attach = find_default_attach;
3742 dummy_target.to_detach =
3743 (void (*)(struct target_ops *, char *, int))target_ignore;
3744 dummy_target.to_create_inferior = find_default_create_inferior;
3745 dummy_target.to_can_async_p = find_default_can_async_p;
3746 dummy_target.to_is_async_p = find_default_is_async_p;
3747 dummy_target.to_supports_non_stop = find_default_supports_non_stop;
3748 dummy_target.to_supports_disable_randomization
3749 = find_default_supports_disable_randomization;
3750 dummy_target.to_pid_to_str = dummy_pid_to_str;
3751 dummy_target.to_stratum = dummy_stratum;
3752 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
3753 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
3754 dummy_target.to_get_bookmark = dummy_get_bookmark;
3755 dummy_target.to_goto_bookmark = dummy_goto_bookmark;
3756 dummy_target.to_xfer_partial = default_xfer_partial;
3757 dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
3758 dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero;
3759 dummy_target.to_has_stack = (int (*) (struct target_ops *)) return_zero;
3760 dummy_target.to_has_registers = (int (*) (struct target_ops *)) return_zero;
3761 dummy_target.to_has_execution
3762 = (int (*) (struct target_ops *, ptid_t)) return_zero;
3763 dummy_target.to_stopped_by_watchpoint = return_zero;
3764 dummy_target.to_stopped_data_address =
3765 (int (*) (struct target_ops *, CORE_ADDR *)) return_zero;
3766 dummy_target.to_magic = OPS_MAGIC;
3769 static void
3770 debug_to_open (char *args, int from_tty)
3772 debug_target.to_open (args, from_tty);
3774 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
3777 void
3778 target_close (struct target_ops *targ, int quitting)
3780 if (targ->to_xclose != NULL)
3781 targ->to_xclose (targ, quitting);
3782 else if (targ->to_close != NULL)
3783 targ->to_close (quitting);
3785 if (targetdebug)
3786 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
3789 void
3790 target_attach (char *args, int from_tty)
3792 struct target_ops *t;
3794 for (t = current_target.beneath; t != NULL; t = t->beneath)
3796 if (t->to_attach != NULL)
3798 t->to_attach (t, args, from_tty);
3799 if (targetdebug)
3800 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n",
3801 args, from_tty);
3802 return;
3806 internal_error (__FILE__, __LINE__,
3807 _("could not find a target to attach"));
3811 target_thread_alive (ptid_t ptid)
3813 struct target_ops *t;
3815 for (t = current_target.beneath; t != NULL; t = t->beneath)
3817 if (t->to_thread_alive != NULL)
3819 int retval;
3821 retval = t->to_thread_alive (t, ptid);
3822 if (targetdebug)
3823 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
3824 PIDGET (ptid), retval);
3826 return retval;
3830 return 0;
3833 void
3834 target_find_new_threads (void)
3836 struct target_ops *t;
3838 for (t = current_target.beneath; t != NULL; t = t->beneath)
3840 if (t->to_find_new_threads != NULL)
3842 t->to_find_new_threads (t);
3843 if (targetdebug)
3844 fprintf_unfiltered (gdb_stdlog, "target_find_new_threads ()\n");
3846 return;
3851 void
3852 target_stop (ptid_t ptid)
3854 if (!may_stop)
3856 warning (_("May not interrupt or stop the target, ignoring attempt"));
3857 return;
3860 (*current_target.to_stop) (ptid);
3863 static void
3864 debug_to_post_attach (int pid)
3866 debug_target.to_post_attach (pid);
3868 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
3871 /* Return a pretty printed form of target_waitstatus.
3872 Space for the result is malloc'd, caller must free. */
3874 char *
3875 target_waitstatus_to_string (const struct target_waitstatus *ws)
3877 const char *kind_str = "status->kind = ";
3879 switch (ws->kind)
3881 case TARGET_WAITKIND_EXITED:
3882 return xstrprintf ("%sexited, status = %d",
3883 kind_str, ws->value.integer);
3884 case TARGET_WAITKIND_STOPPED:
3885 return xstrprintf ("%sstopped, signal = %s",
3886 kind_str, gdb_signal_to_name (ws->value.sig));
3887 case TARGET_WAITKIND_SIGNALLED:
3888 return xstrprintf ("%ssignalled, signal = %s",
3889 kind_str, gdb_signal_to_name (ws->value.sig));
3890 case TARGET_WAITKIND_LOADED:
3891 return xstrprintf ("%sloaded", kind_str);
3892 case TARGET_WAITKIND_FORKED:
3893 return xstrprintf ("%sforked", kind_str);
3894 case TARGET_WAITKIND_VFORKED:
3895 return xstrprintf ("%svforked", kind_str);
3896 case TARGET_WAITKIND_EXECD:
3897 return xstrprintf ("%sexecd", kind_str);
3898 case TARGET_WAITKIND_VFORK_DONE:
3899 return xstrprintf ("%svfork-done", kind_str);
3900 case TARGET_WAITKIND_SYSCALL_ENTRY:
3901 return xstrprintf ("%sentered syscall", kind_str);
3902 case TARGET_WAITKIND_SYSCALL_RETURN:
3903 return xstrprintf ("%sexited syscall", kind_str);
3904 case TARGET_WAITKIND_SPURIOUS:
3905 return xstrprintf ("%sspurious", kind_str);
3906 case TARGET_WAITKIND_IGNORE:
3907 return xstrprintf ("%signore", kind_str);
3908 case TARGET_WAITKIND_NO_HISTORY:
3909 return xstrprintf ("%sno-history", kind_str);
3910 case TARGET_WAITKIND_NO_RESUMED:
3911 return xstrprintf ("%sno-resumed", kind_str);
3912 default:
3913 return xstrprintf ("%sunknown???", kind_str);
3917 /* Concatenate ELEM to LIST, a comma separate list, and return the
3918 result. The LIST incoming argument is released. */
3920 static char *
3921 str_comma_list_concat_elem (char *list, const char *elem)
3923 if (list == NULL)
3924 return xstrdup (elem);
3925 else
3926 return reconcat (list, list, ", ", elem, (char *) NULL);
3929 /* Helper for target_options_to_string. If OPT is present in
3930 TARGET_OPTIONS, append the OPT_STR (string version of OPT) in RET.
3931 Returns the new resulting string. OPT is removed from
3932 TARGET_OPTIONS. */
3934 static char *
3935 do_option (int *target_options, char *ret,
3936 int opt, char *opt_str)
3938 if ((*target_options & opt) != 0)
3940 ret = str_comma_list_concat_elem (ret, opt_str);
3941 *target_options &= ~opt;
3944 return ret;
3947 char *
3948 target_options_to_string (int target_options)
3950 char *ret = NULL;
3952 #define DO_TARG_OPTION(OPT) \
3953 ret = do_option (&target_options, ret, OPT, #OPT)
3955 DO_TARG_OPTION (TARGET_WNOHANG);
3957 if (target_options != 0)
3958 ret = str_comma_list_concat_elem (ret, "unknown???");
3960 if (ret == NULL)
3961 ret = xstrdup ("");
3962 return ret;
3965 static void
3966 debug_print_register (const char * func,
3967 struct regcache *regcache, int regno)
3969 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3971 fprintf_unfiltered (gdb_stdlog, "%s ", func);
3972 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
3973 && gdbarch_register_name (gdbarch, regno) != NULL
3974 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
3975 fprintf_unfiltered (gdb_stdlog, "(%s)",
3976 gdbarch_register_name (gdbarch, regno));
3977 else
3978 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
3979 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
3981 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3982 int i, size = register_size (gdbarch, regno);
3983 gdb_byte buf[MAX_REGISTER_SIZE];
3985 regcache_raw_collect (regcache, regno, buf);
3986 fprintf_unfiltered (gdb_stdlog, " = ");
3987 for (i = 0; i < size; i++)
3989 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3991 if (size <= sizeof (LONGEST))
3993 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
3995 fprintf_unfiltered (gdb_stdlog, " %s %s",
3996 core_addr_to_string_nz (val), plongest (val));
3999 fprintf_unfiltered (gdb_stdlog, "\n");
4002 void
4003 target_fetch_registers (struct regcache *regcache, int regno)
4005 struct target_ops *t;
4007 for (t = current_target.beneath; t != NULL; t = t->beneath)
4009 if (t->to_fetch_registers != NULL)
4011 t->to_fetch_registers (t, regcache, regno);
4012 if (targetdebug)
4013 debug_print_register ("target_fetch_registers", regcache, regno);
4014 return;
4019 void
4020 target_store_registers (struct regcache *regcache, int regno)
4022 struct target_ops *t;
4024 if (!may_write_registers)
4025 error (_("Writing to registers is not allowed (regno %d)"), regno);
4027 for (t = current_target.beneath; t != NULL; t = t->beneath)
4029 if (t->to_store_registers != NULL)
4031 t->to_store_registers (t, regcache, regno);
4032 if (targetdebug)
4034 debug_print_register ("target_store_registers", regcache, regno);
4036 return;
4040 noprocess ();
4044 target_core_of_thread (ptid_t ptid)
4046 struct target_ops *t;
4048 for (t = current_target.beneath; t != NULL; t = t->beneath)
4050 if (t->to_core_of_thread != NULL)
4052 int retval = t->to_core_of_thread (t, ptid);
4054 if (targetdebug)
4055 fprintf_unfiltered (gdb_stdlog,
4056 "target_core_of_thread (%d) = %d\n",
4057 PIDGET (ptid), retval);
4058 return retval;
4062 return -1;
4066 target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
4068 struct target_ops *t;
4070 for (t = current_target.beneath; t != NULL; t = t->beneath)
4072 if (t->to_verify_memory != NULL)
4074 int retval = t->to_verify_memory (t, data, memaddr, size);
4076 if (targetdebug)
4077 fprintf_unfiltered (gdb_stdlog,
4078 "target_verify_memory (%s, %s) = %d\n",
4079 paddress (target_gdbarch (), memaddr),
4080 pulongest (size),
4081 retval);
4082 return retval;
4086 tcomplain ();
4089 /* The documentation for this function is in its prototype declaration in
4090 target.h. */
4093 target_insert_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
4095 struct target_ops *t;
4097 for (t = current_target.beneath; t != NULL; t = t->beneath)
4098 if (t->to_insert_mask_watchpoint != NULL)
4100 int ret;
4102 ret = t->to_insert_mask_watchpoint (t, addr, mask, rw);
4104 if (targetdebug)
4105 fprintf_unfiltered (gdb_stdlog, "\
4106 target_insert_mask_watchpoint (%s, %s, %d) = %d\n",
4107 core_addr_to_string (addr),
4108 core_addr_to_string (mask), rw, ret);
4110 return ret;
4113 return 1;
4116 /* The documentation for this function is in its prototype declaration in
4117 target.h. */
4120 target_remove_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
4122 struct target_ops *t;
4124 for (t = current_target.beneath; t != NULL; t = t->beneath)
4125 if (t->to_remove_mask_watchpoint != NULL)
4127 int ret;
4129 ret = t->to_remove_mask_watchpoint (t, addr, mask, rw);
4131 if (targetdebug)
4132 fprintf_unfiltered (gdb_stdlog, "\
4133 target_remove_mask_watchpoint (%s, %s, %d) = %d\n",
4134 core_addr_to_string (addr),
4135 core_addr_to_string (mask), rw, ret);
4137 return ret;
4140 return 1;
4143 /* The documentation for this function is in its prototype declaration
4144 in target.h. */
4147 target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask)
4149 struct target_ops *t;
4151 for (t = current_target.beneath; t != NULL; t = t->beneath)
4152 if (t->to_masked_watch_num_registers != NULL)
4153 return t->to_masked_watch_num_registers (t, addr, mask);
4155 return -1;
4158 /* The documentation for this function is in its prototype declaration
4159 in target.h. */
4162 target_ranged_break_num_registers (void)
4164 struct target_ops *t;
4166 for (t = current_target.beneath; t != NULL; t = t->beneath)
4167 if (t->to_ranged_break_num_registers != NULL)
4168 return t->to_ranged_break_num_registers (t);
4170 return -1;
4173 /* See target.h. */
4176 target_supports_btrace (void)
4178 struct target_ops *t;
4180 for (t = current_target.beneath; t != NULL; t = t->beneath)
4181 if (t->to_supports_btrace != NULL)
4182 return t->to_supports_btrace ();
4184 return 0;
4187 /* See target.h. */
4189 struct btrace_target_info *
4190 target_enable_btrace (ptid_t ptid)
4192 struct target_ops *t;
4194 for (t = current_target.beneath; t != NULL; t = t->beneath)
4195 if (t->to_enable_btrace != NULL)
4196 return t->to_enable_btrace (ptid);
4198 tcomplain ();
4199 return NULL;
4202 /* See target.h. */
4204 void
4205 target_disable_btrace (struct btrace_target_info *btinfo)
4207 struct target_ops *t;
4209 for (t = current_target.beneath; t != NULL; t = t->beneath)
4210 if (t->to_disable_btrace != NULL)
4211 return t->to_disable_btrace (btinfo);
4213 tcomplain ();
4216 /* See target.h. */
4218 void
4219 target_teardown_btrace (struct btrace_target_info *btinfo)
4221 struct target_ops *t;
4223 for (t = current_target.beneath; t != NULL; t = t->beneath)
4224 if (t->to_teardown_btrace != NULL)
4225 return t->to_teardown_btrace (btinfo);
4227 tcomplain ();
4230 /* See target.h. */
4232 VEC (btrace_block_s) *
4233 target_read_btrace (struct btrace_target_info *btinfo,
4234 enum btrace_read_type type)
4236 struct target_ops *t;
4238 for (t = current_target.beneath; t != NULL; t = t->beneath)
4239 if (t->to_read_btrace != NULL)
4240 return t->to_read_btrace (btinfo, type);
4242 tcomplain ();
4243 return NULL;
4246 /* See target.h. */
4248 void
4249 target_stop_recording (void)
4251 struct target_ops *t;
4253 for (t = current_target.beneath; t != NULL; t = t->beneath)
4254 if (t->to_stop_recording != NULL)
4256 t->to_stop_recording ();
4257 return;
4260 /* This is optional. */
4263 /* See target.h. */
4265 void
4266 target_info_record (void)
4268 struct target_ops *t;
4270 for (t = current_target.beneath; t != NULL; t = t->beneath)
4271 if (t->to_info_record != NULL)
4273 t->to_info_record ();
4274 return;
4277 tcomplain ();
4280 /* See target.h. */
4282 void
4283 target_save_record (char *filename)
4285 struct target_ops *t;
4287 for (t = current_target.beneath; t != NULL; t = t->beneath)
4288 if (t->to_save_record != NULL)
4290 t->to_save_record (filename);
4291 return;
4294 tcomplain ();
4297 /* See target.h. */
4300 target_supports_delete_record (void)
4302 struct target_ops *t;
4304 for (t = current_target.beneath; t != NULL; t = t->beneath)
4305 if (t->to_delete_record != NULL)
4306 return 1;
4308 return 0;
4311 /* See target.h. */
4313 void
4314 target_delete_record (void)
4316 struct target_ops *t;
4318 for (t = current_target.beneath; t != NULL; t = t->beneath)
4319 if (t->to_delete_record != NULL)
4321 t->to_delete_record ();
4322 return;
4325 tcomplain ();
4328 /* See target.h. */
4331 target_record_is_replaying (void)
4333 struct target_ops *t;
4335 for (t = current_target.beneath; t != NULL; t = t->beneath)
4336 if (t->to_record_is_replaying != NULL)
4337 return t->to_record_is_replaying ();
4339 return 0;
4342 /* See target.h. */
4344 void
4345 target_goto_record_begin (void)
4347 struct target_ops *t;
4349 for (t = current_target.beneath; t != NULL; t = t->beneath)
4350 if (t->to_goto_record_begin != NULL)
4352 t->to_goto_record_begin ();
4353 return;
4356 tcomplain ();
4359 /* See target.h. */
4361 void
4362 target_goto_record_end (void)
4364 struct target_ops *t;
4366 for (t = current_target.beneath; t != NULL; t = t->beneath)
4367 if (t->to_goto_record_end != NULL)
4369 t->to_goto_record_end ();
4370 return;
4373 tcomplain ();
4376 /* See target.h. */
4378 void
4379 target_goto_record (ULONGEST insn)
4381 struct target_ops *t;
4383 for (t = current_target.beneath; t != NULL; t = t->beneath)
4384 if (t->to_goto_record != NULL)
4386 t->to_goto_record (insn);
4387 return;
4390 tcomplain ();
4393 /* See target.h. */
4395 void
4396 target_insn_history (int size, int flags)
4398 struct target_ops *t;
4400 for (t = current_target.beneath; t != NULL; t = t->beneath)
4401 if (t->to_insn_history != NULL)
4403 t->to_insn_history (size, flags);
4404 return;
4407 tcomplain ();
4410 /* See target.h. */
4412 void
4413 target_insn_history_from (ULONGEST from, int size, int flags)
4415 struct target_ops *t;
4417 for (t = current_target.beneath; t != NULL; t = t->beneath)
4418 if (t->to_insn_history_from != NULL)
4420 t->to_insn_history_from (from, size, flags);
4421 return;
4424 tcomplain ();
4427 /* See target.h. */
4429 void
4430 target_insn_history_range (ULONGEST begin, ULONGEST end, int flags)
4432 struct target_ops *t;
4434 for (t = current_target.beneath; t != NULL; t = t->beneath)
4435 if (t->to_insn_history_range != NULL)
4437 t->to_insn_history_range (begin, end, flags);
4438 return;
4441 tcomplain ();
4444 /* See target.h. */
4446 void
4447 target_call_history (int size, int flags)
4449 struct target_ops *t;
4451 for (t = current_target.beneath; t != NULL; t = t->beneath)
4452 if (t->to_call_history != NULL)
4454 t->to_call_history (size, flags);
4455 return;
4458 tcomplain ();
4461 /* See target.h. */
4463 void
4464 target_call_history_from (ULONGEST begin, int size, int flags)
4466 struct target_ops *t;
4468 for (t = current_target.beneath; t != NULL; t = t->beneath)
4469 if (t->to_call_history_from != NULL)
4471 t->to_call_history_from (begin, size, flags);
4472 return;
4475 tcomplain ();
4478 /* See target.h. */
4480 void
4481 target_call_history_range (ULONGEST begin, ULONGEST end, int flags)
4483 struct target_ops *t;
4485 for (t = current_target.beneath; t != NULL; t = t->beneath)
4486 if (t->to_call_history_range != NULL)
4488 t->to_call_history_range (begin, end, flags);
4489 return;
4492 tcomplain ();
4495 static void
4496 debug_to_prepare_to_store (struct regcache *regcache)
4498 debug_target.to_prepare_to_store (regcache);
4500 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
4503 static int
4504 deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
4505 int write, struct mem_attrib *attrib,
4506 struct target_ops *target)
4508 int retval;
4510 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
4511 attrib, target);
4513 fprintf_unfiltered (gdb_stdlog,
4514 "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
4515 paddress (target_gdbarch (), memaddr), len,
4516 write ? "write" : "read", retval);
4518 if (retval > 0)
4520 int i;
4522 fputs_unfiltered (", bytes =", gdb_stdlog);
4523 for (i = 0; i < retval; i++)
4525 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
4527 if (targetdebug < 2 && i > 0)
4529 fprintf_unfiltered (gdb_stdlog, " ...");
4530 break;
4532 fprintf_unfiltered (gdb_stdlog, "\n");
4535 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
4539 fputc_unfiltered ('\n', gdb_stdlog);
4541 return retval;
4544 static void
4545 debug_to_files_info (struct target_ops *target)
4547 debug_target.to_files_info (target);
4549 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
4552 static int
4553 debug_to_insert_breakpoint (struct gdbarch *gdbarch,
4554 struct bp_target_info *bp_tgt)
4556 int retval;
4558 retval = debug_target.to_insert_breakpoint (gdbarch, bp_tgt);
4560 fprintf_unfiltered (gdb_stdlog,
4561 "target_insert_breakpoint (%s, xxx) = %ld\n",
4562 core_addr_to_string (bp_tgt->placed_address),
4563 (unsigned long) retval);
4564 return retval;
4567 static int
4568 debug_to_remove_breakpoint (struct gdbarch *gdbarch,
4569 struct bp_target_info *bp_tgt)
4571 int retval;
4573 retval = debug_target.to_remove_breakpoint (gdbarch, bp_tgt);
4575 fprintf_unfiltered (gdb_stdlog,
4576 "target_remove_breakpoint (%s, xxx) = %ld\n",
4577 core_addr_to_string (bp_tgt->placed_address),
4578 (unsigned long) retval);
4579 return retval;
4582 static int
4583 debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
4585 int retval;
4587 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
4589 fprintf_unfiltered (gdb_stdlog,
4590 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
4591 (unsigned long) type,
4592 (unsigned long) cnt,
4593 (unsigned long) from_tty,
4594 (unsigned long) retval);
4595 return retval;
4598 static int
4599 debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
4601 CORE_ADDR retval;
4603 retval = debug_target.to_region_ok_for_hw_watchpoint (addr, len);
4605 fprintf_unfiltered (gdb_stdlog,
4606 "target_region_ok_for_hw_watchpoint (%s, %ld) = %s\n",
4607 core_addr_to_string (addr), (unsigned long) len,
4608 core_addr_to_string (retval));
4609 return retval;
4612 static int
4613 debug_to_can_accel_watchpoint_condition (CORE_ADDR addr, int len, int rw,
4614 struct expression *cond)
4616 int retval;
4618 retval = debug_target.to_can_accel_watchpoint_condition (addr, len,
4619 rw, cond);
4621 fprintf_unfiltered (gdb_stdlog,
4622 "target_can_accel_watchpoint_condition "
4623 "(%s, %d, %d, %s) = %ld\n",
4624 core_addr_to_string (addr), len, rw,
4625 host_address_to_string (cond), (unsigned long) retval);
4626 return retval;
4629 static int
4630 debug_to_stopped_by_watchpoint (void)
4632 int retval;
4634 retval = debug_target.to_stopped_by_watchpoint ();
4636 fprintf_unfiltered (gdb_stdlog,
4637 "target_stopped_by_watchpoint () = %ld\n",
4638 (unsigned long) retval);
4639 return retval;
4642 static int
4643 debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
4645 int retval;
4647 retval = debug_target.to_stopped_data_address (target, addr);
4649 fprintf_unfiltered (gdb_stdlog,
4650 "target_stopped_data_address ([%s]) = %ld\n",
4651 core_addr_to_string (*addr),
4652 (unsigned long)retval);
4653 return retval;
4656 static int
4657 debug_to_watchpoint_addr_within_range (struct target_ops *target,
4658 CORE_ADDR addr,
4659 CORE_ADDR start, int length)
4661 int retval;
4663 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
4664 start, length);
4666 fprintf_filtered (gdb_stdlog,
4667 "target_watchpoint_addr_within_range (%s, %s, %d) = %d\n",
4668 core_addr_to_string (addr), core_addr_to_string (start),
4669 length, retval);
4670 return retval;
4673 static int
4674 debug_to_insert_hw_breakpoint (struct gdbarch *gdbarch,
4675 struct bp_target_info *bp_tgt)
4677 int retval;
4679 retval = debug_target.to_insert_hw_breakpoint (gdbarch, bp_tgt);
4681 fprintf_unfiltered (gdb_stdlog,
4682 "target_insert_hw_breakpoint (%s, xxx) = %ld\n",
4683 core_addr_to_string (bp_tgt->placed_address),
4684 (unsigned long) retval);
4685 return retval;
4688 static int
4689 debug_to_remove_hw_breakpoint (struct gdbarch *gdbarch,
4690 struct bp_target_info *bp_tgt)
4692 int retval;
4694 retval = debug_target.to_remove_hw_breakpoint (gdbarch, bp_tgt);
4696 fprintf_unfiltered (gdb_stdlog,
4697 "target_remove_hw_breakpoint (%s, xxx) = %ld\n",
4698 core_addr_to_string (bp_tgt->placed_address),
4699 (unsigned long) retval);
4700 return retval;
4703 static int
4704 debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type,
4705 struct expression *cond)
4707 int retval;
4709 retval = debug_target.to_insert_watchpoint (addr, len, type, cond);
4711 fprintf_unfiltered (gdb_stdlog,
4712 "target_insert_watchpoint (%s, %d, %d, %s) = %ld\n",
4713 core_addr_to_string (addr), len, type,
4714 host_address_to_string (cond), (unsigned long) retval);
4715 return retval;
4718 static int
4719 debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type,
4720 struct expression *cond)
4722 int retval;
4724 retval = debug_target.to_remove_watchpoint (addr, len, type, cond);
4726 fprintf_unfiltered (gdb_stdlog,
4727 "target_remove_watchpoint (%s, %d, %d, %s) = %ld\n",
4728 core_addr_to_string (addr), len, type,
4729 host_address_to_string (cond), (unsigned long) retval);
4730 return retval;
4733 static void
4734 debug_to_terminal_init (void)
4736 debug_target.to_terminal_init ();
4738 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
4741 static void
4742 debug_to_terminal_inferior (void)
4744 debug_target.to_terminal_inferior ();
4746 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
4749 static void
4750 debug_to_terminal_ours_for_output (void)
4752 debug_target.to_terminal_ours_for_output ();
4754 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
4757 static void
4758 debug_to_terminal_ours (void)
4760 debug_target.to_terminal_ours ();
4762 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
4765 static void
4766 debug_to_terminal_save_ours (void)
4768 debug_target.to_terminal_save_ours ();
4770 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
4773 static void
4774 debug_to_terminal_info (char *arg, int from_tty)
4776 debug_target.to_terminal_info (arg, from_tty);
4778 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
4779 from_tty);
4782 static void
4783 debug_to_load (char *args, int from_tty)
4785 debug_target.to_load (args, from_tty);
4787 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
4790 static void
4791 debug_to_post_startup_inferior (ptid_t ptid)
4793 debug_target.to_post_startup_inferior (ptid);
4795 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
4796 PIDGET (ptid));
4799 static int
4800 debug_to_insert_fork_catchpoint (int pid)
4802 int retval;
4804 retval = debug_target.to_insert_fork_catchpoint (pid);
4806 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n",
4807 pid, retval);
4809 return retval;
4812 static int
4813 debug_to_remove_fork_catchpoint (int pid)
4815 int retval;
4817 retval = debug_target.to_remove_fork_catchpoint (pid);
4819 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
4820 pid, retval);
4822 return retval;
4825 static int
4826 debug_to_insert_vfork_catchpoint (int pid)
4828 int retval;
4830 retval = debug_target.to_insert_vfork_catchpoint (pid);
4832 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d) = %d\n",
4833 pid, retval);
4835 return retval;
4838 static int
4839 debug_to_remove_vfork_catchpoint (int pid)
4841 int retval;
4843 retval = debug_target.to_remove_vfork_catchpoint (pid);
4845 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
4846 pid, retval);
4848 return retval;
4851 static int
4852 debug_to_insert_exec_catchpoint (int pid)
4854 int retval;
4856 retval = debug_target.to_insert_exec_catchpoint (pid);
4858 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
4859 pid, retval);
4861 return retval;
4864 static int
4865 debug_to_remove_exec_catchpoint (int pid)
4867 int retval;
4869 retval = debug_target.to_remove_exec_catchpoint (pid);
4871 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
4872 pid, retval);
4874 return retval;
4877 static int
4878 debug_to_has_exited (int pid, int wait_status, int *exit_status)
4880 int has_exited;
4882 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
4884 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
4885 pid, wait_status, *exit_status, has_exited);
4887 return has_exited;
4890 static int
4891 debug_to_can_run (void)
4893 int retval;
4895 retval = debug_target.to_can_run ();
4897 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
4899 return retval;
4902 static struct gdbarch *
4903 debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid)
4905 struct gdbarch *retval;
4907 retval = debug_target.to_thread_architecture (ops, ptid);
4909 fprintf_unfiltered (gdb_stdlog,
4910 "target_thread_architecture (%s) = %s [%s]\n",
4911 target_pid_to_str (ptid),
4912 host_address_to_string (retval),
4913 gdbarch_bfd_arch_info (retval)->printable_name);
4914 return retval;
4917 static void
4918 debug_to_stop (ptid_t ptid)
4920 debug_target.to_stop (ptid);
4922 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
4923 target_pid_to_str (ptid));
4926 static void
4927 debug_to_rcmd (char *command,
4928 struct ui_file *outbuf)
4930 debug_target.to_rcmd (command, outbuf);
4931 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
4934 static char *
4935 debug_to_pid_to_exec_file (int pid)
4937 char *exec_file;
4939 exec_file = debug_target.to_pid_to_exec_file (pid);
4941 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
4942 pid, exec_file);
4944 return exec_file;
4947 static void
4948 setup_target_debug (void)
4950 memcpy (&debug_target, &current_target, sizeof debug_target);
4952 current_target.to_open = debug_to_open;
4953 current_target.to_post_attach = debug_to_post_attach;
4954 current_target.to_prepare_to_store = debug_to_prepare_to_store;
4955 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
4956 current_target.to_files_info = debug_to_files_info;
4957 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
4958 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
4959 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
4960 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
4961 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
4962 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
4963 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
4964 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
4965 current_target.to_stopped_data_address = debug_to_stopped_data_address;
4966 current_target.to_watchpoint_addr_within_range
4967 = debug_to_watchpoint_addr_within_range;
4968 current_target.to_region_ok_for_hw_watchpoint
4969 = debug_to_region_ok_for_hw_watchpoint;
4970 current_target.to_can_accel_watchpoint_condition
4971 = debug_to_can_accel_watchpoint_condition;
4972 current_target.to_terminal_init = debug_to_terminal_init;
4973 current_target.to_terminal_inferior = debug_to_terminal_inferior;
4974 current_target.to_terminal_ours_for_output
4975 = debug_to_terminal_ours_for_output;
4976 current_target.to_terminal_ours = debug_to_terminal_ours;
4977 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
4978 current_target.to_terminal_info = debug_to_terminal_info;
4979 current_target.to_load = debug_to_load;
4980 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
4981 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
4982 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
4983 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
4984 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
4985 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
4986 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
4987 current_target.to_has_exited = debug_to_has_exited;
4988 current_target.to_can_run = debug_to_can_run;
4989 current_target.to_stop = debug_to_stop;
4990 current_target.to_rcmd = debug_to_rcmd;
4991 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
4992 current_target.to_thread_architecture = debug_to_thread_architecture;
4996 static char targ_desc[] =
4997 "Names of targets and files being debugged.\nShows the entire \
4998 stack of targets currently in use (including the exec-file,\n\
4999 core-file, and process, if any), as well as the symbol file name.";
5001 static void
5002 do_monitor_command (char *cmd,
5003 int from_tty)
5005 if ((current_target.to_rcmd
5006 == (void (*) (char *, struct ui_file *)) tcomplain)
5007 || (current_target.to_rcmd == debug_to_rcmd
5008 && (debug_target.to_rcmd
5009 == (void (*) (char *, struct ui_file *)) tcomplain)))
5010 error (_("\"monitor\" command not supported by this target."));
5011 target_rcmd (cmd, gdb_stdtarg);
5014 /* Print the name of each layers of our target stack. */
5016 static void
5017 maintenance_print_target_stack (char *cmd, int from_tty)
5019 struct target_ops *t;
5021 printf_filtered (_("The current target stack is:\n"));
5023 for (t = target_stack; t != NULL; t = t->beneath)
5025 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
5029 /* Controls if async mode is permitted. */
5030 int target_async_permitted = 0;
5032 /* The set command writes to this variable. If the inferior is
5033 executing, linux_nat_async_permitted is *not* updated. */
5034 static int target_async_permitted_1 = 0;
5036 static void
5037 set_target_async_command (char *args, int from_tty,
5038 struct cmd_list_element *c)
5040 if (have_live_inferiors ())
5042 target_async_permitted_1 = target_async_permitted;
5043 error (_("Cannot change this setting while the inferior is running."));
5046 target_async_permitted = target_async_permitted_1;
5049 static void
5050 show_target_async_command (struct ui_file *file, int from_tty,
5051 struct cmd_list_element *c,
5052 const char *value)
5054 fprintf_filtered (file,
5055 _("Controlling the inferior in "
5056 "asynchronous mode is %s.\n"), value);
5059 /* Temporary copies of permission settings. */
5061 static int may_write_registers_1 = 1;
5062 static int may_write_memory_1 = 1;
5063 static int may_insert_breakpoints_1 = 1;
5064 static int may_insert_tracepoints_1 = 1;
5065 static int may_insert_fast_tracepoints_1 = 1;
5066 static int may_stop_1 = 1;
5068 /* Make the user-set values match the real values again. */
5070 void
5071 update_target_permissions (void)
5073 may_write_registers_1 = may_write_registers;
5074 may_write_memory_1 = may_write_memory;
5075 may_insert_breakpoints_1 = may_insert_breakpoints;
5076 may_insert_tracepoints_1 = may_insert_tracepoints;
5077 may_insert_fast_tracepoints_1 = may_insert_fast_tracepoints;
5078 may_stop_1 = may_stop;
5081 /* The one function handles (most of) the permission flags in the same
5082 way. */
5084 static void
5085 set_target_permissions (char *args, int from_tty,
5086 struct cmd_list_element *c)
5088 if (target_has_execution)
5090 update_target_permissions ();
5091 error (_("Cannot change this setting while the inferior is running."));
5094 /* Make the real values match the user-changed values. */
5095 may_write_registers = may_write_registers_1;
5096 may_insert_breakpoints = may_insert_breakpoints_1;
5097 may_insert_tracepoints = may_insert_tracepoints_1;
5098 may_insert_fast_tracepoints = may_insert_fast_tracepoints_1;
5099 may_stop = may_stop_1;
5100 update_observer_mode ();
5103 /* Set memory write permission independently of observer mode. */
5105 static void
5106 set_write_memory_permission (char *args, int from_tty,
5107 struct cmd_list_element *c)
5109 /* Make the real values match the user-changed values. */
5110 may_write_memory = may_write_memory_1;
5111 update_observer_mode ();
5115 void
5116 initialize_targets (void)
5118 init_dummy_target ();
5119 push_target (&dummy_target);
5121 add_info ("target", target_info, targ_desc);
5122 add_info ("files", target_info, targ_desc);
5124 add_setshow_zuinteger_cmd ("target", class_maintenance, &targetdebug, _("\
5125 Set target debugging."), _("\
5126 Show target debugging."), _("\
5127 When non-zero, target debugging is enabled. Higher numbers are more\n\
5128 verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
5129 command."),
5130 NULL,
5131 show_targetdebug,
5132 &setdebuglist, &showdebuglist);
5134 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
5135 &trust_readonly, _("\
5136 Set mode for reading from readonly sections."), _("\
5137 Show mode for reading from readonly sections."), _("\
5138 When this mode is on, memory reads from readonly sections (such as .text)\n\
5139 will be read from the object file instead of from the target. This will\n\
5140 result in significant performance improvement for remote targets."),
5141 NULL,
5142 show_trust_readonly,
5143 &setlist, &showlist);
5145 add_com ("monitor", class_obscure, do_monitor_command,
5146 _("Send a command to the remote monitor (remote targets only)."));
5148 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
5149 _("Print the name of each layer of the internal target stack."),
5150 &maintenanceprintlist);
5152 add_setshow_boolean_cmd ("target-async", no_class,
5153 &target_async_permitted_1, _("\
5154 Set whether gdb controls the inferior in asynchronous mode."), _("\
5155 Show whether gdb controls the inferior in asynchronous mode."), _("\
5156 Tells gdb whether to control the inferior in asynchronous mode."),
5157 set_target_async_command,
5158 show_target_async_command,
5159 &setlist,
5160 &showlist);
5162 add_setshow_boolean_cmd ("stack-cache", class_support,
5163 &stack_cache_enabled_p_1, _("\
5164 Set cache use for stack access."), _("\
5165 Show cache use for stack access."), _("\
5166 When on, use the data cache for all stack access, regardless of any\n\
5167 configured memory regions. This improves remote performance significantly.\n\
5168 By default, caching for stack access is on."),
5169 set_stack_cache_enabled_p,
5170 show_stack_cache_enabled_p,
5171 &setlist, &showlist);
5173 add_setshow_boolean_cmd ("may-write-registers", class_support,
5174 &may_write_registers_1, _("\
5175 Set permission to write into registers."), _("\
5176 Show permission to write into registers."), _("\
5177 When this permission is on, GDB may write into the target's registers.\n\
5178 Otherwise, any sort of write attempt will result in an error."),
5179 set_target_permissions, NULL,
5180 &setlist, &showlist);
5182 add_setshow_boolean_cmd ("may-write-memory", class_support,
5183 &may_write_memory_1, _("\
5184 Set permission to write into target memory."), _("\
5185 Show permission to write into target memory."), _("\
5186 When this permission is on, GDB may write into the target's memory.\n\
5187 Otherwise, any sort of write attempt will result in an error."),
5188 set_write_memory_permission, NULL,
5189 &setlist, &showlist);
5191 add_setshow_boolean_cmd ("may-insert-breakpoints", class_support,
5192 &may_insert_breakpoints_1, _("\
5193 Set permission to insert breakpoints in the target."), _("\
5194 Show permission to insert breakpoints in the target."), _("\
5195 When this permission is on, GDB may insert breakpoints in the program.\n\
5196 Otherwise, any sort of insertion attempt will result in an error."),
5197 set_target_permissions, NULL,
5198 &setlist, &showlist);
5200 add_setshow_boolean_cmd ("may-insert-tracepoints", class_support,
5201 &may_insert_tracepoints_1, _("\
5202 Set permission to insert tracepoints in the target."), _("\
5203 Show permission to insert tracepoints in the target."), _("\
5204 When this permission is on, GDB may insert tracepoints in the program.\n\
5205 Otherwise, any sort of insertion attempt will result in an error."),
5206 set_target_permissions, NULL,
5207 &setlist, &showlist);
5209 add_setshow_boolean_cmd ("may-insert-fast-tracepoints", class_support,
5210 &may_insert_fast_tracepoints_1, _("\
5211 Set permission to insert fast tracepoints in the target."), _("\
5212 Show permission to insert fast tracepoints in the target."), _("\
5213 When this permission is on, GDB may insert fast tracepoints.\n\
5214 Otherwise, any sort of insertion attempt will result in an error."),
5215 set_target_permissions, NULL,
5216 &setlist, &showlist);
5218 add_setshow_boolean_cmd ("may-interrupt", class_support,
5219 &may_stop_1, _("\
5220 Set permission to interrupt or signal the target."), _("\
5221 Show permission to interrupt or signal the target."), _("\
5222 When this permission is on, GDB may interrupt/stop the target's execution.\n\
5223 Otherwise, any attempt to interrupt or stop will be ignored."),
5224 set_target_permissions, NULL,
5225 &setlist, &showlist);
5228 target_dcache = dcache_init ();