convert to_can_run
[external/binutils.git] / gdb / target.c
1 /* Select target systems and architectures at runtime for GDB.
2
3    Copyright (C) 1990-2014 Free Software Foundation, Inc.
4
5    Contributed by Cygnus Support.
6
7    This file is part of GDB.
8
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.
13
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.
18
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/>.  */
21
22 #include "defs.h"
23 #include <errno.h>
24 #include <string.h>
25 #include "target.h"
26 #include "target-dcache.h"
27 #include "gdbcmd.h"
28 #include "symtab.h"
29 #include "inferior.h"
30 #include "bfd.h"
31 #include "symfile.h"
32 #include "objfiles.h"
33 #include "dcache.h"
34 #include <signal.h>
35 #include "regcache.h"
36 #include "gdb_assert.h"
37 #include "gdbcore.h"
38 #include "exceptions.h"
39 #include "target-descriptions.h"
40 #include "gdbthread.h"
41 #include "solib.h"
42 #include "exec.h"
43 #include "inline-frame.h"
44 #include "tracepoint.h"
45 #include "gdb/fileio.h"
46 #include "agent.h"
47 #include "auxv.h"
48
49 static void target_info (char *, int);
50
51 static void default_terminal_info (struct target_ops *, const char *, int);
52
53 static int default_watchpoint_addr_within_range (struct target_ops *,
54                                                  CORE_ADDR, CORE_ADDR, int);
55
56 static int default_region_ok_for_hw_watchpoint (struct target_ops *,
57                                                 CORE_ADDR, int);
58
59 static void default_rcmd (struct target_ops *, char *, struct ui_file *);
60
61 static ptid_t default_get_ada_task_ptid (struct target_ops *self,
62                                          long lwp, long tid);
63
64 static int default_follow_fork (struct target_ops *self, int follow_child,
65                                 int detach_fork);
66
67 static void default_mourn_inferior (struct target_ops *self);
68
69 static int default_search_memory (struct target_ops *ops,
70                                   CORE_ADDR start_addr,
71                                   ULONGEST search_space_len,
72                                   const gdb_byte *pattern,
73                                   ULONGEST pattern_len,
74                                   CORE_ADDR *found_addrp);
75
76 static void tcomplain (void) ATTRIBUTE_NORETURN;
77
78 static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
79
80 static int return_zero (void);
81
82 void target_ignore (void);
83
84 static void target_command (char *, int);
85
86 static struct target_ops *find_default_run_target (char *);
87
88 static target_xfer_partial_ftype default_xfer_partial;
89
90 static struct gdbarch *default_thread_architecture (struct target_ops *ops,
91                                                     ptid_t ptid);
92
93 static int dummy_find_memory_regions (struct target_ops *self,
94                                       find_memory_region_ftype ignore1,
95                                       void *ignore2);
96
97 static char *dummy_make_corefile_notes (struct target_ops *self,
98                                         bfd *ignore1, int *ignore2);
99
100 static char *default_pid_to_str (struct target_ops *ops, ptid_t ptid);
101
102 static int find_default_can_async_p (struct target_ops *ignore);
103
104 static int find_default_is_async_p (struct target_ops *ignore);
105
106 static enum exec_direction_kind default_execution_direction
107     (struct target_ops *self);
108
109 #include "target-delegates.c"
110
111 static void init_dummy_target (void);
112
113 static struct target_ops debug_target;
114
115 static void debug_to_open (char *, int);
116
117 static void debug_to_prepare_to_store (struct target_ops *self,
118                                        struct regcache *);
119
120 static void debug_to_files_info (struct target_ops *);
121
122 static int debug_to_insert_breakpoint (struct target_ops *, struct gdbarch *,
123                                        struct bp_target_info *);
124
125 static int debug_to_remove_breakpoint (struct target_ops *, struct gdbarch *,
126                                        struct bp_target_info *);
127
128 static int debug_to_can_use_hw_breakpoint (struct target_ops *self,
129                                            int, int, int);
130
131 static int debug_to_insert_hw_breakpoint (struct target_ops *self,
132                                           struct gdbarch *,
133                                           struct bp_target_info *);
134
135 static int debug_to_remove_hw_breakpoint (struct target_ops *self,
136                                           struct gdbarch *,
137                                           struct bp_target_info *);
138
139 static int debug_to_insert_watchpoint (struct target_ops *self,
140                                        CORE_ADDR, int, int,
141                                        struct expression *);
142
143 static int debug_to_remove_watchpoint (struct target_ops *self,
144                                        CORE_ADDR, int, int,
145                                        struct expression *);
146
147 static int debug_to_stopped_data_address (struct target_ops *, CORE_ADDR *);
148
149 static int debug_to_watchpoint_addr_within_range (struct target_ops *,
150                                                   CORE_ADDR, CORE_ADDR, int);
151
152 static int debug_to_region_ok_for_hw_watchpoint (struct target_ops *self,
153                                                  CORE_ADDR, int);
154
155 static int debug_to_can_accel_watchpoint_condition (struct target_ops *self,
156                                                     CORE_ADDR, int, int,
157                                                     struct expression *);
158
159 static void debug_to_terminal_init (struct target_ops *self);
160
161 static void debug_to_terminal_inferior (struct target_ops *self);
162
163 static void debug_to_terminal_ours_for_output (struct target_ops *self);
164
165 static void debug_to_terminal_save_ours (struct target_ops *self);
166
167 static void debug_to_terminal_ours (struct target_ops *self);
168
169 static void debug_to_load (struct target_ops *self, char *, int);
170
171 static int debug_to_can_run (struct target_ops *self);
172
173 static void debug_to_stop (struct target_ops *self, ptid_t);
174
175 /* Pointer to array of target architecture structures; the size of the
176    array; the current index into the array; the allocated size of the
177    array.  */
178 struct target_ops **target_structs;
179 unsigned target_struct_size;
180 unsigned target_struct_allocsize;
181 #define DEFAULT_ALLOCSIZE       10
182
183 /* The initial current target, so that there is always a semi-valid
184    current target.  */
185
186 static struct target_ops dummy_target;
187
188 /* Top of target stack.  */
189
190 static struct target_ops *target_stack;
191
192 /* The target structure we are currently using to talk to a process
193    or file or whatever "inferior" we have.  */
194
195 struct target_ops current_target;
196
197 /* Command list for target.  */
198
199 static struct cmd_list_element *targetlist = NULL;
200
201 /* Nonzero if we should trust readonly sections from the
202    executable when reading memory.  */
203
204 static int trust_readonly = 0;
205
206 /* Nonzero if we should show true memory content including
207    memory breakpoint inserted by gdb.  */
208
209 static int show_memory_breakpoints = 0;
210
211 /* These globals control whether GDB attempts to perform these
212    operations; they are useful for targets that need to prevent
213    inadvertant disruption, such as in non-stop mode.  */
214
215 int may_write_registers = 1;
216
217 int may_write_memory = 1;
218
219 int may_insert_breakpoints = 1;
220
221 int may_insert_tracepoints = 1;
222
223 int may_insert_fast_tracepoints = 1;
224
225 int may_stop = 1;
226
227 /* Non-zero if we want to see trace of target level stuff.  */
228
229 static unsigned int targetdebug = 0;
230 static void
231 show_targetdebug (struct ui_file *file, int from_tty,
232                   struct cmd_list_element *c, const char *value)
233 {
234   fprintf_filtered (file, _("Target debugging is %s.\n"), value);
235 }
236
237 static void setup_target_debug (void);
238
239 /* The user just typed 'target' without the name of a target.  */
240
241 static void
242 target_command (char *arg, int from_tty)
243 {
244   fputs_filtered ("Argument required (target name).  Try `help target'\n",
245                   gdb_stdout);
246 }
247
248 /* Default target_has_* methods for process_stratum targets.  */
249
250 int
251 default_child_has_all_memory (struct target_ops *ops)
252 {
253   /* If no inferior selected, then we can't read memory here.  */
254   if (ptid_equal (inferior_ptid, null_ptid))
255     return 0;
256
257   return 1;
258 }
259
260 int
261 default_child_has_memory (struct target_ops *ops)
262 {
263   /* If no inferior selected, then we can't read memory here.  */
264   if (ptid_equal (inferior_ptid, null_ptid))
265     return 0;
266
267   return 1;
268 }
269
270 int
271 default_child_has_stack (struct target_ops *ops)
272 {
273   /* If no inferior selected, there's no stack.  */
274   if (ptid_equal (inferior_ptid, null_ptid))
275     return 0;
276
277   return 1;
278 }
279
280 int
281 default_child_has_registers (struct target_ops *ops)
282 {
283   /* Can't read registers from no inferior.  */
284   if (ptid_equal (inferior_ptid, null_ptid))
285     return 0;
286
287   return 1;
288 }
289
290 int
291 default_child_has_execution (struct target_ops *ops, ptid_t the_ptid)
292 {
293   /* If there's no thread selected, then we can't make it run through
294      hoops.  */
295   if (ptid_equal (the_ptid, null_ptid))
296     return 0;
297
298   return 1;
299 }
300
301
302 int
303 target_has_all_memory_1 (void)
304 {
305   struct target_ops *t;
306
307   for (t = current_target.beneath; t != NULL; t = t->beneath)
308     if (t->to_has_all_memory (t))
309       return 1;
310
311   return 0;
312 }
313
314 int
315 target_has_memory_1 (void)
316 {
317   struct target_ops *t;
318
319   for (t = current_target.beneath; t != NULL; t = t->beneath)
320     if (t->to_has_memory (t))
321       return 1;
322
323   return 0;
324 }
325
326 int
327 target_has_stack_1 (void)
328 {
329   struct target_ops *t;
330
331   for (t = current_target.beneath; t != NULL; t = t->beneath)
332     if (t->to_has_stack (t))
333       return 1;
334
335   return 0;
336 }
337
338 int
339 target_has_registers_1 (void)
340 {
341   struct target_ops *t;
342
343   for (t = current_target.beneath; t != NULL; t = t->beneath)
344     if (t->to_has_registers (t))
345       return 1;
346
347   return 0;
348 }
349
350 int
351 target_has_execution_1 (ptid_t the_ptid)
352 {
353   struct target_ops *t;
354
355   for (t = current_target.beneath; t != NULL; t = t->beneath)
356     if (t->to_has_execution (t, the_ptid))
357       return 1;
358
359   return 0;
360 }
361
362 int
363 target_has_execution_current (void)
364 {
365   return target_has_execution_1 (inferior_ptid);
366 }
367
368 /* Complete initialization of T.  This ensures that various fields in
369    T are set, if needed by the target implementation.  */
370
371 void
372 complete_target_initialization (struct target_ops *t)
373 {
374   /* Provide default values for all "must have" methods.  */
375   if (t->to_xfer_partial == NULL)
376     t->to_xfer_partial = default_xfer_partial;
377
378   if (t->to_has_all_memory == NULL)
379     t->to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
380
381   if (t->to_has_memory == NULL)
382     t->to_has_memory = (int (*) (struct target_ops *)) return_zero;
383
384   if (t->to_has_stack == NULL)
385     t->to_has_stack = (int (*) (struct target_ops *)) return_zero;
386
387   if (t->to_has_registers == NULL)
388     t->to_has_registers = (int (*) (struct target_ops *)) return_zero;
389
390   if (t->to_has_execution == NULL)
391     t->to_has_execution = (int (*) (struct target_ops *, ptid_t)) return_zero;
392
393   install_delegators (t);
394 }
395
396 /* Add possible target architecture T to the list and add a new
397    command 'target T->to_shortname'.  Set COMPLETER as the command's
398    completer if not NULL.  */
399
400 void
401 add_target_with_completer (struct target_ops *t,
402                            completer_ftype *completer)
403 {
404   struct cmd_list_element *c;
405
406   complete_target_initialization (t);
407
408   if (!target_structs)
409     {
410       target_struct_allocsize = DEFAULT_ALLOCSIZE;
411       target_structs = (struct target_ops **) xmalloc
412         (target_struct_allocsize * sizeof (*target_structs));
413     }
414   if (target_struct_size >= target_struct_allocsize)
415     {
416       target_struct_allocsize *= 2;
417       target_structs = (struct target_ops **)
418         xrealloc ((char *) target_structs,
419                   target_struct_allocsize * sizeof (*target_structs));
420     }
421   target_structs[target_struct_size++] = t;
422
423   if (targetlist == NULL)
424     add_prefix_cmd ("target", class_run, target_command, _("\
425 Connect to a target machine or process.\n\
426 The first argument is the type or protocol of the target machine.\n\
427 Remaining arguments are interpreted by the target protocol.  For more\n\
428 information on the arguments for a particular protocol, type\n\
429 `help target ' followed by the protocol name."),
430                     &targetlist, "target ", 0, &cmdlist);
431   c = add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc,
432                &targetlist);
433   if (completer != NULL)
434     set_cmd_completer (c, completer);
435 }
436
437 /* Add a possible target architecture to the list.  */
438
439 void
440 add_target (struct target_ops *t)
441 {
442   add_target_with_completer (t, NULL);
443 }
444
445 /* See target.h.  */
446
447 void
448 add_deprecated_target_alias (struct target_ops *t, char *alias)
449 {
450   struct cmd_list_element *c;
451   char *alt;
452
453   /* If we use add_alias_cmd, here, we do not get the deprecated warning,
454      see PR cli/15104.  */
455   c = add_cmd (alias, no_class, t->to_open, t->to_doc, &targetlist);
456   alt = xstrprintf ("target %s", t->to_shortname);
457   deprecate_cmd (c, alt);
458 }
459
460 /* Stub functions */
461
462 void
463 target_ignore (void)
464 {
465 }
466
467 void
468 target_kill (void)
469 {
470   if (targetdebug)
471     fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
472
473   current_target.to_kill (&current_target);
474 }
475
476 void
477 target_load (char *arg, int from_tty)
478 {
479   target_dcache_invalidate ();
480   (*current_target.to_load) (&current_target, arg, from_tty);
481 }
482
483 void
484 target_create_inferior (char *exec_file, char *args,
485                         char **env, int from_tty)
486 {
487   struct target_ops *t;
488
489   for (t = current_target.beneath; t != NULL; t = t->beneath)
490     {
491       if (t->to_create_inferior != NULL)        
492         {
493           t->to_create_inferior (t, exec_file, args, env, from_tty);
494           if (targetdebug)
495             fprintf_unfiltered (gdb_stdlog,
496                                 "target_create_inferior (%s, %s, xxx, %d)\n",
497                                 exec_file, args, from_tty);
498           return;
499         }
500     }
501
502   internal_error (__FILE__, __LINE__,
503                   _("could not find a target to create inferior"));
504 }
505
506 void
507 target_terminal_inferior (void)
508 {
509   /* A background resume (``run&'') should leave GDB in control of the
510      terminal.  Use target_can_async_p, not target_is_async_p, since at
511      this point the target is not async yet.  However, if sync_execution
512      is not set, we know it will become async prior to resume.  */
513   if (target_can_async_p () && !sync_execution)
514     return;
515
516   /* If GDB is resuming the inferior in the foreground, install
517      inferior's terminal modes.  */
518   (*current_target.to_terminal_inferior) (&current_target);
519 }
520
521 static int
522 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
523           struct target_ops *t)
524 {
525   errno = EIO;                  /* Can't read/write this location.  */
526   return 0;                     /* No bytes handled.  */
527 }
528
529 static void
530 tcomplain (void)
531 {
532   error (_("You can't do that when your target is `%s'"),
533          current_target.to_shortname);
534 }
535
536 void
537 noprocess (void)
538 {
539   error (_("You can't do that without a process to debug."));
540 }
541
542 static void
543 default_terminal_info (struct target_ops *self, const char *args, int from_tty)
544 {
545   printf_unfiltered (_("No saved terminal information.\n"));
546 }
547
548 /* A default implementation for the to_get_ada_task_ptid target method.
549
550    This function builds the PTID by using both LWP and TID as part of
551    the PTID lwp and tid elements.  The pid used is the pid of the
552    inferior_ptid.  */
553
554 static ptid_t
555 default_get_ada_task_ptid (struct target_ops *self, long lwp, long tid)
556 {
557   return ptid_build (ptid_get_pid (inferior_ptid), lwp, tid);
558 }
559
560 static enum exec_direction_kind
561 default_execution_direction (struct target_ops *self)
562 {
563   if (!target_can_execute_reverse)
564     return EXEC_FORWARD;
565   else if (!target_can_async_p ())
566     return EXEC_FORWARD;
567   else
568     gdb_assert_not_reached ("\
569 to_execution_direction must be implemented for reverse async");
570 }
571
572 /* Go through the target stack from top to bottom, copying over zero
573    entries in current_target, then filling in still empty entries.  In
574    effect, we are doing class inheritance through the pushed target
575    vectors.
576
577    NOTE: cagney/2003-10-17: The problem with this inheritance, as it
578    is currently implemented, is that it discards any knowledge of
579    which target an inherited method originally belonged to.
580    Consequently, new new target methods should instead explicitly and
581    locally search the target stack for the target that can handle the
582    request.  */
583
584 static void
585 update_current_target (void)
586 {
587   struct target_ops *t;
588
589   /* First, reset current's contents.  */
590   memset (&current_target, 0, sizeof (current_target));
591
592   /* Install the delegators.  */
593   install_delegators (&current_target);
594
595 #define INHERIT(FIELD, TARGET) \
596       if (!current_target.FIELD) \
597         current_target.FIELD = (TARGET)->FIELD
598
599   for (t = target_stack; t; t = t->beneath)
600     {
601       INHERIT (to_shortname, t);
602       INHERIT (to_longname, t);
603       INHERIT (to_doc, t);
604       /* Do not inherit to_open.  */
605       /* Do not inherit to_close.  */
606       /* Do not inherit to_attach.  */
607       /* Do not inherit to_post_attach.  */
608       INHERIT (to_attach_no_wait, t);
609       /* Do not inherit to_detach.  */
610       /* Do not inherit to_disconnect.  */
611       /* Do not inherit to_resume.  */
612       /* Do not inherit to_wait.  */
613       /* Do not inherit to_fetch_registers.  */
614       /* Do not inherit to_store_registers.  */
615       /* Do not inherit to_prepare_to_store.  */
616       INHERIT (deprecated_xfer_memory, t);
617       /* Do not inherit to_files_info.  */
618       /* Do not inherit to_insert_breakpoint.  */
619       /* Do not inherit to_remove_breakpoint.  */
620       /* Do not inherit to_can_use_hw_breakpoint.  */
621       /* Do not inherit to_insert_hw_breakpoint.  */
622       /* Do not inherit to_remove_hw_breakpoint.  */
623       /* Do not inherit to_ranged_break_num_registers.  */
624       /* Do not inherit to_insert_watchpoint.  */
625       /* Do not inherit to_remove_watchpoint.  */
626       /* Do not inherit to_insert_mask_watchpoint.  */
627       /* Do not inherit to_remove_mask_watchpoint.  */
628       /* Do not inherit to_stopped_data_address.  */
629       INHERIT (to_have_steppable_watchpoint, t);
630       INHERIT (to_have_continuable_watchpoint, t);
631       /* Do not inherit to_stopped_by_watchpoint.  */
632       /* Do not inherit to_watchpoint_addr_within_range.  */
633       /* Do not inherit to_region_ok_for_hw_watchpoint.  */
634       /* Do not inherit to_can_accel_watchpoint_condition.  */
635       /* Do not inherit to_masked_watch_num_registers.  */
636       /* Do not inherit to_terminal_init.  */
637       /* Do not inherit to_terminal_inferior.  */
638       /* Do not inherit to_terminal_ours_for_output.  */
639       /* Do not inherit to_terminal_ours.  */
640       /* Do not inherit to_terminal_save_ours.  */
641       /* Do not inherit to_terminal_info.  */
642       /* Do not inherit to_kill.  */
643       /* Do not inherit to_load.  */
644       /* Do no inherit to_create_inferior.  */
645       /* Do not inherit to_post_startup_inferior.  */
646       /* Do not inherit to_insert_fork_catchpoint.  */
647       /* Do not inherit to_remove_fork_catchpoint.  */
648       /* Do not inherit to_insert_vfork_catchpoint.  */
649       /* Do not inherit to_remove_vfork_catchpoint.  */
650       /* Do not inherit to_follow_fork.  */
651       /* Do not inherit to_insert_exec_catchpoint.  */
652       /* Do not inherit to_remove_exec_catchpoint.  */
653       /* Do not inherit to_set_syscall_catchpoint.  */
654       /* Do not inherit to_has_exited.  */
655       /* Do not inherit to_mourn_inferior.  */
656       /* Do not inherit to_can_run.  */
657       /* Do not inherit to_pass_signals.  */
658       /* Do not inherit to_program_signals.  */
659       /* Do not inherit to_thread_alive.  */
660       /* Do not inherit to_find_new_threads.  */
661       /* Do not inherit to_pid_to_str.  */
662       /* Do not inherit to_extra_thread_info.  */
663       /* Do not inherit to_thread_name.  */
664       /* Do not inherit to_stop.  */
665       /* Do not inherit to_xfer_partial.  */
666       /* Do not inherit to_rcmd.  */
667       /* Do not inherit to_pid_to_exec_file.  */
668       /* Do not inherit to_log_command.  */
669       INHERIT (to_stratum, t);
670       /* Do not inherit to_has_all_memory.  */
671       /* Do not inherit to_has_memory.  */
672       /* Do not inherit to_has_stack.  */
673       /* Do not inherit to_has_registers.  */
674       /* Do not inherit to_has_execution.  */
675       INHERIT (to_has_thread_control, t);
676       /* Do not inherit to_can_async_p.  */
677       /* Do not inherit to_is_async_p.  */
678       /* Do not inherit to_async.  */
679       /* Do not inherit to_find_memory_regions.  */
680       /* Do not inherit to_make_corefile_notes.  */
681       /* Do not inherit to_get_bookmark.  */
682       /* Do not inherit to_goto_bookmark.  */
683       /* Do not inherit to_get_thread_local_address.  */
684       /* Do not inherit to_can_execute_reverse.  */
685       /* Do not inherit to_execution_direction.  */
686       /* Do not inherit to_thread_architecture.  */
687       /* Do not inherit to_read_description.  */
688       /* Do not inherit to_get_ada_task_ptid.  */
689       /* Do not inherit to_search_memory.  */
690       /* Do not inherit to_supports_multi_process.  */
691       /* Do not inherit to_supports_enable_disable_tracepoint.  */
692       /* Do not inherit to_supports_string_tracing.  */
693       /* Do not inherit to_trace_init.  */
694       /* Do not inherit to_download_tracepoint.  */
695       /* Do not inherit to_can_download_tracepoint.  */
696       /* Do not inherit to_download_trace_state_variable.  */
697       /* Do not inherit to_enable_tracepoint.  */
698       /* Do not inherit to_disable_tracepoint.  */
699       /* Do not inherit to_trace_set_readonly_regions.  */
700       /* Do not inherit to_trace_start.  */
701       /* Do not inherit to_get_trace_status.  */
702       /* Do not inherit to_get_tracepoint_status.  */
703       /* Do not inherit to_trace_stop.  */
704       /* Do not inherit to_trace_find.  */
705       /* Do not inherit to_get_trace_state_variable_value.  */
706       /* Do not inherit to_save_trace_data.  */
707       /* Do not inherit to_upload_tracepoints.  */
708       /* Do not inherit to_upload_trace_state_variables.  */
709       /* Do not inherit to_get_raw_trace_data.  */
710       /* Do not inherit to_get_min_fast_tracepoint_insn_len.  */
711       /* Do not inherit to_set_disconnected_tracing.  */
712       /* Do not inherit to_set_circular_trace_buffer.  */
713       /* Do not inherit to_set_trace_buffer_size.  */
714       /* Do not inherit to_set_trace_notes.  */
715       /* Do not inherit to_get_tib_address.  */
716       /* Do not inherit to_set_permissions.  */
717       /* Do not inherit to_static_tracepoint_marker_at.  */
718       /* Do not inherit to_static_tracepoint_markers_by_strid.  */
719       /* Do not inherit to_traceframe_info.  */
720       /* Do not inherit to_use_agent.  */
721       /* Do not inherit to_can_use_agent.  */
722       /* Do not inherit to_augmented_libraries_svr4_read.  */
723       INHERIT (to_magic, t);
724       /* Do not inherit
725          to_supports_evaluation_of_breakpoint_conditions.  */
726       /* Do not inherit to_can_run_breakpoint_commands.  */
727       /* Do not inherit to_memory_map.  */
728       /* Do not inherit to_flash_erase.  */
729       /* Do not inherit to_flash_done.  */
730     }
731 #undef INHERIT
732
733   /* Clean up a target struct so it no longer has any zero pointers in
734      it.  Some entries are defaulted to a method that print an error,
735      others are hard-wired to a standard recursive default.  */
736
737 #define de_fault(field, value) \
738   if (!current_target.field)               \
739     current_target.field = value
740
741   de_fault (to_open,
742             (void (*) (char *, int))
743             tcomplain);
744   de_fault (to_close,
745             (void (*) (struct target_ops *))
746             target_ignore);
747   de_fault (deprecated_xfer_memory,
748             (int (*) (CORE_ADDR, gdb_byte *, int, int,
749                       struct mem_attrib *, struct target_ops *))
750             nomemory);
751   current_target.to_read_description = NULL;
752
753 #undef de_fault
754
755   /* Finally, position the target-stack beneath the squashed
756      "current_target".  That way code looking for a non-inherited
757      target method can quickly and simply find it.  */
758   current_target.beneath = target_stack;
759
760   if (targetdebug)
761     setup_target_debug ();
762 }
763
764 /* Push a new target type into the stack of the existing target accessors,
765    possibly superseding some of the existing accessors.
766
767    Rather than allow an empty stack, we always have the dummy target at
768    the bottom stratum, so we can call the function vectors without
769    checking them.  */
770
771 void
772 push_target (struct target_ops *t)
773 {
774   struct target_ops **cur;
775
776   /* Check magic number.  If wrong, it probably means someone changed
777      the struct definition, but not all the places that initialize one.  */
778   if (t->to_magic != OPS_MAGIC)
779     {
780       fprintf_unfiltered (gdb_stderr,
781                           "Magic number of %s target struct wrong\n",
782                           t->to_shortname);
783       internal_error (__FILE__, __LINE__,
784                       _("failed internal consistency check"));
785     }
786
787   /* Find the proper stratum to install this target in.  */
788   for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
789     {
790       if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
791         break;
792     }
793
794   /* If there's already targets at this stratum, remove them.  */
795   /* FIXME: cagney/2003-10-15: I think this should be popping all
796      targets to CUR, and not just those at this stratum level.  */
797   while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
798     {
799       /* There's already something at this stratum level.  Close it,
800          and un-hook it from the stack.  */
801       struct target_ops *tmp = (*cur);
802
803       (*cur) = (*cur)->beneath;
804       tmp->beneath = NULL;
805       target_close (tmp);
806     }
807
808   /* We have removed all targets in our stratum, now add the new one.  */
809   t->beneath = (*cur);
810   (*cur) = t;
811
812   update_current_target ();
813 }
814
815 /* Remove a target_ops vector from the stack, wherever it may be.
816    Return how many times it was removed (0 or 1).  */
817
818 int
819 unpush_target (struct target_ops *t)
820 {
821   struct target_ops **cur;
822   struct target_ops *tmp;
823
824   if (t->to_stratum == dummy_stratum)
825     internal_error (__FILE__, __LINE__,
826                     _("Attempt to unpush the dummy target"));
827
828   /* Look for the specified target.  Note that we assume that a target
829      can only occur once in the target stack.  */
830
831   for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
832     {
833       if ((*cur) == t)
834         break;
835     }
836
837   /* If we don't find target_ops, quit.  Only open targets should be
838      closed.  */
839   if ((*cur) == NULL)
840     return 0;                   
841
842   /* Unchain the target.  */
843   tmp = (*cur);
844   (*cur) = (*cur)->beneath;
845   tmp->beneath = NULL;
846
847   update_current_target ();
848
849   /* Finally close the target.  Note we do this after unchaining, so
850      any target method calls from within the target_close
851      implementation don't end up in T anymore.  */
852   target_close (t);
853
854   return 1;
855 }
856
857 void
858 pop_all_targets_above (enum strata above_stratum)
859 {
860   while ((int) (current_target.to_stratum) > (int) above_stratum)
861     {
862       if (!unpush_target (target_stack))
863         {
864           fprintf_unfiltered (gdb_stderr,
865                               "pop_all_targets couldn't find target %s\n",
866                               target_stack->to_shortname);
867           internal_error (__FILE__, __LINE__,
868                           _("failed internal consistency check"));
869           break;
870         }
871     }
872 }
873
874 void
875 pop_all_targets (void)
876 {
877   pop_all_targets_above (dummy_stratum);
878 }
879
880 /* Return 1 if T is now pushed in the target stack.  Return 0 otherwise.  */
881
882 int
883 target_is_pushed (struct target_ops *t)
884 {
885   struct target_ops **cur;
886
887   /* Check magic number.  If wrong, it probably means someone changed
888      the struct definition, but not all the places that initialize one.  */
889   if (t->to_magic != OPS_MAGIC)
890     {
891       fprintf_unfiltered (gdb_stderr,
892                           "Magic number of %s target struct wrong\n",
893                           t->to_shortname);
894       internal_error (__FILE__, __LINE__,
895                       _("failed internal consistency check"));
896     }
897
898   for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
899     if (*cur == t)
900       return 1;
901
902   return 0;
903 }
904
905 /* Using the objfile specified in OBJFILE, find the address for the
906    current thread's thread-local storage with offset OFFSET.  */
907 CORE_ADDR
908 target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
909 {
910   volatile CORE_ADDR addr = 0;
911   struct target_ops *target;
912
913   for (target = current_target.beneath;
914        target != NULL;
915        target = target->beneath)
916     {
917       if (target->to_get_thread_local_address != NULL)
918         break;
919     }
920
921   if (target != NULL
922       && gdbarch_fetch_tls_load_module_address_p (target_gdbarch ()))
923     {
924       ptid_t ptid = inferior_ptid;
925       volatile struct gdb_exception ex;
926
927       TRY_CATCH (ex, RETURN_MASK_ALL)
928         {
929           CORE_ADDR lm_addr;
930           
931           /* Fetch the load module address for this objfile.  */
932           lm_addr = gdbarch_fetch_tls_load_module_address (target_gdbarch (),
933                                                            objfile);
934           /* If it's 0, throw the appropriate exception.  */
935           if (lm_addr == 0)
936             throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
937                          _("TLS load module not found"));
938
939           addr = target->to_get_thread_local_address (target, ptid,
940                                                       lm_addr, offset);
941         }
942       /* If an error occurred, print TLS related messages here.  Otherwise,
943          throw the error to some higher catcher.  */
944       if (ex.reason < 0)
945         {
946           int objfile_is_library = (objfile->flags & OBJF_SHARED);
947
948           switch (ex.error)
949             {
950             case TLS_NO_LIBRARY_SUPPORT_ERROR:
951               error (_("Cannot find thread-local variables "
952                        "in this thread library."));
953               break;
954             case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
955               if (objfile_is_library)
956                 error (_("Cannot find shared library `%s' in dynamic"
957                          " linker's load module list"), objfile_name (objfile));
958               else
959                 error (_("Cannot find executable file `%s' in dynamic"
960                          " linker's load module list"), objfile_name (objfile));
961               break;
962             case TLS_NOT_ALLOCATED_YET_ERROR:
963               if (objfile_is_library)
964                 error (_("The inferior has not yet allocated storage for"
965                          " thread-local variables in\n"
966                          "the shared library `%s'\n"
967                          "for %s"),
968                        objfile_name (objfile), target_pid_to_str (ptid));
969               else
970                 error (_("The inferior has not yet allocated storage for"
971                          " thread-local variables in\n"
972                          "the executable `%s'\n"
973                          "for %s"),
974                        objfile_name (objfile), target_pid_to_str (ptid));
975               break;
976             case TLS_GENERIC_ERROR:
977               if (objfile_is_library)
978                 error (_("Cannot find thread-local storage for %s, "
979                          "shared library %s:\n%s"),
980                        target_pid_to_str (ptid),
981                        objfile_name (objfile), ex.message);
982               else
983                 error (_("Cannot find thread-local storage for %s, "
984                          "executable file %s:\n%s"),
985                        target_pid_to_str (ptid),
986                        objfile_name (objfile), ex.message);
987               break;
988             default:
989               throw_exception (ex);
990               break;
991             }
992         }
993     }
994   /* It wouldn't be wrong here to try a gdbarch method, too; finding
995      TLS is an ABI-specific thing.  But we don't do that yet.  */
996   else
997     error (_("Cannot find thread-local variables on this target"));
998
999   return addr;
1000 }
1001
1002 const char *
1003 target_xfer_status_to_string (enum target_xfer_status err)
1004 {
1005 #define CASE(X) case X: return #X
1006   switch (err)
1007     {
1008       CASE(TARGET_XFER_E_IO);
1009       CASE(TARGET_XFER_E_UNAVAILABLE);
1010     default:
1011       return "<unknown>";
1012     }
1013 #undef CASE
1014 };
1015
1016
1017 #undef  MIN
1018 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
1019
1020 /* target_read_string -- read a null terminated string, up to LEN bytes,
1021    from MEMADDR in target.  Set *ERRNOP to the errno code, or 0 if successful.
1022    Set *STRING to a pointer to malloc'd memory containing the data; the caller
1023    is responsible for freeing it.  Return the number of bytes successfully
1024    read.  */
1025
1026 int
1027 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
1028 {
1029   int tlen, offset, i;
1030   gdb_byte buf[4];
1031   int errcode = 0;
1032   char *buffer;
1033   int buffer_allocated;
1034   char *bufptr;
1035   unsigned int nbytes_read = 0;
1036
1037   gdb_assert (string);
1038
1039   /* Small for testing.  */
1040   buffer_allocated = 4;
1041   buffer = xmalloc (buffer_allocated);
1042   bufptr = buffer;
1043
1044   while (len > 0)
1045     {
1046       tlen = MIN (len, 4 - (memaddr & 3));
1047       offset = memaddr & 3;
1048
1049       errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
1050       if (errcode != 0)
1051         {
1052           /* The transfer request might have crossed the boundary to an
1053              unallocated region of memory.  Retry the transfer, requesting
1054              a single byte.  */
1055           tlen = 1;
1056           offset = 0;
1057           errcode = target_read_memory (memaddr, buf, 1);
1058           if (errcode != 0)
1059             goto done;
1060         }
1061
1062       if (bufptr - buffer + tlen > buffer_allocated)
1063         {
1064           unsigned int bytes;
1065
1066           bytes = bufptr - buffer;
1067           buffer_allocated *= 2;
1068           buffer = xrealloc (buffer, buffer_allocated);
1069           bufptr = buffer + bytes;
1070         }
1071
1072       for (i = 0; i < tlen; i++)
1073         {
1074           *bufptr++ = buf[i + offset];
1075           if (buf[i + offset] == '\000')
1076             {
1077               nbytes_read += i + 1;
1078               goto done;
1079             }
1080         }
1081
1082       memaddr += tlen;
1083       len -= tlen;
1084       nbytes_read += tlen;
1085     }
1086 done:
1087   *string = buffer;
1088   if (errnop != NULL)
1089     *errnop = errcode;
1090   return nbytes_read;
1091 }
1092
1093 struct target_section_table *
1094 target_get_section_table (struct target_ops *target)
1095 {
1096   if (targetdebug)
1097     fprintf_unfiltered (gdb_stdlog, "target_get_section_table ()\n");
1098
1099   return (*target->to_get_section_table) (target);
1100 }
1101
1102 /* Find a section containing ADDR.  */
1103
1104 struct target_section *
1105 target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1106 {
1107   struct target_section_table *table = target_get_section_table (target);
1108   struct target_section *secp;
1109
1110   if (table == NULL)
1111     return NULL;
1112
1113   for (secp = table->sections; secp < table->sections_end; secp++)
1114     {
1115       if (addr >= secp->addr && addr < secp->endaddr)
1116         return secp;
1117     }
1118   return NULL;
1119 }
1120
1121 /* Read memory from the live target, even if currently inspecting a
1122    traceframe.  The return is the same as that of target_read.  */
1123
1124 static enum target_xfer_status
1125 target_read_live_memory (enum target_object object,
1126                          ULONGEST memaddr, gdb_byte *myaddr, ULONGEST len,
1127                          ULONGEST *xfered_len)
1128 {
1129   enum target_xfer_status ret;
1130   struct cleanup *cleanup;
1131
1132   /* Switch momentarily out of tfind mode so to access live memory.
1133      Note that this must not clear global state, such as the frame
1134      cache, which must still remain valid for the previous traceframe.
1135      We may be _building_ the frame cache at this point.  */
1136   cleanup = make_cleanup_restore_traceframe_number ();
1137   set_traceframe_number (-1);
1138
1139   ret = target_xfer_partial (current_target.beneath, object, NULL,
1140                              myaddr, NULL, memaddr, len, xfered_len);
1141
1142   do_cleanups (cleanup);
1143   return ret;
1144 }
1145
1146 /* Using the set of read-only target sections of OPS, read live
1147    read-only memory.  Note that the actual reads start from the
1148    top-most target again.
1149
1150    For interface/parameters/return description see target.h,
1151    to_xfer_partial.  */
1152
1153 static enum target_xfer_status
1154 memory_xfer_live_readonly_partial (struct target_ops *ops,
1155                                    enum target_object object,
1156                                    gdb_byte *readbuf, ULONGEST memaddr,
1157                                    ULONGEST len, ULONGEST *xfered_len)
1158 {
1159   struct target_section *secp;
1160   struct target_section_table *table;
1161
1162   secp = target_section_by_addr (ops, memaddr);
1163   if (secp != NULL
1164       && (bfd_get_section_flags (secp->the_bfd_section->owner,
1165                                  secp->the_bfd_section)
1166           & SEC_READONLY))
1167     {
1168       struct target_section *p;
1169       ULONGEST memend = memaddr + len;
1170
1171       table = target_get_section_table (ops);
1172
1173       for (p = table->sections; p < table->sections_end; p++)
1174         {
1175           if (memaddr >= p->addr)
1176             {
1177               if (memend <= p->endaddr)
1178                 {
1179                   /* Entire transfer is within this section.  */
1180                   return target_read_live_memory (object, memaddr,
1181                                                   readbuf, len, xfered_len);
1182                 }
1183               else if (memaddr >= p->endaddr)
1184                 {
1185                   /* This section ends before the transfer starts.  */
1186                   continue;
1187                 }
1188               else
1189                 {
1190                   /* This section overlaps the transfer.  Just do half.  */
1191                   len = p->endaddr - memaddr;
1192                   return target_read_live_memory (object, memaddr,
1193                                                   readbuf, len, xfered_len);
1194                 }
1195             }
1196         }
1197     }
1198
1199   return TARGET_XFER_EOF;
1200 }
1201
1202 /* Read memory from more than one valid target.  A core file, for
1203    instance, could have some of memory but delegate other bits to
1204    the target below it.  So, we must manually try all targets.  */
1205
1206 static enum target_xfer_status
1207 raw_memory_xfer_partial (struct target_ops *ops, gdb_byte *readbuf,
1208                          const gdb_byte *writebuf, ULONGEST memaddr, LONGEST len,
1209                          ULONGEST *xfered_len)
1210 {
1211   enum target_xfer_status res;
1212
1213   do
1214     {
1215       res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1216                                   readbuf, writebuf, memaddr, len,
1217                                   xfered_len);
1218       if (res == TARGET_XFER_OK)
1219         break;
1220
1221       /* Stop if the target reports that the memory is not available.  */
1222       if (res == TARGET_XFER_E_UNAVAILABLE)
1223         break;
1224
1225       /* We want to continue past core files to executables, but not
1226          past a running target's memory.  */
1227       if (ops->to_has_all_memory (ops))
1228         break;
1229
1230       ops = ops->beneath;
1231     }
1232   while (ops != NULL);
1233
1234   return res;
1235 }
1236
1237 /* Perform a partial memory transfer.
1238    For docs see target.h, to_xfer_partial.  */
1239
1240 static enum target_xfer_status
1241 memory_xfer_partial_1 (struct target_ops *ops, enum target_object object,
1242                        gdb_byte *readbuf, const gdb_byte *writebuf, ULONGEST memaddr,
1243                        ULONGEST len, ULONGEST *xfered_len)
1244 {
1245   enum target_xfer_status res;
1246   int reg_len;
1247   struct mem_region *region;
1248   struct inferior *inf;
1249
1250   /* For accesses to unmapped overlay sections, read directly from
1251      files.  Must do this first, as MEMADDR may need adjustment.  */
1252   if (readbuf != NULL && overlay_debugging)
1253     {
1254       struct obj_section *section = find_pc_overlay (memaddr);
1255
1256       if (pc_in_unmapped_range (memaddr, section))
1257         {
1258           struct target_section_table *table
1259             = target_get_section_table (ops);
1260           const char *section_name = section->the_bfd_section->name;
1261
1262           memaddr = overlay_mapped_address (memaddr, section);
1263           return section_table_xfer_memory_partial (readbuf, writebuf,
1264                                                     memaddr, len, xfered_len,
1265                                                     table->sections,
1266                                                     table->sections_end,
1267                                                     section_name);
1268         }
1269     }
1270
1271   /* Try the executable files, if "trust-readonly-sections" is set.  */
1272   if (readbuf != NULL && trust_readonly)
1273     {
1274       struct target_section *secp;
1275       struct target_section_table *table;
1276
1277       secp = target_section_by_addr (ops, memaddr);
1278       if (secp != NULL
1279           && (bfd_get_section_flags (secp->the_bfd_section->owner,
1280                                      secp->the_bfd_section)
1281               & SEC_READONLY))
1282         {
1283           table = target_get_section_table (ops);
1284           return section_table_xfer_memory_partial (readbuf, writebuf,
1285                                                     memaddr, len, xfered_len,
1286                                                     table->sections,
1287                                                     table->sections_end,
1288                                                     NULL);
1289         }
1290     }
1291
1292   /* If reading unavailable memory in the context of traceframes, and
1293      this address falls within a read-only section, fallback to
1294      reading from live memory.  */
1295   if (readbuf != NULL && get_traceframe_number () != -1)
1296     {
1297       VEC(mem_range_s) *available;
1298
1299       /* If we fail to get the set of available memory, then the
1300          target does not support querying traceframe info, and so we
1301          attempt reading from the traceframe anyway (assuming the
1302          target implements the old QTro packet then).  */
1303       if (traceframe_available_memory (&available, memaddr, len))
1304         {
1305           struct cleanup *old_chain;
1306
1307           old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
1308
1309           if (VEC_empty (mem_range_s, available)
1310               || VEC_index (mem_range_s, available, 0)->start != memaddr)
1311             {
1312               /* Don't read into the traceframe's available
1313                  memory.  */
1314               if (!VEC_empty (mem_range_s, available))
1315                 {
1316                   LONGEST oldlen = len;
1317
1318                   len = VEC_index (mem_range_s, available, 0)->start - memaddr;
1319                   gdb_assert (len <= oldlen);
1320                 }
1321
1322               do_cleanups (old_chain);
1323
1324               /* This goes through the topmost target again.  */
1325               res = memory_xfer_live_readonly_partial (ops, object,
1326                                                        readbuf, memaddr,
1327                                                        len, xfered_len);
1328               if (res == TARGET_XFER_OK)
1329                 return TARGET_XFER_OK;
1330               else
1331                 {
1332                   /* No use trying further, we know some memory starting
1333                      at MEMADDR isn't available.  */
1334                   *xfered_len = len;
1335                   return TARGET_XFER_E_UNAVAILABLE;
1336                 }
1337             }
1338
1339           /* Don't try to read more than how much is available, in
1340              case the target implements the deprecated QTro packet to
1341              cater for older GDBs (the target's knowledge of read-only
1342              sections may be outdated by now).  */
1343           len = VEC_index (mem_range_s, available, 0)->length;
1344
1345           do_cleanups (old_chain);
1346         }
1347     }
1348
1349   /* Try GDB's internal data cache.  */
1350   region = lookup_mem_region (memaddr);
1351   /* region->hi == 0 means there's no upper bound.  */
1352   if (memaddr + len < region->hi || region->hi == 0)
1353     reg_len = len;
1354   else
1355     reg_len = region->hi - memaddr;
1356
1357   switch (region->attrib.mode)
1358     {
1359     case MEM_RO:
1360       if (writebuf != NULL)
1361         return TARGET_XFER_E_IO;
1362       break;
1363
1364     case MEM_WO:
1365       if (readbuf != NULL)
1366         return TARGET_XFER_E_IO;
1367       break;
1368
1369     case MEM_FLASH:
1370       /* We only support writing to flash during "load" for now.  */
1371       if (writebuf != NULL)
1372         error (_("Writing to flash memory forbidden in this context"));
1373       break;
1374
1375     case MEM_NONE:
1376       return TARGET_XFER_E_IO;
1377     }
1378
1379   if (!ptid_equal (inferior_ptid, null_ptid))
1380     inf = find_inferior_pid (ptid_get_pid (inferior_ptid));
1381   else
1382     inf = NULL;
1383
1384   if (inf != NULL
1385       /* The dcache reads whole cache lines; that doesn't play well
1386          with reading from a trace buffer, because reading outside of
1387          the collected memory range fails.  */
1388       && get_traceframe_number () == -1
1389       && (region->attrib.cache
1390           || (stack_cache_enabled_p () && object == TARGET_OBJECT_STACK_MEMORY)
1391           || (code_cache_enabled_p () && object == TARGET_OBJECT_CODE_MEMORY)))
1392     {
1393       DCACHE *dcache = target_dcache_get_or_init ();
1394       int l;
1395
1396       if (readbuf != NULL)
1397         l = dcache_xfer_memory (ops, dcache, memaddr, readbuf, reg_len, 0);
1398       else
1399         /* FIXME drow/2006-08-09: If we're going to preserve const
1400            correctness dcache_xfer_memory should take readbuf and
1401            writebuf.  */
1402         l = dcache_xfer_memory (ops, dcache, memaddr, (void *) writebuf,
1403                                   reg_len, 1);
1404       if (l <= 0)
1405         return TARGET_XFER_E_IO;
1406       else
1407         {
1408           *xfered_len = (ULONGEST) l;
1409           return TARGET_XFER_OK;
1410         }
1411     }
1412
1413   /* If none of those methods found the memory we wanted, fall back
1414      to a target partial transfer.  Normally a single call to
1415      to_xfer_partial is enough; if it doesn't recognize an object
1416      it will call the to_xfer_partial of the next target down.
1417      But for memory this won't do.  Memory is the only target
1418      object which can be read from more than one valid target.
1419      A core file, for instance, could have some of memory but
1420      delegate other bits to the target below it.  So, we must
1421      manually try all targets.  */
1422
1423   res = raw_memory_xfer_partial (ops, readbuf, writebuf, memaddr, reg_len,
1424                                  xfered_len);
1425
1426   /* Make sure the cache gets updated no matter what - if we are writing
1427      to the stack.  Even if this write is not tagged as such, we still need
1428      to update the cache.  */
1429
1430   if (res == TARGET_XFER_OK
1431       && inf != NULL
1432       && writebuf != NULL
1433       && target_dcache_init_p ()
1434       && !region->attrib.cache
1435       && ((stack_cache_enabled_p () && object != TARGET_OBJECT_STACK_MEMORY)
1436           || (code_cache_enabled_p () && object != TARGET_OBJECT_CODE_MEMORY)))
1437     {
1438       DCACHE *dcache = target_dcache_get ();
1439
1440       dcache_update (dcache, memaddr, (void *) writebuf, reg_len);
1441     }
1442
1443   /* If we still haven't got anything, return the last error.  We
1444      give up.  */
1445   return res;
1446 }
1447
1448 /* Perform a partial memory transfer.  For docs see target.h,
1449    to_xfer_partial.  */
1450
1451 static enum target_xfer_status
1452 memory_xfer_partial (struct target_ops *ops, enum target_object object,
1453                      gdb_byte *readbuf, const gdb_byte *writebuf,
1454                      ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
1455 {
1456   enum target_xfer_status res;
1457
1458   /* Zero length requests are ok and require no work.  */
1459   if (len == 0)
1460     return TARGET_XFER_EOF;
1461
1462   /* Fill in READBUF with breakpoint shadows, or WRITEBUF with
1463      breakpoint insns, thus hiding out from higher layers whether
1464      there are software breakpoints inserted in the code stream.  */
1465   if (readbuf != NULL)
1466     {
1467       res = memory_xfer_partial_1 (ops, object, readbuf, NULL, memaddr, len,
1468                                    xfered_len);
1469
1470       if (res == TARGET_XFER_OK && !show_memory_breakpoints)
1471         breakpoint_xfer_memory (readbuf, NULL, NULL, memaddr, res);
1472     }
1473   else
1474     {
1475       void *buf;
1476       struct cleanup *old_chain;
1477
1478       /* A large write request is likely to be partially satisfied
1479          by memory_xfer_partial_1.  We will continually malloc
1480          and free a copy of the entire write request for breakpoint
1481          shadow handling even though we only end up writing a small
1482          subset of it.  Cap writes to 4KB to mitigate this.  */
1483       len = min (4096, len);
1484
1485       buf = xmalloc (len);
1486       old_chain = make_cleanup (xfree, buf);
1487       memcpy (buf, writebuf, len);
1488
1489       breakpoint_xfer_memory (NULL, buf, writebuf, memaddr, len);
1490       res = memory_xfer_partial_1 (ops, object, NULL, buf, memaddr, len,
1491                                    xfered_len);
1492
1493       do_cleanups (old_chain);
1494     }
1495
1496   return res;
1497 }
1498
1499 static void
1500 restore_show_memory_breakpoints (void *arg)
1501 {
1502   show_memory_breakpoints = (uintptr_t) arg;
1503 }
1504
1505 struct cleanup *
1506 make_show_memory_breakpoints_cleanup (int show)
1507 {
1508   int current = show_memory_breakpoints;
1509
1510   show_memory_breakpoints = show;
1511   return make_cleanup (restore_show_memory_breakpoints,
1512                        (void *) (uintptr_t) current);
1513 }
1514
1515 /* For docs see target.h, to_xfer_partial.  */
1516
1517 enum target_xfer_status
1518 target_xfer_partial (struct target_ops *ops,
1519                      enum target_object object, const char *annex,
1520                      gdb_byte *readbuf, const gdb_byte *writebuf,
1521                      ULONGEST offset, ULONGEST len,
1522                      ULONGEST *xfered_len)
1523 {
1524   enum target_xfer_status retval;
1525
1526   gdb_assert (ops->to_xfer_partial != NULL);
1527
1528   /* Transfer is done when LEN is zero.  */
1529   if (len == 0)
1530     return TARGET_XFER_EOF;
1531
1532   if (writebuf && !may_write_memory)
1533     error (_("Writing to memory is not allowed (addr %s, len %s)"),
1534            core_addr_to_string_nz (offset), plongest (len));
1535
1536   *xfered_len = 0;
1537
1538   /* If this is a memory transfer, let the memory-specific code
1539      have a look at it instead.  Memory transfers are more
1540      complicated.  */
1541   if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY
1542       || object == TARGET_OBJECT_CODE_MEMORY)
1543     retval = memory_xfer_partial (ops, object, readbuf,
1544                                   writebuf, offset, len, xfered_len);
1545   else if (object == TARGET_OBJECT_RAW_MEMORY)
1546     {
1547       /* Request the normal memory object from other layers.  */
1548       retval = raw_memory_xfer_partial (ops, readbuf, writebuf, offset, len,
1549                                         xfered_len);
1550     }
1551   else
1552     retval = ops->to_xfer_partial (ops, object, annex, readbuf,
1553                                    writebuf, offset, len, xfered_len);
1554
1555   if (targetdebug)
1556     {
1557       const unsigned char *myaddr = NULL;
1558
1559       fprintf_unfiltered (gdb_stdlog,
1560                           "%s:target_xfer_partial "
1561                           "(%d, %s, %s, %s, %s, %s) = %d, %s",
1562                           ops->to_shortname,
1563                           (int) object,
1564                           (annex ? annex : "(null)"),
1565                           host_address_to_string (readbuf),
1566                           host_address_to_string (writebuf),
1567                           core_addr_to_string_nz (offset),
1568                           pulongest (len), retval,
1569                           pulongest (*xfered_len));
1570
1571       if (readbuf)
1572         myaddr = readbuf;
1573       if (writebuf)
1574         myaddr = writebuf;
1575       if (retval == TARGET_XFER_OK && myaddr != NULL)
1576         {
1577           int i;
1578
1579           fputs_unfiltered (", bytes =", gdb_stdlog);
1580           for (i = 0; i < *xfered_len; i++)
1581             {
1582               if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
1583                 {
1584                   if (targetdebug < 2 && i > 0)
1585                     {
1586                       fprintf_unfiltered (gdb_stdlog, " ...");
1587                       break;
1588                     }
1589                   fprintf_unfiltered (gdb_stdlog, "\n");
1590                 }
1591
1592               fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1593             }
1594         }
1595
1596       fputc_unfiltered ('\n', gdb_stdlog);
1597     }
1598
1599   /* Check implementations of to_xfer_partial update *XFERED_LEN
1600      properly.  Do assertion after printing debug messages, so that we
1601      can find more clues on assertion failure from debugging messages.  */
1602   if (retval == TARGET_XFER_OK || retval == TARGET_XFER_E_UNAVAILABLE)
1603     gdb_assert (*xfered_len > 0);
1604
1605   return retval;
1606 }
1607
1608 /* Read LEN bytes of target memory at address MEMADDR, placing the
1609    results in GDB's memory at MYADDR.  Returns either 0 for success or
1610    TARGET_XFER_E_IO if any error occurs.
1611
1612    If an error occurs, no guarantee is made about the contents of the data at
1613    MYADDR.  In particular, the caller should not depend upon partial reads
1614    filling the buffer with good data.  There is no way for the caller to know
1615    how much good data might have been transfered anyway.  Callers that can
1616    deal with partial reads should call target_read (which will retry until
1617    it makes no progress, and then return how much was transferred).  */
1618
1619 int
1620 target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1621 {
1622   /* Dispatch to the topmost target, not the flattened current_target.
1623      Memory accesses check target->to_has_(all_)memory, and the
1624      flattened target doesn't inherit those.  */
1625   if (target_read (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1626                    myaddr, memaddr, len) == len)
1627     return 0;
1628   else
1629     return TARGET_XFER_E_IO;
1630 }
1631
1632 /* Like target_read_memory, but specify explicitly that this is a read
1633    from the target's raw memory.  That is, this read bypasses the
1634    dcache, breakpoint shadowing, etc.  */
1635
1636 int
1637 target_read_raw_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1638 {
1639   /* See comment in target_read_memory about why the request starts at
1640      current_target.beneath.  */
1641   if (target_read (current_target.beneath, TARGET_OBJECT_RAW_MEMORY, NULL,
1642                    myaddr, memaddr, len) == len)
1643     return 0;
1644   else
1645     return TARGET_XFER_E_IO;
1646 }
1647
1648 /* Like target_read_memory, but specify explicitly that this is a read from
1649    the target's stack.  This may trigger different cache behavior.  */
1650
1651 int
1652 target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1653 {
1654   /* See comment in target_read_memory about why the request starts at
1655      current_target.beneath.  */
1656   if (target_read (current_target.beneath, TARGET_OBJECT_STACK_MEMORY, NULL,
1657                    myaddr, memaddr, len) == len)
1658     return 0;
1659   else
1660     return TARGET_XFER_E_IO;
1661 }
1662
1663 /* Like target_read_memory, but specify explicitly that this is a read from
1664    the target's code.  This may trigger different cache behavior.  */
1665
1666 int
1667 target_read_code (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1668 {
1669   /* See comment in target_read_memory about why the request starts at
1670      current_target.beneath.  */
1671   if (target_read (current_target.beneath, TARGET_OBJECT_CODE_MEMORY, NULL,
1672                    myaddr, memaddr, len) == len)
1673     return 0;
1674   else
1675     return TARGET_XFER_E_IO;
1676 }
1677
1678 /* Write LEN bytes from MYADDR to target memory at address MEMADDR.
1679    Returns either 0 for success or TARGET_XFER_E_IO if any
1680    error occurs.  If an error occurs, no guarantee is made about how
1681    much data got written.  Callers that can deal with partial writes
1682    should call target_write.  */
1683
1684 int
1685 target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
1686 {
1687   /* See comment in target_read_memory about why the request starts at
1688      current_target.beneath.  */
1689   if (target_write (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1690                     myaddr, memaddr, len) == len)
1691     return 0;
1692   else
1693     return TARGET_XFER_E_IO;
1694 }
1695
1696 /* Write LEN bytes from MYADDR to target raw memory at address
1697    MEMADDR.  Returns either 0 for success or TARGET_XFER_E_IO
1698    if any error occurs.  If an error occurs, no guarantee is made
1699    about how much data got written.  Callers that can deal with
1700    partial writes should call target_write.  */
1701
1702 int
1703 target_write_raw_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
1704 {
1705   /* See comment in target_read_memory about why the request starts at
1706      current_target.beneath.  */
1707   if (target_write (current_target.beneath, TARGET_OBJECT_RAW_MEMORY, NULL,
1708                     myaddr, memaddr, len) == len)
1709     return 0;
1710   else
1711     return TARGET_XFER_E_IO;
1712 }
1713
1714 /* Fetch the target's memory map.  */
1715
1716 VEC(mem_region_s) *
1717 target_memory_map (void)
1718 {
1719   VEC(mem_region_s) *result;
1720   struct mem_region *last_one, *this_one;
1721   int ix;
1722   struct target_ops *t;
1723
1724   if (targetdebug)
1725     fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1726
1727   result = current_target.to_memory_map (&current_target);
1728   if (result == NULL)
1729     return NULL;
1730
1731   qsort (VEC_address (mem_region_s, result),
1732          VEC_length (mem_region_s, result),
1733          sizeof (struct mem_region), mem_region_cmp);
1734
1735   /* Check that regions do not overlap.  Simultaneously assign
1736      a numbering for the "mem" commands to use to refer to
1737      each region.  */
1738   last_one = NULL;
1739   for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1740     {
1741       this_one->number = ix;
1742
1743       if (last_one && last_one->hi > this_one->lo)
1744         {
1745           warning (_("Overlapping regions in memory map: ignoring"));
1746           VEC_free (mem_region_s, result);
1747           return NULL;
1748         }
1749       last_one = this_one;
1750     }
1751
1752   return result;
1753 }
1754
1755 void
1756 target_flash_erase (ULONGEST address, LONGEST length)
1757 {
1758   if (targetdebug)
1759     fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
1760                         hex_string (address), phex (length, 0));
1761   current_target.to_flash_erase (&current_target, address, length);
1762 }
1763
1764 void
1765 target_flash_done (void)
1766 {
1767   if (targetdebug)
1768     fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
1769   current_target.to_flash_done (&current_target);
1770 }
1771
1772 static void
1773 show_trust_readonly (struct ui_file *file, int from_tty,
1774                      struct cmd_list_element *c, const char *value)
1775 {
1776   fprintf_filtered (file,
1777                     _("Mode for reading from readonly sections is %s.\n"),
1778                     value);
1779 }
1780
1781 /* More generic transfers.  */
1782
1783 static enum target_xfer_status
1784 default_xfer_partial (struct target_ops *ops, enum target_object object,
1785                       const char *annex, gdb_byte *readbuf,
1786                       const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
1787                       ULONGEST *xfered_len)
1788 {
1789   if (object == TARGET_OBJECT_MEMORY
1790       && ops->deprecated_xfer_memory != NULL)
1791     /* If available, fall back to the target's
1792        "deprecated_xfer_memory" method.  */
1793     {
1794       int xfered = -1;
1795
1796       errno = 0;
1797       if (writebuf != NULL)
1798         {
1799           void *buffer = xmalloc (len);
1800           struct cleanup *cleanup = make_cleanup (xfree, buffer);
1801
1802           memcpy (buffer, writebuf, len);
1803           xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1804                                                 1/*write*/, NULL, ops);
1805           do_cleanups (cleanup);
1806         }
1807       if (readbuf != NULL)
1808         xfered = ops->deprecated_xfer_memory (offset, readbuf, len, 
1809                                               0/*read*/, NULL, ops);
1810       if (xfered > 0)
1811         {
1812           *xfered_len = (ULONGEST) xfered;
1813           return TARGET_XFER_E_IO;
1814         }
1815       else if (xfered == 0 && errno == 0)
1816         /* "deprecated_xfer_memory" uses 0, cross checked against
1817            ERRNO as one indication of an error.  */
1818         return TARGET_XFER_EOF;
1819       else
1820         return TARGET_XFER_E_IO;
1821     }
1822   else
1823     {
1824       gdb_assert (ops->beneath != NULL);
1825       return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1826                                             readbuf, writebuf, offset, len,
1827                                             xfered_len);
1828     }
1829 }
1830
1831 /* Target vector read/write partial wrapper functions.  */
1832
1833 static enum target_xfer_status
1834 target_read_partial (struct target_ops *ops,
1835                      enum target_object object,
1836                      const char *annex, gdb_byte *buf,
1837                      ULONGEST offset, ULONGEST len,
1838                      ULONGEST *xfered_len)
1839 {
1840   return target_xfer_partial (ops, object, annex, buf, NULL, offset, len,
1841                               xfered_len);
1842 }
1843
1844 static enum target_xfer_status
1845 target_write_partial (struct target_ops *ops,
1846                       enum target_object object,
1847                       const char *annex, const gdb_byte *buf,
1848                       ULONGEST offset, LONGEST len, ULONGEST *xfered_len)
1849 {
1850   return target_xfer_partial (ops, object, annex, NULL, buf, offset, len,
1851                               xfered_len);
1852 }
1853
1854 /* Wrappers to perform the full transfer.  */
1855
1856 /* For docs on target_read see target.h.  */
1857
1858 LONGEST
1859 target_read (struct target_ops *ops,
1860              enum target_object object,
1861              const char *annex, gdb_byte *buf,
1862              ULONGEST offset, LONGEST len)
1863 {
1864   LONGEST xfered = 0;
1865
1866   while (xfered < len)
1867     {
1868       ULONGEST xfered_len;
1869       enum target_xfer_status status;
1870
1871       status = target_read_partial (ops, object, annex,
1872                                     (gdb_byte *) buf + xfered,
1873                                     offset + xfered, len - xfered,
1874                                     &xfered_len);
1875
1876       /* Call an observer, notifying them of the xfer progress?  */
1877       if (status == TARGET_XFER_EOF)
1878         return xfered;
1879       else if (status == TARGET_XFER_OK)
1880         {
1881           xfered += xfered_len;
1882           QUIT;
1883         }
1884       else
1885         return -1;
1886
1887     }
1888   return len;
1889 }
1890
1891 /* Assuming that the entire [begin, end) range of memory cannot be
1892    read, try to read whatever subrange is possible to read.
1893
1894    The function returns, in RESULT, either zero or one memory block.
1895    If there's a readable subrange at the beginning, it is completely
1896    read and returned.  Any further readable subrange will not be read.
1897    Otherwise, if there's a readable subrange at the end, it will be
1898    completely read and returned.  Any readable subranges before it
1899    (obviously, not starting at the beginning), will be ignored.  In
1900    other cases -- either no readable subrange, or readable subrange(s)
1901    that is neither at the beginning, or end, nothing is returned.
1902
1903    The purpose of this function is to handle a read across a boundary
1904    of accessible memory in a case when memory map is not available.
1905    The above restrictions are fine for this case, but will give
1906    incorrect results if the memory is 'patchy'.  However, supporting
1907    'patchy' memory would require trying to read every single byte,
1908    and it seems unacceptable solution.  Explicit memory map is
1909    recommended for this case -- and target_read_memory_robust will
1910    take care of reading multiple ranges then.  */
1911
1912 static void
1913 read_whatever_is_readable (struct target_ops *ops,
1914                            ULONGEST begin, ULONGEST end,
1915                            VEC(memory_read_result_s) **result)
1916 {
1917   gdb_byte *buf = xmalloc (end - begin);
1918   ULONGEST current_begin = begin;
1919   ULONGEST current_end = end;
1920   int forward;
1921   memory_read_result_s r;
1922   ULONGEST xfered_len;
1923
1924   /* If we previously failed to read 1 byte, nothing can be done here.  */
1925   if (end - begin <= 1)
1926     {
1927       xfree (buf);
1928       return;
1929     }
1930
1931   /* Check that either first or the last byte is readable, and give up
1932      if not.  This heuristic is meant to permit reading accessible memory
1933      at the boundary of accessible region.  */
1934   if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1935                            buf, begin, 1, &xfered_len) == TARGET_XFER_OK)
1936     {
1937       forward = 1;
1938       ++current_begin;
1939     }
1940   else if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1941                                 buf + (end-begin) - 1, end - 1, 1,
1942                                 &xfered_len) == TARGET_XFER_OK)
1943     {
1944       forward = 0;
1945       --current_end;
1946     }
1947   else
1948     {
1949       xfree (buf);
1950       return;
1951     }
1952
1953   /* Loop invariant is that the [current_begin, current_end) was previously
1954      found to be not readable as a whole.
1955
1956      Note loop condition -- if the range has 1 byte, we can't divide the range
1957      so there's no point trying further.  */
1958   while (current_end - current_begin > 1)
1959     {
1960       ULONGEST first_half_begin, first_half_end;
1961       ULONGEST second_half_begin, second_half_end;
1962       LONGEST xfer;
1963       ULONGEST middle = current_begin + (current_end - current_begin)/2;
1964
1965       if (forward)
1966         {
1967           first_half_begin = current_begin;
1968           first_half_end = middle;
1969           second_half_begin = middle;
1970           second_half_end = current_end;
1971         }
1972       else
1973         {
1974           first_half_begin = middle;
1975           first_half_end = current_end;
1976           second_half_begin = current_begin;
1977           second_half_end = middle;
1978         }
1979
1980       xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
1981                           buf + (first_half_begin - begin),
1982                           first_half_begin,
1983                           first_half_end - first_half_begin);
1984
1985       if (xfer == first_half_end - first_half_begin)
1986         {
1987           /* This half reads up fine.  So, the error must be in the
1988              other half.  */
1989           current_begin = second_half_begin;
1990           current_end = second_half_end;
1991         }
1992       else
1993         {
1994           /* This half is not readable.  Because we've tried one byte, we
1995              know some part of this half if actually redable.  Go to the next
1996              iteration to divide again and try to read.
1997
1998              We don't handle the other half, because this function only tries
1999              to read a single readable subrange.  */
2000           current_begin = first_half_begin;
2001           current_end = first_half_end;
2002         }
2003     }
2004
2005   if (forward)
2006     {
2007       /* The [begin, current_begin) range has been read.  */
2008       r.begin = begin;
2009       r.end = current_begin;
2010       r.data = buf;
2011     }
2012   else
2013     {
2014       /* The [current_end, end) range has been read.  */
2015       LONGEST rlen = end - current_end;
2016
2017       r.data = xmalloc (rlen);
2018       memcpy (r.data, buf + current_end - begin, rlen);
2019       r.begin = current_end;
2020       r.end = end;
2021       xfree (buf);
2022     }
2023   VEC_safe_push(memory_read_result_s, (*result), &r);
2024 }
2025
2026 void
2027 free_memory_read_result_vector (void *x)
2028 {
2029   VEC(memory_read_result_s) *v = x;
2030   memory_read_result_s *current;
2031   int ix;
2032
2033   for (ix = 0; VEC_iterate (memory_read_result_s, v, ix, current); ++ix)
2034     {
2035       xfree (current->data);
2036     }
2037   VEC_free (memory_read_result_s, v);
2038 }
2039
2040 VEC(memory_read_result_s) *
2041 read_memory_robust (struct target_ops *ops, ULONGEST offset, LONGEST len)
2042 {
2043   VEC(memory_read_result_s) *result = 0;
2044
2045   LONGEST xfered = 0;
2046   while (xfered < len)
2047     {
2048       struct mem_region *region = lookup_mem_region (offset + xfered);
2049       LONGEST rlen;
2050
2051       /* If there is no explicit region, a fake one should be created.  */
2052       gdb_assert (region);
2053
2054       if (region->hi == 0)
2055         rlen = len - xfered;
2056       else
2057         rlen = region->hi - offset;
2058
2059       if (region->attrib.mode == MEM_NONE || region->attrib.mode == MEM_WO)
2060         {
2061           /* Cannot read this region.  Note that we can end up here only
2062              if the region is explicitly marked inaccessible, or
2063              'inaccessible-by-default' is in effect.  */
2064           xfered += rlen;
2065         }
2066       else
2067         {
2068           LONGEST to_read = min (len - xfered, rlen);
2069           gdb_byte *buffer = (gdb_byte *)xmalloc (to_read);
2070
2071           LONGEST xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2072                                       (gdb_byte *) buffer,
2073                                       offset + xfered, to_read);
2074           /* Call an observer, notifying them of the xfer progress?  */
2075           if (xfer <= 0)
2076             {
2077               /* Got an error reading full chunk.  See if maybe we can read
2078                  some subrange.  */
2079               xfree (buffer);
2080               read_whatever_is_readable (ops, offset + xfered,
2081                                          offset + xfered + to_read, &result);
2082               xfered += to_read;
2083             }
2084           else
2085             {
2086               struct memory_read_result r;
2087               r.data = buffer;
2088               r.begin = offset + xfered;
2089               r.end = r.begin + xfer;
2090               VEC_safe_push (memory_read_result_s, result, &r);
2091               xfered += xfer;
2092             }
2093           QUIT;
2094         }
2095     }
2096   return result;
2097 }
2098
2099
2100 /* An alternative to target_write with progress callbacks.  */
2101
2102 LONGEST
2103 target_write_with_progress (struct target_ops *ops,
2104                             enum target_object object,
2105                             const char *annex, const gdb_byte *buf,
2106                             ULONGEST offset, LONGEST len,
2107                             void (*progress) (ULONGEST, void *), void *baton)
2108 {
2109   LONGEST xfered = 0;
2110
2111   /* Give the progress callback a chance to set up.  */
2112   if (progress)
2113     (*progress) (0, baton);
2114
2115   while (xfered < len)
2116     {
2117       ULONGEST xfered_len;
2118       enum target_xfer_status status;
2119
2120       status = target_write_partial (ops, object, annex,
2121                                      (gdb_byte *) buf + xfered,
2122                                      offset + xfered, len - xfered,
2123                                      &xfered_len);
2124
2125       if (status == TARGET_XFER_EOF)
2126         return xfered;
2127       if (TARGET_XFER_STATUS_ERROR_P (status))
2128         return -1;
2129
2130       gdb_assert (status == TARGET_XFER_OK);
2131       if (progress)
2132         (*progress) (xfered_len, baton);
2133
2134       xfered += xfered_len;
2135       QUIT;
2136     }
2137   return len;
2138 }
2139
2140 /* For docs on target_write see target.h.  */
2141
2142 LONGEST
2143 target_write (struct target_ops *ops,
2144               enum target_object object,
2145               const char *annex, const gdb_byte *buf,
2146               ULONGEST offset, LONGEST len)
2147 {
2148   return target_write_with_progress (ops, object, annex, buf, offset, len,
2149                                      NULL, NULL);
2150 }
2151
2152 /* Read OBJECT/ANNEX using OPS.  Store the result in *BUF_P and return
2153    the size of the transferred data.  PADDING additional bytes are
2154    available in *BUF_P.  This is a helper function for
2155    target_read_alloc; see the declaration of that function for more
2156    information.  */
2157
2158 static LONGEST
2159 target_read_alloc_1 (struct target_ops *ops, enum target_object object,
2160                      const char *annex, gdb_byte **buf_p, int padding)
2161 {
2162   size_t buf_alloc, buf_pos;
2163   gdb_byte *buf;
2164
2165   /* This function does not have a length parameter; it reads the
2166      entire OBJECT).  Also, it doesn't support objects fetched partly
2167      from one target and partly from another (in a different stratum,
2168      e.g. a core file and an executable).  Both reasons make it
2169      unsuitable for reading memory.  */
2170   gdb_assert (object != TARGET_OBJECT_MEMORY);
2171
2172   /* Start by reading up to 4K at a time.  The target will throttle
2173      this number down if necessary.  */
2174   buf_alloc = 4096;
2175   buf = xmalloc (buf_alloc);
2176   buf_pos = 0;
2177   while (1)
2178     {
2179       ULONGEST xfered_len;
2180       enum target_xfer_status status;
2181
2182       status = target_read_partial (ops, object, annex, &buf[buf_pos],
2183                                     buf_pos, buf_alloc - buf_pos - padding,
2184                                     &xfered_len);
2185
2186       if (status == TARGET_XFER_EOF)
2187         {
2188           /* Read all there was.  */
2189           if (buf_pos == 0)
2190             xfree (buf);
2191           else
2192             *buf_p = buf;
2193           return buf_pos;
2194         }
2195       else if (status != TARGET_XFER_OK)
2196         {
2197           /* An error occurred.  */
2198           xfree (buf);
2199           return TARGET_XFER_E_IO;
2200         }
2201
2202       buf_pos += xfered_len;
2203
2204       /* If the buffer is filling up, expand it.  */
2205       if (buf_alloc < buf_pos * 2)
2206         {
2207           buf_alloc *= 2;
2208           buf = xrealloc (buf, buf_alloc);
2209         }
2210
2211       QUIT;
2212     }
2213 }
2214
2215 /* Read OBJECT/ANNEX using OPS.  Store the result in *BUF_P and return
2216    the size of the transferred data.  See the declaration in "target.h"
2217    function for more information about the return value.  */
2218
2219 LONGEST
2220 target_read_alloc (struct target_ops *ops, enum target_object object,
2221                    const char *annex, gdb_byte **buf_p)
2222 {
2223   return target_read_alloc_1 (ops, object, annex, buf_p, 0);
2224 }
2225
2226 /* Read OBJECT/ANNEX using OPS.  The result is NUL-terminated and
2227    returned as a string, allocated using xmalloc.  If an error occurs
2228    or the transfer is unsupported, NULL is returned.  Empty objects
2229    are returned as allocated but empty strings.  A warning is issued
2230    if the result contains any embedded NUL bytes.  */
2231
2232 char *
2233 target_read_stralloc (struct target_ops *ops, enum target_object object,
2234                       const char *annex)
2235 {
2236   gdb_byte *buffer;
2237   char *bufstr;
2238   LONGEST i, transferred;
2239
2240   transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
2241   bufstr = (char *) buffer;
2242
2243   if (transferred < 0)
2244     return NULL;
2245
2246   if (transferred == 0)
2247     return xstrdup ("");
2248
2249   bufstr[transferred] = 0;
2250
2251   /* Check for embedded NUL bytes; but allow trailing NULs.  */
2252   for (i = strlen (bufstr); i < transferred; i++)
2253     if (bufstr[i] != 0)
2254       {
2255         warning (_("target object %d, annex %s, "
2256                    "contained unexpected null characters"),
2257                  (int) object, annex ? annex : "(none)");
2258         break;
2259       }
2260
2261   return bufstr;
2262 }
2263
2264 /* Memory transfer methods.  */
2265
2266 void
2267 get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
2268                    LONGEST len)
2269 {
2270   /* This method is used to read from an alternate, non-current
2271      target.  This read must bypass the overlay support (as symbols
2272      don't match this target), and GDB's internal cache (wrong cache
2273      for this target).  */
2274   if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
2275       != len)
2276     memory_error (TARGET_XFER_E_IO, addr);
2277 }
2278
2279 ULONGEST
2280 get_target_memory_unsigned (struct target_ops *ops, CORE_ADDR addr,
2281                             int len, enum bfd_endian byte_order)
2282 {
2283   gdb_byte buf[sizeof (ULONGEST)];
2284
2285   gdb_assert (len <= sizeof (buf));
2286   get_target_memory (ops, addr, buf, len);
2287   return extract_unsigned_integer (buf, len, byte_order);
2288 }
2289
2290 /* See target.h.  */
2291
2292 int
2293 target_insert_breakpoint (struct gdbarch *gdbarch,
2294                           struct bp_target_info *bp_tgt)
2295 {
2296   if (!may_insert_breakpoints)
2297     {
2298       warning (_("May not insert breakpoints"));
2299       return 1;
2300     }
2301
2302   return current_target.to_insert_breakpoint (&current_target,
2303                                               gdbarch, bp_tgt);
2304 }
2305
2306 /* See target.h.  */
2307
2308 int
2309 target_remove_breakpoint (struct gdbarch *gdbarch,
2310                           struct bp_target_info *bp_tgt)
2311 {
2312   /* This is kind of a weird case to handle, but the permission might
2313      have been changed after breakpoints were inserted - in which case
2314      we should just take the user literally and assume that any
2315      breakpoints should be left in place.  */
2316   if (!may_insert_breakpoints)
2317     {
2318       warning (_("May not remove breakpoints"));
2319       return 1;
2320     }
2321
2322   return current_target.to_remove_breakpoint (&current_target,
2323                                               gdbarch, bp_tgt);
2324 }
2325
2326 static void
2327 target_info (char *args, int from_tty)
2328 {
2329   struct target_ops *t;
2330   int has_all_mem = 0;
2331
2332   if (symfile_objfile != NULL)
2333     printf_unfiltered (_("Symbols from \"%s\".\n"),
2334                        objfile_name (symfile_objfile));
2335
2336   for (t = target_stack; t != NULL; t = t->beneath)
2337     {
2338       if (!(*t->to_has_memory) (t))
2339         continue;
2340
2341       if ((int) (t->to_stratum) <= (int) dummy_stratum)
2342         continue;
2343       if (has_all_mem)
2344         printf_unfiltered (_("\tWhile running this, "
2345                              "GDB does not access memory from...\n"));
2346       printf_unfiltered ("%s:\n", t->to_longname);
2347       (t->to_files_info) (t);
2348       has_all_mem = (*t->to_has_all_memory) (t);
2349     }
2350 }
2351
2352 /* This function is called before any new inferior is created, e.g.
2353    by running a program, attaching, or connecting to a target.
2354    It cleans up any state from previous invocations which might
2355    change between runs.  This is a subset of what target_preopen
2356    resets (things which might change between targets).  */
2357
2358 void
2359 target_pre_inferior (int from_tty)
2360 {
2361   /* Clear out solib state.  Otherwise the solib state of the previous
2362      inferior might have survived and is entirely wrong for the new
2363      target.  This has been observed on GNU/Linux using glibc 2.3.  How
2364      to reproduce:
2365
2366      bash$ ./foo&
2367      [1] 4711
2368      bash$ ./foo&
2369      [1] 4712
2370      bash$ gdb ./foo
2371      [...]
2372      (gdb) attach 4711
2373      (gdb) detach
2374      (gdb) attach 4712
2375      Cannot access memory at address 0xdeadbeef
2376   */
2377
2378   /* In some OSs, the shared library list is the same/global/shared
2379      across inferiors.  If code is shared between processes, so are
2380      memory regions and features.  */
2381   if (!gdbarch_has_global_solist (target_gdbarch ()))
2382     {
2383       no_shared_libraries (NULL, from_tty);
2384
2385       invalidate_target_mem_regions ();
2386
2387       target_clear_description ();
2388     }
2389
2390   agent_capability_invalidate ();
2391 }
2392
2393 /* Callback for iterate_over_inferiors.  Gets rid of the given
2394    inferior.  */
2395
2396 static int
2397 dispose_inferior (struct inferior *inf, void *args)
2398 {
2399   struct thread_info *thread;
2400
2401   thread = any_thread_of_process (inf->pid);
2402   if (thread)
2403     {
2404       switch_to_thread (thread->ptid);
2405
2406       /* Core inferiors actually should be detached, not killed.  */
2407       if (target_has_execution)
2408         target_kill ();
2409       else
2410         target_detach (NULL, 0);
2411     }
2412
2413   return 0;
2414 }
2415
2416 /* This is to be called by the open routine before it does
2417    anything.  */
2418
2419 void
2420 target_preopen (int from_tty)
2421 {
2422   dont_repeat ();
2423
2424   if (have_inferiors ())
2425     {
2426       if (!from_tty
2427           || !have_live_inferiors ()
2428           || query (_("A program is being debugged already.  Kill it? ")))
2429         iterate_over_inferiors (dispose_inferior, NULL);
2430       else
2431         error (_("Program not killed."));
2432     }
2433
2434   /* Calling target_kill may remove the target from the stack.  But if
2435      it doesn't (which seems like a win for UDI), remove it now.  */
2436   /* Leave the exec target, though.  The user may be switching from a
2437      live process to a core of the same program.  */
2438   pop_all_targets_above (file_stratum);
2439
2440   target_pre_inferior (from_tty);
2441 }
2442
2443 /* Detach a target after doing deferred register stores.  */
2444
2445 void
2446 target_detach (const char *args, int from_tty)
2447 {
2448   struct target_ops* t;
2449   
2450   if (gdbarch_has_global_breakpoints (target_gdbarch ()))
2451     /* Don't remove global breakpoints here.  They're removed on
2452        disconnection from the target.  */
2453     ;
2454   else
2455     /* If we're in breakpoints-always-inserted mode, have to remove
2456        them before detaching.  */
2457     remove_breakpoints_pid (ptid_get_pid (inferior_ptid));
2458
2459   prepare_for_detach ();
2460
2461   current_target.to_detach (&current_target, args, from_tty);
2462   if (targetdebug)
2463     fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n",
2464                         args, from_tty);
2465 }
2466
2467 void
2468 target_disconnect (char *args, int from_tty)
2469 {
2470   /* If we're in breakpoints-always-inserted mode or if breakpoints
2471      are global across processes, we have to remove them before
2472      disconnecting.  */
2473   remove_breakpoints ();
2474
2475   if (targetdebug)
2476     fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
2477                         args, from_tty);
2478   current_target.to_disconnect (&current_target, args, from_tty);
2479 }
2480
2481 ptid_t
2482 target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
2483 {
2484   struct target_ops *t;
2485   ptid_t retval = (current_target.to_wait) (&current_target, ptid,
2486                                             status, options);
2487
2488   if (targetdebug)
2489     {
2490       char *status_string;
2491       char *options_string;
2492
2493       status_string = target_waitstatus_to_string (status);
2494       options_string = target_options_to_string (options);
2495       fprintf_unfiltered (gdb_stdlog,
2496                           "target_wait (%d, status, options={%s})"
2497                           " = %d,   %s\n",
2498                           ptid_get_pid (ptid), options_string,
2499                           ptid_get_pid (retval), status_string);
2500       xfree (status_string);
2501       xfree (options_string);
2502     }
2503
2504   return retval;
2505 }
2506
2507 char *
2508 target_pid_to_str (ptid_t ptid)
2509 {
2510   return (*current_target.to_pid_to_str) (&current_target, ptid);
2511 }
2512
2513 char *
2514 target_thread_name (struct thread_info *info)
2515 {
2516   return current_target.to_thread_name (&current_target, info);
2517 }
2518
2519 void
2520 target_resume (ptid_t ptid, int step, enum gdb_signal signal)
2521 {
2522   struct target_ops *t;
2523
2524   target_dcache_invalidate ();
2525
2526   current_target.to_resume (&current_target, ptid, step, signal);
2527   if (targetdebug)
2528     fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n",
2529                         ptid_get_pid (ptid),
2530                         step ? "step" : "continue",
2531                         gdb_signal_to_name (signal));
2532
2533   registers_changed_ptid (ptid);
2534   set_executing (ptid, 1);
2535   set_running (ptid, 1);
2536   clear_inline_frame_state (ptid);
2537 }
2538
2539 void
2540 target_pass_signals (int numsigs, unsigned char *pass_signals)
2541 {
2542   if (targetdebug)
2543     {
2544       int i;
2545
2546       fprintf_unfiltered (gdb_stdlog, "target_pass_signals (%d, {",
2547                           numsigs);
2548
2549       for (i = 0; i < numsigs; i++)
2550         if (pass_signals[i])
2551           fprintf_unfiltered (gdb_stdlog, " %s",
2552                               gdb_signal_to_name (i));
2553
2554       fprintf_unfiltered (gdb_stdlog, " })\n");
2555     }
2556
2557   (*current_target.to_pass_signals) (&current_target, numsigs, pass_signals);
2558 }
2559
2560 void
2561 target_program_signals (int numsigs, unsigned char *program_signals)
2562 {
2563   if (targetdebug)
2564     {
2565       int i;
2566
2567       fprintf_unfiltered (gdb_stdlog, "target_program_signals (%d, {",
2568                           numsigs);
2569
2570       for (i = 0; i < numsigs; i++)
2571         if (program_signals[i])
2572           fprintf_unfiltered (gdb_stdlog, " %s",
2573                               gdb_signal_to_name (i));
2574
2575       fprintf_unfiltered (gdb_stdlog, " })\n");
2576     }
2577
2578   (*current_target.to_program_signals) (&current_target,
2579                                         numsigs, program_signals);
2580 }
2581
2582 static int
2583 default_follow_fork (struct target_ops *self, int follow_child,
2584                      int detach_fork)
2585 {
2586   /* Some target returned a fork event, but did not know how to follow it.  */
2587   internal_error (__FILE__, __LINE__,
2588                   _("could not find a target to follow fork"));
2589 }
2590
2591 /* Look through the list of possible targets for a target that can
2592    follow forks.  */
2593
2594 int
2595 target_follow_fork (int follow_child, int detach_fork)
2596 {
2597   int retval = current_target.to_follow_fork (&current_target,
2598                                               follow_child, detach_fork);
2599
2600   if (targetdebug)
2601     fprintf_unfiltered (gdb_stdlog,
2602                         "target_follow_fork (%d, %d) = %d\n",
2603                         follow_child, detach_fork, retval);
2604   return retval;
2605 }
2606
2607 static void
2608 default_mourn_inferior (struct target_ops *self)
2609 {
2610   internal_error (__FILE__, __LINE__,
2611                   _("could not find a target to follow mourn inferior"));
2612 }
2613
2614 void
2615 target_mourn_inferior (void)
2616 {
2617   current_target.to_mourn_inferior (&current_target);
2618   if (targetdebug)
2619     fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2620
2621   /* We no longer need to keep handles on any of the object files.
2622      Make sure to release them to avoid unnecessarily locking any
2623      of them while we're not actually debugging.  */
2624   bfd_cache_close_all ();
2625 }
2626
2627 /* Look for a target which can describe architectural features, starting
2628    from TARGET.  If we find one, return its description.  */
2629
2630 const struct target_desc *
2631 target_read_description (struct target_ops *target)
2632 {
2633   struct target_ops *t;
2634
2635   for (t = target; t != NULL; t = t->beneath)
2636     if (t->to_read_description != NULL)
2637       {
2638         const struct target_desc *tdesc;
2639
2640         tdesc = t->to_read_description (t);
2641         if (tdesc)
2642           return tdesc;
2643       }
2644
2645   return NULL;
2646 }
2647
2648 /* This implements a basic search of memory, reading target memory and
2649    performing the search here (as opposed to performing the search in on the
2650    target side with, for example, gdbserver).  */
2651
2652 int
2653 simple_search_memory (struct target_ops *ops,
2654                       CORE_ADDR start_addr, ULONGEST search_space_len,
2655                       const gdb_byte *pattern, ULONGEST pattern_len,
2656                       CORE_ADDR *found_addrp)
2657 {
2658   /* NOTE: also defined in find.c testcase.  */
2659 #define SEARCH_CHUNK_SIZE 16000
2660   const unsigned chunk_size = SEARCH_CHUNK_SIZE;
2661   /* Buffer to hold memory contents for searching.  */
2662   gdb_byte *search_buf;
2663   unsigned search_buf_size;
2664   struct cleanup *old_cleanups;
2665
2666   search_buf_size = chunk_size + pattern_len - 1;
2667
2668   /* No point in trying to allocate a buffer larger than the search space.  */
2669   if (search_space_len < search_buf_size)
2670     search_buf_size = search_space_len;
2671
2672   search_buf = malloc (search_buf_size);
2673   if (search_buf == NULL)
2674     error (_("Unable to allocate memory to perform the search."));
2675   old_cleanups = make_cleanup (free_current_contents, &search_buf);
2676
2677   /* Prime the search buffer.  */
2678
2679   if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2680                    search_buf, start_addr, search_buf_size) != search_buf_size)
2681     {
2682       warning (_("Unable to access %s bytes of target "
2683                  "memory at %s, halting search."),
2684                pulongest (search_buf_size), hex_string (start_addr));
2685       do_cleanups (old_cleanups);
2686       return -1;
2687     }
2688
2689   /* Perform the search.
2690
2691      The loop is kept simple by allocating [N + pattern-length - 1] bytes.
2692      When we've scanned N bytes we copy the trailing bytes to the start and
2693      read in another N bytes.  */
2694
2695   while (search_space_len >= pattern_len)
2696     {
2697       gdb_byte *found_ptr;
2698       unsigned nr_search_bytes = min (search_space_len, search_buf_size);
2699
2700       found_ptr = memmem (search_buf, nr_search_bytes,
2701                           pattern, pattern_len);
2702
2703       if (found_ptr != NULL)
2704         {
2705           CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
2706
2707           *found_addrp = found_addr;
2708           do_cleanups (old_cleanups);
2709           return 1;
2710         }
2711
2712       /* Not found in this chunk, skip to next chunk.  */
2713
2714       /* Don't let search_space_len wrap here, it's unsigned.  */
2715       if (search_space_len >= chunk_size)
2716         search_space_len -= chunk_size;
2717       else
2718         search_space_len = 0;
2719
2720       if (search_space_len >= pattern_len)
2721         {
2722           unsigned keep_len = search_buf_size - chunk_size;
2723           CORE_ADDR read_addr = start_addr + chunk_size + keep_len;
2724           int nr_to_read;
2725
2726           /* Copy the trailing part of the previous iteration to the front
2727              of the buffer for the next iteration.  */
2728           gdb_assert (keep_len == pattern_len - 1);
2729           memcpy (search_buf, search_buf + chunk_size, keep_len);
2730
2731           nr_to_read = min (search_space_len - keep_len, chunk_size);
2732
2733           if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2734                            search_buf + keep_len, read_addr,
2735                            nr_to_read) != nr_to_read)
2736             {
2737               warning (_("Unable to access %s bytes of target "
2738                          "memory at %s, halting search."),
2739                        plongest (nr_to_read),
2740                        hex_string (read_addr));
2741               do_cleanups (old_cleanups);
2742               return -1;
2743             }
2744
2745           start_addr += chunk_size;
2746         }
2747     }
2748
2749   /* Not found.  */
2750
2751   do_cleanups (old_cleanups);
2752   return 0;
2753 }
2754
2755 /* Default implementation of memory-searching.  */
2756
2757 static int
2758 default_search_memory (struct target_ops *self,
2759                        CORE_ADDR start_addr, ULONGEST search_space_len,
2760                        const gdb_byte *pattern, ULONGEST pattern_len,
2761                        CORE_ADDR *found_addrp)
2762 {
2763   /* Start over from the top of the target stack.  */
2764   return simple_search_memory (current_target.beneath,
2765                                start_addr, search_space_len,
2766                                pattern, pattern_len, found_addrp);
2767 }
2768
2769 /* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2770    sequence of bytes in PATTERN with length PATTERN_LEN.
2771
2772    The result is 1 if found, 0 if not found, and -1 if there was an error
2773    requiring halting of the search (e.g. memory read error).
2774    If the pattern is found the address is recorded in FOUND_ADDRP.  */
2775
2776 int
2777 target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2778                       const gdb_byte *pattern, ULONGEST pattern_len,
2779                       CORE_ADDR *found_addrp)
2780 {
2781   int found;
2782
2783   if (targetdebug)
2784     fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
2785                         hex_string (start_addr));
2786
2787   found = current_target.to_search_memory (&current_target, start_addr,
2788                                            search_space_len,
2789                                            pattern, pattern_len, found_addrp);
2790
2791   if (targetdebug)
2792     fprintf_unfiltered (gdb_stdlog, "  = %d\n", found);
2793
2794   return found;
2795 }
2796
2797 /* Look through the currently pushed targets.  If none of them will
2798    be able to restart the currently running process, issue an error
2799    message.  */
2800
2801 void
2802 target_require_runnable (void)
2803 {
2804   struct target_ops *t;
2805
2806   for (t = target_stack; t != NULL; t = t->beneath)
2807     {
2808       /* If this target knows how to create a new program, then
2809          assume we will still be able to after killing the current
2810          one.  Either killing and mourning will not pop T, or else
2811          find_default_run_target will find it again.  */
2812       if (t->to_create_inferior != NULL)
2813         return;
2814
2815       /* Do not worry about thread_stratum targets that can not
2816          create inferiors.  Assume they will be pushed again if
2817          necessary, and continue to the process_stratum.  */
2818       if (t->to_stratum == thread_stratum
2819           || t->to_stratum == arch_stratum)
2820         continue;
2821
2822       error (_("The \"%s\" target does not support \"run\".  "
2823                "Try \"help target\" or \"continue\"."),
2824              t->to_shortname);
2825     }
2826
2827   /* This function is only called if the target is running.  In that
2828      case there should have been a process_stratum target and it
2829      should either know how to create inferiors, or not...  */
2830   internal_error (__FILE__, __LINE__, _("No targets found"));
2831 }
2832
2833 /* Look through the list of possible targets for a target that can
2834    execute a run or attach command without any other data.  This is
2835    used to locate the default process stratum.
2836
2837    If DO_MESG is not NULL, the result is always valid (error() is
2838    called for errors); else, return NULL on error.  */
2839
2840 static struct target_ops *
2841 find_default_run_target (char *do_mesg)
2842 {
2843   struct target_ops **t;
2844   struct target_ops *runable = NULL;
2845   int count;
2846
2847   count = 0;
2848
2849   for (t = target_structs; t < target_structs + target_struct_size;
2850        ++t)
2851     {
2852       if ((*t)->to_can_run != delegate_can_run && target_can_run (*t))
2853         {
2854           runable = *t;
2855           ++count;
2856         }
2857     }
2858
2859   if (count != 1)
2860     {
2861       if (do_mesg)
2862         error (_("Don't know how to %s.  Try \"help target\"."), do_mesg);
2863       else
2864         return NULL;
2865     }
2866
2867   return runable;
2868 }
2869
2870 void
2871 find_default_attach (struct target_ops *ops, char *args, int from_tty)
2872 {
2873   struct target_ops *t;
2874
2875   t = find_default_run_target ("attach");
2876   (t->to_attach) (t, args, from_tty);
2877   return;
2878 }
2879
2880 void
2881 find_default_create_inferior (struct target_ops *ops,
2882                               char *exec_file, char *allargs, char **env,
2883                               int from_tty)
2884 {
2885   struct target_ops *t;
2886
2887   t = find_default_run_target ("run");
2888   (t->to_create_inferior) (t, exec_file, allargs, env, from_tty);
2889   return;
2890 }
2891
2892 static int
2893 find_default_can_async_p (struct target_ops *ignore)
2894 {
2895   struct target_ops *t;
2896
2897   /* This may be called before the target is pushed on the stack;
2898      look for the default process stratum.  If there's none, gdb isn't
2899      configured with a native debugger, and target remote isn't
2900      connected yet.  */
2901   t = find_default_run_target (NULL);
2902   if (t && t->to_can_async_p != delegate_can_async_p)
2903     return (t->to_can_async_p) (t);
2904   return 0;
2905 }
2906
2907 static int
2908 find_default_is_async_p (struct target_ops *ignore)
2909 {
2910   struct target_ops *t;
2911
2912   /* This may be called before the target is pushed on the stack;
2913      look for the default process stratum.  If there's none, gdb isn't
2914      configured with a native debugger, and target remote isn't
2915      connected yet.  */
2916   t = find_default_run_target (NULL);
2917   if (t && t->to_is_async_p != delegate_is_async_p)
2918     return (t->to_is_async_p) (t);
2919   return 0;
2920 }
2921
2922 static int
2923 find_default_supports_non_stop (struct target_ops *self)
2924 {
2925   struct target_ops *t;
2926
2927   t = find_default_run_target (NULL);
2928   if (t && t->to_supports_non_stop)
2929     return (t->to_supports_non_stop) (t);
2930   return 0;
2931 }
2932
2933 int
2934 target_supports_non_stop (void)
2935 {
2936   struct target_ops *t;
2937
2938   for (t = &current_target; t != NULL; t = t->beneath)
2939     if (t->to_supports_non_stop)
2940       return t->to_supports_non_stop (t);
2941
2942   return 0;
2943 }
2944
2945 /* Implement the "info proc" command.  */
2946
2947 int
2948 target_info_proc (char *args, enum info_proc_what what)
2949 {
2950   struct target_ops *t;
2951
2952   /* If we're already connected to something that can get us OS
2953      related data, use it.  Otherwise, try using the native
2954      target.  */
2955   if (current_target.to_stratum >= process_stratum)
2956     t = current_target.beneath;
2957   else
2958     t = find_default_run_target (NULL);
2959
2960   for (; t != NULL; t = t->beneath)
2961     {
2962       if (t->to_info_proc != NULL)
2963         {
2964           t->to_info_proc (t, args, what);
2965
2966           if (targetdebug)
2967             fprintf_unfiltered (gdb_stdlog,
2968                                 "target_info_proc (\"%s\", %d)\n", args, what);
2969
2970           return 1;
2971         }
2972     }
2973
2974   return 0;
2975 }
2976
2977 static int
2978 find_default_supports_disable_randomization (struct target_ops *self)
2979 {
2980   struct target_ops *t;
2981
2982   t = find_default_run_target (NULL);
2983   if (t && t->to_supports_disable_randomization)
2984     return (t->to_supports_disable_randomization) (t);
2985   return 0;
2986 }
2987
2988 int
2989 target_supports_disable_randomization (void)
2990 {
2991   struct target_ops *t;
2992
2993   for (t = &current_target; t != NULL; t = t->beneath)
2994     if (t->to_supports_disable_randomization)
2995       return t->to_supports_disable_randomization (t);
2996
2997   return 0;
2998 }
2999
3000 char *
3001 target_get_osdata (const char *type)
3002 {
3003   struct target_ops *t;
3004
3005   /* If we're already connected to something that can get us OS
3006      related data, use it.  Otherwise, try using the native
3007      target.  */
3008   if (current_target.to_stratum >= process_stratum)
3009     t = current_target.beneath;
3010   else
3011     t = find_default_run_target ("get OS data");
3012
3013   if (!t)
3014     return NULL;
3015
3016   return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
3017 }
3018
3019 /* Determine the current address space of thread PTID.  */
3020
3021 struct address_space *
3022 target_thread_address_space (ptid_t ptid)
3023 {
3024   struct address_space *aspace;
3025   struct inferior *inf;
3026   struct target_ops *t;
3027
3028   for (t = current_target.beneath; t != NULL; t = t->beneath)
3029     {
3030       if (t->to_thread_address_space != NULL)
3031         {
3032           aspace = t->to_thread_address_space (t, ptid);
3033           gdb_assert (aspace);
3034
3035           if (targetdebug)
3036             fprintf_unfiltered (gdb_stdlog,
3037                                 "target_thread_address_space (%s) = %d\n",
3038                                 target_pid_to_str (ptid),
3039                                 address_space_num (aspace));
3040           return aspace;
3041         }
3042     }
3043
3044   /* Fall-back to the "main" address space of the inferior.  */
3045   inf = find_inferior_pid (ptid_get_pid (ptid));
3046
3047   if (inf == NULL || inf->aspace == NULL)
3048     internal_error (__FILE__, __LINE__,
3049                     _("Can't determine the current "
3050                       "address space of thread %s\n"),
3051                     target_pid_to_str (ptid));
3052
3053   return inf->aspace;
3054 }
3055
3056
3057 /* Target file operations.  */
3058
3059 static struct target_ops *
3060 default_fileio_target (void)
3061 {
3062   /* If we're already connected to something that can perform
3063      file I/O, use it. Otherwise, try using the native target.  */
3064   if (current_target.to_stratum >= process_stratum)
3065     return current_target.beneath;
3066   else
3067     return find_default_run_target ("file I/O");
3068 }
3069
3070 /* Open FILENAME on the target, using FLAGS and MODE.  Return a
3071    target file descriptor, or -1 if an error occurs (and set
3072    *TARGET_ERRNO).  */
3073 int
3074 target_fileio_open (const char *filename, int flags, int mode,
3075                     int *target_errno)
3076 {
3077   struct target_ops *t;
3078
3079   for (t = default_fileio_target (); t != NULL; t = t->beneath)
3080     {
3081       if (t->to_fileio_open != NULL)
3082         {
3083           int fd = t->to_fileio_open (t, filename, flags, mode, target_errno);
3084
3085           if (targetdebug)
3086             fprintf_unfiltered (gdb_stdlog,
3087                                 "target_fileio_open (%s,0x%x,0%o) = %d (%d)\n",
3088                                 filename, flags, mode,
3089                                 fd, fd != -1 ? 0 : *target_errno);
3090           return fd;
3091         }
3092     }
3093
3094   *target_errno = FILEIO_ENOSYS;
3095   return -1;
3096 }
3097
3098 /* Write up to LEN bytes from WRITE_BUF to FD on the target.
3099    Return the number of bytes written, or -1 if an error occurs
3100    (and set *TARGET_ERRNO).  */
3101 int
3102 target_fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
3103                       ULONGEST offset, int *target_errno)
3104 {
3105   struct target_ops *t;
3106
3107   for (t = default_fileio_target (); t != NULL; t = t->beneath)
3108     {
3109       if (t->to_fileio_pwrite != NULL)
3110         {
3111           int ret = t->to_fileio_pwrite (t, fd, write_buf, len, offset,
3112                                          target_errno);
3113
3114           if (targetdebug)
3115             fprintf_unfiltered (gdb_stdlog,
3116                                 "target_fileio_pwrite (%d,...,%d,%s) "
3117                                 "= %d (%d)\n",
3118                                 fd, len, pulongest (offset),
3119                                 ret, ret != -1 ? 0 : *target_errno);
3120           return ret;
3121         }
3122     }
3123
3124   *target_errno = FILEIO_ENOSYS;
3125   return -1;
3126 }
3127
3128 /* Read up to LEN bytes FD on the target into READ_BUF.
3129    Return the number of bytes read, or -1 if an error occurs
3130    (and set *TARGET_ERRNO).  */
3131 int
3132 target_fileio_pread (int fd, gdb_byte *read_buf, int len,
3133                      ULONGEST offset, int *target_errno)
3134 {
3135   struct target_ops *t;
3136
3137   for (t = default_fileio_target (); t != NULL; t = t->beneath)
3138     {
3139       if (t->to_fileio_pread != NULL)
3140         {
3141           int ret = t->to_fileio_pread (t, fd, read_buf, len, offset,
3142                                         target_errno);
3143
3144           if (targetdebug)
3145             fprintf_unfiltered (gdb_stdlog,
3146                                 "target_fileio_pread (%d,...,%d,%s) "
3147                                 "= %d (%d)\n",
3148                                 fd, len, pulongest (offset),
3149                                 ret, ret != -1 ? 0 : *target_errno);
3150           return ret;
3151         }
3152     }
3153
3154   *target_errno = FILEIO_ENOSYS;
3155   return -1;
3156 }
3157
3158 /* Close FD on the target.  Return 0, or -1 if an error occurs
3159    (and set *TARGET_ERRNO).  */
3160 int
3161 target_fileio_close (int fd, int *target_errno)
3162 {
3163   struct target_ops *t;
3164
3165   for (t = default_fileio_target (); t != NULL; t = t->beneath)
3166     {
3167       if (t->to_fileio_close != NULL)
3168         {
3169           int ret = t->to_fileio_close (t, fd, target_errno);
3170
3171           if (targetdebug)
3172             fprintf_unfiltered (gdb_stdlog,
3173                                 "target_fileio_close (%d) = %d (%d)\n",
3174                                 fd, ret, ret != -1 ? 0 : *target_errno);
3175           return ret;
3176         }
3177     }
3178
3179   *target_errno = FILEIO_ENOSYS;
3180   return -1;
3181 }
3182
3183 /* Unlink FILENAME on the target.  Return 0, or -1 if an error
3184    occurs (and set *TARGET_ERRNO).  */
3185 int
3186 target_fileio_unlink (const char *filename, int *target_errno)
3187 {
3188   struct target_ops *t;
3189
3190   for (t = default_fileio_target (); t != NULL; t = t->beneath)
3191     {
3192       if (t->to_fileio_unlink != NULL)
3193         {
3194           int ret = t->to_fileio_unlink (t, filename, target_errno);
3195
3196           if (targetdebug)
3197             fprintf_unfiltered (gdb_stdlog,
3198                                 "target_fileio_unlink (%s) = %d (%d)\n",
3199                                 filename, ret, ret != -1 ? 0 : *target_errno);
3200           return ret;
3201         }
3202     }
3203
3204   *target_errno = FILEIO_ENOSYS;
3205   return -1;
3206 }
3207
3208 /* Read value of symbolic link FILENAME on the target.  Return a
3209    null-terminated string allocated via xmalloc, or NULL if an error
3210    occurs (and set *TARGET_ERRNO).  */
3211 char *
3212 target_fileio_readlink (const char *filename, int *target_errno)
3213 {
3214   struct target_ops *t;
3215
3216   for (t = default_fileio_target (); t != NULL; t = t->beneath)
3217     {
3218       if (t->to_fileio_readlink != NULL)
3219         {
3220           char *ret = t->to_fileio_readlink (t, filename, target_errno);
3221
3222           if (targetdebug)
3223             fprintf_unfiltered (gdb_stdlog,
3224                                 "target_fileio_readlink (%s) = %s (%d)\n",
3225                                 filename, ret? ret : "(nil)",
3226                                 ret? 0 : *target_errno);
3227           return ret;
3228         }
3229     }
3230
3231   *target_errno = FILEIO_ENOSYS;
3232   return NULL;
3233 }
3234
3235 static void
3236 target_fileio_close_cleanup (void *opaque)
3237 {
3238   int fd = *(int *) opaque;
3239   int target_errno;
3240
3241   target_fileio_close (fd, &target_errno);
3242 }
3243
3244 /* Read target file FILENAME.  Store the result in *BUF_P and
3245    return the size of the transferred data.  PADDING additional bytes are
3246    available in *BUF_P.  This is a helper function for
3247    target_fileio_read_alloc; see the declaration of that function for more
3248    information.  */
3249
3250 static LONGEST
3251 target_fileio_read_alloc_1 (const char *filename,
3252                             gdb_byte **buf_p, int padding)
3253 {
3254   struct cleanup *close_cleanup;
3255   size_t buf_alloc, buf_pos;
3256   gdb_byte *buf;
3257   LONGEST n;
3258   int fd;
3259   int target_errno;
3260
3261   fd = target_fileio_open (filename, FILEIO_O_RDONLY, 0700, &target_errno);
3262   if (fd == -1)
3263     return -1;
3264
3265   close_cleanup = make_cleanup (target_fileio_close_cleanup, &fd);
3266
3267   /* Start by reading up to 4K at a time.  The target will throttle
3268      this number down if necessary.  */
3269   buf_alloc = 4096;
3270   buf = xmalloc (buf_alloc);
3271   buf_pos = 0;
3272   while (1)
3273     {
3274       n = target_fileio_pread (fd, &buf[buf_pos],
3275                                buf_alloc - buf_pos - padding, buf_pos,
3276                                &target_errno);
3277       if (n < 0)
3278         {
3279           /* An error occurred.  */
3280           do_cleanups (close_cleanup);
3281           xfree (buf);
3282           return -1;
3283         }
3284       else if (n == 0)
3285         {
3286           /* Read all there was.  */
3287           do_cleanups (close_cleanup);
3288           if (buf_pos == 0)
3289             xfree (buf);
3290           else
3291             *buf_p = buf;
3292           return buf_pos;
3293         }
3294
3295       buf_pos += n;
3296
3297       /* If the buffer is filling up, expand it.  */
3298       if (buf_alloc < buf_pos * 2)
3299         {
3300           buf_alloc *= 2;
3301           buf = xrealloc (buf, buf_alloc);
3302         }
3303
3304       QUIT;
3305     }
3306 }
3307
3308 /* Read target file FILENAME.  Store the result in *BUF_P and return
3309    the size of the transferred data.  See the declaration in "target.h"
3310    function for more information about the return value.  */
3311
3312 LONGEST
3313 target_fileio_read_alloc (const char *filename, gdb_byte **buf_p)
3314 {
3315   return target_fileio_read_alloc_1 (filename, buf_p, 0);
3316 }
3317
3318 /* Read target file FILENAME.  The result is NUL-terminated and
3319    returned as a string, allocated using xmalloc.  If an error occurs
3320    or the transfer is unsupported, NULL is returned.  Empty objects
3321    are returned as allocated but empty strings.  A warning is issued
3322    if the result contains any embedded NUL bytes.  */
3323
3324 char *
3325 target_fileio_read_stralloc (const char *filename)
3326 {
3327   gdb_byte *buffer;
3328   char *bufstr;
3329   LONGEST i, transferred;
3330
3331   transferred = target_fileio_read_alloc_1 (filename, &buffer, 1);
3332   bufstr = (char *) buffer;
3333
3334   if (transferred < 0)
3335     return NULL;
3336
3337   if (transferred == 0)
3338     return xstrdup ("");
3339
3340   bufstr[transferred] = 0;
3341
3342   /* Check for embedded NUL bytes; but allow trailing NULs.  */
3343   for (i = strlen (bufstr); i < transferred; i++)
3344     if (bufstr[i] != 0)
3345       {
3346         warning (_("target file %s "
3347                    "contained unexpected null characters"),
3348                  filename);
3349         break;
3350       }
3351
3352   return bufstr;
3353 }
3354
3355
3356 static int
3357 default_region_ok_for_hw_watchpoint (struct target_ops *self,
3358                                      CORE_ADDR addr, int len)
3359 {
3360   return (len <= gdbarch_ptr_bit (target_gdbarch ()) / TARGET_CHAR_BIT);
3361 }
3362
3363 static int
3364 default_watchpoint_addr_within_range (struct target_ops *target,
3365                                       CORE_ADDR addr,
3366                                       CORE_ADDR start, int length)
3367 {
3368   return addr >= start && addr < start + length;
3369 }
3370
3371 static struct gdbarch *
3372 default_thread_architecture (struct target_ops *ops, ptid_t ptid)
3373 {
3374   return target_gdbarch ();
3375 }
3376
3377 static int
3378 return_zero (void)
3379 {
3380   return 0;
3381 }
3382
3383 /*
3384  * Find the next target down the stack from the specified target.
3385  */
3386
3387 struct target_ops *
3388 find_target_beneath (struct target_ops *t)
3389 {
3390   return t->beneath;
3391 }
3392
3393 /* See target.h.  */
3394
3395 struct target_ops *
3396 find_target_at (enum strata stratum)
3397 {
3398   struct target_ops *t;
3399
3400   for (t = current_target.beneath; t != NULL; t = t->beneath)
3401     if (t->to_stratum == stratum)
3402       return t;
3403
3404   return NULL;
3405 }
3406
3407 \f
3408 /* The inferior process has died.  Long live the inferior!  */
3409
3410 void
3411 generic_mourn_inferior (void)
3412 {
3413   ptid_t ptid;
3414
3415   ptid = inferior_ptid;
3416   inferior_ptid = null_ptid;
3417
3418   /* Mark breakpoints uninserted in case something tries to delete a
3419      breakpoint while we delete the inferior's threads (which would
3420      fail, since the inferior is long gone).  */
3421   mark_breakpoints_out ();
3422
3423   if (!ptid_equal (ptid, null_ptid))
3424     {
3425       int pid = ptid_get_pid (ptid);
3426       exit_inferior (pid);
3427     }
3428
3429   /* Note this wipes step-resume breakpoints, so needs to be done
3430      after exit_inferior, which ends up referencing the step-resume
3431      breakpoints through clear_thread_inferior_resources.  */
3432   breakpoint_init_inferior (inf_exited);
3433
3434   registers_changed ();
3435
3436   reopen_exec_file ();
3437   reinit_frame_cache ();
3438
3439   if (deprecated_detach_hook)
3440     deprecated_detach_hook ();
3441 }
3442 \f
3443 /* Convert a normal process ID to a string.  Returns the string in a
3444    static buffer.  */
3445
3446 char *
3447 normal_pid_to_str (ptid_t ptid)
3448 {
3449   static char buf[32];
3450
3451   xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
3452   return buf;
3453 }
3454
3455 static char *
3456 default_pid_to_str (struct target_ops *ops, ptid_t ptid)
3457 {
3458   return normal_pid_to_str (ptid);
3459 }
3460
3461 /* Error-catcher for target_find_memory_regions.  */
3462 static int
3463 dummy_find_memory_regions (struct target_ops *self,
3464                            find_memory_region_ftype ignore1, void *ignore2)
3465 {
3466   error (_("Command not implemented for this target."));
3467   return 0;
3468 }
3469
3470 /* Error-catcher for target_make_corefile_notes.  */
3471 static char *
3472 dummy_make_corefile_notes (struct target_ops *self,
3473                            bfd *ignore1, int *ignore2)
3474 {
3475   error (_("Command not implemented for this target."));
3476   return NULL;
3477 }
3478
3479 /* Set up the handful of non-empty slots needed by the dummy target
3480    vector.  */
3481
3482 static void
3483 init_dummy_target (void)
3484 {
3485   dummy_target.to_shortname = "None";
3486   dummy_target.to_longname = "None";
3487   dummy_target.to_doc = "";
3488   dummy_target.to_create_inferior = find_default_create_inferior;
3489   dummy_target.to_supports_non_stop = find_default_supports_non_stop;
3490   dummy_target.to_supports_disable_randomization
3491     = find_default_supports_disable_randomization;
3492   dummy_target.to_stratum = dummy_stratum;
3493   dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
3494   dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero;
3495   dummy_target.to_has_stack = (int (*) (struct target_ops *)) return_zero;
3496   dummy_target.to_has_registers = (int (*) (struct target_ops *)) return_zero;
3497   dummy_target.to_has_execution
3498     = (int (*) (struct target_ops *, ptid_t)) return_zero;
3499   dummy_target.to_magic = OPS_MAGIC;
3500
3501   install_dummy_methods (&dummy_target);
3502 }
3503 \f
3504 static void
3505 debug_to_open (char *args, int from_tty)
3506 {
3507   debug_target.to_open (args, from_tty);
3508
3509   fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
3510 }
3511
3512 void
3513 target_close (struct target_ops *targ)
3514 {
3515   gdb_assert (!target_is_pushed (targ));
3516
3517   if (targ->to_xclose != NULL)
3518     targ->to_xclose (targ);
3519   else if (targ->to_close != NULL)
3520     targ->to_close (targ);
3521
3522   if (targetdebug)
3523     fprintf_unfiltered (gdb_stdlog, "target_close ()\n");
3524 }
3525
3526 void
3527 target_attach (char *args, int from_tty)
3528 {
3529   current_target.to_attach (&current_target, args, from_tty);
3530   if (targetdebug)
3531     fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n",
3532                         args, from_tty);
3533 }
3534
3535 int
3536 target_thread_alive (ptid_t ptid)
3537 {
3538   int retval;
3539
3540   retval = current_target.to_thread_alive (&current_target, ptid);
3541   if (targetdebug)
3542     fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
3543                         ptid_get_pid (ptid), retval);
3544
3545   return retval;
3546 }
3547
3548 void
3549 target_find_new_threads (void)
3550 {
3551   current_target.to_find_new_threads (&current_target);
3552   if (targetdebug)
3553     fprintf_unfiltered (gdb_stdlog, "target_find_new_threads ()\n");
3554 }
3555
3556 void
3557 target_stop (ptid_t ptid)
3558 {
3559   if (!may_stop)
3560     {
3561       warning (_("May not interrupt or stop the target, ignoring attempt"));
3562       return;
3563     }
3564
3565   (*current_target.to_stop) (&current_target, ptid);
3566 }
3567
3568 static void
3569 debug_to_post_attach (struct target_ops *self, int pid)
3570 {
3571   debug_target.to_post_attach (&debug_target, pid);
3572
3573   fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
3574 }
3575
3576 /* Concatenate ELEM to LIST, a comma separate list, and return the
3577    result.  The LIST incoming argument is released.  */
3578
3579 static char *
3580 str_comma_list_concat_elem (char *list, const char *elem)
3581 {
3582   if (list == NULL)
3583     return xstrdup (elem);
3584   else
3585     return reconcat (list, list, ", ", elem, (char *) NULL);
3586 }
3587
3588 /* Helper for target_options_to_string.  If OPT is present in
3589    TARGET_OPTIONS, append the OPT_STR (string version of OPT) in RET.
3590    Returns the new resulting string.  OPT is removed from
3591    TARGET_OPTIONS.  */
3592
3593 static char *
3594 do_option (int *target_options, char *ret,
3595            int opt, char *opt_str)
3596 {
3597   if ((*target_options & opt) != 0)
3598     {
3599       ret = str_comma_list_concat_elem (ret, opt_str);
3600       *target_options &= ~opt;
3601     }
3602
3603   return ret;
3604 }
3605
3606 char *
3607 target_options_to_string (int target_options)
3608 {
3609   char *ret = NULL;
3610
3611 #define DO_TARG_OPTION(OPT) \
3612   ret = do_option (&target_options, ret, OPT, #OPT)
3613
3614   DO_TARG_OPTION (TARGET_WNOHANG);
3615
3616   if (target_options != 0)
3617     ret = str_comma_list_concat_elem (ret, "unknown???");
3618
3619   if (ret == NULL)
3620     ret = xstrdup ("");
3621   return ret;
3622 }
3623
3624 static void
3625 debug_print_register (const char * func,
3626                       struct regcache *regcache, int regno)
3627 {
3628   struct gdbarch *gdbarch = get_regcache_arch (regcache);
3629
3630   fprintf_unfiltered (gdb_stdlog, "%s ", func);
3631   if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
3632       && gdbarch_register_name (gdbarch, regno) != NULL
3633       && gdbarch_register_name (gdbarch, regno)[0] != '\0')
3634     fprintf_unfiltered (gdb_stdlog, "(%s)",
3635                         gdbarch_register_name (gdbarch, regno));
3636   else
3637     fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
3638   if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
3639     {
3640       enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3641       int i, size = register_size (gdbarch, regno);
3642       gdb_byte buf[MAX_REGISTER_SIZE];
3643
3644       regcache_raw_collect (regcache, regno, buf);
3645       fprintf_unfiltered (gdb_stdlog, " = ");
3646       for (i = 0; i < size; i++)
3647         {
3648           fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3649         }
3650       if (size <= sizeof (LONGEST))
3651         {
3652           ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
3653
3654           fprintf_unfiltered (gdb_stdlog, " %s %s",
3655                               core_addr_to_string_nz (val), plongest (val));
3656         }
3657     }
3658   fprintf_unfiltered (gdb_stdlog, "\n");
3659 }
3660
3661 void
3662 target_fetch_registers (struct regcache *regcache, int regno)
3663 {
3664   current_target.to_fetch_registers (&current_target, regcache, regno);
3665   if (targetdebug)
3666     debug_print_register ("target_fetch_registers", regcache, regno);
3667 }
3668
3669 void
3670 target_store_registers (struct regcache *regcache, int regno)
3671 {
3672   struct target_ops *t;
3673
3674   if (!may_write_registers)
3675     error (_("Writing to registers is not allowed (regno %d)"), regno);
3676
3677   current_target.to_store_registers (&current_target, regcache, regno);
3678   if (targetdebug)
3679     {
3680       debug_print_register ("target_store_registers", regcache, regno);
3681     }
3682 }
3683
3684 int
3685 target_core_of_thread (ptid_t ptid)
3686 {
3687   int retval = current_target.to_core_of_thread (&current_target, ptid);
3688
3689   if (targetdebug)
3690     fprintf_unfiltered (gdb_stdlog,
3691                         "target_core_of_thread (%d) = %d\n",
3692                         ptid_get_pid (ptid), retval);
3693   return retval;
3694 }
3695
3696 int
3697 target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3698 {
3699   int retval = current_target.to_verify_memory (&current_target,
3700                                                 data, memaddr, size);
3701
3702   if (targetdebug)
3703     fprintf_unfiltered (gdb_stdlog,
3704                         "target_verify_memory (%s, %s) = %d\n",
3705                         paddress (target_gdbarch (), memaddr),
3706                         pulongest (size),
3707                         retval);
3708   return retval;
3709 }
3710
3711 /* The documentation for this function is in its prototype declaration in
3712    target.h.  */
3713
3714 int
3715 target_insert_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
3716 {
3717   int ret;
3718
3719   ret = current_target.to_insert_mask_watchpoint (&current_target,
3720                                                   addr, mask, rw);
3721
3722   if (targetdebug)
3723     fprintf_unfiltered (gdb_stdlog, "\
3724 target_insert_mask_watchpoint (%s, %s, %d) = %d\n",
3725                         core_addr_to_string (addr),
3726                         core_addr_to_string (mask), rw, ret);
3727   
3728   return ret;
3729 }
3730
3731 /* The documentation for this function is in its prototype declaration in
3732    target.h.  */
3733
3734 int
3735 target_remove_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
3736 {
3737   int ret;
3738
3739   ret = current_target.to_remove_mask_watchpoint (&current_target,
3740                                                   addr, mask, rw);
3741
3742   if (targetdebug)
3743     fprintf_unfiltered (gdb_stdlog, "\
3744 target_remove_mask_watchpoint (%s, %s, %d) = %d\n",
3745                         core_addr_to_string (addr),
3746                         core_addr_to_string (mask), rw, ret);
3747
3748   return ret;
3749 }
3750
3751 /* The documentation for this function is in its prototype declaration
3752    in target.h.  */
3753
3754 int
3755 target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask)
3756 {
3757   return current_target.to_masked_watch_num_registers (&current_target,
3758                                                        addr, mask);
3759 }
3760
3761 /* The documentation for this function is in its prototype declaration
3762    in target.h.  */
3763
3764 int
3765 target_ranged_break_num_registers (void)
3766 {
3767   return current_target.to_ranged_break_num_registers (&current_target);
3768 }
3769
3770 /* See target.h.  */
3771
3772 struct btrace_target_info *
3773 target_enable_btrace (ptid_t ptid)
3774 {
3775   return current_target.to_enable_btrace (&current_target, ptid);
3776 }
3777
3778 /* See target.h.  */
3779
3780 void
3781 target_disable_btrace (struct btrace_target_info *btinfo)
3782 {
3783   current_target.to_disable_btrace (&current_target, btinfo);
3784 }
3785
3786 /* See target.h.  */
3787
3788 void
3789 target_teardown_btrace (struct btrace_target_info *btinfo)
3790 {
3791   current_target.to_teardown_btrace (&current_target, btinfo);
3792 }
3793
3794 /* See target.h.  */
3795
3796 enum btrace_error
3797 target_read_btrace (VEC (btrace_block_s) **btrace,
3798                     struct btrace_target_info *btinfo,
3799                     enum btrace_read_type type)
3800 {
3801   return current_target.to_read_btrace (&current_target, btrace, btinfo, type);
3802 }
3803
3804 /* See target.h.  */
3805
3806 void
3807 target_stop_recording (void)
3808 {
3809   current_target.to_stop_recording (&current_target);
3810 }
3811
3812 /* See target.h.  */
3813
3814 void
3815 target_info_record (void)
3816 {
3817   struct target_ops *t;
3818
3819   for (t = current_target.beneath; t != NULL; t = t->beneath)
3820     if (t->to_info_record != NULL)
3821       {
3822         t->to_info_record (t);
3823         return;
3824       }
3825
3826   tcomplain ();
3827 }
3828
3829 /* See target.h.  */
3830
3831 void
3832 target_save_record (const char *filename)
3833 {
3834   current_target.to_save_record (&current_target, filename);
3835 }
3836
3837 /* See target.h.  */
3838
3839 int
3840 target_supports_delete_record (void)
3841 {
3842   struct target_ops *t;
3843
3844   for (t = current_target.beneath; t != NULL; t = t->beneath)
3845     if (t->to_delete_record != NULL)
3846       return 1;
3847
3848   return 0;
3849 }
3850
3851 /* See target.h.  */
3852
3853 void
3854 target_delete_record (void)
3855 {
3856   current_target.to_delete_record (&current_target);
3857 }
3858
3859 /* See target.h.  */
3860
3861 int
3862 target_record_is_replaying (void)
3863 {
3864   return current_target.to_record_is_replaying (&current_target);
3865 }
3866
3867 /* See target.h.  */
3868
3869 void
3870 target_goto_record_begin (void)
3871 {
3872   current_target.to_goto_record_begin (&current_target);
3873 }
3874
3875 /* See target.h.  */
3876
3877 void
3878 target_goto_record_end (void)
3879 {
3880   current_target.to_goto_record_end (&current_target);
3881 }
3882
3883 /* See target.h.  */
3884
3885 void
3886 target_goto_record (ULONGEST insn)
3887 {
3888   current_target.to_goto_record (&current_target, insn);
3889 }
3890
3891 /* See target.h.  */
3892
3893 void
3894 target_insn_history (int size, int flags)
3895 {
3896   current_target.to_insn_history (&current_target, size, flags);
3897 }
3898
3899 /* See target.h.  */
3900
3901 void
3902 target_insn_history_from (ULONGEST from, int size, int flags)
3903 {
3904   current_target.to_insn_history_from (&current_target, from, size, flags);
3905 }
3906
3907 /* See target.h.  */
3908
3909 void
3910 target_insn_history_range (ULONGEST begin, ULONGEST end, int flags)
3911 {
3912   current_target.to_insn_history_range (&current_target, begin, end, flags);
3913 }
3914
3915 /* See target.h.  */
3916
3917 void
3918 target_call_history (int size, int flags)
3919 {
3920   current_target.to_call_history (&current_target, size, flags);
3921 }
3922
3923 /* See target.h.  */
3924
3925 void
3926 target_call_history_from (ULONGEST begin, int size, int flags)
3927 {
3928   current_target.to_call_history_from (&current_target, begin, size, flags);
3929 }
3930
3931 /* See target.h.  */
3932
3933 void
3934 target_call_history_range (ULONGEST begin, ULONGEST end, int flags)
3935 {
3936   current_target.to_call_history_range (&current_target, begin, end, flags);
3937 }
3938
3939 static void
3940 debug_to_prepare_to_store (struct target_ops *self, struct regcache *regcache)
3941 {
3942   debug_target.to_prepare_to_store (&debug_target, regcache);
3943
3944   fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
3945 }
3946
3947 /* See target.h.  */
3948
3949 const struct frame_unwind *
3950 target_get_unwinder (void)
3951 {
3952   struct target_ops *t;
3953
3954   for (t = current_target.beneath; t != NULL; t = t->beneath)
3955     if (t->to_get_unwinder != NULL)
3956       return t->to_get_unwinder;
3957
3958   return NULL;
3959 }
3960
3961 /* See target.h.  */
3962
3963 const struct frame_unwind *
3964 target_get_tailcall_unwinder (void)
3965 {
3966   struct target_ops *t;
3967
3968   for (t = current_target.beneath; t != NULL; t = t->beneath)
3969     if (t->to_get_tailcall_unwinder != NULL)
3970       return t->to_get_tailcall_unwinder;
3971
3972   return NULL;
3973 }
3974
3975 /* See target.h.  */
3976
3977 CORE_ADDR
3978 forward_target_decr_pc_after_break (struct target_ops *ops,
3979                                     struct gdbarch *gdbarch)
3980 {
3981   for (; ops != NULL; ops = ops->beneath)
3982     if (ops->to_decr_pc_after_break != NULL)
3983       return ops->to_decr_pc_after_break (ops, gdbarch);
3984
3985   return gdbarch_decr_pc_after_break (gdbarch);
3986 }
3987
3988 /* See target.h.  */
3989
3990 CORE_ADDR
3991 target_decr_pc_after_break (struct gdbarch *gdbarch)
3992 {
3993   return forward_target_decr_pc_after_break (current_target.beneath, gdbarch);
3994 }
3995
3996 static int
3997 deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
3998                               int write, struct mem_attrib *attrib,
3999                               struct target_ops *target)
4000 {
4001   int retval;
4002
4003   retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
4004                                                 attrib, target);
4005
4006   fprintf_unfiltered (gdb_stdlog,
4007                       "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
4008                       paddress (target_gdbarch (), memaddr), len,
4009                       write ? "write" : "read", retval);
4010
4011   if (retval > 0)
4012     {
4013       int i;
4014
4015       fputs_unfiltered (", bytes =", gdb_stdlog);
4016       for (i = 0; i < retval; i++)
4017         {
4018           if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
4019             {
4020               if (targetdebug < 2 && i > 0)
4021                 {
4022                   fprintf_unfiltered (gdb_stdlog, " ...");
4023                   break;
4024                 }
4025               fprintf_unfiltered (gdb_stdlog, "\n");
4026             }
4027
4028           fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
4029         }
4030     }
4031
4032   fputc_unfiltered ('\n', gdb_stdlog);
4033
4034   return retval;
4035 }
4036
4037 static void
4038 debug_to_files_info (struct target_ops *target)
4039 {
4040   debug_target.to_files_info (target);
4041
4042   fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
4043 }
4044
4045 static int
4046 debug_to_insert_breakpoint (struct target_ops *ops, struct gdbarch *gdbarch,
4047                             struct bp_target_info *bp_tgt)
4048 {
4049   int retval;
4050
4051   retval = debug_target.to_insert_breakpoint (&debug_target, gdbarch, bp_tgt);
4052
4053   fprintf_unfiltered (gdb_stdlog,
4054                       "target_insert_breakpoint (%s, xxx) = %ld\n",
4055                       core_addr_to_string (bp_tgt->placed_address),
4056                       (unsigned long) retval);
4057   return retval;
4058 }
4059
4060 static int
4061 debug_to_remove_breakpoint (struct target_ops *ops, struct gdbarch *gdbarch,
4062                             struct bp_target_info *bp_tgt)
4063 {
4064   int retval;
4065
4066   retval = debug_target.to_remove_breakpoint (&debug_target, gdbarch, bp_tgt);
4067
4068   fprintf_unfiltered (gdb_stdlog,
4069                       "target_remove_breakpoint (%s, xxx) = %ld\n",
4070                       core_addr_to_string (bp_tgt->placed_address),
4071                       (unsigned long) retval);
4072   return retval;
4073 }
4074
4075 static int
4076 debug_to_can_use_hw_breakpoint (struct target_ops *self,
4077                                 int type, int cnt, int from_tty)
4078 {
4079   int retval;
4080
4081   retval = debug_target.to_can_use_hw_breakpoint (&debug_target,
4082                                                   type, cnt, from_tty);
4083
4084   fprintf_unfiltered (gdb_stdlog,
4085                       "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
4086                       (unsigned long) type,
4087                       (unsigned long) cnt,
4088                       (unsigned long) from_tty,
4089                       (unsigned long) retval);
4090   return retval;
4091 }
4092
4093 static int
4094 debug_to_region_ok_for_hw_watchpoint (struct target_ops *self,
4095                                       CORE_ADDR addr, int len)
4096 {
4097   CORE_ADDR retval;
4098
4099   retval = debug_target.to_region_ok_for_hw_watchpoint (&debug_target,
4100                                                         addr, len);
4101
4102   fprintf_unfiltered (gdb_stdlog,
4103                       "target_region_ok_for_hw_watchpoint (%s, %ld) = %s\n",
4104                       core_addr_to_string (addr), (unsigned long) len,
4105                       core_addr_to_string (retval));
4106   return retval;
4107 }
4108
4109 static int
4110 debug_to_can_accel_watchpoint_condition (struct target_ops *self,
4111                                          CORE_ADDR addr, int len, int rw,
4112                                          struct expression *cond)
4113 {
4114   int retval;
4115
4116   retval = debug_target.to_can_accel_watchpoint_condition (&debug_target,
4117                                                            addr, len,
4118                                                            rw, cond);
4119
4120   fprintf_unfiltered (gdb_stdlog,
4121                       "target_can_accel_watchpoint_condition "
4122                       "(%s, %d, %d, %s) = %ld\n",
4123                       core_addr_to_string (addr), len, rw,
4124                       host_address_to_string (cond), (unsigned long) retval);
4125   return retval;
4126 }
4127
4128 static int
4129 debug_to_stopped_by_watchpoint (struct target_ops *ops)
4130 {
4131   int retval;
4132
4133   retval = debug_target.to_stopped_by_watchpoint (&debug_target);
4134
4135   fprintf_unfiltered (gdb_stdlog,
4136                       "target_stopped_by_watchpoint () = %ld\n",
4137                       (unsigned long) retval);
4138   return retval;
4139 }
4140
4141 static int
4142 debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
4143 {
4144   int retval;
4145
4146   retval = debug_target.to_stopped_data_address (target, addr);
4147
4148   fprintf_unfiltered (gdb_stdlog,
4149                       "target_stopped_data_address ([%s]) = %ld\n",
4150                       core_addr_to_string (*addr),
4151                       (unsigned long)retval);
4152   return retval;
4153 }
4154
4155 static int
4156 debug_to_watchpoint_addr_within_range (struct target_ops *target,
4157                                        CORE_ADDR addr,
4158                                        CORE_ADDR start, int length)
4159 {
4160   int retval;
4161
4162   retval = debug_target.to_watchpoint_addr_within_range (target, addr,
4163                                                          start, length);
4164
4165   fprintf_filtered (gdb_stdlog,
4166                     "target_watchpoint_addr_within_range (%s, %s, %d) = %d\n",
4167                     core_addr_to_string (addr), core_addr_to_string (start),
4168                     length, retval);
4169   return retval;
4170 }
4171
4172 static int
4173 debug_to_insert_hw_breakpoint (struct target_ops *self,
4174                                struct gdbarch *gdbarch,
4175                                struct bp_target_info *bp_tgt)
4176 {
4177   int retval;
4178
4179   retval = debug_target.to_insert_hw_breakpoint (&debug_target,
4180                                                  gdbarch, bp_tgt);
4181
4182   fprintf_unfiltered (gdb_stdlog,
4183                       "target_insert_hw_breakpoint (%s, xxx) = %ld\n",
4184                       core_addr_to_string (bp_tgt->placed_address),
4185                       (unsigned long) retval);
4186   return retval;
4187 }
4188
4189 static int
4190 debug_to_remove_hw_breakpoint (struct target_ops *self,
4191                                struct gdbarch *gdbarch,
4192                                struct bp_target_info *bp_tgt)
4193 {
4194   int retval;
4195
4196   retval = debug_target.to_remove_hw_breakpoint (&debug_target,
4197                                                  gdbarch, bp_tgt);
4198
4199   fprintf_unfiltered (gdb_stdlog,
4200                       "target_remove_hw_breakpoint (%s, xxx) = %ld\n",
4201                       core_addr_to_string (bp_tgt->placed_address),
4202                       (unsigned long) retval);
4203   return retval;
4204 }
4205
4206 static int
4207 debug_to_insert_watchpoint (struct target_ops *self,
4208                             CORE_ADDR addr, int len, int type,
4209                             struct expression *cond)
4210 {
4211   int retval;
4212
4213   retval = debug_target.to_insert_watchpoint (&debug_target,
4214                                               addr, len, type, cond);
4215
4216   fprintf_unfiltered (gdb_stdlog,
4217                       "target_insert_watchpoint (%s, %d, %d, %s) = %ld\n",
4218                       core_addr_to_string (addr), len, type,
4219                       host_address_to_string (cond), (unsigned long) retval);
4220   return retval;
4221 }
4222
4223 static int
4224 debug_to_remove_watchpoint (struct target_ops *self,
4225                             CORE_ADDR addr, int len, int type,
4226                             struct expression *cond)
4227 {
4228   int retval;
4229
4230   retval = debug_target.to_remove_watchpoint (&debug_target,
4231                                               addr, len, type, cond);
4232
4233   fprintf_unfiltered (gdb_stdlog,
4234                       "target_remove_watchpoint (%s, %d, %d, %s) = %ld\n",
4235                       core_addr_to_string (addr), len, type,
4236                       host_address_to_string (cond), (unsigned long) retval);
4237   return retval;
4238 }
4239
4240 static void
4241 debug_to_terminal_init (struct target_ops *self)
4242 {
4243   debug_target.to_terminal_init (&debug_target);
4244
4245   fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
4246 }
4247
4248 static void
4249 debug_to_terminal_inferior (struct target_ops *self)
4250 {
4251   debug_target.to_terminal_inferior (&debug_target);
4252
4253   fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
4254 }
4255
4256 static void
4257 debug_to_terminal_ours_for_output (struct target_ops *self)
4258 {
4259   debug_target.to_terminal_ours_for_output (&debug_target);
4260
4261   fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
4262 }
4263
4264 static void
4265 debug_to_terminal_ours (struct target_ops *self)
4266 {
4267   debug_target.to_terminal_ours (&debug_target);
4268
4269   fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
4270 }
4271
4272 static void
4273 debug_to_terminal_save_ours (struct target_ops *self)
4274 {
4275   debug_target.to_terminal_save_ours (&debug_target);
4276
4277   fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
4278 }
4279
4280 static void
4281 debug_to_terminal_info (struct target_ops *self,
4282                         const char *arg, int from_tty)
4283 {
4284   debug_target.to_terminal_info (&debug_target, arg, from_tty);
4285
4286   fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
4287                       from_tty);
4288 }
4289
4290 static void
4291 debug_to_load (struct target_ops *self, char *args, int from_tty)
4292 {
4293   debug_target.to_load (&debug_target, args, from_tty);
4294
4295   fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
4296 }
4297
4298 static void
4299 debug_to_post_startup_inferior (struct target_ops *self, ptid_t ptid)
4300 {
4301   debug_target.to_post_startup_inferior (&debug_target, ptid);
4302
4303   fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
4304                       ptid_get_pid (ptid));
4305 }
4306
4307 static int
4308 debug_to_insert_fork_catchpoint (struct target_ops *self, int pid)
4309 {
4310   int retval;
4311
4312   retval = debug_target.to_insert_fork_catchpoint (&debug_target, pid);
4313
4314   fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n",
4315                       pid, retval);
4316
4317   return retval;
4318 }
4319
4320 static int
4321 debug_to_remove_fork_catchpoint (struct target_ops *self, int pid)
4322 {
4323   int retval;
4324
4325   retval = debug_target.to_remove_fork_catchpoint (&debug_target, pid);
4326
4327   fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
4328                       pid, retval);
4329
4330   return retval;
4331 }
4332
4333 static int
4334 debug_to_insert_vfork_catchpoint (struct target_ops *self, int pid)
4335 {
4336   int retval;
4337
4338   retval = debug_target.to_insert_vfork_catchpoint (&debug_target, pid);
4339
4340   fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d) = %d\n",
4341                       pid, retval);
4342
4343   return retval;
4344 }
4345
4346 static int
4347 debug_to_remove_vfork_catchpoint (struct target_ops *self, int pid)
4348 {
4349   int retval;
4350
4351   retval = debug_target.to_remove_vfork_catchpoint (&debug_target, pid);
4352
4353   fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
4354                       pid, retval);
4355
4356   return retval;
4357 }
4358
4359 static int
4360 debug_to_insert_exec_catchpoint (struct target_ops *self, int pid)
4361 {
4362   int retval;
4363
4364   retval = debug_target.to_insert_exec_catchpoint (&debug_target, pid);
4365
4366   fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
4367                       pid, retval);
4368
4369   return retval;
4370 }
4371
4372 static int
4373 debug_to_remove_exec_catchpoint (struct target_ops *self, int pid)
4374 {
4375   int retval;
4376
4377   retval = debug_target.to_remove_exec_catchpoint (&debug_target, pid);
4378
4379   fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
4380                       pid, retval);
4381
4382   return retval;
4383 }
4384
4385 static int
4386 debug_to_has_exited (struct target_ops *self,
4387                      int pid, int wait_status, int *exit_status)
4388 {
4389   int has_exited;
4390
4391   has_exited = debug_target.to_has_exited (&debug_target,
4392                                            pid, wait_status, exit_status);
4393
4394   fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
4395                       pid, wait_status, *exit_status, has_exited);
4396
4397   return has_exited;
4398 }
4399
4400 static int
4401 debug_to_can_run (struct target_ops *self)
4402 {
4403   int retval;
4404
4405   retval = debug_target.to_can_run (&debug_target);
4406
4407   fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
4408
4409   return retval;
4410 }
4411
4412 static struct gdbarch *
4413 debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid)
4414 {
4415   struct gdbarch *retval;
4416
4417   retval = debug_target.to_thread_architecture (ops, ptid);
4418
4419   fprintf_unfiltered (gdb_stdlog, 
4420                       "target_thread_architecture (%s) = %s [%s]\n",
4421                       target_pid_to_str (ptid),
4422                       host_address_to_string (retval),
4423                       gdbarch_bfd_arch_info (retval)->printable_name);
4424   return retval;
4425 }
4426
4427 static void
4428 debug_to_stop (struct target_ops *self, ptid_t ptid)
4429 {
4430   debug_target.to_stop (&debug_target, ptid);
4431
4432   fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
4433                       target_pid_to_str (ptid));
4434 }
4435
4436 static void
4437 debug_to_rcmd (struct target_ops *self, char *command,
4438                struct ui_file *outbuf)
4439 {
4440   debug_target.to_rcmd (&debug_target, command, outbuf);
4441   fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
4442 }
4443
4444 static char *
4445 debug_to_pid_to_exec_file (struct target_ops *self, int pid)
4446 {
4447   char *exec_file;
4448
4449   exec_file = debug_target.to_pid_to_exec_file (&debug_target, pid);
4450
4451   fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
4452                       pid, exec_file);
4453
4454   return exec_file;
4455 }
4456
4457 static void
4458 setup_target_debug (void)
4459 {
4460   memcpy (&debug_target, &current_target, sizeof debug_target);
4461
4462   current_target.to_open = debug_to_open;
4463   current_target.to_post_attach = debug_to_post_attach;
4464   current_target.to_prepare_to_store = debug_to_prepare_to_store;
4465   current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
4466   current_target.to_files_info = debug_to_files_info;
4467   current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
4468   current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
4469   current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
4470   current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
4471   current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
4472   current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
4473   current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
4474   current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
4475   current_target.to_stopped_data_address = debug_to_stopped_data_address;
4476   current_target.to_watchpoint_addr_within_range
4477     = debug_to_watchpoint_addr_within_range;
4478   current_target.to_region_ok_for_hw_watchpoint
4479     = debug_to_region_ok_for_hw_watchpoint;
4480   current_target.to_can_accel_watchpoint_condition
4481     = debug_to_can_accel_watchpoint_condition;
4482   current_target.to_terminal_init = debug_to_terminal_init;
4483   current_target.to_terminal_inferior = debug_to_terminal_inferior;
4484   current_target.to_terminal_ours_for_output
4485     = debug_to_terminal_ours_for_output;
4486   current_target.to_terminal_ours = debug_to_terminal_ours;
4487   current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
4488   current_target.to_terminal_info = debug_to_terminal_info;
4489   current_target.to_load = debug_to_load;
4490   current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
4491   current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
4492   current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
4493   current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
4494   current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
4495   current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
4496   current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
4497   current_target.to_has_exited = debug_to_has_exited;
4498   current_target.to_can_run = debug_to_can_run;
4499   current_target.to_stop = debug_to_stop;
4500   current_target.to_rcmd = debug_to_rcmd;
4501   current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
4502   current_target.to_thread_architecture = debug_to_thread_architecture;
4503 }
4504 \f
4505
4506 static char targ_desc[] =
4507 "Names of targets and files being debugged.\nShows the entire \
4508 stack of targets currently in use (including the exec-file,\n\
4509 core-file, and process, if any), as well as the symbol file name.";
4510
4511 static void
4512 default_rcmd (struct target_ops *self, char *command, struct ui_file *output)
4513 {
4514   error (_("\"monitor\" command not supported by this target."));
4515 }
4516
4517 static void
4518 do_monitor_command (char *cmd,
4519                  int from_tty)
4520 {
4521   target_rcmd (cmd, gdb_stdtarg);
4522 }
4523
4524 /* Print the name of each layers of our target stack.  */
4525
4526 static void
4527 maintenance_print_target_stack (char *cmd, int from_tty)
4528 {
4529   struct target_ops *t;
4530
4531   printf_filtered (_("The current target stack is:\n"));
4532
4533   for (t = target_stack; t != NULL; t = t->beneath)
4534     {
4535       printf_filtered ("  - %s (%s)\n", t->to_shortname, t->to_longname);
4536     }
4537 }
4538
4539 /* Controls if async mode is permitted.  */
4540 int target_async_permitted = 0;
4541
4542 /* The set command writes to this variable.  If the inferior is
4543    executing, target_async_permitted is *not* updated.  */
4544 static int target_async_permitted_1 = 0;
4545
4546 static void
4547 set_target_async_command (char *args, int from_tty,
4548                           struct cmd_list_element *c)
4549 {
4550   if (have_live_inferiors ())
4551     {
4552       target_async_permitted_1 = target_async_permitted;
4553       error (_("Cannot change this setting while the inferior is running."));
4554     }
4555
4556   target_async_permitted = target_async_permitted_1;
4557 }
4558
4559 static void
4560 show_target_async_command (struct ui_file *file, int from_tty,
4561                            struct cmd_list_element *c,
4562                            const char *value)
4563 {
4564   fprintf_filtered (file,
4565                     _("Controlling the inferior in "
4566                       "asynchronous mode is %s.\n"), value);
4567 }
4568
4569 /* Temporary copies of permission settings.  */
4570
4571 static int may_write_registers_1 = 1;
4572 static int may_write_memory_1 = 1;
4573 static int may_insert_breakpoints_1 = 1;
4574 static int may_insert_tracepoints_1 = 1;
4575 static int may_insert_fast_tracepoints_1 = 1;
4576 static int may_stop_1 = 1;
4577
4578 /* Make the user-set values match the real values again.  */
4579
4580 void
4581 update_target_permissions (void)
4582 {
4583   may_write_registers_1 = may_write_registers;
4584   may_write_memory_1 = may_write_memory;
4585   may_insert_breakpoints_1 = may_insert_breakpoints;
4586   may_insert_tracepoints_1 = may_insert_tracepoints;
4587   may_insert_fast_tracepoints_1 = may_insert_fast_tracepoints;
4588   may_stop_1 = may_stop;
4589 }
4590
4591 /* The one function handles (most of) the permission flags in the same
4592    way.  */
4593
4594 static void
4595 set_target_permissions (char *args, int from_tty,
4596                         struct cmd_list_element *c)
4597 {
4598   if (target_has_execution)
4599     {
4600       update_target_permissions ();
4601       error (_("Cannot change this setting while the inferior is running."));
4602     }
4603
4604   /* Make the real values match the user-changed values.  */
4605   may_write_registers = may_write_registers_1;
4606   may_insert_breakpoints = may_insert_breakpoints_1;
4607   may_insert_tracepoints = may_insert_tracepoints_1;
4608   may_insert_fast_tracepoints = may_insert_fast_tracepoints_1;
4609   may_stop = may_stop_1;
4610   update_observer_mode ();
4611 }
4612
4613 /* Set memory write permission independently of observer mode.  */
4614
4615 static void
4616 set_write_memory_permission (char *args, int from_tty,
4617                         struct cmd_list_element *c)
4618 {
4619   /* Make the real values match the user-changed values.  */
4620   may_write_memory = may_write_memory_1;
4621   update_observer_mode ();
4622 }
4623
4624
4625 void
4626 initialize_targets (void)
4627 {
4628   init_dummy_target ();
4629   push_target (&dummy_target);
4630
4631   add_info ("target", target_info, targ_desc);
4632   add_info ("files", target_info, targ_desc);
4633
4634   add_setshow_zuinteger_cmd ("target", class_maintenance, &targetdebug, _("\
4635 Set target debugging."), _("\
4636 Show target debugging."), _("\
4637 When non-zero, target debugging is enabled.  Higher numbers are more\n\
4638 verbose.  Changes do not take effect until the next \"run\" or \"target\"\n\
4639 command."),
4640                              NULL,
4641                              show_targetdebug,
4642                              &setdebuglist, &showdebuglist);
4643
4644   add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
4645                            &trust_readonly, _("\
4646 Set mode for reading from readonly sections."), _("\
4647 Show mode for reading from readonly sections."), _("\
4648 When this mode is on, memory reads from readonly sections (such as .text)\n\
4649 will be read from the object file instead of from the target.  This will\n\
4650 result in significant performance improvement for remote targets."),
4651                            NULL,
4652                            show_trust_readonly,
4653                            &setlist, &showlist);
4654
4655   add_com ("monitor", class_obscure, do_monitor_command,
4656            _("Send a command to the remote monitor (remote targets only)."));
4657
4658   add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
4659            _("Print the name of each layer of the internal target stack."),
4660            &maintenanceprintlist);
4661
4662   add_setshow_boolean_cmd ("target-async", no_class,
4663                            &target_async_permitted_1, _("\
4664 Set whether gdb controls the inferior in asynchronous mode."), _("\
4665 Show whether gdb controls the inferior in asynchronous mode."), _("\
4666 Tells gdb whether to control the inferior in asynchronous mode."),
4667                            set_target_async_command,
4668                            show_target_async_command,
4669                            &setlist,
4670                            &showlist);
4671
4672   add_setshow_boolean_cmd ("may-write-registers", class_support,
4673                            &may_write_registers_1, _("\
4674 Set permission to write into registers."), _("\
4675 Show permission to write into registers."), _("\
4676 When this permission is on, GDB may write into the target's registers.\n\
4677 Otherwise, any sort of write attempt will result in an error."),
4678                            set_target_permissions, NULL,
4679                            &setlist, &showlist);
4680
4681   add_setshow_boolean_cmd ("may-write-memory", class_support,
4682                            &may_write_memory_1, _("\
4683 Set permission to write into target memory."), _("\
4684 Show permission to write into target memory."), _("\
4685 When this permission is on, GDB may write into the target's memory.\n\
4686 Otherwise, any sort of write attempt will result in an error."),
4687                            set_write_memory_permission, NULL,
4688                            &setlist, &showlist);
4689
4690   add_setshow_boolean_cmd ("may-insert-breakpoints", class_support,
4691                            &may_insert_breakpoints_1, _("\
4692 Set permission to insert breakpoints in the target."), _("\
4693 Show permission to insert breakpoints in the target."), _("\
4694 When this permission is on, GDB may insert breakpoints in the program.\n\
4695 Otherwise, any sort of insertion attempt will result in an error."),
4696                            set_target_permissions, NULL,
4697                            &setlist, &showlist);
4698
4699   add_setshow_boolean_cmd ("may-insert-tracepoints", class_support,
4700                            &may_insert_tracepoints_1, _("\
4701 Set permission to insert tracepoints in the target."), _("\
4702 Show permission to insert tracepoints in the target."), _("\
4703 When this permission is on, GDB may insert tracepoints in the program.\n\
4704 Otherwise, any sort of insertion attempt will result in an error."),
4705                            set_target_permissions, NULL,
4706                            &setlist, &showlist);
4707
4708   add_setshow_boolean_cmd ("may-insert-fast-tracepoints", class_support,
4709                            &may_insert_fast_tracepoints_1, _("\
4710 Set permission to insert fast tracepoints in the target."), _("\
4711 Show permission to insert fast tracepoints in the target."), _("\
4712 When this permission is on, GDB may insert fast tracepoints.\n\
4713 Otherwise, any sort of insertion attempt will result in an error."),
4714                            set_target_permissions, NULL,
4715                            &setlist, &showlist);
4716
4717   add_setshow_boolean_cmd ("may-interrupt", class_support,
4718                            &may_stop_1, _("\
4719 Set permission to interrupt or signal the target."), _("\
4720 Show permission to interrupt or signal the target."), _("\
4721 When this permission is on, GDB may interrupt/stop the target's execution.\n\
4722 Otherwise, any attempt to interrupt or stop will be ignored."),
4723                            set_target_permissions, NULL,
4724                            &setlist, &showlist);
4725 }