* TODO: Note abstraction layer violation where "ocd reset" command
[deliverable/binutils-gdb.git] / gdb / target.c
1 /* Select target systems and architectures at runtime for GDB.
2 Copyright 1990, 1992-1995, 1998-2000 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 #include "defs.h"
23 #include <errno.h>
24 #include <ctype.h>
25 #include "gdb_string.h"
26 #include "target.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 "gdb_wait.h"
34 #include "dcache.h"
35 #include <signal.h>
36
37 extern int errno;
38
39 static void target_info (char *, int);
40
41 static void cleanup_target (struct target_ops *);
42
43 static void maybe_kill_then_create_inferior (char *, char *, char **);
44
45 static void default_clone_and_follow_inferior (int, int *);
46
47 static void maybe_kill_then_attach (char *, int);
48
49 static void kill_or_be_killed (int);
50
51 static void default_terminal_info (char *, int);
52
53 static int nosymbol (char *, CORE_ADDR *);
54
55 static void tcomplain (void);
56
57 static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
58
59 static int return_zero (void);
60
61 static int return_one (void);
62
63 void target_ignore (void);
64
65 static void target_command (char *, int);
66
67 static struct target_ops *find_default_run_target (char *);
68
69 static void update_current_target (void);
70
71 static void nosupport_runtime (void);
72
73 static void normal_target_post_startup_inferior (int pid);
74
75 /* Transfer LEN bytes between target address MEMADDR and GDB address
76 MYADDR. Returns 0 for success, errno code for failure (which
77 includes partial transfers -- if you want a more useful response to
78 partial transfers, try either target_read_memory_partial or
79 target_write_memory_partial). */
80
81 static int
82 target_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write);
83
84 static void init_dummy_target (void);
85
86 static void debug_to_open (char *, int);
87
88 static void debug_to_close (int);
89
90 static void debug_to_attach (char *, int);
91
92 static void debug_to_detach (char *, int);
93
94 static void debug_to_resume (int, int, enum target_signal);
95
96 static int debug_to_wait (int, struct target_waitstatus *);
97
98 static void debug_to_fetch_registers (int);
99
100 static void debug_to_store_registers (int);
101
102 static void debug_to_prepare_to_store (void);
103
104 static int
105 debug_to_xfer_memory (CORE_ADDR, char *, int, int, struct target_ops *);
106
107 static void debug_to_files_info (struct target_ops *);
108
109 static int debug_to_insert_breakpoint (CORE_ADDR, char *);
110
111 static int debug_to_remove_breakpoint (CORE_ADDR, char *);
112
113 static void debug_to_terminal_init (void);
114
115 static void debug_to_terminal_inferior (void);
116
117 static void debug_to_terminal_ours_for_output (void);
118
119 static void debug_to_terminal_ours (void);
120
121 static void debug_to_terminal_info (char *, int);
122
123 static void debug_to_kill (void);
124
125 static void debug_to_load (char *, int);
126
127 static int debug_to_lookup_symbol (char *, CORE_ADDR *);
128
129 static void debug_to_create_inferior (char *, char *, char **);
130
131 static void debug_to_mourn_inferior (void);
132
133 static int debug_to_can_run (void);
134
135 static void debug_to_notice_signals (int);
136
137 static int debug_to_thread_alive (int);
138
139 static void debug_to_stop (void);
140
141 static int debug_to_query (int /*char */ , char *, char *, int *);
142
143 /* Pointer to array of target architecture structures; the size of the
144 array; the current index into the array; the allocated size of the
145 array. */
146 struct target_ops **target_structs;
147 unsigned target_struct_size;
148 unsigned target_struct_index;
149 unsigned target_struct_allocsize;
150 #define DEFAULT_ALLOCSIZE 10
151
152 /* The initial current target, so that there is always a semi-valid
153 current target. */
154
155 static struct target_ops dummy_target;
156
157 /* Top of target stack. */
158
159 struct target_stack_item *target_stack;
160
161 /* The target structure we are currently using to talk to a process
162 or file or whatever "inferior" we have. */
163
164 struct target_ops current_target;
165
166 /* Command list for target. */
167
168 static struct cmd_list_element *targetlist = NULL;
169
170 /* Nonzero if we are debugging an attached outside process
171 rather than an inferior. */
172
173 int attach_flag;
174
175 /* Non-zero if we want to see trace of target level stuff. */
176
177 static int targetdebug = 0;
178
179 static void setup_target_debug (void);
180
181 DCACHE *target_dcache;
182
183 /* The user just typed 'target' without the name of a target. */
184
185 /* ARGSUSED */
186 static void
187 target_command (char *arg, int from_tty)
188 {
189 fputs_filtered ("Argument required (target name). Try `help target'\n",
190 gdb_stdout);
191 }
192
193 /* Add a possible target architecture to the list. */
194
195 void
196 add_target (struct target_ops *t)
197 {
198 if (!target_structs)
199 {
200 target_struct_allocsize = DEFAULT_ALLOCSIZE;
201 target_structs = (struct target_ops **) xmalloc
202 (target_struct_allocsize * sizeof (*target_structs));
203 }
204 if (target_struct_size >= target_struct_allocsize)
205 {
206 target_struct_allocsize *= 2;
207 target_structs = (struct target_ops **)
208 xrealloc ((char *) target_structs,
209 target_struct_allocsize * sizeof (*target_structs));
210 }
211 target_structs[target_struct_size++] = t;
212 /* cleanup_target (t); */
213
214 if (targetlist == NULL)
215 add_prefix_cmd ("target", class_run, target_command,
216 "Connect to a target machine or process.\n\
217 The first argument is the type or protocol of the target machine.\n\
218 Remaining arguments are interpreted by the target protocol. For more\n\
219 information on the arguments for a particular protocol, type\n\
220 `help target ' followed by the protocol name.",
221 &targetlist, "target ", 0, &cmdlist);
222 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
223 }
224
225 /* Stub functions */
226
227 void
228 target_ignore (void)
229 {
230 }
231
232 void
233 target_load (char *arg, int from_tty)
234 {
235 dcache_invalidate (target_dcache);
236 (*current_target.to_load) (arg, from_tty);
237 }
238
239 /* ARGSUSED */
240 static int
241 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
242 struct target_ops *t)
243 {
244 errno = EIO; /* Can't read/write this location */
245 return 0; /* No bytes handled */
246 }
247
248 static void
249 tcomplain (void)
250 {
251 error ("You can't do that when your target is `%s'",
252 current_target.to_shortname);
253 }
254
255 void
256 noprocess (void)
257 {
258 error ("You can't do that without a process to debug.");
259 }
260
261 /* ARGSUSED */
262 static int
263 nosymbol (char *name, CORE_ADDR *addrp)
264 {
265 return 1; /* Symbol does not exist in target env */
266 }
267
268 /* ARGSUSED */
269 static void
270 nosupport_runtime (void)
271 {
272 if (!inferior_pid)
273 noprocess ();
274 else
275 error ("No run-time support for this");
276 }
277
278
279 /* ARGSUSED */
280 static void
281 default_terminal_info (char *args, int from_tty)
282 {
283 printf_unfiltered ("No saved terminal information.\n");
284 }
285
286 /* This is the default target_create_inferior and target_attach function.
287 If the current target is executing, it asks whether to kill it off.
288 If this function returns without calling error(), it has killed off
289 the target, and the operation should be attempted. */
290
291 static void
292 kill_or_be_killed (int from_tty)
293 {
294 if (target_has_execution)
295 {
296 printf_unfiltered ("You are already running a program:\n");
297 target_files_info ();
298 if (query ("Kill it? "))
299 {
300 target_kill ();
301 if (target_has_execution)
302 error ("Killing the program did not help.");
303 return;
304 }
305 else
306 {
307 error ("Program not killed.");
308 }
309 }
310 tcomplain ();
311 }
312
313 static void
314 maybe_kill_then_attach (char *args, int from_tty)
315 {
316 kill_or_be_killed (from_tty);
317 target_attach (args, from_tty);
318 }
319
320 static void
321 maybe_kill_then_create_inferior (char *exec, char *args, char **env)
322 {
323 kill_or_be_killed (0);
324 target_create_inferior (exec, args, env);
325 }
326
327 static void
328 default_clone_and_follow_inferior (int child_pid, int *followed_child)
329 {
330 target_clone_and_follow_inferior (child_pid, followed_child);
331 }
332
333 /* Clean up a target struct so it no longer has any zero pointers in it.
334 We default entries, at least to stubs that print error messages. */
335
336 static void
337 cleanup_target (struct target_ops *t)
338 {
339
340 #define de_fault(field, value) \
341 if (!t->field) \
342 t->field = value
343
344 de_fault (to_open,
345 (void (*) (char *, int))
346 tcomplain);
347 de_fault (to_close,
348 (void (*) (int))
349 target_ignore);
350 de_fault (to_attach,
351 maybe_kill_then_attach);
352 de_fault (to_post_attach,
353 (void (*) (int))
354 target_ignore);
355 de_fault (to_require_attach,
356 maybe_kill_then_attach);
357 de_fault (to_detach,
358 (void (*) (char *, int))
359 target_ignore);
360 de_fault (to_require_detach,
361 (void (*) (int, char *, int))
362 target_ignore);
363 de_fault (to_resume,
364 (void (*) (int, int, enum target_signal))
365 noprocess);
366 de_fault (to_wait,
367 (int (*) (int, struct target_waitstatus *))
368 noprocess);
369 de_fault (to_post_wait,
370 (void (*) (int, int))
371 target_ignore);
372 de_fault (to_fetch_registers,
373 (void (*) (int))
374 target_ignore);
375 de_fault (to_store_registers,
376 (void (*) (int))
377 noprocess);
378 de_fault (to_prepare_to_store,
379 (void (*) (void))
380 noprocess);
381 de_fault (to_xfer_memory,
382 (int (*) (CORE_ADDR, char *, int, int, struct target_ops *))
383 nomemory);
384 de_fault (to_files_info,
385 (void (*) (struct target_ops *))
386 target_ignore);
387 de_fault (to_insert_breakpoint,
388 memory_insert_breakpoint);
389 de_fault (to_remove_breakpoint,
390 memory_remove_breakpoint);
391 de_fault (to_terminal_init,
392 (void (*) (void))
393 target_ignore);
394 de_fault (to_terminal_inferior,
395 (void (*) (void))
396 target_ignore);
397 de_fault (to_terminal_ours_for_output,
398 (void (*) (void))
399 target_ignore);
400 de_fault (to_terminal_ours,
401 (void (*) (void))
402 target_ignore);
403 de_fault (to_terminal_info,
404 default_terminal_info);
405 de_fault (to_kill,
406 (void (*) (void))
407 noprocess);
408 de_fault (to_load,
409 (void (*) (char *, int))
410 tcomplain);
411 de_fault (to_lookup_symbol,
412 (int (*) (char *, CORE_ADDR *))
413 nosymbol);
414 de_fault (to_create_inferior,
415 maybe_kill_then_create_inferior);
416 de_fault (to_post_startup_inferior,
417 (void (*) (int))
418 target_ignore);
419 de_fault (to_acknowledge_created_inferior,
420 (void (*) (int))
421 target_ignore);
422 de_fault (to_clone_and_follow_inferior,
423 default_clone_and_follow_inferior);
424 de_fault (to_post_follow_inferior_by_clone,
425 (void (*) (void))
426 target_ignore);
427 de_fault (to_insert_fork_catchpoint,
428 (int (*) (int))
429 tcomplain);
430 de_fault (to_remove_fork_catchpoint,
431 (int (*) (int))
432 tcomplain);
433 de_fault (to_insert_vfork_catchpoint,
434 (int (*) (int))
435 tcomplain);
436 de_fault (to_remove_vfork_catchpoint,
437 (int (*) (int))
438 tcomplain);
439 de_fault (to_has_forked,
440 (int (*) (int, int *))
441 return_zero);
442 de_fault (to_has_vforked,
443 (int (*) (int, int *))
444 return_zero);
445 de_fault (to_can_follow_vfork_prior_to_exec,
446 (int (*) (void))
447 return_zero);
448 de_fault (to_post_follow_vfork,
449 (void (*) (int, int, int, int))
450 target_ignore);
451 de_fault (to_insert_exec_catchpoint,
452 (int (*) (int))
453 tcomplain);
454 de_fault (to_remove_exec_catchpoint,
455 (int (*) (int))
456 tcomplain);
457 de_fault (to_has_execd,
458 (int (*) (int, char **))
459 return_zero);
460 de_fault (to_reported_exec_events_per_exec_call,
461 (int (*) (void))
462 return_one);
463 de_fault (to_has_syscall_event,
464 (int (*) (int, enum target_waitkind *, int *))
465 return_zero);
466 de_fault (to_has_exited,
467 (int (*) (int, int, int *))
468 return_zero);
469 de_fault (to_mourn_inferior,
470 (void (*) (void))
471 noprocess);
472 de_fault (to_can_run,
473 return_zero);
474 de_fault (to_notice_signals,
475 (void (*) (int))
476 target_ignore);
477 de_fault (to_thread_alive,
478 (int (*) (int))
479 return_zero);
480 de_fault (to_find_new_threads,
481 (void (*) (void))
482 target_ignore);
483 de_fault (to_extra_thread_info,
484 (char *(*) (struct thread_info *))
485 return_zero);
486 de_fault (to_stop,
487 (void (*) (void))
488 target_ignore);
489 de_fault (to_query,
490 (int (*) (int, char *, char *, int *))
491 return_zero);
492 de_fault (to_rcmd,
493 (void (*) (char *, struct ui_file *))
494 tcomplain);
495 de_fault (to_enable_exception_callback,
496 (struct symtab_and_line * (*) (enum exception_event_kind, int))
497 nosupport_runtime);
498 de_fault (to_get_current_exception_event,
499 (struct exception_event_record * (*) (void))
500 nosupport_runtime);
501 de_fault (to_pid_to_exec_file,
502 (char *(*) (int))
503 return_zero);
504 de_fault (to_core_file_to_sym_file,
505 (char *(*) (char *))
506 return_zero);
507 de_fault (to_can_async_p,
508 (int (*) (void))
509 return_zero);
510 de_fault (to_is_async_p,
511 (int (*) (void))
512 return_zero);
513 de_fault (to_async,
514 (void (*) (void (*) (enum inferior_event_type, void*), void*))
515 tcomplain);
516 #undef de_fault
517 }
518
519 /* Go through the target stack from top to bottom, copying over zero entries in
520 current_target. In effect, we are doing class inheritance through the
521 pushed target vectors. */
522
523 static void
524 update_current_target (void)
525 {
526 struct target_stack_item *item;
527 struct target_ops *t;
528
529 /* First, reset current_target */
530 memset (&current_target, 0, sizeof current_target);
531
532 for (item = target_stack; item; item = item->next)
533 {
534 t = item->target_ops;
535
536 #define INHERIT(FIELD, TARGET) \
537 if (!current_target.FIELD) \
538 current_target.FIELD = TARGET->FIELD
539
540 INHERIT (to_shortname, t);
541 INHERIT (to_longname, t);
542 INHERIT (to_doc, t);
543 INHERIT (to_open, t);
544 INHERIT (to_close, t);
545 INHERIT (to_attach, t);
546 INHERIT (to_post_attach, t);
547 INHERIT (to_require_attach, t);
548 INHERIT (to_detach, t);
549 INHERIT (to_require_detach, t);
550 INHERIT (to_resume, t);
551 INHERIT (to_wait, t);
552 INHERIT (to_post_wait, t);
553 INHERIT (to_fetch_registers, t);
554 INHERIT (to_store_registers, t);
555 INHERIT (to_prepare_to_store, t);
556 INHERIT (to_xfer_memory, t);
557 INHERIT (to_files_info, t);
558 INHERIT (to_insert_breakpoint, t);
559 INHERIT (to_remove_breakpoint, t);
560 INHERIT (to_terminal_init, t);
561 INHERIT (to_terminal_inferior, t);
562 INHERIT (to_terminal_ours_for_output, t);
563 INHERIT (to_terminal_ours, t);
564 INHERIT (to_terminal_info, t);
565 INHERIT (to_kill, t);
566 INHERIT (to_load, t);
567 INHERIT (to_lookup_symbol, t);
568 INHERIT (to_create_inferior, t);
569 INHERIT (to_post_startup_inferior, t);
570 INHERIT (to_acknowledge_created_inferior, t);
571 INHERIT (to_clone_and_follow_inferior, t);
572 INHERIT (to_post_follow_inferior_by_clone, t);
573 INHERIT (to_insert_fork_catchpoint, t);
574 INHERIT (to_remove_fork_catchpoint, t);
575 INHERIT (to_insert_vfork_catchpoint, t);
576 INHERIT (to_remove_vfork_catchpoint, t);
577 INHERIT (to_has_forked, t);
578 INHERIT (to_has_vforked, t);
579 INHERIT (to_can_follow_vfork_prior_to_exec, t);
580 INHERIT (to_post_follow_vfork, t);
581 INHERIT (to_insert_exec_catchpoint, t);
582 INHERIT (to_remove_exec_catchpoint, t);
583 INHERIT (to_has_execd, t);
584 INHERIT (to_reported_exec_events_per_exec_call, t);
585 INHERIT (to_has_syscall_event, t);
586 INHERIT (to_has_exited, t);
587 INHERIT (to_mourn_inferior, t);
588 INHERIT (to_can_run, t);
589 INHERIT (to_notice_signals, t);
590 INHERIT (to_thread_alive, t);
591 INHERIT (to_find_new_threads, t);
592 INHERIT (to_pid_to_str, t);
593 INHERIT (to_extra_thread_info, t);
594 INHERIT (to_stop, t);
595 INHERIT (to_query, t);
596 INHERIT (to_rcmd, t);
597 INHERIT (to_enable_exception_callback, t);
598 INHERIT (to_get_current_exception_event, t);
599 INHERIT (to_pid_to_exec_file, t);
600 INHERIT (to_core_file_to_sym_file, t);
601 INHERIT (to_stratum, t);
602 INHERIT (DONT_USE, t);
603 INHERIT (to_has_all_memory, t);
604 INHERIT (to_has_memory, t);
605 INHERIT (to_has_stack, t);
606 INHERIT (to_has_registers, t);
607 INHERIT (to_has_execution, t);
608 INHERIT (to_has_thread_control, t);
609 INHERIT (to_sections, t);
610 INHERIT (to_sections_end, t);
611 INHERIT (to_can_async_p, t);
612 INHERIT (to_is_async_p, t);
613 INHERIT (to_async, t);
614 INHERIT (to_async_mask_value, t);
615 INHERIT (to_magic, t);
616
617 #undef INHERIT
618 }
619 }
620
621 /* Push a new target type into the stack of the existing target accessors,
622 possibly superseding some of the existing accessors.
623
624 Result is zero if the pushed target ended up on top of the stack,
625 nonzero if at least one target is on top of it.
626
627 Rather than allow an empty stack, we always have the dummy target at
628 the bottom stratum, so we can call the function vectors without
629 checking them. */
630
631 int
632 push_target (struct target_ops *t)
633 {
634 struct target_stack_item *cur, *prev, *tmp;
635
636 /* Check magic number. If wrong, it probably means someone changed
637 the struct definition, but not all the places that initialize one. */
638 if (t->to_magic != OPS_MAGIC)
639 {
640 fprintf_unfiltered (gdb_stderr,
641 "Magic number of %s target struct wrong\n",
642 t->to_shortname);
643 abort ();
644 }
645
646 /* Find the proper stratum to install this target in. */
647
648 for (prev = NULL, cur = target_stack; cur; prev = cur, cur = cur->next)
649 {
650 if ((int) (t->to_stratum) >= (int) (cur->target_ops->to_stratum))
651 break;
652 }
653
654 /* If there's already targets at this stratum, remove them. */
655
656 if (cur)
657 while (t->to_stratum == cur->target_ops->to_stratum)
658 {
659 /* There's already something on this stratum. Close it off. */
660 if (cur->target_ops->to_close)
661 (cur->target_ops->to_close) (0);
662 if (prev)
663 prev->next = cur->next; /* Unchain old target_ops */
664 else
665 target_stack = cur->next; /* Unchain first on list */
666 tmp = cur->next;
667 free (cur);
668 cur = tmp;
669 }
670
671 /* We have removed all targets in our stratum, now add the new one. */
672
673 tmp = (struct target_stack_item *)
674 xmalloc (sizeof (struct target_stack_item));
675 tmp->next = cur;
676 tmp->target_ops = t;
677
678 if (prev)
679 prev->next = tmp;
680 else
681 target_stack = tmp;
682
683 update_current_target ();
684
685 cleanup_target (&current_target); /* Fill in the gaps */
686
687 if (targetdebug)
688 setup_target_debug ();
689
690 return prev != 0;
691 }
692
693 /* Remove a target_ops vector from the stack, wherever it may be.
694 Return how many times it was removed (0 or 1). */
695
696 int
697 unpush_target (struct target_ops *t)
698 {
699 struct target_stack_item *cur, *prev;
700
701 if (t->to_close)
702 t->to_close (0); /* Let it clean up */
703
704 /* Look for the specified target. Note that we assume that a target
705 can only occur once in the target stack. */
706
707 for (cur = target_stack, prev = NULL; cur; prev = cur, cur = cur->next)
708 if (cur->target_ops == t)
709 break;
710
711 if (!cur)
712 return 0; /* Didn't find target_ops, quit now */
713
714 /* Unchain the target */
715
716 if (!prev)
717 target_stack = cur->next;
718 else
719 prev->next = cur->next;
720
721 free (cur); /* Release the target_stack_item */
722
723 update_current_target ();
724 cleanup_target (&current_target);
725
726 return 1;
727 }
728
729 void
730 pop_target (void)
731 {
732 (current_target.to_close) (0); /* Let it clean up */
733 if (unpush_target (target_stack->target_ops) == 1)
734 return;
735
736 fprintf_unfiltered (gdb_stderr,
737 "pop_target couldn't find target %s\n",
738 current_target.to_shortname);
739 abort ();
740 }
741
742 #undef MIN
743 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
744
745 /* target_read_string -- read a null terminated string, up to LEN bytes,
746 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
747 Set *STRING to a pointer to malloc'd memory containing the data; the caller
748 is responsible for freeing it. Return the number of bytes successfully
749 read. */
750
751 int
752 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
753 {
754 int tlen, origlen, offset, i;
755 char buf[4];
756 int errcode = 0;
757 char *buffer;
758 int buffer_allocated;
759 char *bufptr;
760 unsigned int nbytes_read = 0;
761
762 /* Small for testing. */
763 buffer_allocated = 4;
764 buffer = xmalloc (buffer_allocated);
765 bufptr = buffer;
766
767 origlen = len;
768
769 while (len > 0)
770 {
771 tlen = MIN (len, 4 - (memaddr & 3));
772 offset = memaddr & 3;
773
774 errcode = target_xfer_memory (memaddr & ~3, buf, 4, 0);
775 if (errcode != 0)
776 {
777 /* The transfer request might have crossed the boundary to an
778 unallocated region of memory. Retry the transfer, requesting
779 a single byte. */
780 tlen = 1;
781 offset = 0;
782 errcode = target_xfer_memory (memaddr, buf, 1, 0);
783 if (errcode != 0)
784 goto done;
785 }
786
787 if (bufptr - buffer + tlen > buffer_allocated)
788 {
789 unsigned int bytes;
790 bytes = bufptr - buffer;
791 buffer_allocated *= 2;
792 buffer = xrealloc (buffer, buffer_allocated);
793 bufptr = buffer + bytes;
794 }
795
796 for (i = 0; i < tlen; i++)
797 {
798 *bufptr++ = buf[i + offset];
799 if (buf[i + offset] == '\000')
800 {
801 nbytes_read += i + 1;
802 goto done;
803 }
804 }
805
806 memaddr += tlen;
807 len -= tlen;
808 nbytes_read += tlen;
809 }
810 done:
811 if (errnop != NULL)
812 *errnop = errcode;
813 if (string != NULL)
814 *string = buffer;
815 return nbytes_read;
816 }
817
818 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
819 GDB's memory at MYADDR. Returns either 0 for success or an errno value
820 if any error occurs.
821
822 If an error occurs, no guarantee is made about the contents of the data at
823 MYADDR. In particular, the caller should not depend upon partial reads
824 filling the buffer with good data. There is no way for the caller to know
825 how much good data might have been transfered anyway. Callers that can
826 deal with partial reads should call target_read_memory_partial. */
827
828 int
829 target_read_memory (CORE_ADDR memaddr, char *myaddr, int len)
830 {
831 return target_xfer_memory (memaddr, myaddr, len, 0);
832 }
833
834 int
835 target_write_memory (CORE_ADDR memaddr, char *myaddr, int len)
836 {
837 return target_xfer_memory (memaddr, myaddr, len, 1);
838 }
839
840 /* Move memory to or from the targets. Iterate until all of it has
841 been moved, if necessary. The top target gets priority; anything
842 it doesn't want, is offered to the next one down, etc. Note the
843 business with curlen: if an early target says "no, but I have a
844 boundary overlapping this xfer" then we shorten what we offer to
845 the subsequent targets so the early guy will get a chance at the
846 tail before the subsequent ones do.
847
848 Result is 0 or errno value. */
849
850 int
851 do_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write)
852 {
853 int res;
854 int done = 0;
855 struct target_ops *t;
856 struct target_stack_item *item;
857
858 /* Zero length requests are ok and require no work. */
859 if (len == 0)
860 return 0;
861
862 /* to_xfer_memory is not guaranteed to set errno, even when it returns
863 0. */
864 errno = 0;
865
866 /* The quick case is that the top target does it all. */
867 res = current_target.to_xfer_memory
868 (memaddr, myaddr, len, write, &current_target);
869 if (res == len)
870 return len;
871
872 if (res > 0)
873 goto bump;
874 /* If res <= 0 then we call it again in the loop. Ah well. */
875
876 while (len > 0)
877 {
878 for (item = target_stack; item; item = item->next)
879 {
880 t = item->target_ops;
881 if (!t->to_has_memory)
882 continue;
883
884 res = t->to_xfer_memory (memaddr, myaddr, len, write, t);
885 if (res > 0)
886 break; /* Handled all or part of xfer */
887 if (t->to_has_all_memory)
888 break;
889 }
890
891 if (res <= 0)
892 {
893 return -1;
894 }
895 bump:
896 done += res;
897 memaddr += res;
898 myaddr += res;
899 len -= res;
900 }
901
902 return done;
903 }
904
905 static int
906 target_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write)
907 {
908 int res;
909
910 /* Zero length requests are ok and require no work. */
911 if (len == 0)
912 {
913 return 0;
914 }
915
916 while (len > 0)
917 {
918 res = dcache_xfer_memory(target_dcache, memaddr, myaddr, len, write);
919 if (res <= 0)
920 {
921 /* If this address is for nonexistent memory,
922 read zeros if reading, or do nothing if writing. Return error. */
923 if (!write)
924 memset (myaddr, 0, len);
925 if (errno == 0)
926 return EIO;
927 else
928 return errno;
929 }
930
931 memaddr += res;
932 myaddr += res;
933 len -= res;
934 }
935
936 return 0; /* We managed to cover it all somehow. */
937 }
938
939
940 /* Perform a partial memory transfer. */
941
942 static int
943 target_xfer_memory_partial (CORE_ADDR memaddr, char *myaddr, int len,
944 int write_p, int *err)
945 {
946 int res;
947 int err_res;
948 int len_res;
949 struct target_ops *t;
950 struct target_stack_item *item;
951
952 /* Zero length requests are ok and require no work. */
953 if (len == 0)
954 {
955 *err = 0;
956 return 0;
957 }
958
959 res = dcache_xfer_memory (target_dcache, memaddr, myaddr, len, write_p);
960 if (res <= 0)
961 {
962 if (errno != 0)
963 *err = errno;
964 else
965 *err = EIO;
966
967 return -1;
968 }
969
970 *err = 0;
971 return 0;
972 }
973
974 int
975 target_read_memory_partial (CORE_ADDR memaddr, char *buf, int len, int *err)
976 {
977 return target_xfer_memory_partial (memaddr, buf, len, 0, err);
978 }
979
980 int
981 target_write_memory_partial (CORE_ADDR memaddr, char *buf, int len, int *err)
982 {
983 return target_xfer_memory_partial (memaddr, buf, len, 1, err);
984 }
985
986 /* ARGSUSED */
987 static void
988 target_info (char *args, int from_tty)
989 {
990 struct target_ops *t;
991 struct target_stack_item *item;
992 int has_all_mem = 0;
993
994 if (symfile_objfile != NULL)
995 printf_unfiltered ("Symbols from \"%s\".\n", symfile_objfile->name);
996
997 #ifdef FILES_INFO_HOOK
998 if (FILES_INFO_HOOK ())
999 return;
1000 #endif
1001
1002 for (item = target_stack; item; item = item->next)
1003 {
1004 t = item->target_ops;
1005
1006 if (!t->to_has_memory)
1007 continue;
1008
1009 if ((int) (t->to_stratum) <= (int) dummy_stratum)
1010 continue;
1011 if (has_all_mem)
1012 printf_unfiltered ("\tWhile running this, GDB does not access memory from...\n");
1013 printf_unfiltered ("%s:\n", t->to_longname);
1014 (t->to_files_info) (t);
1015 has_all_mem = t->to_has_all_memory;
1016 }
1017 }
1018
1019 /* This is to be called by the open routine before it does
1020 anything. */
1021
1022 void
1023 target_preopen (int from_tty)
1024 {
1025 dont_repeat ();
1026
1027 if (target_has_execution)
1028 {
1029 if (!from_tty
1030 || query ("A program is being debugged already. Kill it? "))
1031 target_kill ();
1032 else
1033 error ("Program not killed.");
1034 }
1035
1036 /* Calling target_kill may remove the target from the stack. But if
1037 it doesn't (which seems like a win for UDI), remove it now. */
1038
1039 if (target_has_execution)
1040 pop_target ();
1041 }
1042
1043 /* Detach a target after doing deferred register stores. */
1044
1045 void
1046 target_detach (char *args, int from_tty)
1047 {
1048 /* Handle any optimized stores to the inferior. */
1049 #ifdef DO_DEFERRED_STORES
1050 DO_DEFERRED_STORES;
1051 #endif
1052 (current_target.to_detach) (args, from_tty);
1053 }
1054
1055 void
1056 target_link (char *modname, CORE_ADDR *t_reloc)
1057 {
1058 if (STREQ (current_target.to_shortname, "rombug"))
1059 {
1060 (current_target.to_lookup_symbol) (modname, t_reloc);
1061 if (*t_reloc == 0)
1062 error ("Unable to link to %s and get relocation in rombug", modname);
1063 }
1064 else
1065 *t_reloc = (CORE_ADDR) -1;
1066 }
1067
1068 int
1069 target_async_mask (int mask)
1070 {
1071 int saved_async_masked_status = target_async_mask_value;
1072 target_async_mask_value = mask;
1073 return saved_async_masked_status;
1074 }
1075
1076 /* Look through the list of possible targets for a target that can
1077 execute a run or attach command without any other data. This is
1078 used to locate the default process stratum.
1079
1080 Result is always valid (error() is called for errors). */
1081
1082 static struct target_ops *
1083 find_default_run_target (char *do_mesg)
1084 {
1085 struct target_ops **t;
1086 struct target_ops *runable = NULL;
1087 int count;
1088
1089 count = 0;
1090
1091 for (t = target_structs; t < target_structs + target_struct_size;
1092 ++t)
1093 {
1094 if ((*t)->to_can_run && target_can_run (*t))
1095 {
1096 runable = *t;
1097 ++count;
1098 }
1099 }
1100
1101 if (count != 1)
1102 error ("Don't know how to %s. Try \"help target\".", do_mesg);
1103
1104 return runable;
1105 }
1106
1107 void
1108 find_default_attach (char *args, int from_tty)
1109 {
1110 struct target_ops *t;
1111
1112 t = find_default_run_target ("attach");
1113 (t->to_attach) (args, from_tty);
1114 return;
1115 }
1116
1117 void
1118 find_default_require_attach (char *args, int from_tty)
1119 {
1120 struct target_ops *t;
1121
1122 t = find_default_run_target ("require_attach");
1123 (t->to_require_attach) (args, from_tty);
1124 return;
1125 }
1126
1127 void
1128 find_default_require_detach (int pid, char *args, int from_tty)
1129 {
1130 struct target_ops *t;
1131
1132 t = find_default_run_target ("require_detach");
1133 (t->to_require_detach) (pid, args, from_tty);
1134 return;
1135 }
1136
1137 void
1138 find_default_create_inferior (char *exec_file, char *allargs, char **env)
1139 {
1140 struct target_ops *t;
1141
1142 t = find_default_run_target ("run");
1143 (t->to_create_inferior) (exec_file, allargs, env);
1144 return;
1145 }
1146
1147 void
1148 find_default_clone_and_follow_inferior (int child_pid, int *followed_child)
1149 {
1150 struct target_ops *t;
1151
1152 t = find_default_run_target ("run");
1153 (t->to_clone_and_follow_inferior) (child_pid, followed_child);
1154 return;
1155 }
1156
1157 static int
1158 return_zero (void)
1159 {
1160 return 0;
1161 }
1162
1163 static int
1164 return_one (void)
1165 {
1166 return 1;
1167 }
1168
1169 /*
1170 * Resize the to_sections pointer. Also make sure that anyone that
1171 * was holding on to an old value of it gets updated.
1172 * Returns the old size.
1173 */
1174
1175 int
1176 target_resize_to_sections (struct target_ops *target, int num_added)
1177 {
1178 struct target_ops **t;
1179 struct section_table *old_value;
1180 int old_count;
1181
1182 old_value = target->to_sections;
1183
1184 if (target->to_sections)
1185 {
1186 old_count = target->to_sections_end - target->to_sections;
1187 target->to_sections = (struct section_table *)
1188 xrealloc ((char *) target->to_sections,
1189 (sizeof (struct section_table)) * (num_added + old_count));
1190 }
1191 else
1192 {
1193 old_count = 0;
1194 target->to_sections = (struct section_table *)
1195 xmalloc ((sizeof (struct section_table)) * num_added);
1196 }
1197 target->to_sections_end = target->to_sections + (num_added + old_count);
1198
1199 /* Check to see if anyone else was pointing to this structure.
1200 If old_value was null, then no one was. */
1201
1202 if (old_value)
1203 {
1204 for (t = target_structs; t < target_structs + target_struct_size;
1205 ++t)
1206 {
1207 if ((*t)->to_sections == old_value)
1208 {
1209 (*t)->to_sections = target->to_sections;
1210 (*t)->to_sections_end = target->to_sections_end;
1211 }
1212 }
1213 }
1214
1215 return old_count;
1216
1217 }
1218
1219 /* Remove all target sections taken from ABFD.
1220
1221 Scan the current target stack for targets whose section tables
1222 refer to sections from BFD, and remove those sections. We use this
1223 when we notice that the inferior has unloaded a shared object, for
1224 example. */
1225 void
1226 remove_target_sections (bfd *abfd)
1227 {
1228 struct target_ops **t;
1229
1230 for (t = target_structs; t < target_structs + target_struct_size; t++)
1231 {
1232 struct section_table *src, *dest;
1233
1234 dest = (*t)->to_sections;
1235 for (src = (*t)->to_sections; src < (*t)->to_sections_end; src++)
1236 if (src->bfd != abfd)
1237 {
1238 /* Keep this section. */
1239 if (dest < src) *dest = *src;
1240 dest++;
1241 }
1242
1243 /* If we've dropped any sections, resize the section table. */
1244 if (dest < src)
1245 target_resize_to_sections (*t, dest - src);
1246 }
1247 }
1248
1249
1250
1251
1252 /* Find a single runnable target in the stack and return it. If for
1253 some reason there is more than one, return NULL. */
1254
1255 struct target_ops *
1256 find_run_target (void)
1257 {
1258 struct target_ops **t;
1259 struct target_ops *runable = NULL;
1260 int count;
1261
1262 count = 0;
1263
1264 for (t = target_structs; t < target_structs + target_struct_size; ++t)
1265 {
1266 if ((*t)->to_can_run && target_can_run (*t))
1267 {
1268 runable = *t;
1269 ++count;
1270 }
1271 }
1272
1273 return (count == 1 ? runable : NULL);
1274 }
1275
1276 /* Find a single core_stratum target in the list of targets and return it.
1277 If for some reason there is more than one, return NULL. */
1278
1279 struct target_ops *
1280 find_core_target (void)
1281 {
1282 struct target_ops **t;
1283 struct target_ops *runable = NULL;
1284 int count;
1285
1286 count = 0;
1287
1288 for (t = target_structs; t < target_structs + target_struct_size;
1289 ++t)
1290 {
1291 if ((*t)->to_stratum == core_stratum)
1292 {
1293 runable = *t;
1294 ++count;
1295 }
1296 }
1297
1298 return (count == 1 ? runable : NULL);
1299 }
1300
1301 /*
1302 * Find the next target down the stack from the specified target.
1303 */
1304
1305 struct target_ops *
1306 find_target_beneath (struct target_ops *t)
1307 {
1308 struct target_stack_item *cur;
1309
1310 for (cur = target_stack; cur; cur = cur->next)
1311 if (cur->target_ops == t)
1312 break;
1313
1314 if (cur == NULL || cur->next == NULL)
1315 return NULL;
1316 else
1317 return cur->next->target_ops;
1318 }
1319
1320 \f
1321 /* The inferior process has died. Long live the inferior! */
1322
1323 void
1324 generic_mourn_inferior (void)
1325 {
1326 extern int show_breakpoint_hit_counts;
1327
1328 inferior_pid = 0;
1329 attach_flag = 0;
1330 breakpoint_init_inferior (inf_exited);
1331 registers_changed ();
1332
1333 #ifdef CLEAR_DEFERRED_STORES
1334 /* Delete any pending stores to the inferior... */
1335 CLEAR_DEFERRED_STORES;
1336 #endif
1337
1338 reopen_exec_file ();
1339 reinit_frame_cache ();
1340
1341 /* It is confusing to the user for ignore counts to stick around
1342 from previous runs of the inferior. So clear them. */
1343 /* However, it is more confusing for the ignore counts to disappear when
1344 using hit counts. So don't clear them if we're counting hits. */
1345 if (!show_breakpoint_hit_counts)
1346 breakpoint_clear_ignore_counts ();
1347
1348 if (detach_hook)
1349 detach_hook ();
1350 }
1351 \f
1352 /* This table must match in order and size the signals in enum target_signal
1353 in target.h. */
1354 /* *INDENT-OFF* */
1355 static struct {
1356 char *name;
1357 char *string;
1358 } signals [] =
1359 {
1360 {"0", "Signal 0"},
1361 {"SIGHUP", "Hangup"},
1362 {"SIGINT", "Interrupt"},
1363 {"SIGQUIT", "Quit"},
1364 {"SIGILL", "Illegal instruction"},
1365 {"SIGTRAP", "Trace/breakpoint trap"},
1366 {"SIGABRT", "Aborted"},
1367 {"SIGEMT", "Emulation trap"},
1368 {"SIGFPE", "Arithmetic exception"},
1369 {"SIGKILL", "Killed"},
1370 {"SIGBUS", "Bus error"},
1371 {"SIGSEGV", "Segmentation fault"},
1372 {"SIGSYS", "Bad system call"},
1373 {"SIGPIPE", "Broken pipe"},
1374 {"SIGALRM", "Alarm clock"},
1375 {"SIGTERM", "Terminated"},
1376 {"SIGURG", "Urgent I/O condition"},
1377 {"SIGSTOP", "Stopped (signal)"},
1378 {"SIGTSTP", "Stopped (user)"},
1379 {"SIGCONT", "Continued"},
1380 {"SIGCHLD", "Child status changed"},
1381 {"SIGTTIN", "Stopped (tty input)"},
1382 {"SIGTTOU", "Stopped (tty output)"},
1383 {"SIGIO", "I/O possible"},
1384 {"SIGXCPU", "CPU time limit exceeded"},
1385 {"SIGXFSZ", "File size limit exceeded"},
1386 {"SIGVTALRM", "Virtual timer expired"},
1387 {"SIGPROF", "Profiling timer expired"},
1388 {"SIGWINCH", "Window size changed"},
1389 {"SIGLOST", "Resource lost"},
1390 {"SIGUSR1", "User defined signal 1"},
1391 {"SIGUSR2", "User defined signal 2"},
1392 {"SIGPWR", "Power fail/restart"},
1393 {"SIGPOLL", "Pollable event occurred"},
1394 {"SIGWIND", "SIGWIND"},
1395 {"SIGPHONE", "SIGPHONE"},
1396 {"SIGWAITING", "Process's LWPs are blocked"},
1397 {"SIGLWP", "Signal LWP"},
1398 {"SIGDANGER", "Swap space dangerously low"},
1399 {"SIGGRANT", "Monitor mode granted"},
1400 {"SIGRETRACT", "Need to relinquish monitor mode"},
1401 {"SIGMSG", "Monitor mode data available"},
1402 {"SIGSOUND", "Sound completed"},
1403 {"SIGSAK", "Secure attention"},
1404 {"SIGPRIO", "SIGPRIO"},
1405 {"SIG33", "Real-time event 33"},
1406 {"SIG34", "Real-time event 34"},
1407 {"SIG35", "Real-time event 35"},
1408 {"SIG36", "Real-time event 36"},
1409 {"SIG37", "Real-time event 37"},
1410 {"SIG38", "Real-time event 38"},
1411 {"SIG39", "Real-time event 39"},
1412 {"SIG40", "Real-time event 40"},
1413 {"SIG41", "Real-time event 41"},
1414 {"SIG42", "Real-time event 42"},
1415 {"SIG43", "Real-time event 43"},
1416 {"SIG44", "Real-time event 44"},
1417 {"SIG45", "Real-time event 45"},
1418 {"SIG46", "Real-time event 46"},
1419 {"SIG47", "Real-time event 47"},
1420 {"SIG48", "Real-time event 48"},
1421 {"SIG49", "Real-time event 49"},
1422 {"SIG50", "Real-time event 50"},
1423 {"SIG51", "Real-time event 51"},
1424 {"SIG52", "Real-time event 52"},
1425 {"SIG53", "Real-time event 53"},
1426 {"SIG54", "Real-time event 54"},
1427 {"SIG55", "Real-time event 55"},
1428 {"SIG56", "Real-time event 56"},
1429 {"SIG57", "Real-time event 57"},
1430 {"SIG58", "Real-time event 58"},
1431 {"SIG59", "Real-time event 59"},
1432 {"SIG60", "Real-time event 60"},
1433 {"SIG61", "Real-time event 61"},
1434 {"SIG62", "Real-time event 62"},
1435 {"SIG63", "Real-time event 63"},
1436 {"SIGCANCEL", "LWP internal signal"},
1437 {"SIG32", "Real-time event 32"},
1438
1439 #if defined(MACH) || defined(__MACH__)
1440 /* Mach exceptions */
1441 {"EXC_BAD_ACCESS", "Could not access memory"},
1442 {"EXC_BAD_INSTRUCTION", "Illegal instruction/operand"},
1443 {"EXC_ARITHMETIC", "Arithmetic exception"},
1444 {"EXC_EMULATION", "Emulation instruction"},
1445 {"EXC_SOFTWARE", "Software generated exception"},
1446 {"EXC_BREAKPOINT", "Breakpoint"},
1447 #endif
1448 {"SIGINFO", "Information request"},
1449
1450 {NULL, "Unknown signal"},
1451 {NULL, "Internal error: printing TARGET_SIGNAL_DEFAULT"},
1452
1453 /* Last entry, used to check whether the table is the right size. */
1454 {NULL, "TARGET_SIGNAL_MAGIC"}
1455 };
1456 /* *INDENT-ON* */
1457
1458
1459
1460 /* Return the string for a signal. */
1461 char *
1462 target_signal_to_string (enum target_signal sig)
1463 {
1464 if ((sig >= TARGET_SIGNAL_FIRST) && (sig <= TARGET_SIGNAL_LAST))
1465 return signals[sig].string;
1466 else
1467 return signals[TARGET_SIGNAL_UNKNOWN].string;
1468 }
1469
1470 /* Return the name for a signal. */
1471 char *
1472 target_signal_to_name (enum target_signal sig)
1473 {
1474 if (sig == TARGET_SIGNAL_UNKNOWN)
1475 /* I think the code which prints this will always print it along with
1476 the string, so no need to be verbose. */
1477 return "?";
1478 return signals[sig].name;
1479 }
1480
1481 /* Given a name, return its signal. */
1482 enum target_signal
1483 target_signal_from_name (char *name)
1484 {
1485 enum target_signal sig;
1486
1487 /* It's possible we also should allow "SIGCLD" as well as "SIGCHLD"
1488 for TARGET_SIGNAL_SIGCHLD. SIGIOT, on the other hand, is more
1489 questionable; seems like by now people should call it SIGABRT
1490 instead. */
1491
1492 /* This ugly cast brought to you by the native VAX compiler. */
1493 for (sig = TARGET_SIGNAL_HUP;
1494 signals[sig].name != NULL;
1495 sig = (enum target_signal) ((int) sig + 1))
1496 if (STREQ (name, signals[sig].name))
1497 return sig;
1498 return TARGET_SIGNAL_UNKNOWN;
1499 }
1500 \f
1501 /* The following functions are to help certain targets deal
1502 with the signal/waitstatus stuff. They could just as well be in
1503 a file called native-utils.c or unixwaitstatus-utils.c or whatever. */
1504
1505 /* Convert host signal to our signals. */
1506 enum target_signal
1507 target_signal_from_host (int hostsig)
1508 {
1509 /* A switch statement would make sense but would require special kludges
1510 to deal with the cases where more than one signal has the same number. */
1511
1512 if (hostsig == 0)
1513 return TARGET_SIGNAL_0;
1514
1515 #if defined (SIGHUP)
1516 if (hostsig == SIGHUP)
1517 return TARGET_SIGNAL_HUP;
1518 #endif
1519 #if defined (SIGINT)
1520 if (hostsig == SIGINT)
1521 return TARGET_SIGNAL_INT;
1522 #endif
1523 #if defined (SIGQUIT)
1524 if (hostsig == SIGQUIT)
1525 return TARGET_SIGNAL_QUIT;
1526 #endif
1527 #if defined (SIGILL)
1528 if (hostsig == SIGILL)
1529 return TARGET_SIGNAL_ILL;
1530 #endif
1531 #if defined (SIGTRAP)
1532 if (hostsig == SIGTRAP)
1533 return TARGET_SIGNAL_TRAP;
1534 #endif
1535 #if defined (SIGABRT)
1536 if (hostsig == SIGABRT)
1537 return TARGET_SIGNAL_ABRT;
1538 #endif
1539 #if defined (SIGEMT)
1540 if (hostsig == SIGEMT)
1541 return TARGET_SIGNAL_EMT;
1542 #endif
1543 #if defined (SIGFPE)
1544 if (hostsig == SIGFPE)
1545 return TARGET_SIGNAL_FPE;
1546 #endif
1547 #if defined (SIGKILL)
1548 if (hostsig == SIGKILL)
1549 return TARGET_SIGNAL_KILL;
1550 #endif
1551 #if defined (SIGBUS)
1552 if (hostsig == SIGBUS)
1553 return TARGET_SIGNAL_BUS;
1554 #endif
1555 #if defined (SIGSEGV)
1556 if (hostsig == SIGSEGV)
1557 return TARGET_SIGNAL_SEGV;
1558 #endif
1559 #if defined (SIGSYS)
1560 if (hostsig == SIGSYS)
1561 return TARGET_SIGNAL_SYS;
1562 #endif
1563 #if defined (SIGPIPE)
1564 if (hostsig == SIGPIPE)
1565 return TARGET_SIGNAL_PIPE;
1566 #endif
1567 #if defined (SIGALRM)
1568 if (hostsig == SIGALRM)
1569 return TARGET_SIGNAL_ALRM;
1570 #endif
1571 #if defined (SIGTERM)
1572 if (hostsig == SIGTERM)
1573 return TARGET_SIGNAL_TERM;
1574 #endif
1575 #if defined (SIGUSR1)
1576 if (hostsig == SIGUSR1)
1577 return TARGET_SIGNAL_USR1;
1578 #endif
1579 #if defined (SIGUSR2)
1580 if (hostsig == SIGUSR2)
1581 return TARGET_SIGNAL_USR2;
1582 #endif
1583 #if defined (SIGCLD)
1584 if (hostsig == SIGCLD)
1585 return TARGET_SIGNAL_CHLD;
1586 #endif
1587 #if defined (SIGCHLD)
1588 if (hostsig == SIGCHLD)
1589 return TARGET_SIGNAL_CHLD;
1590 #endif
1591 #if defined (SIGPWR)
1592 if (hostsig == SIGPWR)
1593 return TARGET_SIGNAL_PWR;
1594 #endif
1595 #if defined (SIGWINCH)
1596 if (hostsig == SIGWINCH)
1597 return TARGET_SIGNAL_WINCH;
1598 #endif
1599 #if defined (SIGURG)
1600 if (hostsig == SIGURG)
1601 return TARGET_SIGNAL_URG;
1602 #endif
1603 #if defined (SIGIO)
1604 if (hostsig == SIGIO)
1605 return TARGET_SIGNAL_IO;
1606 #endif
1607 #if defined (SIGPOLL)
1608 if (hostsig == SIGPOLL)
1609 return TARGET_SIGNAL_POLL;
1610 #endif
1611 #if defined (SIGSTOP)
1612 if (hostsig == SIGSTOP)
1613 return TARGET_SIGNAL_STOP;
1614 #endif
1615 #if defined (SIGTSTP)
1616 if (hostsig == SIGTSTP)
1617 return TARGET_SIGNAL_TSTP;
1618 #endif
1619 #if defined (SIGCONT)
1620 if (hostsig == SIGCONT)
1621 return TARGET_SIGNAL_CONT;
1622 #endif
1623 #if defined (SIGTTIN)
1624 if (hostsig == SIGTTIN)
1625 return TARGET_SIGNAL_TTIN;
1626 #endif
1627 #if defined (SIGTTOU)
1628 if (hostsig == SIGTTOU)
1629 return TARGET_SIGNAL_TTOU;
1630 #endif
1631 #if defined (SIGVTALRM)
1632 if (hostsig == SIGVTALRM)
1633 return TARGET_SIGNAL_VTALRM;
1634 #endif
1635 #if defined (SIGPROF)
1636 if (hostsig == SIGPROF)
1637 return TARGET_SIGNAL_PROF;
1638 #endif
1639 #if defined (SIGXCPU)
1640 if (hostsig == SIGXCPU)
1641 return TARGET_SIGNAL_XCPU;
1642 #endif
1643 #if defined (SIGXFSZ)
1644 if (hostsig == SIGXFSZ)
1645 return TARGET_SIGNAL_XFSZ;
1646 #endif
1647 #if defined (SIGWIND)
1648 if (hostsig == SIGWIND)
1649 return TARGET_SIGNAL_WIND;
1650 #endif
1651 #if defined (SIGPHONE)
1652 if (hostsig == SIGPHONE)
1653 return TARGET_SIGNAL_PHONE;
1654 #endif
1655 #if defined (SIGLOST)
1656 if (hostsig == SIGLOST)
1657 return TARGET_SIGNAL_LOST;
1658 #endif
1659 #if defined (SIGWAITING)
1660 if (hostsig == SIGWAITING)
1661 return TARGET_SIGNAL_WAITING;
1662 #endif
1663 #if defined (SIGCANCEL)
1664 if (hostsig == SIGCANCEL)
1665 return TARGET_SIGNAL_CANCEL;
1666 #endif
1667 #if defined (SIGLWP)
1668 if (hostsig == SIGLWP)
1669 return TARGET_SIGNAL_LWP;
1670 #endif
1671 #if defined (SIGDANGER)
1672 if (hostsig == SIGDANGER)
1673 return TARGET_SIGNAL_DANGER;
1674 #endif
1675 #if defined (SIGGRANT)
1676 if (hostsig == SIGGRANT)
1677 return TARGET_SIGNAL_GRANT;
1678 #endif
1679 #if defined (SIGRETRACT)
1680 if (hostsig == SIGRETRACT)
1681 return TARGET_SIGNAL_RETRACT;
1682 #endif
1683 #if defined (SIGMSG)
1684 if (hostsig == SIGMSG)
1685 return TARGET_SIGNAL_MSG;
1686 #endif
1687 #if defined (SIGSOUND)
1688 if (hostsig == SIGSOUND)
1689 return TARGET_SIGNAL_SOUND;
1690 #endif
1691 #if defined (SIGSAK)
1692 if (hostsig == SIGSAK)
1693 return TARGET_SIGNAL_SAK;
1694 #endif
1695 #if defined (SIGPRIO)
1696 if (hostsig == SIGPRIO)
1697 return TARGET_SIGNAL_PRIO;
1698 #endif
1699
1700 /* Mach exceptions. Assumes that the values for EXC_ are positive! */
1701 #if defined (EXC_BAD_ACCESS) && defined (_NSIG)
1702 if (hostsig == _NSIG + EXC_BAD_ACCESS)
1703 return TARGET_EXC_BAD_ACCESS;
1704 #endif
1705 #if defined (EXC_BAD_INSTRUCTION) && defined (_NSIG)
1706 if (hostsig == _NSIG + EXC_BAD_INSTRUCTION)
1707 return TARGET_EXC_BAD_INSTRUCTION;
1708 #endif
1709 #if defined (EXC_ARITHMETIC) && defined (_NSIG)
1710 if (hostsig == _NSIG + EXC_ARITHMETIC)
1711 return TARGET_EXC_ARITHMETIC;
1712 #endif
1713 #if defined (EXC_EMULATION) && defined (_NSIG)
1714 if (hostsig == _NSIG + EXC_EMULATION)
1715 return TARGET_EXC_EMULATION;
1716 #endif
1717 #if defined (EXC_SOFTWARE) && defined (_NSIG)
1718 if (hostsig == _NSIG + EXC_SOFTWARE)
1719 return TARGET_EXC_SOFTWARE;
1720 #endif
1721 #if defined (EXC_BREAKPOINT) && defined (_NSIG)
1722 if (hostsig == _NSIG + EXC_BREAKPOINT)
1723 return TARGET_EXC_BREAKPOINT;
1724 #endif
1725
1726 #if defined (SIGINFO)
1727 if (hostsig == SIGINFO)
1728 return TARGET_SIGNAL_INFO;
1729 #endif
1730
1731 #if defined (REALTIME_LO)
1732 if (hostsig >= REALTIME_LO && hostsig < REALTIME_HI)
1733 {
1734 /* This block of TARGET_SIGNAL_REALTIME value is in order. */
1735 if (33 <= hostsig && hostsig <= 63)
1736 return (enum target_signal)
1737 (hostsig - 33 + (int) TARGET_SIGNAL_REALTIME_33);
1738 else if (hostsig == 32)
1739 return TARGET_SIGNAL_REALTIME_32;
1740 else
1741 error ("GDB bug: target.c (target_signal_from_host): unrecognized real-time signal");
1742 }
1743 #endif
1744
1745 #if defined (SIGRTMIN)
1746 if (hostsig >= SIGRTMIN && hostsig <= SIGRTMAX)
1747 {
1748 /* This block of TARGET_SIGNAL_REALTIME value is in order. */
1749 if (33 <= hostsig && hostsig <= 63)
1750 return (enum target_signal)
1751 (hostsig - 33 + (int) TARGET_SIGNAL_REALTIME_33);
1752 else
1753 error ("GDB bug: target.c (target_signal_from_host): unrecognized real-time signal");
1754 }
1755 #endif
1756 return TARGET_SIGNAL_UNKNOWN;
1757 }
1758
1759 /* Convert a OURSIG (an enum target_signal) to the form used by the
1760 target operating system (refered to as the ``host'') or zero if the
1761 equivalent host signal is not available. Set/clear OURSIG_OK
1762 accordingly. */
1763
1764 static int
1765 do_target_signal_to_host (enum target_signal oursig,
1766 int *oursig_ok)
1767 {
1768 *oursig_ok = 1;
1769 switch (oursig)
1770 {
1771 case TARGET_SIGNAL_0:
1772 return 0;
1773
1774 #if defined (SIGHUP)
1775 case TARGET_SIGNAL_HUP:
1776 return SIGHUP;
1777 #endif
1778 #if defined (SIGINT)
1779 case TARGET_SIGNAL_INT:
1780 return SIGINT;
1781 #endif
1782 #if defined (SIGQUIT)
1783 case TARGET_SIGNAL_QUIT:
1784 return SIGQUIT;
1785 #endif
1786 #if defined (SIGILL)
1787 case TARGET_SIGNAL_ILL:
1788 return SIGILL;
1789 #endif
1790 #if defined (SIGTRAP)
1791 case TARGET_SIGNAL_TRAP:
1792 return SIGTRAP;
1793 #endif
1794 #if defined (SIGABRT)
1795 case TARGET_SIGNAL_ABRT:
1796 return SIGABRT;
1797 #endif
1798 #if defined (SIGEMT)
1799 case TARGET_SIGNAL_EMT:
1800 return SIGEMT;
1801 #endif
1802 #if defined (SIGFPE)
1803 case TARGET_SIGNAL_FPE:
1804 return SIGFPE;
1805 #endif
1806 #if defined (SIGKILL)
1807 case TARGET_SIGNAL_KILL:
1808 return SIGKILL;
1809 #endif
1810 #if defined (SIGBUS)
1811 case TARGET_SIGNAL_BUS:
1812 return SIGBUS;
1813 #endif
1814 #if defined (SIGSEGV)
1815 case TARGET_SIGNAL_SEGV:
1816 return SIGSEGV;
1817 #endif
1818 #if defined (SIGSYS)
1819 case TARGET_SIGNAL_SYS:
1820 return SIGSYS;
1821 #endif
1822 #if defined (SIGPIPE)
1823 case TARGET_SIGNAL_PIPE:
1824 return SIGPIPE;
1825 #endif
1826 #if defined (SIGALRM)
1827 case TARGET_SIGNAL_ALRM:
1828 return SIGALRM;
1829 #endif
1830 #if defined (SIGTERM)
1831 case TARGET_SIGNAL_TERM:
1832 return SIGTERM;
1833 #endif
1834 #if defined (SIGUSR1)
1835 case TARGET_SIGNAL_USR1:
1836 return SIGUSR1;
1837 #endif
1838 #if defined (SIGUSR2)
1839 case TARGET_SIGNAL_USR2:
1840 return SIGUSR2;
1841 #endif
1842 #if defined (SIGCHLD) || defined (SIGCLD)
1843 case TARGET_SIGNAL_CHLD:
1844 #if defined (SIGCHLD)
1845 return SIGCHLD;
1846 #else
1847 return SIGCLD;
1848 #endif
1849 #endif /* SIGCLD or SIGCHLD */
1850 #if defined (SIGPWR)
1851 case TARGET_SIGNAL_PWR:
1852 return SIGPWR;
1853 #endif
1854 #if defined (SIGWINCH)
1855 case TARGET_SIGNAL_WINCH:
1856 return SIGWINCH;
1857 #endif
1858 #if defined (SIGURG)
1859 case TARGET_SIGNAL_URG:
1860 return SIGURG;
1861 #endif
1862 #if defined (SIGIO)
1863 case TARGET_SIGNAL_IO:
1864 return SIGIO;
1865 #endif
1866 #if defined (SIGPOLL)
1867 case TARGET_SIGNAL_POLL:
1868 return SIGPOLL;
1869 #endif
1870 #if defined (SIGSTOP)
1871 case TARGET_SIGNAL_STOP:
1872 return SIGSTOP;
1873 #endif
1874 #if defined (SIGTSTP)
1875 case TARGET_SIGNAL_TSTP:
1876 return SIGTSTP;
1877 #endif
1878 #if defined (SIGCONT)
1879 case TARGET_SIGNAL_CONT:
1880 return SIGCONT;
1881 #endif
1882 #if defined (SIGTTIN)
1883 case TARGET_SIGNAL_TTIN:
1884 return SIGTTIN;
1885 #endif
1886 #if defined (SIGTTOU)
1887 case TARGET_SIGNAL_TTOU:
1888 return SIGTTOU;
1889 #endif
1890 #if defined (SIGVTALRM)
1891 case TARGET_SIGNAL_VTALRM:
1892 return SIGVTALRM;
1893 #endif
1894 #if defined (SIGPROF)
1895 case TARGET_SIGNAL_PROF:
1896 return SIGPROF;
1897 #endif
1898 #if defined (SIGXCPU)
1899 case TARGET_SIGNAL_XCPU:
1900 return SIGXCPU;
1901 #endif
1902 #if defined (SIGXFSZ)
1903 case TARGET_SIGNAL_XFSZ:
1904 return SIGXFSZ;
1905 #endif
1906 #if defined (SIGWIND)
1907 case TARGET_SIGNAL_WIND:
1908 return SIGWIND;
1909 #endif
1910 #if defined (SIGPHONE)
1911 case TARGET_SIGNAL_PHONE:
1912 return SIGPHONE;
1913 #endif
1914 #if defined (SIGLOST)
1915 case TARGET_SIGNAL_LOST:
1916 return SIGLOST;
1917 #endif
1918 #if defined (SIGWAITING)
1919 case TARGET_SIGNAL_WAITING:
1920 return SIGWAITING;
1921 #endif
1922 #if defined (SIGCANCEL)
1923 case TARGET_SIGNAL_CANCEL:
1924 return SIGCANCEL;
1925 #endif
1926 #if defined (SIGLWP)
1927 case TARGET_SIGNAL_LWP:
1928 return SIGLWP;
1929 #endif
1930 #if defined (SIGDANGER)
1931 case TARGET_SIGNAL_DANGER:
1932 return SIGDANGER;
1933 #endif
1934 #if defined (SIGGRANT)
1935 case TARGET_SIGNAL_GRANT:
1936 return SIGGRANT;
1937 #endif
1938 #if defined (SIGRETRACT)
1939 case TARGET_SIGNAL_RETRACT:
1940 return SIGRETRACT;
1941 #endif
1942 #if defined (SIGMSG)
1943 case TARGET_SIGNAL_MSG:
1944 return SIGMSG;
1945 #endif
1946 #if defined (SIGSOUND)
1947 case TARGET_SIGNAL_SOUND:
1948 return SIGSOUND;
1949 #endif
1950 #if defined (SIGSAK)
1951 case TARGET_SIGNAL_SAK:
1952 return SIGSAK;
1953 #endif
1954 #if defined (SIGPRIO)
1955 case TARGET_SIGNAL_PRIO:
1956 return SIGPRIO;
1957 #endif
1958
1959 /* Mach exceptions. Assumes that the values for EXC_ are positive! */
1960 #if defined (EXC_BAD_ACCESS) && defined (_NSIG)
1961 case TARGET_EXC_BAD_ACCESS:
1962 return _NSIG + EXC_BAD_ACCESS;
1963 #endif
1964 #if defined (EXC_BAD_INSTRUCTION) && defined (_NSIG)
1965 case TARGET_EXC_BAD_INSTRUCTION:
1966 return _NSIG + EXC_BAD_INSTRUCTION;
1967 #endif
1968 #if defined (EXC_ARITHMETIC) && defined (_NSIG)
1969 case TARGET_EXC_ARITHMETIC:
1970 return _NSIG + EXC_ARITHMETIC;
1971 #endif
1972 #if defined (EXC_EMULATION) && defined (_NSIG)
1973 case TARGET_EXC_EMULATION:
1974 return _NSIG + EXC_EMULATION;
1975 #endif
1976 #if defined (EXC_SOFTWARE) && defined (_NSIG)
1977 case TARGET_EXC_SOFTWARE:
1978 return _NSIG + EXC_SOFTWARE;
1979 #endif
1980 #if defined (EXC_BREAKPOINT) && defined (_NSIG)
1981 case TARGET_EXC_BREAKPOINT:
1982 return _NSIG + EXC_BREAKPOINT;
1983 #endif
1984
1985 #if defined (SIGINFO)
1986 case TARGET_SIGNAL_INFO:
1987 return SIGINFO;
1988 #endif
1989
1990 default:
1991 #if defined (REALTIME_LO)
1992 if (oursig >= TARGET_SIGNAL_REALTIME_33
1993 && oursig <= TARGET_SIGNAL_REALTIME_63)
1994 {
1995 /* This block of signals is continuous, and
1996 TARGET_SIGNAL_REALTIME_33 is 33 by definition. */
1997 int retsig =
1998 (int) oursig - (int) TARGET_SIGNAL_REALTIME_33 + 33;
1999 if (retsig >= REALTIME_LO && retsig < REALTIME_HI)
2000 return retsig;
2001 }
2002 #if (REALTIME_LO < 33)
2003 else if (oursig == TARGET_SIGNAL_REALTIME_32)
2004 {
2005 /* TARGET_SIGNAL_REALTIME_32 isn't contiguous with
2006 TARGET_SIGNAL_REALTIME_33. It is 32 by definition. */
2007 return 32;
2008 }
2009 #endif
2010 #endif
2011
2012 #if defined (SIGRTMIN)
2013 if (oursig >= TARGET_SIGNAL_REALTIME_33
2014 && oursig <= TARGET_SIGNAL_REALTIME_63)
2015 {
2016 /* This block of signals is continuous, and
2017 TARGET_SIGNAL_REALTIME_33 is 33 by definition. */
2018 int retsig =
2019 (int) oursig - (int) TARGET_SIGNAL_REALTIME_33 + 33;
2020 if (retsig >= SIGRTMIN && retsig <= SIGRTMAX)
2021 return retsig;
2022 }
2023 #endif
2024 *oursig_ok = 0;
2025 return 0;
2026 }
2027 }
2028
2029 int
2030 target_signal_to_host_p (enum target_signal oursig)
2031 {
2032 int oursig_ok;
2033 do_target_signal_to_host (oursig, &oursig_ok);
2034 return oursig_ok;
2035 }
2036
2037 int
2038 target_signal_to_host (enum target_signal oursig)
2039 {
2040 int oursig_ok;
2041 int targ_signo = do_target_signal_to_host (oursig, &oursig_ok);
2042 if (!oursig_ok)
2043 {
2044 /* The user might be trying to do "signal SIGSAK" where this system
2045 doesn't have SIGSAK. */
2046 warning ("Signal %s does not exist on this system.\n",
2047 target_signal_to_name (oursig));
2048 return 0;
2049 }
2050 else
2051 return targ_signo;
2052 }
2053
2054 /* Helper function for child_wait and the Lynx derivatives of child_wait.
2055 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
2056 translation of that in OURSTATUS. */
2057 void
2058 store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
2059 {
2060 #ifdef CHILD_SPECIAL_WAITSTATUS
2061 /* CHILD_SPECIAL_WAITSTATUS should return nonzero and set *OURSTATUS
2062 if it wants to deal with hoststatus. */
2063 if (CHILD_SPECIAL_WAITSTATUS (ourstatus, hoststatus))
2064 return;
2065 #endif
2066
2067 if (WIFEXITED (hoststatus))
2068 {
2069 ourstatus->kind = TARGET_WAITKIND_EXITED;
2070 ourstatus->value.integer = WEXITSTATUS (hoststatus);
2071 }
2072 else if (!WIFSTOPPED (hoststatus))
2073 {
2074 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
2075 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
2076 }
2077 else
2078 {
2079 ourstatus->kind = TARGET_WAITKIND_STOPPED;
2080 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
2081 }
2082 }
2083 \f
2084 /* In some circumstances we allow a command to specify a numeric
2085 signal. The idea is to keep these circumstances limited so that
2086 users (and scripts) develop portable habits. For comparison,
2087 POSIX.2 `kill' requires that 1,2,3,6,9,14, and 15 work (and using a
2088 numeric signal at all is obsolescent. We are slightly more
2089 lenient and allow 1-15 which should match host signal numbers on
2090 most systems. Use of symbolic signal names is strongly encouraged. */
2091
2092 enum target_signal
2093 target_signal_from_command (int num)
2094 {
2095 if (num >= 1 && num <= 15)
2096 return (enum target_signal) num;
2097 error ("Only signals 1-15 are valid as numeric signals.\n\
2098 Use \"info signals\" for a list of symbolic signals.");
2099 }
2100 \f
2101 /* Returns zero to leave the inferior alone, one to interrupt it. */
2102 int (*target_activity_function) (void);
2103 int target_activity_fd;
2104 \f
2105 /* Convert a normal process ID to a string. Returns the string in a static
2106 buffer. */
2107
2108 char *
2109 normal_pid_to_str (int pid)
2110 {
2111 static char buf[30];
2112
2113 if (STREQ (current_target.to_shortname, "remote"))
2114 sprintf (buf, "thread %d", pid);
2115 else
2116 sprintf (buf, "process %d", pid);
2117
2118 return buf;
2119 }
2120
2121 /* Some targets (such as ttrace-based HPUX) don't allow us to request
2122 notification of inferior events such as fork and vork immediately
2123 after the inferior is created. (This because of how gdb gets an
2124 inferior created via invoking a shell to do it. In such a scenario,
2125 if the shell init file has commands in it, the shell will fork and
2126 exec for each of those commands, and we will see each such fork
2127 event. Very bad.)
2128
2129 This function is used by all targets that allow us to request
2130 notification of forks, etc at inferior creation time; e.g., in
2131 target_acknowledge_forked_child.
2132 */
2133 static void
2134 normal_target_post_startup_inferior (int pid)
2135 {
2136 /* This space intentionally left blank. */
2137 }
2138
2139 /* Set up the handful of non-empty slots needed by the dummy target
2140 vector. */
2141
2142 static void
2143 init_dummy_target (void)
2144 {
2145 dummy_target.to_shortname = "None";
2146 dummy_target.to_longname = "None";
2147 dummy_target.to_doc = "";
2148 dummy_target.to_attach = find_default_attach;
2149 dummy_target.to_require_attach = find_default_require_attach;
2150 dummy_target.to_require_detach = find_default_require_detach;
2151 dummy_target.to_create_inferior = find_default_create_inferior;
2152 dummy_target.to_clone_and_follow_inferior = find_default_clone_and_follow_inferior;
2153 dummy_target.to_pid_to_str = normal_pid_to_str;
2154 dummy_target.to_stratum = dummy_stratum;
2155 dummy_target.to_magic = OPS_MAGIC;
2156 }
2157 \f
2158
2159 static struct target_ops debug_target;
2160
2161 static void
2162 debug_to_open (char *args, int from_tty)
2163 {
2164 debug_target.to_open (args, from_tty);
2165
2166 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
2167 }
2168
2169 static void
2170 debug_to_close (int quitting)
2171 {
2172 debug_target.to_close (quitting);
2173
2174 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
2175 }
2176
2177 static void
2178 debug_to_attach (char *args, int from_tty)
2179 {
2180 debug_target.to_attach (args, from_tty);
2181
2182 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n", args, from_tty);
2183 }
2184
2185
2186 static void
2187 debug_to_post_attach (int pid)
2188 {
2189 debug_target.to_post_attach (pid);
2190
2191 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
2192 }
2193
2194 static void
2195 debug_to_require_attach (char *args, int from_tty)
2196 {
2197 debug_target.to_require_attach (args, from_tty);
2198
2199 fprintf_unfiltered (gdb_stdlog,
2200 "target_require_attach (%s, %d)\n", args, from_tty);
2201 }
2202
2203 static void
2204 debug_to_detach (char *args, int from_tty)
2205 {
2206 debug_target.to_detach (args, from_tty);
2207
2208 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n", args, from_tty);
2209 }
2210
2211 static void
2212 debug_to_require_detach (int pid, char *args, int from_tty)
2213 {
2214 debug_target.to_require_detach (pid, args, from_tty);
2215
2216 fprintf_unfiltered (gdb_stdlog,
2217 "target_require_detach (%d, %s, %d)\n", pid, args, from_tty);
2218 }
2219
2220 static void
2221 debug_to_resume (int pid, int step, enum target_signal siggnal)
2222 {
2223 debug_target.to_resume (pid, step, siggnal);
2224
2225 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n", pid,
2226 step ? "step" : "continue",
2227 target_signal_to_name (siggnal));
2228 }
2229
2230 static int
2231 debug_to_wait (int pid, struct target_waitstatus *status)
2232 {
2233 int retval;
2234
2235 retval = debug_target.to_wait (pid, status);
2236
2237 fprintf_unfiltered (gdb_stdlog,
2238 "target_wait (%d, status) = %d, ", pid, retval);
2239 fprintf_unfiltered (gdb_stdlog, "status->kind = ");
2240 switch (status->kind)
2241 {
2242 case TARGET_WAITKIND_EXITED:
2243 fprintf_unfiltered (gdb_stdlog, "exited, status = %d\n",
2244 status->value.integer);
2245 break;
2246 case TARGET_WAITKIND_STOPPED:
2247 fprintf_unfiltered (gdb_stdlog, "stopped, signal = %s\n",
2248 target_signal_to_name (status->value.sig));
2249 break;
2250 case TARGET_WAITKIND_SIGNALLED:
2251 fprintf_unfiltered (gdb_stdlog, "signalled, signal = %s\n",
2252 target_signal_to_name (status->value.sig));
2253 break;
2254 case TARGET_WAITKIND_LOADED:
2255 fprintf_unfiltered (gdb_stdlog, "loaded\n");
2256 break;
2257 case TARGET_WAITKIND_FORKED:
2258 fprintf_unfiltered (gdb_stdlog, "forked\n");
2259 break;
2260 case TARGET_WAITKIND_VFORKED:
2261 fprintf_unfiltered (gdb_stdlog, "vforked\n");
2262 break;
2263 case TARGET_WAITKIND_EXECD:
2264 fprintf_unfiltered (gdb_stdlog, "execd\n");
2265 break;
2266 case TARGET_WAITKIND_SPURIOUS:
2267 fprintf_unfiltered (gdb_stdlog, "spurious\n");
2268 break;
2269 default:
2270 fprintf_unfiltered (gdb_stdlog, "unknown???\n");
2271 break;
2272 }
2273
2274 return retval;
2275 }
2276
2277 static void
2278 debug_to_post_wait (int pid, int status)
2279 {
2280 debug_target.to_post_wait (pid, status);
2281
2282 fprintf_unfiltered (gdb_stdlog, "target_post_wait (%d, %d)\n",
2283 pid, status);
2284 }
2285
2286 static void
2287 debug_to_fetch_registers (int regno)
2288 {
2289 debug_target.to_fetch_registers (regno);
2290
2291 fprintf_unfiltered (gdb_stdlog, "target_fetch_registers (%s)",
2292 regno != -1 ? REGISTER_NAME (regno) : "-1");
2293 if (regno != -1)
2294 fprintf_unfiltered (gdb_stdlog, " = 0x%lx %ld",
2295 (unsigned long) read_register (regno),
2296 (unsigned long) read_register (regno));
2297 fprintf_unfiltered (gdb_stdlog, "\n");
2298 }
2299
2300 static void
2301 debug_to_store_registers (int regno)
2302 {
2303 debug_target.to_store_registers (regno);
2304
2305 if (regno >= 0 && regno < NUM_REGS)
2306 fprintf_unfiltered (gdb_stdlog, "target_store_registers (%s) = 0x%lx %ld\n",
2307 REGISTER_NAME (regno),
2308 (unsigned long) read_register (regno),
2309 (unsigned long) read_register (regno));
2310 else
2311 fprintf_unfiltered (gdb_stdlog, "target_store_registers (%d)\n", regno);
2312 }
2313
2314 static void
2315 debug_to_prepare_to_store (void)
2316 {
2317 debug_target.to_prepare_to_store ();
2318
2319 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
2320 }
2321
2322 static int
2323 debug_to_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
2324 struct target_ops *target)
2325 {
2326 int retval;
2327
2328 retval = debug_target.to_xfer_memory (memaddr, myaddr, len, write, target);
2329
2330 fprintf_unfiltered (gdb_stdlog,
2331 "target_xfer_memory (0x%x, xxx, %d, %s, xxx) = %d",
2332 (unsigned int) memaddr, /* possable truncate long long */
2333 len, write ? "write" : "read", retval);
2334
2335
2336
2337 if (retval > 0)
2338 {
2339 int i;
2340
2341 fputs_unfiltered (", bytes =", gdb_stdlog);
2342 for (i = 0; i < retval; i++)
2343 {
2344 if ((((long) &(myaddr[i])) & 0xf) == 0)
2345 fprintf_unfiltered (gdb_stdlog, "\n");
2346 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
2347 }
2348 }
2349
2350 fputc_unfiltered ('\n', gdb_stdlog);
2351
2352 return retval;
2353 }
2354
2355 static void
2356 debug_to_files_info (struct target_ops *target)
2357 {
2358 debug_target.to_files_info (target);
2359
2360 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
2361 }
2362
2363 static int
2364 debug_to_insert_breakpoint (CORE_ADDR addr, char *save)
2365 {
2366 int retval;
2367
2368 retval = debug_target.to_insert_breakpoint (addr, save);
2369
2370 fprintf_unfiltered (gdb_stdlog,
2371 "target_insert_breakpoint (0x%lx, xxx) = %ld\n",
2372 (unsigned long) addr,
2373 (unsigned long) retval);
2374 return retval;
2375 }
2376
2377 static int
2378 debug_to_remove_breakpoint (CORE_ADDR addr, char *save)
2379 {
2380 int retval;
2381
2382 retval = debug_target.to_remove_breakpoint (addr, save);
2383
2384 fprintf_unfiltered (gdb_stdlog,
2385 "target_remove_breakpoint (0x%lx, xxx) = %ld\n",
2386 (unsigned long) addr,
2387 (unsigned long) retval);
2388 return retval;
2389 }
2390
2391 static void
2392 debug_to_terminal_init (void)
2393 {
2394 debug_target.to_terminal_init ();
2395
2396 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
2397 }
2398
2399 static void
2400 debug_to_terminal_inferior (void)
2401 {
2402 debug_target.to_terminal_inferior ();
2403
2404 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
2405 }
2406
2407 static void
2408 debug_to_terminal_ours_for_output (void)
2409 {
2410 debug_target.to_terminal_ours_for_output ();
2411
2412 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
2413 }
2414
2415 static void
2416 debug_to_terminal_ours (void)
2417 {
2418 debug_target.to_terminal_ours ();
2419
2420 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
2421 }
2422
2423 static void
2424 debug_to_terminal_info (char *arg, int from_tty)
2425 {
2426 debug_target.to_terminal_info (arg, from_tty);
2427
2428 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
2429 from_tty);
2430 }
2431
2432 static void
2433 debug_to_kill (void)
2434 {
2435 debug_target.to_kill ();
2436
2437 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
2438 }
2439
2440 static void
2441 debug_to_load (char *args, int from_tty)
2442 {
2443 debug_target.to_load (args, from_tty);
2444
2445 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
2446 }
2447
2448 static int
2449 debug_to_lookup_symbol (char *name, CORE_ADDR *addrp)
2450 {
2451 int retval;
2452
2453 retval = debug_target.to_lookup_symbol (name, addrp);
2454
2455 fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name);
2456
2457 return retval;
2458 }
2459
2460 static void
2461 debug_to_create_inferior (char *exec_file, char *args, char **env)
2462 {
2463 debug_target.to_create_inferior (exec_file, args, env);
2464
2465 fprintf_unfiltered (gdb_stdlog, "target_create_inferior (%s, %s, xxx)\n",
2466 exec_file, args);
2467 }
2468
2469 static void
2470 debug_to_post_startup_inferior (int pid)
2471 {
2472 debug_target.to_post_startup_inferior (pid);
2473
2474 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
2475 pid);
2476 }
2477
2478 static void
2479 debug_to_acknowledge_created_inferior (int pid)
2480 {
2481 debug_target.to_acknowledge_created_inferior (pid);
2482
2483 fprintf_unfiltered (gdb_stdlog, "target_acknowledge_created_inferior (%d)\n",
2484 pid);
2485 }
2486
2487 static void
2488 debug_to_clone_and_follow_inferior (int child_pid, int *followed_child)
2489 {
2490 debug_target.to_clone_and_follow_inferior (child_pid, followed_child);
2491
2492 fprintf_unfiltered (gdb_stdlog,
2493 "target_clone_and_follow_inferior (%d, %d)\n",
2494 child_pid, *followed_child);
2495 }
2496
2497 static void
2498 debug_to_post_follow_inferior_by_clone (void)
2499 {
2500 debug_target.to_post_follow_inferior_by_clone ();
2501
2502 fprintf_unfiltered (gdb_stdlog, "target_post_follow_inferior_by_clone ()\n");
2503 }
2504
2505 static int
2506 debug_to_insert_fork_catchpoint (int pid)
2507 {
2508 int retval;
2509
2510 retval = debug_target.to_insert_fork_catchpoint (pid);
2511
2512 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n",
2513 pid, retval);
2514
2515 return retval;
2516 }
2517
2518 static int
2519 debug_to_remove_fork_catchpoint (int pid)
2520 {
2521 int retval;
2522
2523 retval = debug_target.to_remove_fork_catchpoint (pid);
2524
2525 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
2526 pid, retval);
2527
2528 return retval;
2529 }
2530
2531 static int
2532 debug_to_insert_vfork_catchpoint (int pid)
2533 {
2534 int retval;
2535
2536 retval = debug_target.to_insert_vfork_catchpoint (pid);
2537
2538 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d)= %d\n",
2539 pid, retval);
2540
2541 return retval;
2542 }
2543
2544 static int
2545 debug_to_remove_vfork_catchpoint (int pid)
2546 {
2547 int retval;
2548
2549 retval = debug_target.to_remove_vfork_catchpoint (pid);
2550
2551 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
2552 pid, retval);
2553
2554 return retval;
2555 }
2556
2557 static int
2558 debug_to_has_forked (int pid, int *child_pid)
2559 {
2560 int has_forked;
2561
2562 has_forked = debug_target.to_has_forked (pid, child_pid);
2563
2564 fprintf_unfiltered (gdb_stdlog, "target_has_forked (%d, %d) = %d\n",
2565 pid, *child_pid, has_forked);
2566
2567 return has_forked;
2568 }
2569
2570 static int
2571 debug_to_has_vforked (int pid, int *child_pid)
2572 {
2573 int has_vforked;
2574
2575 has_vforked = debug_target.to_has_vforked (pid, child_pid);
2576
2577 fprintf_unfiltered (gdb_stdlog, "target_has_vforked (%d, %d) = %d\n",
2578 pid, *child_pid, has_vforked);
2579
2580 return has_vforked;
2581 }
2582
2583 static int
2584 debug_to_can_follow_vfork_prior_to_exec (void)
2585 {
2586 int can_immediately_follow_vfork;
2587
2588 can_immediately_follow_vfork = debug_target.to_can_follow_vfork_prior_to_exec ();
2589
2590 fprintf_unfiltered (gdb_stdlog, "target_can_follow_vfork_prior_to_exec () = %d\n",
2591 can_immediately_follow_vfork);
2592
2593 return can_immediately_follow_vfork;
2594 }
2595
2596 static void
2597 debug_to_post_follow_vfork (int parent_pid, int followed_parent, int child_pid,
2598 int followed_child)
2599 {
2600 debug_target.to_post_follow_vfork (parent_pid, followed_parent, child_pid, followed_child);
2601
2602 fprintf_unfiltered (gdb_stdlog,
2603 "target_post_follow_vfork (%d, %d, %d, %d)\n",
2604 parent_pid, followed_parent, child_pid, followed_child);
2605 }
2606
2607 static int
2608 debug_to_insert_exec_catchpoint (int pid)
2609 {
2610 int retval;
2611
2612 retval = debug_target.to_insert_exec_catchpoint (pid);
2613
2614 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
2615 pid, retval);
2616
2617 return retval;
2618 }
2619
2620 static int
2621 debug_to_remove_exec_catchpoint (int pid)
2622 {
2623 int retval;
2624
2625 retval = debug_target.to_remove_exec_catchpoint (pid);
2626
2627 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
2628 pid, retval);
2629
2630 return retval;
2631 }
2632
2633 static int
2634 debug_to_has_execd (int pid, char **execd_pathname)
2635 {
2636 int has_execd;
2637
2638 has_execd = debug_target.to_has_execd (pid, execd_pathname);
2639
2640 fprintf_unfiltered (gdb_stdlog, "target_has_execd (%d, %s) = %d\n",
2641 pid, (*execd_pathname ? *execd_pathname : "<NULL>"),
2642 has_execd);
2643
2644 return has_execd;
2645 }
2646
2647 static int
2648 debug_to_reported_exec_events_per_exec_call (void)
2649 {
2650 int reported_exec_events;
2651
2652 reported_exec_events = debug_target.to_reported_exec_events_per_exec_call ();
2653
2654 fprintf_unfiltered (gdb_stdlog,
2655 "target_reported_exec_events_per_exec_call () = %d\n",
2656 reported_exec_events);
2657
2658 return reported_exec_events;
2659 }
2660
2661 static int
2662 debug_to_has_syscall_event (int pid, enum target_waitkind *kind,
2663 int *syscall_id)
2664 {
2665 int has_syscall_event;
2666 char *kind_spelling = "??";
2667
2668 has_syscall_event = debug_target.to_has_syscall_event (pid, kind, syscall_id);
2669 if (has_syscall_event)
2670 {
2671 switch (*kind)
2672 {
2673 case TARGET_WAITKIND_SYSCALL_ENTRY:
2674 kind_spelling = "SYSCALL_ENTRY";
2675 break;
2676 case TARGET_WAITKIND_SYSCALL_RETURN:
2677 kind_spelling = "SYSCALL_RETURN";
2678 break;
2679 default:
2680 break;
2681 }
2682 }
2683
2684 fprintf_unfiltered (gdb_stdlog,
2685 "target_has_syscall_event (%d, %s, %d) = %d\n",
2686 pid, kind_spelling, *syscall_id, has_syscall_event);
2687
2688 return has_syscall_event;
2689 }
2690
2691 static int
2692 debug_to_has_exited (int pid, int wait_status, int *exit_status)
2693 {
2694 int has_exited;
2695
2696 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
2697
2698 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
2699 pid, wait_status, *exit_status, has_exited);
2700
2701 return has_exited;
2702 }
2703
2704 static void
2705 debug_to_mourn_inferior (void)
2706 {
2707 debug_target.to_mourn_inferior ();
2708
2709 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2710 }
2711
2712 static int
2713 debug_to_can_run (void)
2714 {
2715 int retval;
2716
2717 retval = debug_target.to_can_run ();
2718
2719 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
2720
2721 return retval;
2722 }
2723
2724 static void
2725 debug_to_notice_signals (int pid)
2726 {
2727 debug_target.to_notice_signals (pid);
2728
2729 fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n", pid);
2730 }
2731
2732 static int
2733 debug_to_thread_alive (int pid)
2734 {
2735 int retval;
2736
2737 retval = debug_target.to_thread_alive (pid);
2738
2739 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
2740 pid, retval);
2741
2742 return retval;
2743 }
2744
2745 static void
2746 debug_to_find_new_threads (void)
2747 {
2748 debug_target.to_find_new_threads ();
2749
2750 fputs_unfiltered ("target_find_new_threads ()\n", gdb_stdlog);
2751 }
2752
2753 static void
2754 debug_to_stop (void)
2755 {
2756 debug_target.to_stop ();
2757
2758 fprintf_unfiltered (gdb_stdlog, "target_stop ()\n");
2759 }
2760
2761 static int
2762 debug_to_query (int type, char *req, char *resp, int *siz)
2763 {
2764 int retval;
2765
2766 retval = debug_target.to_query (type, req, resp, siz);
2767
2768 fprintf_unfiltered (gdb_stdlog, "target_query (%c, %s, %s, %d) = %d\n", type, req, resp, *siz, retval);
2769
2770 return retval;
2771 }
2772
2773 static void
2774 debug_to_rcmd (char *command,
2775 struct ui_file *outbuf)
2776 {
2777 debug_target.to_rcmd (command, outbuf);
2778 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
2779 }
2780
2781 static struct symtab_and_line *
2782 debug_to_enable_exception_callback (enum exception_event_kind kind, int enable)
2783 {
2784 struct symtab_and_line *result;
2785 result = debug_target.to_enable_exception_callback (kind, enable);
2786 fprintf_unfiltered (gdb_stdlog,
2787 "target get_exception_callback_sal (%d, %d)\n",
2788 kind, enable);
2789 return result;
2790 }
2791
2792 static struct exception_event_record *
2793 debug_to_get_current_exception_event (void)
2794 {
2795 struct exception_event_record *result;
2796 result = debug_target.to_get_current_exception_event ();
2797 fprintf_unfiltered (gdb_stdlog, "target get_current_exception_event ()\n");
2798 return result;
2799 }
2800
2801 static char *
2802 debug_to_pid_to_exec_file (int pid)
2803 {
2804 char *exec_file;
2805
2806 exec_file = debug_target.to_pid_to_exec_file (pid);
2807
2808 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
2809 pid, exec_file);
2810
2811 return exec_file;
2812 }
2813
2814 static char *
2815 debug_to_core_file_to_sym_file (char *core)
2816 {
2817 char *sym_file;
2818
2819 sym_file = debug_target.to_core_file_to_sym_file (core);
2820
2821 fprintf_unfiltered (gdb_stdlog, "target_core_file_to_sym_file (%s) = %s\n",
2822 core, sym_file);
2823
2824 return sym_file;
2825 }
2826
2827 static void
2828 setup_target_debug (void)
2829 {
2830 memcpy (&debug_target, &current_target, sizeof debug_target);
2831
2832 current_target.to_open = debug_to_open;
2833 current_target.to_close = debug_to_close;
2834 current_target.to_attach = debug_to_attach;
2835 current_target.to_post_attach = debug_to_post_attach;
2836 current_target.to_require_attach = debug_to_require_attach;
2837 current_target.to_detach = debug_to_detach;
2838 current_target.to_require_detach = debug_to_require_detach;
2839 current_target.to_resume = debug_to_resume;
2840 current_target.to_wait = debug_to_wait;
2841 current_target.to_post_wait = debug_to_post_wait;
2842 current_target.to_fetch_registers = debug_to_fetch_registers;
2843 current_target.to_store_registers = debug_to_store_registers;
2844 current_target.to_prepare_to_store = debug_to_prepare_to_store;
2845 current_target.to_xfer_memory = debug_to_xfer_memory;
2846 current_target.to_files_info = debug_to_files_info;
2847 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
2848 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
2849 current_target.to_terminal_init = debug_to_terminal_init;
2850 current_target.to_terminal_inferior = debug_to_terminal_inferior;
2851 current_target.to_terminal_ours_for_output = debug_to_terminal_ours_for_output;
2852 current_target.to_terminal_ours = debug_to_terminal_ours;
2853 current_target.to_terminal_info = debug_to_terminal_info;
2854 current_target.to_kill = debug_to_kill;
2855 current_target.to_load = debug_to_load;
2856 current_target.to_lookup_symbol = debug_to_lookup_symbol;
2857 current_target.to_create_inferior = debug_to_create_inferior;
2858 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
2859 current_target.to_acknowledge_created_inferior = debug_to_acknowledge_created_inferior;
2860 current_target.to_clone_and_follow_inferior = debug_to_clone_and_follow_inferior;
2861 current_target.to_post_follow_inferior_by_clone = debug_to_post_follow_inferior_by_clone;
2862 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
2863 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
2864 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
2865 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
2866 current_target.to_has_forked = debug_to_has_forked;
2867 current_target.to_has_vforked = debug_to_has_vforked;
2868 current_target.to_can_follow_vfork_prior_to_exec = debug_to_can_follow_vfork_prior_to_exec;
2869 current_target.to_post_follow_vfork = debug_to_post_follow_vfork;
2870 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
2871 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
2872 current_target.to_has_execd = debug_to_has_execd;
2873 current_target.to_reported_exec_events_per_exec_call = debug_to_reported_exec_events_per_exec_call;
2874 current_target.to_has_syscall_event = debug_to_has_syscall_event;
2875 current_target.to_has_exited = debug_to_has_exited;
2876 current_target.to_mourn_inferior = debug_to_mourn_inferior;
2877 current_target.to_can_run = debug_to_can_run;
2878 current_target.to_notice_signals = debug_to_notice_signals;
2879 current_target.to_thread_alive = debug_to_thread_alive;
2880 current_target.to_find_new_threads = debug_to_find_new_threads;
2881 current_target.to_stop = debug_to_stop;
2882 current_target.to_query = debug_to_query;
2883 current_target.to_rcmd = debug_to_rcmd;
2884 current_target.to_enable_exception_callback = debug_to_enable_exception_callback;
2885 current_target.to_get_current_exception_event = debug_to_get_current_exception_event;
2886 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
2887 current_target.to_core_file_to_sym_file = debug_to_core_file_to_sym_file;
2888
2889 }
2890 \f
2891
2892 static char targ_desc[] =
2893 "Names of targets and files being debugged.\n\
2894 Shows the entire stack of targets currently in use (including the exec-file,\n\
2895 core-file, and process, if any), as well as the symbol file name.";
2896
2897 static void
2898 do_monitor_command (char *cmd,
2899 int from_tty)
2900 {
2901 if ((current_target.to_rcmd
2902 == (void (*) (char *, struct ui_file *)) tcomplain)
2903 || (current_target.to_rcmd == debug_to_rcmd
2904 && (debug_target.to_rcmd
2905 == (void (*) (char *, struct ui_file *)) tcomplain)))
2906 {
2907 error ("\"monitor\" command not supported by this target.\n");
2908 }
2909 target_rcmd (cmd, gdb_stdtarg);
2910 }
2911
2912 void
2913 initialize_targets (void)
2914 {
2915 init_dummy_target ();
2916 push_target (&dummy_target);
2917
2918 add_info ("target", target_info, targ_desc);
2919 add_info ("files", target_info, targ_desc);
2920
2921 add_show_from_set (
2922 add_set_cmd ("target", class_maintenance, var_zinteger,
2923 (char *) &targetdebug,
2924 "Set target debugging.\n\
2925 When non-zero, target debugging is enabled.", &setdebuglist),
2926 &showdebuglist);
2927
2928
2929 add_com ("monitor", class_obscure, do_monitor_command,
2930 "Send a command to the remote monitor (remote targets only).");
2931
2932 target_dcache = dcache_init();
2933
2934 if (!STREQ (signals[TARGET_SIGNAL_LAST].string, "TARGET_SIGNAL_MAGIC"))
2935 abort ();
2936 }
This page took 0.089446 seconds and 4 git commands to generate.