]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/target.c
e2bb96d0ccf6c5ad73dbfb37565e31addedb2918
[thirdparty/binutils-gdb.git] / gdb / target.c
1 /* Select target systems and architectures at runtime for GDB.
2
3 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5
6 Contributed by Cygnus Support.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
24
25 #include "defs.h"
26 #include <errno.h>
27 #include "gdb_string.h"
28 #include "target.h"
29 #include "gdbcmd.h"
30 #include "symtab.h"
31 #include "inferior.h"
32 #include "bfd.h"
33 #include "symfile.h"
34 #include "objfiles.h"
35 #include "gdb_wait.h"
36 #include "dcache.h"
37 #include <signal.h>
38 #include "regcache.h"
39 #include "gdb_assert.h"
40 #include "gdbcore.h"
41
42 static void target_info (char *, int);
43
44 static void maybe_kill_then_attach (char *, int);
45
46 static void kill_or_be_killed (int);
47
48 static void default_terminal_info (char *, int);
49
50 static int default_region_size_ok_for_hw_watchpoint (int);
51
52 static int nosymbol (char *, CORE_ADDR *);
53
54 static void tcomplain (void);
55
56 static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
57
58 static int return_zero (void);
59
60 static int return_one (void);
61
62 static int return_minus_one (void);
63
64 void target_ignore (void);
65
66 static void target_command (char *, int);
67
68 static struct target_ops *find_default_run_target (char *);
69
70 static void nosupport_runtime (void);
71
72 static LONGEST default_xfer_partial (struct target_ops *ops,
73 enum target_object object,
74 const char *annex, void *readbuf,
75 const void *writebuf,
76 ULONGEST offset, LONGEST len);
77
78 /* Transfer LEN bytes between target address MEMADDR and GDB address
79 MYADDR. Returns 0 for success, errno code for failure (which
80 includes partial transfers -- if you want a more useful response to
81 partial transfers, try either target_read_memory_partial or
82 target_write_memory_partial). */
83
84 static int target_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
85 int write);
86
87 static void init_dummy_target (void);
88
89 static struct target_ops debug_target;
90
91 static void debug_to_open (char *, int);
92
93 static void debug_to_close (int);
94
95 static void debug_to_attach (char *, int);
96
97 static void debug_to_detach (char *, int);
98
99 static void debug_to_disconnect (char *, int);
100
101 static void debug_to_resume (ptid_t, int, enum target_signal);
102
103 static ptid_t debug_to_wait (ptid_t, struct target_waitstatus *);
104
105 static void debug_to_fetch_registers (int);
106
107 static void debug_to_store_registers (int);
108
109 static void debug_to_prepare_to_store (void);
110
111 static int deprecated_debug_xfer_memory (CORE_ADDR, char *, int, int,
112 struct mem_attrib *,
113 struct target_ops *);
114
115 static void debug_to_files_info (struct target_ops *);
116
117 static int debug_to_insert_breakpoint (CORE_ADDR, char *);
118
119 static int debug_to_remove_breakpoint (CORE_ADDR, char *);
120
121 static int debug_to_can_use_hw_breakpoint (int, int, int);
122
123 static int debug_to_insert_hw_breakpoint (CORE_ADDR, char *);
124
125 static int debug_to_remove_hw_breakpoint (CORE_ADDR, char *);
126
127 static int debug_to_insert_watchpoint (CORE_ADDR, int, int);
128
129 static int debug_to_remove_watchpoint (CORE_ADDR, int, int);
130
131 static int debug_to_stopped_by_watchpoint (void);
132
133 static int debug_to_stopped_data_address (struct target_ops *, CORE_ADDR *);
134
135 static int debug_to_region_size_ok_for_hw_watchpoint (int);
136
137 static void debug_to_terminal_init (void);
138
139 static void debug_to_terminal_inferior (void);
140
141 static void debug_to_terminal_ours_for_output (void);
142
143 static void debug_to_terminal_save_ours (void);
144
145 static void debug_to_terminal_ours (void);
146
147 static void debug_to_terminal_info (char *, int);
148
149 static void debug_to_kill (void);
150
151 static void debug_to_load (char *, int);
152
153 static int debug_to_lookup_symbol (char *, CORE_ADDR *);
154
155 static void debug_to_mourn_inferior (void);
156
157 static int debug_to_can_run (void);
158
159 static void debug_to_notice_signals (ptid_t);
160
161 static int debug_to_thread_alive (ptid_t);
162
163 static void debug_to_stop (void);
164
165 /* NOTE: cagney/2004-09-29: Many targets reference this variable in
166 wierd and mysterious ways. Putting the variable here lets those
167 wierd and mysterious ways keep building while they are being
168 converted to the inferior inheritance structure. */
169 struct target_ops deprecated_child_ops;
170
171 /* Pointer to array of target architecture structures; the size of the
172 array; the current index into the array; the allocated size of the
173 array. */
174 struct target_ops **target_structs;
175 unsigned target_struct_size;
176 unsigned target_struct_index;
177 unsigned target_struct_allocsize;
178 #define DEFAULT_ALLOCSIZE 10
179
180 /* The initial current target, so that there is always a semi-valid
181 current target. */
182
183 static struct target_ops dummy_target;
184
185 /* Top of target stack. */
186
187 static struct target_ops *target_stack;
188
189 /* The target structure we are currently using to talk to a process
190 or file or whatever "inferior" we have. */
191
192 struct target_ops current_target;
193
194 /* Command list for target. */
195
196 static struct cmd_list_element *targetlist = NULL;
197
198 /* Nonzero if we are debugging an attached outside process
199 rather than an inferior. */
200
201 int attach_flag;
202
203 /* Non-zero if we want to see trace of target level stuff. */
204
205 static int targetdebug = 0;
206 static void
207 show_targetdebug (struct ui_file *file, int from_tty,
208 struct cmd_list_element *c, const char *value)
209 {
210 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
211 }
212
213 static void setup_target_debug (void);
214
215 DCACHE *target_dcache;
216
217 /* The user just typed 'target' without the name of a target. */
218
219 static void
220 target_command (char *arg, int from_tty)
221 {
222 fputs_filtered ("Argument required (target name). Try `help target'\n",
223 gdb_stdout);
224 }
225
226 /* Add a possible target architecture to the list. */
227
228 void
229 add_target (struct target_ops *t)
230 {
231 /* Provide default values for all "must have" methods. */
232 if (t->to_xfer_partial == NULL)
233 t->to_xfer_partial = default_xfer_partial;
234
235 if (!target_structs)
236 {
237 target_struct_allocsize = DEFAULT_ALLOCSIZE;
238 target_structs = (struct target_ops **) xmalloc
239 (target_struct_allocsize * sizeof (*target_structs));
240 }
241 if (target_struct_size >= target_struct_allocsize)
242 {
243 target_struct_allocsize *= 2;
244 target_structs = (struct target_ops **)
245 xrealloc ((char *) target_structs,
246 target_struct_allocsize * sizeof (*target_structs));
247 }
248 target_structs[target_struct_size++] = t;
249
250 if (targetlist == NULL)
251 add_prefix_cmd ("target", class_run, target_command, _("\
252 Connect to a target machine or process.\n\
253 The first argument is the type or protocol of the target machine.\n\
254 Remaining arguments are interpreted by the target protocol. For more\n\
255 information on the arguments for a particular protocol, type\n\
256 `help target ' followed by the protocol name."),
257 &targetlist, "target ", 0, &cmdlist);
258 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
259 }
260
261 /* Stub functions */
262
263 void
264 target_ignore (void)
265 {
266 }
267
268 void
269 target_load (char *arg, int from_tty)
270 {
271 dcache_invalidate (target_dcache);
272 (*current_target.to_load) (arg, from_tty);
273 }
274
275 static int
276 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
277 struct target_ops *t)
278 {
279 errno = EIO; /* Can't read/write this location */
280 return 0; /* No bytes handled */
281 }
282
283 static void
284 tcomplain (void)
285 {
286 error (_("You can't do that when your target is `%s'"),
287 current_target.to_shortname);
288 }
289
290 void
291 noprocess (void)
292 {
293 error (_("You can't do that without a process to debug."));
294 }
295
296 static int
297 nosymbol (char *name, CORE_ADDR *addrp)
298 {
299 return 1; /* Symbol does not exist in target env */
300 }
301
302 static void
303 nosupport_runtime (void)
304 {
305 if (ptid_equal (inferior_ptid, null_ptid))
306 noprocess ();
307 else
308 error (_("No run-time support for this"));
309 }
310
311
312 static void
313 default_terminal_info (char *args, int from_tty)
314 {
315 printf_unfiltered (_("No saved terminal information.\n"));
316 }
317
318 /* This is the default target_create_inferior and target_attach function.
319 If the current target is executing, it asks whether to kill it off.
320 If this function returns without calling error(), it has killed off
321 the target, and the operation should be attempted. */
322
323 static void
324 kill_or_be_killed (int from_tty)
325 {
326 if (target_has_execution)
327 {
328 printf_unfiltered (_("You are already running a program:\n"));
329 target_files_info ();
330 if (query ("Kill it? "))
331 {
332 target_kill ();
333 if (target_has_execution)
334 error (_("Killing the program did not help."));
335 return;
336 }
337 else
338 {
339 error (_("Program not killed."));
340 }
341 }
342 tcomplain ();
343 }
344
345 static void
346 maybe_kill_then_attach (char *args, int from_tty)
347 {
348 kill_or_be_killed (from_tty);
349 target_attach (args, from_tty);
350 }
351
352 static void
353 maybe_kill_then_create_inferior (char *exec, char *args, char **env,
354 int from_tty)
355 {
356 kill_or_be_killed (0);
357 target_create_inferior (exec, args, env, from_tty);
358 }
359
360 /* Go through the target stack from top to bottom, copying over zero
361 entries in current_target, then filling in still empty entries. In
362 effect, we are doing class inheritance through the pushed target
363 vectors.
364
365 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
366 is currently implemented, is that it discards any knowledge of
367 which target an inherited method originally belonged to.
368 Consequently, new new target methods should instead explicitly and
369 locally search the target stack for the target that can handle the
370 request. */
371
372 static void
373 update_current_target (void)
374 {
375 struct target_ops *t;
376
377 /* First, reset curren'ts contents. */
378 memset (&current_target, 0, sizeof (current_target));
379
380 #define INHERIT(FIELD, TARGET) \
381 if (!current_target.FIELD) \
382 current_target.FIELD = (TARGET)->FIELD
383
384 for (t = target_stack; t; t = t->beneath)
385 {
386 INHERIT (to_shortname, t);
387 INHERIT (to_longname, t);
388 INHERIT (to_doc, t);
389 INHERIT (to_open, t);
390 INHERIT (to_close, t);
391 INHERIT (to_attach, t);
392 INHERIT (to_post_attach, t);
393 INHERIT (to_detach, t);
394 INHERIT (to_disconnect, t);
395 INHERIT (to_resume, t);
396 INHERIT (to_wait, t);
397 INHERIT (to_fetch_registers, t);
398 INHERIT (to_store_registers, t);
399 INHERIT (to_prepare_to_store, t);
400 INHERIT (deprecated_xfer_memory, t);
401 INHERIT (to_files_info, t);
402 INHERIT (to_insert_breakpoint, t);
403 INHERIT (to_remove_breakpoint, t);
404 INHERIT (to_can_use_hw_breakpoint, t);
405 INHERIT (to_insert_hw_breakpoint, t);
406 INHERIT (to_remove_hw_breakpoint, t);
407 INHERIT (to_insert_watchpoint, t);
408 INHERIT (to_remove_watchpoint, t);
409 INHERIT (to_stopped_data_address, t);
410 INHERIT (to_stopped_by_watchpoint, t);
411 INHERIT (to_have_continuable_watchpoint, t);
412 INHERIT (to_region_size_ok_for_hw_watchpoint, t);
413 INHERIT (to_terminal_init, t);
414 INHERIT (to_terminal_inferior, t);
415 INHERIT (to_terminal_ours_for_output, t);
416 INHERIT (to_terminal_ours, t);
417 INHERIT (to_terminal_save_ours, t);
418 INHERIT (to_terminal_info, t);
419 INHERIT (to_kill, t);
420 INHERIT (to_load, t);
421 INHERIT (to_lookup_symbol, t);
422 INHERIT (to_create_inferior, t);
423 INHERIT (to_post_startup_inferior, t);
424 INHERIT (to_acknowledge_created_inferior, t);
425 INHERIT (to_insert_fork_catchpoint, t);
426 INHERIT (to_remove_fork_catchpoint, t);
427 INHERIT (to_insert_vfork_catchpoint, t);
428 INHERIT (to_remove_vfork_catchpoint, t);
429 INHERIT (to_follow_fork, t);
430 INHERIT (to_insert_exec_catchpoint, t);
431 INHERIT (to_remove_exec_catchpoint, t);
432 INHERIT (to_reported_exec_events_per_exec_call, t);
433 INHERIT (to_has_exited, t);
434 INHERIT (to_mourn_inferior, t);
435 INHERIT (to_can_run, t);
436 INHERIT (to_notice_signals, t);
437 INHERIT (to_thread_alive, t);
438 INHERIT (to_find_new_threads, t);
439 INHERIT (to_pid_to_str, t);
440 INHERIT (to_extra_thread_info, t);
441 INHERIT (to_stop, t);
442 /* Do not inherit to_xfer_partial. */
443 INHERIT (to_rcmd, t);
444 INHERIT (to_enable_exception_callback, t);
445 INHERIT (to_get_current_exception_event, t);
446 INHERIT (to_pid_to_exec_file, t);
447 INHERIT (to_stratum, t);
448 INHERIT (to_has_all_memory, t);
449 INHERIT (to_has_memory, t);
450 INHERIT (to_has_stack, t);
451 INHERIT (to_has_registers, t);
452 INHERIT (to_has_execution, t);
453 INHERIT (to_has_thread_control, t);
454 INHERIT (to_sections, t);
455 INHERIT (to_sections_end, t);
456 INHERIT (to_can_async_p, t);
457 INHERIT (to_is_async_p, t);
458 INHERIT (to_async, t);
459 INHERIT (to_async_mask_value, t);
460 INHERIT (to_find_memory_regions, t);
461 INHERIT (to_make_corefile_notes, t);
462 INHERIT (to_get_thread_local_address, t);
463 INHERIT (to_magic, t);
464 }
465 #undef INHERIT
466
467 /* Clean up a target struct so it no longer has any zero pointers in
468 it. Some entries are defaulted to a method that print an error,
469 others are hard-wired to a standard recursive default. */
470
471 #define de_fault(field, value) \
472 if (!current_target.field) \
473 current_target.field = value
474
475 de_fault (to_open,
476 (void (*) (char *, int))
477 tcomplain);
478 de_fault (to_close,
479 (void (*) (int))
480 target_ignore);
481 de_fault (to_attach,
482 maybe_kill_then_attach);
483 de_fault (to_post_attach,
484 (void (*) (int))
485 target_ignore);
486 de_fault (to_detach,
487 (void (*) (char *, int))
488 target_ignore);
489 de_fault (to_disconnect,
490 (void (*) (char *, int))
491 tcomplain);
492 de_fault (to_resume,
493 (void (*) (ptid_t, int, enum target_signal))
494 noprocess);
495 de_fault (to_wait,
496 (ptid_t (*) (ptid_t, struct target_waitstatus *))
497 noprocess);
498 de_fault (to_fetch_registers,
499 (void (*) (int))
500 target_ignore);
501 de_fault (to_store_registers,
502 (void (*) (int))
503 noprocess);
504 de_fault (to_prepare_to_store,
505 (void (*) (void))
506 noprocess);
507 de_fault (deprecated_xfer_memory,
508 (int (*) (CORE_ADDR, char *, int, int, struct mem_attrib *, struct target_ops *))
509 nomemory);
510 de_fault (to_files_info,
511 (void (*) (struct target_ops *))
512 target_ignore);
513 de_fault (to_insert_breakpoint,
514 memory_insert_breakpoint);
515 de_fault (to_remove_breakpoint,
516 memory_remove_breakpoint);
517 de_fault (to_can_use_hw_breakpoint,
518 (int (*) (int, int, int))
519 return_zero);
520 de_fault (to_insert_hw_breakpoint,
521 (int (*) (CORE_ADDR, char *))
522 return_minus_one);
523 de_fault (to_remove_hw_breakpoint,
524 (int (*) (CORE_ADDR, char *))
525 return_minus_one);
526 de_fault (to_insert_watchpoint,
527 (int (*) (CORE_ADDR, int, int))
528 return_minus_one);
529 de_fault (to_remove_watchpoint,
530 (int (*) (CORE_ADDR, int, int))
531 return_minus_one);
532 de_fault (to_stopped_by_watchpoint,
533 (int (*) (void))
534 return_zero);
535 de_fault (to_stopped_data_address,
536 (int (*) (struct target_ops *, CORE_ADDR *))
537 return_zero);
538 de_fault (to_region_size_ok_for_hw_watchpoint,
539 default_region_size_ok_for_hw_watchpoint);
540 de_fault (to_terminal_init,
541 (void (*) (void))
542 target_ignore);
543 de_fault (to_terminal_inferior,
544 (void (*) (void))
545 target_ignore);
546 de_fault (to_terminal_ours_for_output,
547 (void (*) (void))
548 target_ignore);
549 de_fault (to_terminal_ours,
550 (void (*) (void))
551 target_ignore);
552 de_fault (to_terminal_save_ours,
553 (void (*) (void))
554 target_ignore);
555 de_fault (to_terminal_info,
556 default_terminal_info);
557 de_fault (to_kill,
558 (void (*) (void))
559 noprocess);
560 de_fault (to_load,
561 (void (*) (char *, int))
562 tcomplain);
563 de_fault (to_lookup_symbol,
564 (int (*) (char *, CORE_ADDR *))
565 nosymbol);
566 de_fault (to_create_inferior,
567 maybe_kill_then_create_inferior);
568 de_fault (to_post_startup_inferior,
569 (void (*) (ptid_t))
570 target_ignore);
571 de_fault (to_acknowledge_created_inferior,
572 (void (*) (int))
573 target_ignore);
574 de_fault (to_insert_fork_catchpoint,
575 (void (*) (int))
576 tcomplain);
577 de_fault (to_remove_fork_catchpoint,
578 (int (*) (int))
579 tcomplain);
580 de_fault (to_insert_vfork_catchpoint,
581 (void (*) (int))
582 tcomplain);
583 de_fault (to_remove_vfork_catchpoint,
584 (int (*) (int))
585 tcomplain);
586 de_fault (to_follow_fork,
587 (int (*) (int))
588 target_ignore);
589 de_fault (to_insert_exec_catchpoint,
590 (void (*) (int))
591 tcomplain);
592 de_fault (to_remove_exec_catchpoint,
593 (int (*) (int))
594 tcomplain);
595 de_fault (to_reported_exec_events_per_exec_call,
596 (int (*) (void))
597 return_one);
598 de_fault (to_has_exited,
599 (int (*) (int, int, int *))
600 return_zero);
601 de_fault (to_mourn_inferior,
602 (void (*) (void))
603 noprocess);
604 de_fault (to_can_run,
605 return_zero);
606 de_fault (to_notice_signals,
607 (void (*) (ptid_t))
608 target_ignore);
609 de_fault (to_thread_alive,
610 (int (*) (ptid_t))
611 return_zero);
612 de_fault (to_find_new_threads,
613 (void (*) (void))
614 target_ignore);
615 de_fault (to_extra_thread_info,
616 (char *(*) (struct thread_info *))
617 return_zero);
618 de_fault (to_stop,
619 (void (*) (void))
620 target_ignore);
621 current_target.to_xfer_partial = default_xfer_partial;
622 de_fault (to_rcmd,
623 (void (*) (char *, struct ui_file *))
624 tcomplain);
625 de_fault (to_enable_exception_callback,
626 (struct symtab_and_line * (*) (enum exception_event_kind, int))
627 nosupport_runtime);
628 de_fault (to_get_current_exception_event,
629 (struct exception_event_record * (*) (void))
630 nosupport_runtime);
631 de_fault (to_pid_to_exec_file,
632 (char *(*) (int))
633 return_zero);
634 de_fault (to_can_async_p,
635 (int (*) (void))
636 return_zero);
637 de_fault (to_is_async_p,
638 (int (*) (void))
639 return_zero);
640 de_fault (to_async,
641 (void (*) (void (*) (enum inferior_event_type, void*), void*))
642 tcomplain);
643 #undef de_fault
644
645 /* Finally, position the target-stack beneath the squashed
646 "current_target". That way code looking for a non-inherited
647 target method can quickly and simply find it. */
648 current_target.beneath = target_stack;
649 }
650
651 /* Push a new target type into the stack of the existing target accessors,
652 possibly superseding some of the existing accessors.
653
654 Result is zero if the pushed target ended up on top of the stack,
655 nonzero if at least one target is on top of it.
656
657 Rather than allow an empty stack, we always have the dummy target at
658 the bottom stratum, so we can call the function vectors without
659 checking them. */
660
661 int
662 push_target (struct target_ops *t)
663 {
664 struct target_ops **cur;
665
666 /* Check magic number. If wrong, it probably means someone changed
667 the struct definition, but not all the places that initialize one. */
668 if (t->to_magic != OPS_MAGIC)
669 {
670 fprintf_unfiltered (gdb_stderr,
671 "Magic number of %s target struct wrong\n",
672 t->to_shortname);
673 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
674 }
675
676 /* Find the proper stratum to install this target in. */
677 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
678 {
679 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
680 break;
681 }
682
683 /* If there's already targets at this stratum, remove them. */
684 /* FIXME: cagney/2003-10-15: I think this should be poping all
685 targets to CUR, and not just those at this stratum level. */
686 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
687 {
688 /* There's already something at this stratum level. Close it,
689 and un-hook it from the stack. */
690 struct target_ops *tmp = (*cur);
691 (*cur) = (*cur)->beneath;
692 tmp->beneath = NULL;
693 target_close (tmp, 0);
694 }
695
696 /* We have removed all targets in our stratum, now add the new one. */
697 t->beneath = (*cur);
698 (*cur) = t;
699
700 update_current_target ();
701
702 if (targetdebug)
703 setup_target_debug ();
704
705 /* Not on top? */
706 return (t != target_stack);
707 }
708
709 /* Remove a target_ops vector from the stack, wherever it may be.
710 Return how many times it was removed (0 or 1). */
711
712 int
713 unpush_target (struct target_ops *t)
714 {
715 struct target_ops **cur;
716 struct target_ops *tmp;
717
718 /* Look for the specified target. Note that we assume that a target
719 can only occur once in the target stack. */
720
721 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
722 {
723 if ((*cur) == t)
724 break;
725 }
726
727 if ((*cur) == NULL)
728 return 0; /* Didn't find target_ops, quit now */
729
730 /* NOTE: cagney/2003-12-06: In '94 the close call was made
731 unconditional by moving it to before the above check that the
732 target was in the target stack (something about "Change the way
733 pushing and popping of targets work to support target overlays
734 and inheritance"). This doesn't make much sense - only open
735 targets should be closed. */
736 target_close (t, 0);
737
738 /* Unchain the target */
739 tmp = (*cur);
740 (*cur) = (*cur)->beneath;
741 tmp->beneath = NULL;
742
743 update_current_target ();
744
745 return 1;
746 }
747
748 void
749 pop_target (void)
750 {
751 target_close (&current_target, 0); /* Let it clean up */
752 if (unpush_target (target_stack) == 1)
753 return;
754
755 fprintf_unfiltered (gdb_stderr,
756 "pop_target couldn't find target %s\n",
757 current_target.to_shortname);
758 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
759 }
760
761 #undef MIN
762 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
763
764 /* target_read_string -- read a null terminated string, up to LEN bytes,
765 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
766 Set *STRING to a pointer to malloc'd memory containing the data; the caller
767 is responsible for freeing it. Return the number of bytes successfully
768 read. */
769
770 int
771 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
772 {
773 int tlen, origlen, offset, i;
774 char buf[4];
775 int errcode = 0;
776 char *buffer;
777 int buffer_allocated;
778 char *bufptr;
779 unsigned int nbytes_read = 0;
780
781 /* Small for testing. */
782 buffer_allocated = 4;
783 buffer = xmalloc (buffer_allocated);
784 bufptr = buffer;
785
786 origlen = len;
787
788 while (len > 0)
789 {
790 tlen = MIN (len, 4 - (memaddr & 3));
791 offset = memaddr & 3;
792
793 errcode = target_read_memory (memaddr & ~3, buf, 4);
794 if (errcode != 0)
795 {
796 /* The transfer request might have crossed the boundary to an
797 unallocated region of memory. Retry the transfer, requesting
798 a single byte. */
799 tlen = 1;
800 offset = 0;
801 errcode = target_read_memory (memaddr, buf, 1);
802 if (errcode != 0)
803 goto done;
804 }
805
806 if (bufptr - buffer + tlen > buffer_allocated)
807 {
808 unsigned int bytes;
809 bytes = bufptr - buffer;
810 buffer_allocated *= 2;
811 buffer = xrealloc (buffer, buffer_allocated);
812 bufptr = buffer + bytes;
813 }
814
815 for (i = 0; i < tlen; i++)
816 {
817 *bufptr++ = buf[i + offset];
818 if (buf[i + offset] == '\000')
819 {
820 nbytes_read += i + 1;
821 goto done;
822 }
823 }
824
825 memaddr += tlen;
826 len -= tlen;
827 nbytes_read += tlen;
828 }
829 done:
830 if (errnop != NULL)
831 *errnop = errcode;
832 if (string != NULL)
833 *string = buffer;
834 return nbytes_read;
835 }
836
837 /* Find a section containing ADDR. */
838 struct section_table *
839 target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
840 {
841 struct section_table *secp;
842 for (secp = target->to_sections;
843 secp < target->to_sections_end;
844 secp++)
845 {
846 if (addr >= secp->addr && addr < secp->endaddr)
847 return secp;
848 }
849 return NULL;
850 }
851
852 /* Return non-zero when the target vector has supplied an xfer_partial
853 method and it, rather than xfer_memory, should be used. */
854 static int
855 target_xfer_partial_p (void)
856 {
857 return (target_stack != NULL
858 && target_stack->to_xfer_partial != default_xfer_partial);
859 }
860
861 static LONGEST
862 target_xfer_partial (struct target_ops *ops,
863 enum target_object object, const char *annex,
864 void *readbuf, const void *writebuf,
865 ULONGEST offset, LONGEST len)
866 {
867 LONGEST retval;
868
869 gdb_assert (ops->to_xfer_partial != NULL);
870 retval = ops->to_xfer_partial (ops, object, annex, readbuf, writebuf,
871 offset, len);
872 if (targetdebug)
873 {
874 const unsigned char *myaddr = NULL;
875
876 fprintf_unfiltered (gdb_stdlog,
877 "%s:target_xfer_partial (%d, %s, 0x%lx, 0x%lx, 0x%s, %s) = %s",
878 ops->to_shortname,
879 (int) object,
880 (annex ? annex : "(null)"),
881 (long) readbuf, (long) writebuf,
882 paddr_nz (offset), paddr_d (len), paddr_d (retval));
883
884 if (readbuf)
885 myaddr = readbuf;
886 if (writebuf)
887 myaddr = writebuf;
888 if (retval > 0 && myaddr != NULL)
889 {
890 int i;
891
892 fputs_unfiltered (", bytes =", gdb_stdlog);
893 for (i = 0; i < retval; i++)
894 {
895 if ((((long) &(myaddr[i])) & 0xf) == 0)
896 {
897 if (targetdebug < 2 && i > 0)
898 {
899 fprintf_unfiltered (gdb_stdlog, " ...");
900 break;
901 }
902 fprintf_unfiltered (gdb_stdlog, "\n");
903 }
904
905 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
906 }
907 }
908
909 fputc_unfiltered ('\n', gdb_stdlog);
910 }
911 return retval;
912 }
913
914 /* Attempt a transfer all LEN bytes starting at OFFSET between the
915 inferior's KIND:ANNEX space and GDB's READBUF/WRITEBUF buffer. If
916 the transfer succeeds, return zero, otherwize the host ERRNO is
917 returned.
918
919 The inferior is formed from several layers. In the case of
920 corefiles, inf-corefile is layered above inf-exec and a request for
921 text (corefiles do not include text pages) will be first sent to
922 the core-stratum, fail, and then sent to the object-file where it
923 will succeed.
924
925 NOTE: cagney/2004-09-30:
926
927 The old code tried to use four separate mechanisms for mapping an
928 object:offset:len tuple onto an inferior and its address space: the
929 target stack; the inferior's TO_SECTIONS; solib's SO_LIST;
930 overlays.
931
932 This is stupid.
933
934 The code below is instead using a single mechanism (currently
935 strata). If that mechanism proves insufficient then re-factor it
936 implementing another singluar mechanism (for instance, a generic
937 object:annex onto inferior:object:annex say). */
938
939 static LONGEST
940 xfer_using_stratum (enum target_object object, const char *annex,
941 ULONGEST offset, LONGEST len, void *readbuf,
942 const void *writebuf)
943 {
944 LONGEST xfered;
945 struct target_ops *target;
946
947 /* Always successful. */
948 if (len == 0)
949 return 0;
950 /* Never successful. */
951 if (target_stack == NULL)
952 return EIO;
953
954 target = target_stack;
955 while (1)
956 {
957 xfered = target_xfer_partial (target, object, annex,
958 readbuf, writebuf, offset, len);
959 if (xfered > 0)
960 {
961 /* The partial xfer succeeded, update the counts, check that
962 the xfer hasn't finished and if it hasn't set things up
963 for the next round. */
964 len -= xfered;
965 if (len <= 0)
966 return 0;
967 offset += xfered;
968 if (readbuf != NULL)
969 readbuf = (bfd_byte *) readbuf + xfered;
970 if (writebuf != NULL)
971 writebuf = (bfd_byte *) writebuf + xfered;
972 target = target_stack;
973 }
974 else if (xfered < 0)
975 {
976 /* Something totally screwed up, abandon the attempt to
977 xfer. */
978 if (errno)
979 return errno;
980 else
981 return EIO;
982 }
983 else
984 {
985 /* This "stratum" didn't work, try the next one down. */
986 target = target->beneath;
987 if (target == NULL)
988 return EIO;
989 }
990 }
991 }
992
993 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
994 GDB's memory at MYADDR. Returns either 0 for success or an errno value
995 if any error occurs.
996
997 If an error occurs, no guarantee is made about the contents of the data at
998 MYADDR. In particular, the caller should not depend upon partial reads
999 filling the buffer with good data. There is no way for the caller to know
1000 how much good data might have been transfered anyway. Callers that can
1001 deal with partial reads should call target_read_memory_partial. */
1002
1003 int
1004 target_read_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len)
1005 {
1006 if (target_xfer_partial_p ())
1007 return xfer_using_stratum (TARGET_OBJECT_MEMORY, NULL,
1008 memaddr, len, myaddr, NULL);
1009 else
1010 return target_xfer_memory (memaddr, myaddr, len, 0);
1011 }
1012
1013 int
1014 target_write_memory (CORE_ADDR memaddr, const bfd_byte *myaddr, int len)
1015 {
1016 bfd_byte *bytes = alloca (len);
1017 memcpy (bytes, myaddr, len);
1018 if (target_xfer_partial_p ())
1019 return xfer_using_stratum (TARGET_OBJECT_MEMORY, NULL,
1020 memaddr, len, NULL, bytes);
1021 else
1022 return target_xfer_memory (memaddr, bytes, len, 1);
1023 }
1024
1025 #ifndef target_stopped_data_address_p
1026 int
1027 target_stopped_data_address_p (struct target_ops *target)
1028 {
1029 if (target->to_stopped_data_address
1030 == (int (*) (struct target_ops *, CORE_ADDR *)) return_zero)
1031 return 0;
1032 if (target->to_stopped_data_address == debug_to_stopped_data_address
1033 && (debug_target.to_stopped_data_address
1034 == (int (*) (struct target_ops *, CORE_ADDR *)) return_zero))
1035 return 0;
1036 return 1;
1037 }
1038 #endif
1039
1040 static int trust_readonly = 0;
1041 static void
1042 show_trust_readonly (struct ui_file *file, int from_tty,
1043 struct cmd_list_element *c, const char *value)
1044 {
1045 fprintf_filtered (file, _("\
1046 Mode for reading from readonly sections is %s.\n"),
1047 value);
1048 }
1049
1050 /* Move memory to or from the targets. The top target gets priority;
1051 if it cannot handle it, it is offered to the next one down, etc.
1052
1053 Result is -1 on error, or the number of bytes transfered. */
1054
1055 int
1056 do_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
1057 struct mem_attrib *attrib)
1058 {
1059 int res;
1060 int done = 0;
1061 struct target_ops *t;
1062
1063 /* Zero length requests are ok and require no work. */
1064 if (len == 0)
1065 return 0;
1066
1067 /* deprecated_xfer_memory is not guaranteed to set errno, even when
1068 it returns 0. */
1069 errno = 0;
1070
1071 if (!write && trust_readonly)
1072 {
1073 struct section_table *secp;
1074 /* User-settable option, "trust-readonly-sections". If true,
1075 then memory from any SEC_READONLY bfd section may be read
1076 directly from the bfd file. */
1077 secp = target_section_by_addr (&current_target, memaddr);
1078 if (secp != NULL
1079 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
1080 & SEC_READONLY))
1081 return xfer_memory (memaddr, myaddr, len, 0, attrib, &current_target);
1082 }
1083
1084 /* The quick case is that the top target can handle the transfer. */
1085 res = current_target.deprecated_xfer_memory
1086 (memaddr, myaddr, len, write, attrib, &current_target);
1087
1088 /* If res <= 0 then we call it again in the loop. Ah well. */
1089 if (res <= 0)
1090 {
1091 for (t = target_stack; t != NULL; t = t->beneath)
1092 {
1093 if (!t->to_has_memory)
1094 continue;
1095
1096 res = t->deprecated_xfer_memory (memaddr, myaddr, len, write, attrib, t);
1097 if (res > 0)
1098 break; /* Handled all or part of xfer */
1099 if (t->to_has_all_memory)
1100 break;
1101 }
1102
1103 if (res <= 0)
1104 return -1;
1105 }
1106
1107 return res;
1108 }
1109
1110
1111 /* Perform a memory transfer. Iterate until the entire region has
1112 been transfered.
1113
1114 Result is 0 or errno value. */
1115
1116 static int
1117 target_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write)
1118 {
1119 int res;
1120 int reg_len;
1121 struct mem_region *region;
1122
1123 /* Zero length requests are ok and require no work. */
1124 if (len == 0)
1125 {
1126 return 0;
1127 }
1128
1129 while (len > 0)
1130 {
1131 region = lookup_mem_region(memaddr);
1132 if (memaddr + len < region->hi)
1133 reg_len = len;
1134 else
1135 reg_len = region->hi - memaddr;
1136
1137 switch (region->attrib.mode)
1138 {
1139 case MEM_RO:
1140 if (write)
1141 return EIO;
1142 break;
1143
1144 case MEM_WO:
1145 if (!write)
1146 return EIO;
1147 break;
1148 }
1149
1150 while (reg_len > 0)
1151 {
1152 if (region->attrib.cache)
1153 res = dcache_xfer_memory (target_dcache, memaddr, myaddr,
1154 reg_len, write);
1155 else
1156 res = do_xfer_memory (memaddr, myaddr, reg_len, write,
1157 &region->attrib);
1158
1159 if (res <= 0)
1160 {
1161 /* If this address is for nonexistent memory, read zeros
1162 if reading, or do nothing if writing. Return
1163 error. */
1164 if (!write)
1165 memset (myaddr, 0, len);
1166 if (errno == 0)
1167 return EIO;
1168 else
1169 return errno;
1170 }
1171
1172 memaddr += res;
1173 myaddr += res;
1174 len -= res;
1175 reg_len -= res;
1176 }
1177 }
1178
1179 return 0; /* We managed to cover it all somehow. */
1180 }
1181
1182
1183 /* Perform a partial memory transfer.
1184
1185 Result is -1 on error, or the number of bytes transfered. */
1186
1187 static int
1188 target_xfer_memory_partial (CORE_ADDR memaddr, char *myaddr, int len,
1189 int write_p, int *err)
1190 {
1191 int res;
1192 int reg_len;
1193 struct mem_region *region;
1194
1195 /* Zero length requests are ok and require no work. */
1196 if (len == 0)
1197 {
1198 *err = 0;
1199 return 0;
1200 }
1201
1202 region = lookup_mem_region(memaddr);
1203 if (memaddr + len < region->hi)
1204 reg_len = len;
1205 else
1206 reg_len = region->hi - memaddr;
1207
1208 switch (region->attrib.mode)
1209 {
1210 case MEM_RO:
1211 if (write_p)
1212 {
1213 *err = EIO;
1214 return -1;
1215 }
1216 break;
1217
1218 case MEM_WO:
1219 if (write_p)
1220 {
1221 *err = EIO;
1222 return -1;
1223 }
1224 break;
1225 }
1226
1227 if (region->attrib.cache)
1228 res = dcache_xfer_memory (target_dcache, memaddr, myaddr,
1229 reg_len, write_p);
1230 else
1231 res = do_xfer_memory (memaddr, myaddr, reg_len, write_p,
1232 &region->attrib);
1233
1234 if (res <= 0)
1235 {
1236 if (errno != 0)
1237 *err = errno;
1238 else
1239 *err = EIO;
1240
1241 return -1;
1242 }
1243
1244 *err = 0;
1245 return res;
1246 }
1247
1248 int
1249 target_read_memory_partial (CORE_ADDR memaddr, char *buf, int len, int *err)
1250 {
1251 if (target_xfer_partial_p ())
1252 {
1253 int retval;
1254
1255 retval = target_xfer_partial (target_stack, TARGET_OBJECT_MEMORY,
1256 NULL, buf, NULL, memaddr, len);
1257
1258 if (retval <= 0)
1259 {
1260 if (errno)
1261 *err = errno;
1262 else
1263 *err = EIO;
1264 return -1;
1265 }
1266 else
1267 {
1268 *err = 0;
1269 return retval;
1270 }
1271 }
1272 else
1273 return target_xfer_memory_partial (memaddr, buf, len, 0, err);
1274 }
1275
1276 int
1277 target_write_memory_partial (CORE_ADDR memaddr, char *buf, int len, int *err)
1278 {
1279 if (target_xfer_partial_p ())
1280 {
1281 int retval;
1282
1283 retval = target_xfer_partial (target_stack, TARGET_OBJECT_MEMORY,
1284 NULL, NULL, buf, memaddr, len);
1285
1286 if (retval <= 0)
1287 {
1288 if (errno)
1289 *err = errno;
1290 else
1291 *err = EIO;
1292 return -1;
1293 }
1294 else
1295 {
1296 *err = 0;
1297 return retval;
1298 }
1299 }
1300 else
1301 return target_xfer_memory_partial (memaddr, buf, len, 1, err);
1302 }
1303
1304 /* More generic transfers. */
1305
1306 static LONGEST
1307 default_xfer_partial (struct target_ops *ops, enum target_object object,
1308 const char *annex, void *readbuf,
1309 const void *writebuf, ULONGEST offset, LONGEST len)
1310 {
1311 if (object == TARGET_OBJECT_MEMORY
1312 && ops->deprecated_xfer_memory != NULL)
1313 /* If available, fall back to the target's
1314 "deprecated_xfer_memory" method. */
1315 {
1316 int xfered = -1;
1317 errno = 0;
1318 if (writebuf != NULL)
1319 {
1320 void *buffer = xmalloc (len);
1321 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1322 memcpy (buffer, writebuf, len);
1323 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1324 1/*write*/, NULL, ops);
1325 do_cleanups (cleanup);
1326 }
1327 if (readbuf != NULL)
1328 xfered = ops->deprecated_xfer_memory (offset, readbuf, len, 0/*read*/,
1329 NULL, ops);
1330 if (xfered > 0)
1331 return xfered;
1332 else if (xfered == 0 && errno == 0)
1333 /* "deprecated_xfer_memory" uses 0, cross checked against
1334 ERRNO as one indication of an error. */
1335 return 0;
1336 else
1337 return -1;
1338 }
1339 else if (ops->beneath != NULL)
1340 return target_xfer_partial (ops->beneath, object, annex,
1341 readbuf, writebuf, offset, len);
1342 else
1343 return -1;
1344 }
1345
1346 /* Target vector read/write partial wrapper functions.
1347
1348 NOTE: cagney/2003-10-21: I wonder if having "to_xfer_partial
1349 (inbuf, outbuf)", instead of separate read/write methods, make life
1350 easier. */
1351
1352 LONGEST
1353 target_read_partial (struct target_ops *ops,
1354 enum target_object object,
1355 const char *annex, void *buf,
1356 ULONGEST offset, LONGEST len)
1357 {
1358 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len);
1359 }
1360
1361 LONGEST
1362 target_write_partial (struct target_ops *ops,
1363 enum target_object object,
1364 const char *annex, const void *buf,
1365 ULONGEST offset, LONGEST len)
1366 {
1367 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len);
1368 }
1369
1370 /* Wrappers to perform the full transfer. */
1371 LONGEST
1372 target_read (struct target_ops *ops,
1373 enum target_object object,
1374 const char *annex, void *buf,
1375 ULONGEST offset, LONGEST len)
1376 {
1377 LONGEST xfered = 0;
1378 while (xfered < len)
1379 {
1380 LONGEST xfer = target_read_partial (ops, object, annex,
1381 (bfd_byte *) buf + xfered,
1382 offset + xfered, len - xfered);
1383 /* Call an observer, notifying them of the xfer progress? */
1384 if (xfer <= 0)
1385 /* Call memory_error? */
1386 return -1;
1387 xfered += xfer;
1388 QUIT;
1389 }
1390 return len;
1391 }
1392
1393 LONGEST
1394 target_write (struct target_ops *ops,
1395 enum target_object object,
1396 const char *annex, const void *buf,
1397 ULONGEST offset, LONGEST len)
1398 {
1399 LONGEST xfered = 0;
1400 while (xfered < len)
1401 {
1402 LONGEST xfer = target_write_partial (ops, object, annex,
1403 (bfd_byte *) buf + xfered,
1404 offset + xfered, len - xfered);
1405 /* Call an observer, notifying them of the xfer progress? */
1406 if (xfer <= 0)
1407 /* Call memory_error? */
1408 return -1;
1409 xfered += xfer;
1410 QUIT;
1411 }
1412 return len;
1413 }
1414
1415 /* Memory transfer methods. */
1416
1417 void
1418 get_target_memory (struct target_ops *ops, CORE_ADDR addr, void *buf,
1419 LONGEST len)
1420 {
1421 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL, buf, addr, len)
1422 != len)
1423 memory_error (EIO, addr);
1424 }
1425
1426 ULONGEST
1427 get_target_memory_unsigned (struct target_ops *ops,
1428 CORE_ADDR addr, int len)
1429 {
1430 char buf[sizeof (ULONGEST)];
1431
1432 gdb_assert (len <= sizeof (buf));
1433 get_target_memory (ops, addr, buf, len);
1434 return extract_unsigned_integer (buf, len);
1435 }
1436
1437 static void
1438 target_info (char *args, int from_tty)
1439 {
1440 struct target_ops *t;
1441 int has_all_mem = 0;
1442
1443 if (symfile_objfile != NULL)
1444 printf_unfiltered (_("Symbols from \"%s\".\n"), symfile_objfile->name);
1445
1446 for (t = target_stack; t != NULL; t = t->beneath)
1447 {
1448 if (!t->to_has_memory)
1449 continue;
1450
1451 if ((int) (t->to_stratum) <= (int) dummy_stratum)
1452 continue;
1453 if (has_all_mem)
1454 printf_unfiltered (_("\tWhile running this, GDB does not access memory from...\n"));
1455 printf_unfiltered ("%s:\n", t->to_longname);
1456 (t->to_files_info) (t);
1457 has_all_mem = t->to_has_all_memory;
1458 }
1459 }
1460
1461 /* This is to be called by the open routine before it does
1462 anything. */
1463
1464 void
1465 target_preopen (int from_tty)
1466 {
1467 dont_repeat ();
1468
1469 if (target_has_execution)
1470 {
1471 if (!from_tty
1472 || query (_("A program is being debugged already. Kill it? ")))
1473 target_kill ();
1474 else
1475 error (_("Program not killed."));
1476 }
1477
1478 /* Calling target_kill may remove the target from the stack. But if
1479 it doesn't (which seems like a win for UDI), remove it now. */
1480
1481 if (target_has_execution)
1482 pop_target ();
1483 }
1484
1485 /* Detach a target after doing deferred register stores. */
1486
1487 void
1488 target_detach (char *args, int from_tty)
1489 {
1490 (current_target.to_detach) (args, from_tty);
1491 }
1492
1493 void
1494 target_disconnect (char *args, int from_tty)
1495 {
1496 (current_target.to_disconnect) (args, from_tty);
1497 }
1498
1499 void
1500 target_link (char *modname, CORE_ADDR *t_reloc)
1501 {
1502 if (DEPRECATED_STREQ (current_target.to_shortname, "rombug"))
1503 {
1504 (current_target.to_lookup_symbol) (modname, t_reloc);
1505 if (*t_reloc == 0)
1506 error (_("Unable to link to %s and get relocation in rombug"), modname);
1507 }
1508 else
1509 *t_reloc = (CORE_ADDR) -1;
1510 }
1511
1512 int
1513 target_async_mask (int mask)
1514 {
1515 int saved_async_masked_status = target_async_mask_value;
1516 target_async_mask_value = mask;
1517 return saved_async_masked_status;
1518 }
1519
1520 /* Look through the list of possible targets for a target that can
1521 execute a run or attach command without any other data. This is
1522 used to locate the default process stratum.
1523
1524 Result is always valid (error() is called for errors). */
1525
1526 static struct target_ops *
1527 find_default_run_target (char *do_mesg)
1528 {
1529 struct target_ops **t;
1530 struct target_ops *runable = NULL;
1531 int count;
1532
1533 count = 0;
1534
1535 for (t = target_structs; t < target_structs + target_struct_size;
1536 ++t)
1537 {
1538 if ((*t)->to_can_run && target_can_run (*t))
1539 {
1540 runable = *t;
1541 ++count;
1542 }
1543 }
1544
1545 if (count != 1)
1546 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
1547
1548 return runable;
1549 }
1550
1551 void
1552 find_default_attach (char *args, int from_tty)
1553 {
1554 struct target_ops *t;
1555
1556 t = find_default_run_target ("attach");
1557 (t->to_attach) (args, from_tty);
1558 return;
1559 }
1560
1561 void
1562 find_default_create_inferior (char *exec_file, char *allargs, char **env,
1563 int from_tty)
1564 {
1565 struct target_ops *t;
1566
1567 t = find_default_run_target ("run");
1568 (t->to_create_inferior) (exec_file, allargs, env, from_tty);
1569 return;
1570 }
1571
1572 static int
1573 default_region_size_ok_for_hw_watchpoint (int byte_count)
1574 {
1575 return (byte_count <= TYPE_LENGTH (builtin_type_void_data_ptr));
1576 }
1577
1578 static int
1579 return_zero (void)
1580 {
1581 return 0;
1582 }
1583
1584 static int
1585 return_one (void)
1586 {
1587 return 1;
1588 }
1589
1590 static int
1591 return_minus_one (void)
1592 {
1593 return -1;
1594 }
1595
1596 /*
1597 * Resize the to_sections pointer. Also make sure that anyone that
1598 * was holding on to an old value of it gets updated.
1599 * Returns the old size.
1600 */
1601
1602 int
1603 target_resize_to_sections (struct target_ops *target, int num_added)
1604 {
1605 struct target_ops **t;
1606 struct section_table *old_value;
1607 int old_count;
1608
1609 old_value = target->to_sections;
1610
1611 if (target->to_sections)
1612 {
1613 old_count = target->to_sections_end - target->to_sections;
1614 target->to_sections = (struct section_table *)
1615 xrealloc ((char *) target->to_sections,
1616 (sizeof (struct section_table)) * (num_added + old_count));
1617 }
1618 else
1619 {
1620 old_count = 0;
1621 target->to_sections = (struct section_table *)
1622 xmalloc ((sizeof (struct section_table)) * num_added);
1623 }
1624 target->to_sections_end = target->to_sections + (num_added + old_count);
1625
1626 /* Check to see if anyone else was pointing to this structure.
1627 If old_value was null, then no one was. */
1628
1629 if (old_value)
1630 {
1631 for (t = target_structs; t < target_structs + target_struct_size;
1632 ++t)
1633 {
1634 if ((*t)->to_sections == old_value)
1635 {
1636 (*t)->to_sections = target->to_sections;
1637 (*t)->to_sections_end = target->to_sections_end;
1638 }
1639 }
1640 /* There is a flattened view of the target stack in current_target,
1641 so its to_sections pointer might also need updating. */
1642 if (current_target.to_sections == old_value)
1643 {
1644 current_target.to_sections = target->to_sections;
1645 current_target.to_sections_end = target->to_sections_end;
1646 }
1647 }
1648
1649 return old_count;
1650
1651 }
1652
1653 /* Remove all target sections taken from ABFD.
1654
1655 Scan the current target stack for targets whose section tables
1656 refer to sections from BFD, and remove those sections. We use this
1657 when we notice that the inferior has unloaded a shared object, for
1658 example. */
1659 void
1660 remove_target_sections (bfd *abfd)
1661 {
1662 struct target_ops **t;
1663
1664 for (t = target_structs; t < target_structs + target_struct_size; t++)
1665 {
1666 struct section_table *src, *dest;
1667
1668 dest = (*t)->to_sections;
1669 for (src = (*t)->to_sections; src < (*t)->to_sections_end; src++)
1670 if (src->bfd != abfd)
1671 {
1672 /* Keep this section. */
1673 if (dest < src) *dest = *src;
1674 dest++;
1675 }
1676
1677 /* If we've dropped any sections, resize the section table. */
1678 if (dest < src)
1679 target_resize_to_sections (*t, dest - src);
1680 }
1681 }
1682
1683
1684
1685
1686 /* Find a single runnable target in the stack and return it. If for
1687 some reason there is more than one, return NULL. */
1688
1689 struct target_ops *
1690 find_run_target (void)
1691 {
1692 struct target_ops **t;
1693 struct target_ops *runable = NULL;
1694 int count;
1695
1696 count = 0;
1697
1698 for (t = target_structs; t < target_structs + target_struct_size; ++t)
1699 {
1700 if ((*t)->to_can_run && target_can_run (*t))
1701 {
1702 runable = *t;
1703 ++count;
1704 }
1705 }
1706
1707 return (count == 1 ? runable : NULL);
1708 }
1709
1710 /* Find a single core_stratum target in the list of targets and return it.
1711 If for some reason there is more than one, return NULL. */
1712
1713 struct target_ops *
1714 find_core_target (void)
1715 {
1716 struct target_ops **t;
1717 struct target_ops *runable = NULL;
1718 int count;
1719
1720 count = 0;
1721
1722 for (t = target_structs; t < target_structs + target_struct_size;
1723 ++t)
1724 {
1725 if ((*t)->to_stratum == core_stratum)
1726 {
1727 runable = *t;
1728 ++count;
1729 }
1730 }
1731
1732 return (count == 1 ? runable : NULL);
1733 }
1734
1735 /*
1736 * Find the next target down the stack from the specified target.
1737 */
1738
1739 struct target_ops *
1740 find_target_beneath (struct target_ops *t)
1741 {
1742 return t->beneath;
1743 }
1744
1745 \f
1746 /* The inferior process has died. Long live the inferior! */
1747
1748 void
1749 generic_mourn_inferior (void)
1750 {
1751 extern int show_breakpoint_hit_counts;
1752
1753 inferior_ptid = null_ptid;
1754 attach_flag = 0;
1755 breakpoint_init_inferior (inf_exited);
1756 registers_changed ();
1757
1758 reopen_exec_file ();
1759 reinit_frame_cache ();
1760
1761 /* It is confusing to the user for ignore counts to stick around
1762 from previous runs of the inferior. So clear them. */
1763 /* However, it is more confusing for the ignore counts to disappear when
1764 using hit counts. So don't clear them if we're counting hits. */
1765 if (!show_breakpoint_hit_counts)
1766 breakpoint_clear_ignore_counts ();
1767
1768 if (deprecated_detach_hook)
1769 deprecated_detach_hook ();
1770 }
1771 \f
1772 /* Helper function for child_wait and the Lynx derivatives of child_wait.
1773 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
1774 translation of that in OURSTATUS. */
1775 void
1776 store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
1777 {
1778 #ifdef CHILD_SPECIAL_WAITSTATUS
1779 /* CHILD_SPECIAL_WAITSTATUS should return nonzero and set *OURSTATUS
1780 if it wants to deal with hoststatus. */
1781 if (CHILD_SPECIAL_WAITSTATUS (ourstatus, hoststatus))
1782 return;
1783 #endif
1784
1785 if (WIFEXITED (hoststatus))
1786 {
1787 ourstatus->kind = TARGET_WAITKIND_EXITED;
1788 ourstatus->value.integer = WEXITSTATUS (hoststatus);
1789 }
1790 else if (!WIFSTOPPED (hoststatus))
1791 {
1792 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
1793 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
1794 }
1795 else
1796 {
1797 ourstatus->kind = TARGET_WAITKIND_STOPPED;
1798 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
1799 }
1800 }
1801 \f
1802 /* Returns zero to leave the inferior alone, one to interrupt it. */
1803 int (*target_activity_function) (void);
1804 int target_activity_fd;
1805 \f
1806 /* Convert a normal process ID to a string. Returns the string in a static
1807 buffer. */
1808
1809 char *
1810 normal_pid_to_str (ptid_t ptid)
1811 {
1812 static char buf[30];
1813
1814 sprintf (buf, "process %d", PIDGET (ptid));
1815 return buf;
1816 }
1817
1818 /* Error-catcher for target_find_memory_regions */
1819 static int dummy_find_memory_regions (int (*ignore1) (), void *ignore2)
1820 {
1821 error (_("No target."));
1822 return 0;
1823 }
1824
1825 /* Error-catcher for target_make_corefile_notes */
1826 static char * dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
1827 {
1828 error (_("No target."));
1829 return NULL;
1830 }
1831
1832 /* Set up the handful of non-empty slots needed by the dummy target
1833 vector. */
1834
1835 static void
1836 init_dummy_target (void)
1837 {
1838 dummy_target.to_shortname = "None";
1839 dummy_target.to_longname = "None";
1840 dummy_target.to_doc = "";
1841 dummy_target.to_attach = find_default_attach;
1842 dummy_target.to_create_inferior = find_default_create_inferior;
1843 dummy_target.to_pid_to_str = normal_pid_to_str;
1844 dummy_target.to_stratum = dummy_stratum;
1845 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
1846 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
1847 dummy_target.to_xfer_partial = default_xfer_partial;
1848 dummy_target.to_magic = OPS_MAGIC;
1849 }
1850 \f
1851 static void
1852 debug_to_open (char *args, int from_tty)
1853 {
1854 debug_target.to_open (args, from_tty);
1855
1856 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
1857 }
1858
1859 static void
1860 debug_to_close (int quitting)
1861 {
1862 target_close (&debug_target, quitting);
1863 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
1864 }
1865
1866 void
1867 target_close (struct target_ops *targ, int quitting)
1868 {
1869 if (targ->to_xclose != NULL)
1870 targ->to_xclose (targ, quitting);
1871 else if (targ->to_close != NULL)
1872 targ->to_close (quitting);
1873 }
1874
1875 static void
1876 debug_to_attach (char *args, int from_tty)
1877 {
1878 debug_target.to_attach (args, from_tty);
1879
1880 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n", args, from_tty);
1881 }
1882
1883
1884 static void
1885 debug_to_post_attach (int pid)
1886 {
1887 debug_target.to_post_attach (pid);
1888
1889 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
1890 }
1891
1892 static void
1893 debug_to_detach (char *args, int from_tty)
1894 {
1895 debug_target.to_detach (args, from_tty);
1896
1897 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n", args, from_tty);
1898 }
1899
1900 static void
1901 debug_to_disconnect (char *args, int from_tty)
1902 {
1903 debug_target.to_disconnect (args, from_tty);
1904
1905 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
1906 args, from_tty);
1907 }
1908
1909 static void
1910 debug_to_resume (ptid_t ptid, int step, enum target_signal siggnal)
1911 {
1912 debug_target.to_resume (ptid, step, siggnal);
1913
1914 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n", PIDGET (ptid),
1915 step ? "step" : "continue",
1916 target_signal_to_name (siggnal));
1917 }
1918
1919 static ptid_t
1920 debug_to_wait (ptid_t ptid, struct target_waitstatus *status)
1921 {
1922 ptid_t retval;
1923
1924 retval = debug_target.to_wait (ptid, status);
1925
1926 fprintf_unfiltered (gdb_stdlog,
1927 "target_wait (%d, status) = %d, ", PIDGET (ptid),
1928 PIDGET (retval));
1929 fprintf_unfiltered (gdb_stdlog, "status->kind = ");
1930 switch (status->kind)
1931 {
1932 case TARGET_WAITKIND_EXITED:
1933 fprintf_unfiltered (gdb_stdlog, "exited, status = %d\n",
1934 status->value.integer);
1935 break;
1936 case TARGET_WAITKIND_STOPPED:
1937 fprintf_unfiltered (gdb_stdlog, "stopped, signal = %s\n",
1938 target_signal_to_name (status->value.sig));
1939 break;
1940 case TARGET_WAITKIND_SIGNALLED:
1941 fprintf_unfiltered (gdb_stdlog, "signalled, signal = %s\n",
1942 target_signal_to_name (status->value.sig));
1943 break;
1944 case TARGET_WAITKIND_LOADED:
1945 fprintf_unfiltered (gdb_stdlog, "loaded\n");
1946 break;
1947 case TARGET_WAITKIND_FORKED:
1948 fprintf_unfiltered (gdb_stdlog, "forked\n");
1949 break;
1950 case TARGET_WAITKIND_VFORKED:
1951 fprintf_unfiltered (gdb_stdlog, "vforked\n");
1952 break;
1953 case TARGET_WAITKIND_EXECD:
1954 fprintf_unfiltered (gdb_stdlog, "execd\n");
1955 break;
1956 case TARGET_WAITKIND_SPURIOUS:
1957 fprintf_unfiltered (gdb_stdlog, "spurious\n");
1958 break;
1959 default:
1960 fprintf_unfiltered (gdb_stdlog, "unknown???\n");
1961 break;
1962 }
1963
1964 return retval;
1965 }
1966
1967 static void
1968 debug_print_register (const char * func, int regno)
1969 {
1970 fprintf_unfiltered (gdb_stdlog, "%s ", func);
1971 if (regno >= 0 && regno < NUM_REGS + NUM_PSEUDO_REGS
1972 && REGISTER_NAME (regno) != NULL && REGISTER_NAME (regno)[0] != '\0')
1973 fprintf_unfiltered (gdb_stdlog, "(%s)", REGISTER_NAME (regno));
1974 else
1975 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
1976 if (regno >= 0)
1977 {
1978 int i;
1979 unsigned char buf[MAX_REGISTER_SIZE];
1980 deprecated_read_register_gen (regno, buf);
1981 fprintf_unfiltered (gdb_stdlog, " = ");
1982 for (i = 0; i < register_size (current_gdbarch, regno); i++)
1983 {
1984 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
1985 }
1986 if (register_size (current_gdbarch, regno) <= sizeof (LONGEST))
1987 {
1988 fprintf_unfiltered (gdb_stdlog, " 0x%s %s",
1989 paddr_nz (read_register (regno)),
1990 paddr_d (read_register (regno)));
1991 }
1992 }
1993 fprintf_unfiltered (gdb_stdlog, "\n");
1994 }
1995
1996 static void
1997 debug_to_fetch_registers (int regno)
1998 {
1999 debug_target.to_fetch_registers (regno);
2000 debug_print_register ("target_fetch_registers", regno);
2001 }
2002
2003 static void
2004 debug_to_store_registers (int regno)
2005 {
2006 debug_target.to_store_registers (regno);
2007 debug_print_register ("target_store_registers", regno);
2008 fprintf_unfiltered (gdb_stdlog, "\n");
2009 }
2010
2011 static void
2012 debug_to_prepare_to_store (void)
2013 {
2014 debug_target.to_prepare_to_store ();
2015
2016 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
2017 }
2018
2019 static int
2020 deprecated_debug_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
2021 int write, struct mem_attrib *attrib,
2022 struct target_ops *target)
2023 {
2024 int retval;
2025
2026 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
2027 attrib, target);
2028
2029 fprintf_unfiltered (gdb_stdlog,
2030 "target_xfer_memory (0x%x, xxx, %d, %s, xxx) = %d",
2031 (unsigned int) memaddr, /* possable truncate long long */
2032 len, write ? "write" : "read", retval);
2033
2034 if (retval > 0)
2035 {
2036 int i;
2037
2038 fputs_unfiltered (", bytes =", gdb_stdlog);
2039 for (i = 0; i < retval; i++)
2040 {
2041 if ((((long) &(myaddr[i])) & 0xf) == 0)
2042 {
2043 if (targetdebug < 2 && i > 0)
2044 {
2045 fprintf_unfiltered (gdb_stdlog, " ...");
2046 break;
2047 }
2048 fprintf_unfiltered (gdb_stdlog, "\n");
2049 }
2050
2051 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
2052 }
2053 }
2054
2055 fputc_unfiltered ('\n', gdb_stdlog);
2056
2057 return retval;
2058 }
2059
2060 static void
2061 debug_to_files_info (struct target_ops *target)
2062 {
2063 debug_target.to_files_info (target);
2064
2065 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
2066 }
2067
2068 static int
2069 debug_to_insert_breakpoint (CORE_ADDR addr, char *save)
2070 {
2071 int retval;
2072
2073 retval = debug_target.to_insert_breakpoint (addr, save);
2074
2075 fprintf_unfiltered (gdb_stdlog,
2076 "target_insert_breakpoint (0x%lx, xxx) = %ld\n",
2077 (unsigned long) addr,
2078 (unsigned long) retval);
2079 return retval;
2080 }
2081
2082 static int
2083 debug_to_remove_breakpoint (CORE_ADDR addr, char *save)
2084 {
2085 int retval;
2086
2087 retval = debug_target.to_remove_breakpoint (addr, save);
2088
2089 fprintf_unfiltered (gdb_stdlog,
2090 "target_remove_breakpoint (0x%lx, xxx) = %ld\n",
2091 (unsigned long) addr,
2092 (unsigned long) retval);
2093 return retval;
2094 }
2095
2096 static int
2097 debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
2098 {
2099 int retval;
2100
2101 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
2102
2103 fprintf_unfiltered (gdb_stdlog,
2104 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
2105 (unsigned long) type,
2106 (unsigned long) cnt,
2107 (unsigned long) from_tty,
2108 (unsigned long) retval);
2109 return retval;
2110 }
2111
2112 static int
2113 debug_to_region_size_ok_for_hw_watchpoint (int byte_count)
2114 {
2115 CORE_ADDR retval;
2116
2117 retval = debug_target.to_region_size_ok_for_hw_watchpoint (byte_count);
2118
2119 fprintf_unfiltered (gdb_stdlog,
2120 "TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT (%ld) = 0x%lx\n",
2121 (unsigned long) byte_count,
2122 (unsigned long) retval);
2123 return retval;
2124 }
2125
2126 static int
2127 debug_to_stopped_by_watchpoint (void)
2128 {
2129 int retval;
2130
2131 retval = debug_target.to_stopped_by_watchpoint ();
2132
2133 fprintf_unfiltered (gdb_stdlog,
2134 "STOPPED_BY_WATCHPOINT () = %ld\n",
2135 (unsigned long) retval);
2136 return retval;
2137 }
2138
2139 static int
2140 debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
2141 {
2142 int retval;
2143
2144 retval = debug_target.to_stopped_data_address (target, addr);
2145
2146 fprintf_unfiltered (gdb_stdlog,
2147 "target_stopped_data_address ([0x%lx]) = %ld\n",
2148 (unsigned long)*addr,
2149 (unsigned long)retval);
2150 return retval;
2151 }
2152
2153 static int
2154 debug_to_insert_hw_breakpoint (CORE_ADDR addr, char *save)
2155 {
2156 int retval;
2157
2158 retval = debug_target.to_insert_hw_breakpoint (addr, save);
2159
2160 fprintf_unfiltered (gdb_stdlog,
2161 "target_insert_hw_breakpoint (0x%lx, xxx) = %ld\n",
2162 (unsigned long) addr,
2163 (unsigned long) retval);
2164 return retval;
2165 }
2166
2167 static int
2168 debug_to_remove_hw_breakpoint (CORE_ADDR addr, char *save)
2169 {
2170 int retval;
2171
2172 retval = debug_target.to_remove_hw_breakpoint (addr, save);
2173
2174 fprintf_unfiltered (gdb_stdlog,
2175 "target_remove_hw_breakpoint (0x%lx, xxx) = %ld\n",
2176 (unsigned long) addr,
2177 (unsigned long) retval);
2178 return retval;
2179 }
2180
2181 static int
2182 debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type)
2183 {
2184 int retval;
2185
2186 retval = debug_target.to_insert_watchpoint (addr, len, type);
2187
2188 fprintf_unfiltered (gdb_stdlog,
2189 "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n",
2190 (unsigned long) addr, len, type, (unsigned long) retval);
2191 return retval;
2192 }
2193
2194 static int
2195 debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type)
2196 {
2197 int retval;
2198
2199 retval = debug_target.to_insert_watchpoint (addr, len, type);
2200
2201 fprintf_unfiltered (gdb_stdlog,
2202 "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n",
2203 (unsigned long) addr, len, type, (unsigned long) retval);
2204 return retval;
2205 }
2206
2207 static void
2208 debug_to_terminal_init (void)
2209 {
2210 debug_target.to_terminal_init ();
2211
2212 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
2213 }
2214
2215 static void
2216 debug_to_terminal_inferior (void)
2217 {
2218 debug_target.to_terminal_inferior ();
2219
2220 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
2221 }
2222
2223 static void
2224 debug_to_terminal_ours_for_output (void)
2225 {
2226 debug_target.to_terminal_ours_for_output ();
2227
2228 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
2229 }
2230
2231 static void
2232 debug_to_terminal_ours (void)
2233 {
2234 debug_target.to_terminal_ours ();
2235
2236 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
2237 }
2238
2239 static void
2240 debug_to_terminal_save_ours (void)
2241 {
2242 debug_target.to_terminal_save_ours ();
2243
2244 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
2245 }
2246
2247 static void
2248 debug_to_terminal_info (char *arg, int from_tty)
2249 {
2250 debug_target.to_terminal_info (arg, from_tty);
2251
2252 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
2253 from_tty);
2254 }
2255
2256 static void
2257 debug_to_kill (void)
2258 {
2259 debug_target.to_kill ();
2260
2261 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
2262 }
2263
2264 static void
2265 debug_to_load (char *args, int from_tty)
2266 {
2267 debug_target.to_load (args, from_tty);
2268
2269 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
2270 }
2271
2272 static int
2273 debug_to_lookup_symbol (char *name, CORE_ADDR *addrp)
2274 {
2275 int retval;
2276
2277 retval = debug_target.to_lookup_symbol (name, addrp);
2278
2279 fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name);
2280
2281 return retval;
2282 }
2283
2284 static void
2285 debug_to_create_inferior (char *exec_file, char *args, char **env,
2286 int from_tty)
2287 {
2288 debug_target.to_create_inferior (exec_file, args, env, from_tty);
2289
2290 fprintf_unfiltered (gdb_stdlog, "target_create_inferior (%s, %s, xxx, %d)\n",
2291 exec_file, args, from_tty);
2292 }
2293
2294 static void
2295 debug_to_post_startup_inferior (ptid_t ptid)
2296 {
2297 debug_target.to_post_startup_inferior (ptid);
2298
2299 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
2300 PIDGET (ptid));
2301 }
2302
2303 static void
2304 debug_to_acknowledge_created_inferior (int pid)
2305 {
2306 debug_target.to_acknowledge_created_inferior (pid);
2307
2308 fprintf_unfiltered (gdb_stdlog, "target_acknowledge_created_inferior (%d)\n",
2309 pid);
2310 }
2311
2312 static void
2313 debug_to_insert_fork_catchpoint (int pid)
2314 {
2315 debug_target.to_insert_fork_catchpoint (pid);
2316
2317 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d)\n",
2318 pid);
2319 }
2320
2321 static int
2322 debug_to_remove_fork_catchpoint (int pid)
2323 {
2324 int retval;
2325
2326 retval = debug_target.to_remove_fork_catchpoint (pid);
2327
2328 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
2329 pid, retval);
2330
2331 return retval;
2332 }
2333
2334 static void
2335 debug_to_insert_vfork_catchpoint (int pid)
2336 {
2337 debug_target.to_insert_vfork_catchpoint (pid);
2338
2339 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d)\n",
2340 pid);
2341 }
2342
2343 static int
2344 debug_to_remove_vfork_catchpoint (int pid)
2345 {
2346 int retval;
2347
2348 retval = debug_target.to_remove_vfork_catchpoint (pid);
2349
2350 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
2351 pid, retval);
2352
2353 return retval;
2354 }
2355
2356 static int
2357 debug_to_follow_fork (int follow_child)
2358 {
2359 int retval = debug_target.to_follow_fork (follow_child);
2360
2361 fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n",
2362 follow_child, retval);
2363
2364 return retval;
2365 }
2366
2367 static void
2368 debug_to_insert_exec_catchpoint (int pid)
2369 {
2370 debug_target.to_insert_exec_catchpoint (pid);
2371
2372 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d)\n",
2373 pid);
2374 }
2375
2376 static int
2377 debug_to_remove_exec_catchpoint (int pid)
2378 {
2379 int retval;
2380
2381 retval = debug_target.to_remove_exec_catchpoint (pid);
2382
2383 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
2384 pid, retval);
2385
2386 return retval;
2387 }
2388
2389 static int
2390 debug_to_reported_exec_events_per_exec_call (void)
2391 {
2392 int reported_exec_events;
2393
2394 reported_exec_events = debug_target.to_reported_exec_events_per_exec_call ();
2395
2396 fprintf_unfiltered (gdb_stdlog,
2397 "target_reported_exec_events_per_exec_call () = %d\n",
2398 reported_exec_events);
2399
2400 return reported_exec_events;
2401 }
2402
2403 static int
2404 debug_to_has_exited (int pid, int wait_status, int *exit_status)
2405 {
2406 int has_exited;
2407
2408 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
2409
2410 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
2411 pid, wait_status, *exit_status, has_exited);
2412
2413 return has_exited;
2414 }
2415
2416 static void
2417 debug_to_mourn_inferior (void)
2418 {
2419 debug_target.to_mourn_inferior ();
2420
2421 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2422 }
2423
2424 static int
2425 debug_to_can_run (void)
2426 {
2427 int retval;
2428
2429 retval = debug_target.to_can_run ();
2430
2431 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
2432
2433 return retval;
2434 }
2435
2436 static void
2437 debug_to_notice_signals (ptid_t ptid)
2438 {
2439 debug_target.to_notice_signals (ptid);
2440
2441 fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n",
2442 PIDGET (ptid));
2443 }
2444
2445 static int
2446 debug_to_thread_alive (ptid_t ptid)
2447 {
2448 int retval;
2449
2450 retval = debug_target.to_thread_alive (ptid);
2451
2452 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
2453 PIDGET (ptid), retval);
2454
2455 return retval;
2456 }
2457
2458 static void
2459 debug_to_find_new_threads (void)
2460 {
2461 debug_target.to_find_new_threads ();
2462
2463 fputs_unfiltered ("target_find_new_threads ()\n", gdb_stdlog);
2464 }
2465
2466 static void
2467 debug_to_stop (void)
2468 {
2469 debug_target.to_stop ();
2470
2471 fprintf_unfiltered (gdb_stdlog, "target_stop ()\n");
2472 }
2473
2474 static void
2475 debug_to_rcmd (char *command,
2476 struct ui_file *outbuf)
2477 {
2478 debug_target.to_rcmd (command, outbuf);
2479 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
2480 }
2481
2482 static struct symtab_and_line *
2483 debug_to_enable_exception_callback (enum exception_event_kind kind, int enable)
2484 {
2485 struct symtab_and_line *result;
2486 result = debug_target.to_enable_exception_callback (kind, enable);
2487 fprintf_unfiltered (gdb_stdlog,
2488 "target get_exception_callback_sal (%d, %d)\n",
2489 kind, enable);
2490 return result;
2491 }
2492
2493 static struct exception_event_record *
2494 debug_to_get_current_exception_event (void)
2495 {
2496 struct exception_event_record *result;
2497 result = debug_target.to_get_current_exception_event ();
2498 fprintf_unfiltered (gdb_stdlog, "target get_current_exception_event ()\n");
2499 return result;
2500 }
2501
2502 static char *
2503 debug_to_pid_to_exec_file (int pid)
2504 {
2505 char *exec_file;
2506
2507 exec_file = debug_target.to_pid_to_exec_file (pid);
2508
2509 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
2510 pid, exec_file);
2511
2512 return exec_file;
2513 }
2514
2515 static void
2516 setup_target_debug (void)
2517 {
2518 memcpy (&debug_target, &current_target, sizeof debug_target);
2519
2520 current_target.to_open = debug_to_open;
2521 current_target.to_close = debug_to_close;
2522 current_target.to_attach = debug_to_attach;
2523 current_target.to_post_attach = debug_to_post_attach;
2524 current_target.to_detach = debug_to_detach;
2525 current_target.to_disconnect = debug_to_disconnect;
2526 current_target.to_resume = debug_to_resume;
2527 current_target.to_wait = debug_to_wait;
2528 current_target.to_fetch_registers = debug_to_fetch_registers;
2529 current_target.to_store_registers = debug_to_store_registers;
2530 current_target.to_prepare_to_store = debug_to_prepare_to_store;
2531 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
2532 current_target.to_files_info = debug_to_files_info;
2533 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
2534 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
2535 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
2536 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
2537 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
2538 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
2539 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
2540 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
2541 current_target.to_stopped_data_address = debug_to_stopped_data_address;
2542 current_target.to_region_size_ok_for_hw_watchpoint = debug_to_region_size_ok_for_hw_watchpoint;
2543 current_target.to_terminal_init = debug_to_terminal_init;
2544 current_target.to_terminal_inferior = debug_to_terminal_inferior;
2545 current_target.to_terminal_ours_for_output = debug_to_terminal_ours_for_output;
2546 current_target.to_terminal_ours = debug_to_terminal_ours;
2547 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
2548 current_target.to_terminal_info = debug_to_terminal_info;
2549 current_target.to_kill = debug_to_kill;
2550 current_target.to_load = debug_to_load;
2551 current_target.to_lookup_symbol = debug_to_lookup_symbol;
2552 current_target.to_create_inferior = debug_to_create_inferior;
2553 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
2554 current_target.to_acknowledge_created_inferior = debug_to_acknowledge_created_inferior;
2555 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
2556 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
2557 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
2558 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
2559 current_target.to_follow_fork = debug_to_follow_fork;
2560 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
2561 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
2562 current_target.to_reported_exec_events_per_exec_call = debug_to_reported_exec_events_per_exec_call;
2563 current_target.to_has_exited = debug_to_has_exited;
2564 current_target.to_mourn_inferior = debug_to_mourn_inferior;
2565 current_target.to_can_run = debug_to_can_run;
2566 current_target.to_notice_signals = debug_to_notice_signals;
2567 current_target.to_thread_alive = debug_to_thread_alive;
2568 current_target.to_find_new_threads = debug_to_find_new_threads;
2569 current_target.to_stop = debug_to_stop;
2570 current_target.to_rcmd = debug_to_rcmd;
2571 current_target.to_enable_exception_callback = debug_to_enable_exception_callback;
2572 current_target.to_get_current_exception_event = debug_to_get_current_exception_event;
2573 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
2574
2575 }
2576 \f
2577
2578 static char targ_desc[] =
2579 "Names of targets and files being debugged.\n\
2580 Shows the entire stack of targets currently in use (including the exec-file,\n\
2581 core-file, and process, if any), as well as the symbol file name.";
2582
2583 static void
2584 do_monitor_command (char *cmd,
2585 int from_tty)
2586 {
2587 if ((current_target.to_rcmd
2588 == (void (*) (char *, struct ui_file *)) tcomplain)
2589 || (current_target.to_rcmd == debug_to_rcmd
2590 && (debug_target.to_rcmd
2591 == (void (*) (char *, struct ui_file *)) tcomplain)))
2592 error (_("\"monitor\" command not supported by this target."));
2593 target_rcmd (cmd, gdb_stdtarg);
2594 }
2595
2596 void
2597 initialize_targets (void)
2598 {
2599 init_dummy_target ();
2600 push_target (&dummy_target);
2601
2602 add_info ("target", target_info, targ_desc);
2603 add_info ("files", target_info, targ_desc);
2604
2605 add_setshow_zinteger_cmd ("target", class_maintenance, &targetdebug, _("\
2606 Set target debugging."), _("\
2607 Show target debugging."), _("\
2608 When non-zero, target debugging is enabled. Higher numbers are more\n\
2609 verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
2610 command."),
2611 NULL,
2612 show_targetdebug,
2613 &setdebuglist, &showdebuglist);
2614
2615 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
2616 &trust_readonly, _("\
2617 Set mode for reading from readonly sections."), _("\
2618 Show mode for reading from readonly sections."), _("\
2619 When this mode is on, memory reads from readonly sections (such as .text)\n\
2620 will be read from the object file instead of from the target. This will\n\
2621 result in significant performance improvement for remote targets."),
2622 NULL,
2623 show_trust_readonly,
2624 &setlist, &showlist);
2625
2626 add_com ("monitor", class_obscure, do_monitor_command,
2627 _("Send a command to the remote monitor (remote targets only)."));
2628
2629 target_dcache = dcache_init ();
2630 }