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.
5 This file is part of GDB.
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.
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.
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. */
25 #include "gdb_string.h"
39 static void target_info (char *, int);
41 static void cleanup_target (struct target_ops *);
43 static void maybe_kill_then_create_inferior (char *, char *, char **);
45 static void default_clone_and_follow_inferior (int, int *);
47 static void maybe_kill_then_attach (char *, int);
49 static void kill_or_be_killed (int);
51 static void default_terminal_info (char *, int);
53 static int nosymbol (char *, CORE_ADDR *);
55 static void tcomplain (void);
57 static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
59 static int return_zero (void);
61 static int return_one (void);
63 void target_ignore (void);
65 static void target_command (char *, int);
67 static struct target_ops *find_default_run_target (char *);
69 static void update_current_target (void);
71 static void nosupport_runtime (void);
73 static void normal_target_post_startup_inferior (int pid);
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). */
82 target_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write);
84 static void init_dummy_target (void);
86 static void debug_to_open (char *, int);
88 static void debug_to_close (int);
90 static void debug_to_attach (char *, int);
92 static void debug_to_detach (char *, int);
94 static void debug_to_resume (int, int, enum target_signal);
96 static int debug_to_wait (int, struct target_waitstatus *);
98 static void debug_to_fetch_registers (int);
100 static void debug_to_store_registers (int);
102 static void debug_to_prepare_to_store (void);
105 debug_to_xfer_memory (CORE_ADDR, char *, int, int, struct target_ops *);
107 static void debug_to_files_info (struct target_ops *);
109 static int debug_to_insert_breakpoint (CORE_ADDR, char *);
111 static int debug_to_remove_breakpoint (CORE_ADDR, char *);
113 static void debug_to_terminal_init (void);
115 static void debug_to_terminal_inferior (void);
117 static void debug_to_terminal_ours_for_output (void);
119 static void debug_to_terminal_ours (void);
121 static void debug_to_terminal_info (char *, int);
123 static void debug_to_kill (void);
125 static void debug_to_load (char *, int);
127 static int debug_to_lookup_symbol (char *, CORE_ADDR *);
129 static void debug_to_create_inferior (char *, char *, char **);
131 static void debug_to_mourn_inferior (void);
133 static int debug_to_can_run (void);
135 static void debug_to_notice_signals (int);
137 static int debug_to_thread_alive (int);
139 static void debug_to_stop (void);
141 static int debug_to_query (int /*char */ , char *, char *, int *);
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
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
152 /* The initial current target, so that there is always a semi-valid
155 static struct target_ops dummy_target;
157 /* Top of target stack. */
159 struct target_stack_item *target_stack;
161 /* The target structure we are currently using to talk to a process
162 or file or whatever "inferior" we have. */
164 struct target_ops current_target;
166 /* Command list for target. */
168 static struct cmd_list_element *targetlist = NULL;
170 /* Nonzero if we are debugging an attached outside process
171 rather than an inferior. */
175 /* Non-zero if we want to see trace of target level stuff. */
177 static int targetdebug = 0;
179 static void setup_target_debug (void);
181 DCACHE *target_dcache;
183 /* The user just typed 'target' without the name of a target. */
187 target_command (char *arg, int from_tty)
189 fputs_filtered ("Argument required (target name). Try `help target'\n",
193 /* Add a possible target architecture to the list. */
196 add_target (struct target_ops *t)
200 target_struct_allocsize = DEFAULT_ALLOCSIZE;
201 target_structs = (struct target_ops **) xmalloc
202 (target_struct_allocsize * sizeof (*target_structs));
204 if (target_struct_size >= target_struct_allocsize)
206 target_struct_allocsize *= 2;
207 target_structs = (struct target_ops **)
208 xrealloc ((char *) target_structs,
209 target_struct_allocsize * sizeof (*target_structs));
211 target_structs[target_struct_size++] = t;
212 /* cleanup_target (t); */
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);
233 target_load (char *arg, int from_tty)
235 dcache_invalidate (target_dcache);
236 (*current_target.to_load) (arg, from_tty);
241 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
242 struct target_ops *t)
244 errno = EIO; /* Can't read/write this location */
245 return 0; /* No bytes handled */
251 error ("You can't do that when your target is `%s'",
252 current_target.to_shortname);
258 error ("You can't do that without a process to debug.");
263 nosymbol (char *name, CORE_ADDR *addrp)
265 return 1; /* Symbol does not exist in target env */
270 nosupport_runtime (void)
275 error ("No run-time support for this");
281 default_terminal_info (char *args, int from_tty)
283 printf_unfiltered ("No saved terminal information.\n");
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. */
292 kill_or_be_killed (int from_tty)
294 if (target_has_execution)
296 printf_unfiltered ("You are already running a program:\n");
297 target_files_info ();
298 if (query ("Kill it? "))
301 if (target_has_execution)
302 error ("Killing the program did not help.");
307 error ("Program not killed.");
314 maybe_kill_then_attach (char *args, int from_tty)
316 kill_or_be_killed (from_tty);
317 target_attach (args, from_tty);
321 maybe_kill_then_create_inferior (char *exec, char *args, char **env)
323 kill_or_be_killed (0);
324 target_create_inferior (exec, args, env);
328 default_clone_and_follow_inferior (int child_pid, int *followed_child)
330 target_clone_and_follow_inferior (child_pid, followed_child);
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. */
337 cleanup_target (struct target_ops *t)
340 #define de_fault(field, value) \
345 (void (*) (char *, int))
351 maybe_kill_then_attach);
352 de_fault (to_post_attach,
355 de_fault (to_require_attach,
356 maybe_kill_then_attach);
358 (void (*) (char *, int))
360 de_fault (to_require_detach,
361 (void (*) (int, char *, int))
364 (void (*) (int, int, enum target_signal))
367 (int (*) (int, struct target_waitstatus *))
369 de_fault (to_post_wait,
370 (void (*) (int, int))
372 de_fault (to_fetch_registers,
375 de_fault (to_store_registers,
378 de_fault (to_prepare_to_store,
381 de_fault (to_xfer_memory,
382 (int (*) (CORE_ADDR, char *, int, int, struct target_ops *))
384 de_fault (to_files_info,
385 (void (*) (struct target_ops *))
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,
394 de_fault (to_terminal_inferior,
397 de_fault (to_terminal_ours_for_output,
400 de_fault (to_terminal_ours,
403 de_fault (to_terminal_info,
404 default_terminal_info);
409 (void (*) (char *, int))
411 de_fault (to_lookup_symbol,
412 (int (*) (char *, CORE_ADDR *))
414 de_fault (to_create_inferior,
415 maybe_kill_then_create_inferior);
416 de_fault (to_post_startup_inferior,
419 de_fault (to_acknowledge_created_inferior,
422 de_fault (to_clone_and_follow_inferior,
423 default_clone_and_follow_inferior);
424 de_fault (to_post_follow_inferior_by_clone,
427 de_fault (to_insert_fork_catchpoint,
430 de_fault (to_remove_fork_catchpoint,
433 de_fault (to_insert_vfork_catchpoint,
436 de_fault (to_remove_vfork_catchpoint,
439 de_fault (to_has_forked,
440 (int (*) (int, int *))
442 de_fault (to_has_vforked,
443 (int (*) (int, int *))
445 de_fault (to_can_follow_vfork_prior_to_exec,
448 de_fault (to_post_follow_vfork,
449 (void (*) (int, int, int, int))
451 de_fault (to_insert_exec_catchpoint,
454 de_fault (to_remove_exec_catchpoint,
457 de_fault (to_has_execd,
458 (int (*) (int, char **))
460 de_fault (to_reported_exec_events_per_exec_call,
463 de_fault (to_has_syscall_event,
464 (int (*) (int, enum target_waitkind *, int *))
466 de_fault (to_has_exited,
467 (int (*) (int, int, int *))
469 de_fault (to_mourn_inferior,
472 de_fault (to_can_run,
474 de_fault (to_notice_signals,
477 de_fault (to_thread_alive,
480 de_fault (to_find_new_threads,
483 de_fault (to_extra_thread_info,
484 (char *(*) (struct thread_info *))
490 (int (*) (int, char *, char *, int *))
493 (void (*) (char *, struct ui_file *))
495 de_fault (to_enable_exception_callback,
496 (struct symtab_and_line * (*) (enum exception_event_kind, int))
498 de_fault (to_get_current_exception_event,
499 (struct exception_event_record * (*) (void))
501 de_fault (to_pid_to_exec_file,
504 de_fault (to_core_file_to_sym_file,
507 de_fault (to_can_async_p,
510 de_fault (to_is_async_p,
514 (void (*) (void (*) (enum inferior_event_type, void*), void*))
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. */
524 update_current_target (void)
526 struct target_stack_item *item;
527 struct target_ops *t;
529 /* First, reset current_target */
530 memset (¤t_target, 0, sizeof current_target);
532 for (item = target_stack; item; item = item->next)
534 t = item->target_ops;
536 #define INHERIT(FIELD, TARGET) \
537 if (!current_target.FIELD) \
538 current_target.FIELD = TARGET->FIELD
540 INHERIT (to_shortname, t);
541 INHERIT (to_longname, 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);
621 /* Push a new target type into the stack of the existing target accessors,
622 possibly superseding some of the existing accessors.
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.
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
632 push_target (struct target_ops *t)
634 struct target_stack_item *cur, *prev, *tmp;
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)
640 fprintf_unfiltered (gdb_stderr,
641 "Magic number of %s target struct wrong\n",
646 /* Find the proper stratum to install this target in. */
648 for (prev = NULL, cur = target_stack; cur; prev = cur, cur = cur->next)
650 if ((int) (t->to_stratum) >= (int) (cur->target_ops->to_stratum))
654 /* If there's already targets at this stratum, remove them. */
657 while (t->to_stratum == cur->target_ops->to_stratum)
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);
663 prev->next = cur->next; /* Unchain old target_ops */
665 target_stack = cur->next; /* Unchain first on list */
671 /* We have removed all targets in our stratum, now add the new one. */
673 tmp = (struct target_stack_item *)
674 xmalloc (sizeof (struct target_stack_item));
683 update_current_target ();
685 cleanup_target (¤t_target); /* Fill in the gaps */
688 setup_target_debug ();
693 /* Remove a target_ops vector from the stack, wherever it may be.
694 Return how many times it was removed (0 or 1). */
697 unpush_target (struct target_ops *t)
699 struct target_stack_item *cur, *prev;
702 t->to_close (0); /* Let it clean up */
704 /* Look for the specified target. Note that we assume that a target
705 can only occur once in the target stack. */
707 for (cur = target_stack, prev = NULL; cur; prev = cur, cur = cur->next)
708 if (cur->target_ops == t)
712 return 0; /* Didn't find target_ops, quit now */
714 /* Unchain the target */
717 target_stack = cur->next;
719 prev->next = cur->next;
721 xfree (cur); /* Release the target_stack_item */
723 update_current_target ();
724 cleanup_target (¤t_target);
732 (current_target.to_close) (0); /* Let it clean up */
733 if (unpush_target (target_stack->target_ops) == 1)
736 fprintf_unfiltered (gdb_stderr,
737 "pop_target couldn't find target %s\n",
738 current_target.to_shortname);
743 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
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
752 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
754 int tlen, origlen, offset, i;
758 int buffer_allocated;
760 unsigned int nbytes_read = 0;
762 /* Small for testing. */
763 buffer_allocated = 4;
764 buffer = xmalloc (buffer_allocated);
771 tlen = MIN (len, 4 - (memaddr & 3));
772 offset = memaddr & 3;
774 errcode = target_xfer_memory (memaddr & ~3, buf, 4, 0);
777 /* The transfer request might have crossed the boundary to an
778 unallocated region of memory. Retry the transfer, requesting
782 errcode = target_xfer_memory (memaddr, buf, 1, 0);
787 if (bufptr - buffer + tlen > buffer_allocated)
790 bytes = bufptr - buffer;
791 buffer_allocated *= 2;
792 buffer = xrealloc (buffer, buffer_allocated);
793 bufptr = buffer + bytes;
796 for (i = 0; i < tlen; i++)
798 *bufptr++ = buf[i + offset];
799 if (buf[i + offset] == '\000')
801 nbytes_read += i + 1;
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
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. */
829 target_read_memory (CORE_ADDR memaddr, char *myaddr, int len)
831 return target_xfer_memory (memaddr, myaddr, len, 0);
835 target_write_memory (CORE_ADDR memaddr, char *myaddr, int len)
837 return target_xfer_memory (memaddr, myaddr, len, 1);
840 /* Move memory to or from the targets. The top target gets priority;
841 if it cannot handle it, it is offered to the next one down, etc.
843 Result is -1 on error, or the number of bytes transfered. */
846 do_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write)
850 struct target_ops *t;
851 struct target_stack_item *item;
853 /* Zero length requests are ok and require no work. */
857 /* to_xfer_memory is not guaranteed to set errno, even when it returns
861 /* The quick case is that the top target can handle the transfer. */
862 res = current_target.to_xfer_memory
863 (memaddr, myaddr, len, write, ¤t_target);
865 /* If res <= 0 then we call it again in the loop. Ah well. */
868 for (item = target_stack; item; item = item->next)
870 t = item->target_ops;
871 if (!t->to_has_memory)
874 res = t->to_xfer_memory (memaddr, myaddr, len, write, t);
876 break; /* Handled all or part of xfer */
877 if (t->to_has_all_memory)
889 /* Perform a memory transfer. Iterate until the entire region has
892 Result is 0 or errno value. */
895 target_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write)
899 /* Zero length requests are ok and require no work. */
907 res = dcache_xfer_memory(target_dcache, memaddr, myaddr, len, write);
910 /* If this address is for nonexistent memory,
911 read zeros if reading, or do nothing if writing. Return error. */
913 memset (myaddr, 0, len);
925 return 0; /* We managed to cover it all somehow. */
929 /* Perform a partial memory transfer.
931 Result is -1 on error, or the number of bytes transfered. */
934 target_xfer_memory_partial (CORE_ADDR memaddr, char *myaddr, int len,
935 int write_p, int *err)
939 /* Zero length requests are ok and require no work. */
946 res = dcache_xfer_memory (target_dcache, memaddr, myaddr, len, write_p);
962 target_read_memory_partial (CORE_ADDR memaddr, char *buf, int len, int *err)
964 return target_xfer_memory_partial (memaddr, buf, len, 0, err);
968 target_write_memory_partial (CORE_ADDR memaddr, char *buf, int len, int *err)
970 return target_xfer_memory_partial (memaddr, buf, len, 1, err);
975 target_info (char *args, int from_tty)
977 struct target_ops *t;
978 struct target_stack_item *item;
981 if (symfile_objfile != NULL)
982 printf_unfiltered ("Symbols from \"%s\".\n", symfile_objfile->name);
984 #ifdef FILES_INFO_HOOK
985 if (FILES_INFO_HOOK ())
989 for (item = target_stack; item; item = item->next)
991 t = item->target_ops;
993 if (!t->to_has_memory)
996 if ((int) (t->to_stratum) <= (int) dummy_stratum)
999 printf_unfiltered ("\tWhile running this, GDB does not access memory from...\n");
1000 printf_unfiltered ("%s:\n", t->to_longname);
1001 (t->to_files_info) (t);
1002 has_all_mem = t->to_has_all_memory;
1006 /* This is to be called by the open routine before it does
1010 target_preopen (int from_tty)
1014 if (target_has_execution)
1017 || query ("A program is being debugged already. Kill it? "))
1020 error ("Program not killed.");
1023 /* Calling target_kill may remove the target from the stack. But if
1024 it doesn't (which seems like a win for UDI), remove it now. */
1026 if (target_has_execution)
1030 /* Detach a target after doing deferred register stores. */
1033 target_detach (char *args, int from_tty)
1035 /* Handle any optimized stores to the inferior. */
1036 #ifdef DO_DEFERRED_STORES
1039 (current_target.to_detach) (args, from_tty);
1043 target_link (char *modname, CORE_ADDR *t_reloc)
1045 if (STREQ (current_target.to_shortname, "rombug"))
1047 (current_target.to_lookup_symbol) (modname, t_reloc);
1049 error ("Unable to link to %s and get relocation in rombug", modname);
1052 *t_reloc = (CORE_ADDR) -1;
1056 target_async_mask (int mask)
1058 int saved_async_masked_status = target_async_mask_value;
1059 target_async_mask_value = mask;
1060 return saved_async_masked_status;
1063 /* Look through the list of possible targets for a target that can
1064 execute a run or attach command without any other data. This is
1065 used to locate the default process stratum.
1067 Result is always valid (error() is called for errors). */
1069 static struct target_ops *
1070 find_default_run_target (char *do_mesg)
1072 struct target_ops **t;
1073 struct target_ops *runable = NULL;
1078 for (t = target_structs; t < target_structs + target_struct_size;
1081 if ((*t)->to_can_run && target_can_run (*t))
1089 error ("Don't know how to %s. Try \"help target\".", do_mesg);
1095 find_default_attach (char *args, int from_tty)
1097 struct target_ops *t;
1099 t = find_default_run_target ("attach");
1100 (t->to_attach) (args, from_tty);
1105 find_default_require_attach (char *args, int from_tty)
1107 struct target_ops *t;
1109 t = find_default_run_target ("require_attach");
1110 (t->to_require_attach) (args, from_tty);
1115 find_default_require_detach (int pid, char *args, int from_tty)
1117 struct target_ops *t;
1119 t = find_default_run_target ("require_detach");
1120 (t->to_require_detach) (pid, args, from_tty);
1125 find_default_create_inferior (char *exec_file, char *allargs, char **env)
1127 struct target_ops *t;
1129 t = find_default_run_target ("run");
1130 (t->to_create_inferior) (exec_file, allargs, env);
1135 find_default_clone_and_follow_inferior (int child_pid, int *followed_child)
1137 struct target_ops *t;
1139 t = find_default_run_target ("run");
1140 (t->to_clone_and_follow_inferior) (child_pid, followed_child);
1157 * Resize the to_sections pointer. Also make sure that anyone that
1158 * was holding on to an old value of it gets updated.
1159 * Returns the old size.
1163 target_resize_to_sections (struct target_ops *target, int num_added)
1165 struct target_ops **t;
1166 struct section_table *old_value;
1169 old_value = target->to_sections;
1171 if (target->to_sections)
1173 old_count = target->to_sections_end - target->to_sections;
1174 target->to_sections = (struct section_table *)
1175 xrealloc ((char *) target->to_sections,
1176 (sizeof (struct section_table)) * (num_added + old_count));
1181 target->to_sections = (struct section_table *)
1182 xmalloc ((sizeof (struct section_table)) * num_added);
1184 target->to_sections_end = target->to_sections + (num_added + old_count);
1186 /* Check to see if anyone else was pointing to this structure.
1187 If old_value was null, then no one was. */
1191 for (t = target_structs; t < target_structs + target_struct_size;
1194 if ((*t)->to_sections == old_value)
1196 (*t)->to_sections = target->to_sections;
1197 (*t)->to_sections_end = target->to_sections_end;
1206 /* Remove all target sections taken from ABFD.
1208 Scan the current target stack for targets whose section tables
1209 refer to sections from BFD, and remove those sections. We use this
1210 when we notice that the inferior has unloaded a shared object, for
1213 remove_target_sections (bfd *abfd)
1215 struct target_ops **t;
1217 for (t = target_structs; t < target_structs + target_struct_size; t++)
1219 struct section_table *src, *dest;
1221 dest = (*t)->to_sections;
1222 for (src = (*t)->to_sections; src < (*t)->to_sections_end; src++)
1223 if (src->bfd != abfd)
1225 /* Keep this section. */
1226 if (dest < src) *dest = *src;
1230 /* If we've dropped any sections, resize the section table. */
1232 target_resize_to_sections (*t, dest - src);
1239 /* Find a single runnable target in the stack and return it. If for
1240 some reason there is more than one, return NULL. */
1243 find_run_target (void)
1245 struct target_ops **t;
1246 struct target_ops *runable = NULL;
1251 for (t = target_structs; t < target_structs + target_struct_size; ++t)
1253 if ((*t)->to_can_run && target_can_run (*t))
1260 return (count == 1 ? runable : NULL);
1263 /* Find a single core_stratum target in the list of targets and return it.
1264 If for some reason there is more than one, return NULL. */
1267 find_core_target (void)
1269 struct target_ops **t;
1270 struct target_ops *runable = NULL;
1275 for (t = target_structs; t < target_structs + target_struct_size;
1278 if ((*t)->to_stratum == core_stratum)
1285 return (count == 1 ? runable : NULL);
1289 * Find the next target down the stack from the specified target.
1293 find_target_beneath (struct target_ops *t)
1295 struct target_stack_item *cur;
1297 for (cur = target_stack; cur; cur = cur->next)
1298 if (cur->target_ops == t)
1301 if (cur == NULL || cur->next == NULL)
1304 return cur->next->target_ops;
1308 /* The inferior process has died. Long live the inferior! */
1311 generic_mourn_inferior (void)
1313 extern int show_breakpoint_hit_counts;
1317 breakpoint_init_inferior (inf_exited);
1318 registers_changed ();
1320 #ifdef CLEAR_DEFERRED_STORES
1321 /* Delete any pending stores to the inferior... */
1322 CLEAR_DEFERRED_STORES;
1325 reopen_exec_file ();
1326 reinit_frame_cache ();
1328 /* It is confusing to the user for ignore counts to stick around
1329 from previous runs of the inferior. So clear them. */
1330 /* However, it is more confusing for the ignore counts to disappear when
1331 using hit counts. So don't clear them if we're counting hits. */
1332 if (!show_breakpoint_hit_counts)
1333 breakpoint_clear_ignore_counts ();
1339 /* This table must match in order and size the signals in enum target_signal
1348 {"SIGHUP", "Hangup"},
1349 {"SIGINT", "Interrupt"},
1350 {"SIGQUIT", "Quit"},
1351 {"SIGILL", "Illegal instruction"},
1352 {"SIGTRAP", "Trace/breakpoint trap"},
1353 {"SIGABRT", "Aborted"},
1354 {"SIGEMT", "Emulation trap"},
1355 {"SIGFPE", "Arithmetic exception"},
1356 {"SIGKILL", "Killed"},
1357 {"SIGBUS", "Bus error"},
1358 {"SIGSEGV", "Segmentation fault"},
1359 {"SIGSYS", "Bad system call"},
1360 {"SIGPIPE", "Broken pipe"},
1361 {"SIGALRM", "Alarm clock"},
1362 {"SIGTERM", "Terminated"},
1363 {"SIGURG", "Urgent I/O condition"},
1364 {"SIGSTOP", "Stopped (signal)"},
1365 {"SIGTSTP", "Stopped (user)"},
1366 {"SIGCONT", "Continued"},
1367 {"SIGCHLD", "Child status changed"},
1368 {"SIGTTIN", "Stopped (tty input)"},
1369 {"SIGTTOU", "Stopped (tty output)"},
1370 {"SIGIO", "I/O possible"},
1371 {"SIGXCPU", "CPU time limit exceeded"},
1372 {"SIGXFSZ", "File size limit exceeded"},
1373 {"SIGVTALRM", "Virtual timer expired"},
1374 {"SIGPROF", "Profiling timer expired"},
1375 {"SIGWINCH", "Window size changed"},
1376 {"SIGLOST", "Resource lost"},
1377 {"SIGUSR1", "User defined signal 1"},
1378 {"SIGUSR2", "User defined signal 2"},
1379 {"SIGPWR", "Power fail/restart"},
1380 {"SIGPOLL", "Pollable event occurred"},
1381 {"SIGWIND", "SIGWIND"},
1382 {"SIGPHONE", "SIGPHONE"},
1383 {"SIGWAITING", "Process's LWPs are blocked"},
1384 {"SIGLWP", "Signal LWP"},
1385 {"SIGDANGER", "Swap space dangerously low"},
1386 {"SIGGRANT", "Monitor mode granted"},
1387 {"SIGRETRACT", "Need to relinquish monitor mode"},
1388 {"SIGMSG", "Monitor mode data available"},
1389 {"SIGSOUND", "Sound completed"},
1390 {"SIGSAK", "Secure attention"},
1391 {"SIGPRIO", "SIGPRIO"},
1392 {"SIG33", "Real-time event 33"},
1393 {"SIG34", "Real-time event 34"},
1394 {"SIG35", "Real-time event 35"},
1395 {"SIG36", "Real-time event 36"},
1396 {"SIG37", "Real-time event 37"},
1397 {"SIG38", "Real-time event 38"},
1398 {"SIG39", "Real-time event 39"},
1399 {"SIG40", "Real-time event 40"},
1400 {"SIG41", "Real-time event 41"},
1401 {"SIG42", "Real-time event 42"},
1402 {"SIG43", "Real-time event 43"},
1403 {"SIG44", "Real-time event 44"},
1404 {"SIG45", "Real-time event 45"},
1405 {"SIG46", "Real-time event 46"},
1406 {"SIG47", "Real-time event 47"},
1407 {"SIG48", "Real-time event 48"},
1408 {"SIG49", "Real-time event 49"},
1409 {"SIG50", "Real-time event 50"},
1410 {"SIG51", "Real-time event 51"},
1411 {"SIG52", "Real-time event 52"},
1412 {"SIG53", "Real-time event 53"},
1413 {"SIG54", "Real-time event 54"},
1414 {"SIG55", "Real-time event 55"},
1415 {"SIG56", "Real-time event 56"},
1416 {"SIG57", "Real-time event 57"},
1417 {"SIG58", "Real-time event 58"},
1418 {"SIG59", "Real-time event 59"},
1419 {"SIG60", "Real-time event 60"},
1420 {"SIG61", "Real-time event 61"},
1421 {"SIG62", "Real-time event 62"},
1422 {"SIG63", "Real-time event 63"},
1423 {"SIGCANCEL", "LWP internal signal"},
1424 {"SIG32", "Real-time event 32"},
1425 {"SIG64", "Real-time event 64"},
1427 #if defined(MACH) || defined(__MACH__)
1428 /* Mach exceptions */
1429 {"EXC_BAD_ACCESS", "Could not access memory"},
1430 {"EXC_BAD_INSTRUCTION", "Illegal instruction/operand"},
1431 {"EXC_ARITHMETIC", "Arithmetic exception"},
1432 {"EXC_EMULATION", "Emulation instruction"},
1433 {"EXC_SOFTWARE", "Software generated exception"},
1434 {"EXC_BREAKPOINT", "Breakpoint"},
1436 {"SIGINFO", "Information request"},
1438 {NULL, "Unknown signal"},
1439 {NULL, "Internal error: printing TARGET_SIGNAL_DEFAULT"},
1441 /* Last entry, used to check whether the table is the right size. */
1442 {NULL, "TARGET_SIGNAL_MAGIC"}
1448 /* Return the string for a signal. */
1450 target_signal_to_string (enum target_signal sig)
1452 if ((sig >= TARGET_SIGNAL_FIRST) && (sig <= TARGET_SIGNAL_LAST))
1453 return signals[sig].string;
1455 return signals[TARGET_SIGNAL_UNKNOWN].string;
1458 /* Return the name for a signal. */
1460 target_signal_to_name (enum target_signal sig)
1462 if (sig == TARGET_SIGNAL_UNKNOWN)
1463 /* I think the code which prints this will always print it along with
1464 the string, so no need to be verbose. */
1466 return signals[sig].name;
1469 /* Given a name, return its signal. */
1471 target_signal_from_name (char *name)
1473 enum target_signal sig;
1475 /* It's possible we also should allow "SIGCLD" as well as "SIGCHLD"
1476 for TARGET_SIGNAL_SIGCHLD. SIGIOT, on the other hand, is more
1477 questionable; seems like by now people should call it SIGABRT
1480 /* This ugly cast brought to you by the native VAX compiler. */
1481 for (sig = TARGET_SIGNAL_HUP;
1482 signals[sig].name != NULL;
1483 sig = (enum target_signal) ((int) sig + 1))
1484 if (STREQ (name, signals[sig].name))
1486 return TARGET_SIGNAL_UNKNOWN;
1489 /* The following functions are to help certain targets deal
1490 with the signal/waitstatus stuff. They could just as well be in
1491 a file called native-utils.c or unixwaitstatus-utils.c or whatever. */
1493 /* Convert host signal to our signals. */
1495 target_signal_from_host (int hostsig)
1497 /* A switch statement would make sense but would require special kludges
1498 to deal with the cases where more than one signal has the same number. */
1501 return TARGET_SIGNAL_0;
1503 #if defined (SIGHUP)
1504 if (hostsig == SIGHUP)
1505 return TARGET_SIGNAL_HUP;
1507 #if defined (SIGINT)
1508 if (hostsig == SIGINT)
1509 return TARGET_SIGNAL_INT;
1511 #if defined (SIGQUIT)
1512 if (hostsig == SIGQUIT)
1513 return TARGET_SIGNAL_QUIT;
1515 #if defined (SIGILL)
1516 if (hostsig == SIGILL)
1517 return TARGET_SIGNAL_ILL;
1519 #if defined (SIGTRAP)
1520 if (hostsig == SIGTRAP)
1521 return TARGET_SIGNAL_TRAP;
1523 #if defined (SIGABRT)
1524 if (hostsig == SIGABRT)
1525 return TARGET_SIGNAL_ABRT;
1527 #if defined (SIGEMT)
1528 if (hostsig == SIGEMT)
1529 return TARGET_SIGNAL_EMT;
1531 #if defined (SIGFPE)
1532 if (hostsig == SIGFPE)
1533 return TARGET_SIGNAL_FPE;
1535 #if defined (SIGKILL)
1536 if (hostsig == SIGKILL)
1537 return TARGET_SIGNAL_KILL;
1539 #if defined (SIGBUS)
1540 if (hostsig == SIGBUS)
1541 return TARGET_SIGNAL_BUS;
1543 #if defined (SIGSEGV)
1544 if (hostsig == SIGSEGV)
1545 return TARGET_SIGNAL_SEGV;
1547 #if defined (SIGSYS)
1548 if (hostsig == SIGSYS)
1549 return TARGET_SIGNAL_SYS;
1551 #if defined (SIGPIPE)
1552 if (hostsig == SIGPIPE)
1553 return TARGET_SIGNAL_PIPE;
1555 #if defined (SIGALRM)
1556 if (hostsig == SIGALRM)
1557 return TARGET_SIGNAL_ALRM;
1559 #if defined (SIGTERM)
1560 if (hostsig == SIGTERM)
1561 return TARGET_SIGNAL_TERM;
1563 #if defined (SIGUSR1)
1564 if (hostsig == SIGUSR1)
1565 return TARGET_SIGNAL_USR1;
1567 #if defined (SIGUSR2)
1568 if (hostsig == SIGUSR2)
1569 return TARGET_SIGNAL_USR2;
1571 #if defined (SIGCLD)
1572 if (hostsig == SIGCLD)
1573 return TARGET_SIGNAL_CHLD;
1575 #if defined (SIGCHLD)
1576 if (hostsig == SIGCHLD)
1577 return TARGET_SIGNAL_CHLD;
1579 #if defined (SIGPWR)
1580 if (hostsig == SIGPWR)
1581 return TARGET_SIGNAL_PWR;
1583 #if defined (SIGWINCH)
1584 if (hostsig == SIGWINCH)
1585 return TARGET_SIGNAL_WINCH;
1587 #if defined (SIGURG)
1588 if (hostsig == SIGURG)
1589 return TARGET_SIGNAL_URG;
1592 if (hostsig == SIGIO)
1593 return TARGET_SIGNAL_IO;
1595 #if defined (SIGPOLL)
1596 if (hostsig == SIGPOLL)
1597 return TARGET_SIGNAL_POLL;
1599 #if defined (SIGSTOP)
1600 if (hostsig == SIGSTOP)
1601 return TARGET_SIGNAL_STOP;
1603 #if defined (SIGTSTP)
1604 if (hostsig == SIGTSTP)
1605 return TARGET_SIGNAL_TSTP;
1607 #if defined (SIGCONT)
1608 if (hostsig == SIGCONT)
1609 return TARGET_SIGNAL_CONT;
1611 #if defined (SIGTTIN)
1612 if (hostsig == SIGTTIN)
1613 return TARGET_SIGNAL_TTIN;
1615 #if defined (SIGTTOU)
1616 if (hostsig == SIGTTOU)
1617 return TARGET_SIGNAL_TTOU;
1619 #if defined (SIGVTALRM)
1620 if (hostsig == SIGVTALRM)
1621 return TARGET_SIGNAL_VTALRM;
1623 #if defined (SIGPROF)
1624 if (hostsig == SIGPROF)
1625 return TARGET_SIGNAL_PROF;
1627 #if defined (SIGXCPU)
1628 if (hostsig == SIGXCPU)
1629 return TARGET_SIGNAL_XCPU;
1631 #if defined (SIGXFSZ)
1632 if (hostsig == SIGXFSZ)
1633 return TARGET_SIGNAL_XFSZ;
1635 #if defined (SIGWIND)
1636 if (hostsig == SIGWIND)
1637 return TARGET_SIGNAL_WIND;
1639 #if defined (SIGPHONE)
1640 if (hostsig == SIGPHONE)
1641 return TARGET_SIGNAL_PHONE;
1643 #if defined (SIGLOST)
1644 if (hostsig == SIGLOST)
1645 return TARGET_SIGNAL_LOST;
1647 #if defined (SIGWAITING)
1648 if (hostsig == SIGWAITING)
1649 return TARGET_SIGNAL_WAITING;
1651 #if defined (SIGCANCEL)
1652 if (hostsig == SIGCANCEL)
1653 return TARGET_SIGNAL_CANCEL;
1655 #if defined (SIGLWP)
1656 if (hostsig == SIGLWP)
1657 return TARGET_SIGNAL_LWP;
1659 #if defined (SIGDANGER)
1660 if (hostsig == SIGDANGER)
1661 return TARGET_SIGNAL_DANGER;
1663 #if defined (SIGGRANT)
1664 if (hostsig == SIGGRANT)
1665 return TARGET_SIGNAL_GRANT;
1667 #if defined (SIGRETRACT)
1668 if (hostsig == SIGRETRACT)
1669 return TARGET_SIGNAL_RETRACT;
1671 #if defined (SIGMSG)
1672 if (hostsig == SIGMSG)
1673 return TARGET_SIGNAL_MSG;
1675 #if defined (SIGSOUND)
1676 if (hostsig == SIGSOUND)
1677 return TARGET_SIGNAL_SOUND;
1679 #if defined (SIGSAK)
1680 if (hostsig == SIGSAK)
1681 return TARGET_SIGNAL_SAK;
1683 #if defined (SIGPRIO)
1684 if (hostsig == SIGPRIO)
1685 return TARGET_SIGNAL_PRIO;
1688 /* Mach exceptions. Assumes that the values for EXC_ are positive! */
1689 #if defined (EXC_BAD_ACCESS) && defined (_NSIG)
1690 if (hostsig == _NSIG + EXC_BAD_ACCESS)
1691 return TARGET_EXC_BAD_ACCESS;
1693 #if defined (EXC_BAD_INSTRUCTION) && defined (_NSIG)
1694 if (hostsig == _NSIG + EXC_BAD_INSTRUCTION)
1695 return TARGET_EXC_BAD_INSTRUCTION;
1697 #if defined (EXC_ARITHMETIC) && defined (_NSIG)
1698 if (hostsig == _NSIG + EXC_ARITHMETIC)
1699 return TARGET_EXC_ARITHMETIC;
1701 #if defined (EXC_EMULATION) && defined (_NSIG)
1702 if (hostsig == _NSIG + EXC_EMULATION)
1703 return TARGET_EXC_EMULATION;
1705 #if defined (EXC_SOFTWARE) && defined (_NSIG)
1706 if (hostsig == _NSIG + EXC_SOFTWARE)
1707 return TARGET_EXC_SOFTWARE;
1709 #if defined (EXC_BREAKPOINT) && defined (_NSIG)
1710 if (hostsig == _NSIG + EXC_BREAKPOINT)
1711 return TARGET_EXC_BREAKPOINT;
1714 #if defined (SIGINFO)
1715 if (hostsig == SIGINFO)
1716 return TARGET_SIGNAL_INFO;
1719 #if defined (REALTIME_LO)
1720 if (hostsig >= REALTIME_LO && hostsig < REALTIME_HI)
1722 /* This block of TARGET_SIGNAL_REALTIME value is in order. */
1723 if (33 <= hostsig && hostsig <= 63)
1724 return (enum target_signal)
1725 (hostsig - 33 + (int) TARGET_SIGNAL_REALTIME_33);
1726 else if (hostsig == 32)
1727 return TARGET_SIGNAL_REALTIME_32;
1729 error ("GDB bug: target.c (target_signal_from_host): unrecognized real-time signal");
1733 #if defined (SIGRTMIN)
1734 if (hostsig >= SIGRTMIN && hostsig <= SIGRTMAX)
1736 /* This block of TARGET_SIGNAL_REALTIME value is in order. */
1737 if (33 <= hostsig && hostsig <= 63)
1738 return (enum target_signal)
1739 (hostsig - 33 + (int) TARGET_SIGNAL_REALTIME_33);
1740 else if (hostsig == 64)
1741 return TARGET_SIGNAL_REALTIME_64;
1743 error ("GDB bug: target.c (target_signal_from_host): unrecognized real-time signal");
1746 return TARGET_SIGNAL_UNKNOWN;
1749 /* Convert a OURSIG (an enum target_signal) to the form used by the
1750 target operating system (refered to as the ``host'') or zero if the
1751 equivalent host signal is not available. Set/clear OURSIG_OK
1755 do_target_signal_to_host (enum target_signal oursig,
1761 case TARGET_SIGNAL_0:
1764 #if defined (SIGHUP)
1765 case TARGET_SIGNAL_HUP:
1768 #if defined (SIGINT)
1769 case TARGET_SIGNAL_INT:
1772 #if defined (SIGQUIT)
1773 case TARGET_SIGNAL_QUIT:
1776 #if defined (SIGILL)
1777 case TARGET_SIGNAL_ILL:
1780 #if defined (SIGTRAP)
1781 case TARGET_SIGNAL_TRAP:
1784 #if defined (SIGABRT)
1785 case TARGET_SIGNAL_ABRT:
1788 #if defined (SIGEMT)
1789 case TARGET_SIGNAL_EMT:
1792 #if defined (SIGFPE)
1793 case TARGET_SIGNAL_FPE:
1796 #if defined (SIGKILL)
1797 case TARGET_SIGNAL_KILL:
1800 #if defined (SIGBUS)
1801 case TARGET_SIGNAL_BUS:
1804 #if defined (SIGSEGV)
1805 case TARGET_SIGNAL_SEGV:
1808 #if defined (SIGSYS)
1809 case TARGET_SIGNAL_SYS:
1812 #if defined (SIGPIPE)
1813 case TARGET_SIGNAL_PIPE:
1816 #if defined (SIGALRM)
1817 case TARGET_SIGNAL_ALRM:
1820 #if defined (SIGTERM)
1821 case TARGET_SIGNAL_TERM:
1824 #if defined (SIGUSR1)
1825 case TARGET_SIGNAL_USR1:
1828 #if defined (SIGUSR2)
1829 case TARGET_SIGNAL_USR2:
1832 #if defined (SIGCHLD) || defined (SIGCLD)
1833 case TARGET_SIGNAL_CHLD:
1834 #if defined (SIGCHLD)
1839 #endif /* SIGCLD or SIGCHLD */
1840 #if defined (SIGPWR)
1841 case TARGET_SIGNAL_PWR:
1844 #if defined (SIGWINCH)
1845 case TARGET_SIGNAL_WINCH:
1848 #if defined (SIGURG)
1849 case TARGET_SIGNAL_URG:
1853 case TARGET_SIGNAL_IO:
1856 #if defined (SIGPOLL)
1857 case TARGET_SIGNAL_POLL:
1860 #if defined (SIGSTOP)
1861 case TARGET_SIGNAL_STOP:
1864 #if defined (SIGTSTP)
1865 case TARGET_SIGNAL_TSTP:
1868 #if defined (SIGCONT)
1869 case TARGET_SIGNAL_CONT:
1872 #if defined (SIGTTIN)
1873 case TARGET_SIGNAL_TTIN:
1876 #if defined (SIGTTOU)
1877 case TARGET_SIGNAL_TTOU:
1880 #if defined (SIGVTALRM)
1881 case TARGET_SIGNAL_VTALRM:
1884 #if defined (SIGPROF)
1885 case TARGET_SIGNAL_PROF:
1888 #if defined (SIGXCPU)
1889 case TARGET_SIGNAL_XCPU:
1892 #if defined (SIGXFSZ)
1893 case TARGET_SIGNAL_XFSZ:
1896 #if defined (SIGWIND)
1897 case TARGET_SIGNAL_WIND:
1900 #if defined (SIGPHONE)
1901 case TARGET_SIGNAL_PHONE:
1904 #if defined (SIGLOST)
1905 case TARGET_SIGNAL_LOST:
1908 #if defined (SIGWAITING)
1909 case TARGET_SIGNAL_WAITING:
1912 #if defined (SIGCANCEL)
1913 case TARGET_SIGNAL_CANCEL:
1916 #if defined (SIGLWP)
1917 case TARGET_SIGNAL_LWP:
1920 #if defined (SIGDANGER)
1921 case TARGET_SIGNAL_DANGER:
1924 #if defined (SIGGRANT)
1925 case TARGET_SIGNAL_GRANT:
1928 #if defined (SIGRETRACT)
1929 case TARGET_SIGNAL_RETRACT:
1932 #if defined (SIGMSG)
1933 case TARGET_SIGNAL_MSG:
1936 #if defined (SIGSOUND)
1937 case TARGET_SIGNAL_SOUND:
1940 #if defined (SIGSAK)
1941 case TARGET_SIGNAL_SAK:
1944 #if defined (SIGPRIO)
1945 case TARGET_SIGNAL_PRIO:
1949 /* Mach exceptions. Assumes that the values for EXC_ are positive! */
1950 #if defined (EXC_BAD_ACCESS) && defined (_NSIG)
1951 case TARGET_EXC_BAD_ACCESS:
1952 return _NSIG + EXC_BAD_ACCESS;
1954 #if defined (EXC_BAD_INSTRUCTION) && defined (_NSIG)
1955 case TARGET_EXC_BAD_INSTRUCTION:
1956 return _NSIG + EXC_BAD_INSTRUCTION;
1958 #if defined (EXC_ARITHMETIC) && defined (_NSIG)
1959 case TARGET_EXC_ARITHMETIC:
1960 return _NSIG + EXC_ARITHMETIC;
1962 #if defined (EXC_EMULATION) && defined (_NSIG)
1963 case TARGET_EXC_EMULATION:
1964 return _NSIG + EXC_EMULATION;
1966 #if defined (EXC_SOFTWARE) && defined (_NSIG)
1967 case TARGET_EXC_SOFTWARE:
1968 return _NSIG + EXC_SOFTWARE;
1970 #if defined (EXC_BREAKPOINT) && defined (_NSIG)
1971 case TARGET_EXC_BREAKPOINT:
1972 return _NSIG + EXC_BREAKPOINT;
1975 #if defined (SIGINFO)
1976 case TARGET_SIGNAL_INFO:
1981 #if defined (REALTIME_LO)
1982 if (oursig >= TARGET_SIGNAL_REALTIME_33
1983 && oursig <= TARGET_SIGNAL_REALTIME_63)
1985 /* This block of signals is continuous, and
1986 TARGET_SIGNAL_REALTIME_33 is 33 by definition. */
1988 (int) oursig - (int) TARGET_SIGNAL_REALTIME_33 + 33;
1989 if (retsig >= REALTIME_LO && retsig < REALTIME_HI)
1992 #if (REALTIME_LO < 33)
1993 else if (oursig == TARGET_SIGNAL_REALTIME_32)
1995 /* TARGET_SIGNAL_REALTIME_32 isn't contiguous with
1996 TARGET_SIGNAL_REALTIME_33. It is 32 by definition. */
2002 #if defined (SIGRTMIN)
2003 if (oursig >= TARGET_SIGNAL_REALTIME_33
2004 && oursig <= TARGET_SIGNAL_REALTIME_63)
2006 /* This block of signals is continuous, and
2007 TARGET_SIGNAL_REALTIME_33 is 33 by definition. */
2009 (int) oursig - (int) TARGET_SIGNAL_REALTIME_33 + 33;
2010 if (retsig >= SIGRTMIN && retsig <= SIGRTMAX)
2013 else if (oursig == TARGET_SIGNAL_REALTIME_64)
2022 target_signal_to_host_p (enum target_signal oursig)
2025 do_target_signal_to_host (oursig, &oursig_ok);
2030 target_signal_to_host (enum target_signal oursig)
2033 int targ_signo = do_target_signal_to_host (oursig, &oursig_ok);
2036 /* The user might be trying to do "signal SIGSAK" where this system
2037 doesn't have SIGSAK. */
2038 warning ("Signal %s does not exist on this system.\n",
2039 target_signal_to_name (oursig));
2046 /* Helper function for child_wait and the Lynx derivatives of child_wait.
2047 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
2048 translation of that in OURSTATUS. */
2050 store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
2052 #ifdef CHILD_SPECIAL_WAITSTATUS
2053 /* CHILD_SPECIAL_WAITSTATUS should return nonzero and set *OURSTATUS
2054 if it wants to deal with hoststatus. */
2055 if (CHILD_SPECIAL_WAITSTATUS (ourstatus, hoststatus))
2059 if (WIFEXITED (hoststatus))
2061 ourstatus->kind = TARGET_WAITKIND_EXITED;
2062 ourstatus->value.integer = WEXITSTATUS (hoststatus);
2064 else if (!WIFSTOPPED (hoststatus))
2066 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
2067 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
2071 ourstatus->kind = TARGET_WAITKIND_STOPPED;
2072 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
2076 /* In some circumstances we allow a command to specify a numeric
2077 signal. The idea is to keep these circumstances limited so that
2078 users (and scripts) develop portable habits. For comparison,
2079 POSIX.2 `kill' requires that 1,2,3,6,9,14, and 15 work (and using a
2080 numeric signal at all is obsolescent. We are slightly more
2081 lenient and allow 1-15 which should match host signal numbers on
2082 most systems. Use of symbolic signal names is strongly encouraged. */
2085 target_signal_from_command (int num)
2087 if (num >= 1 && num <= 15)
2088 return (enum target_signal) num;
2089 error ("Only signals 1-15 are valid as numeric signals.\n\
2090 Use \"info signals\" for a list of symbolic signals.");
2093 /* Returns zero to leave the inferior alone, one to interrupt it. */
2094 int (*target_activity_function) (void);
2095 int target_activity_fd;
2097 /* Convert a normal process ID to a string. Returns the string in a static
2101 normal_pid_to_str (int pid)
2103 static char buf[30];
2105 if (STREQ (current_target.to_shortname, "remote"))
2106 sprintf (buf, "thread %d", pid);
2108 sprintf (buf, "process %d", pid);
2113 /* Some targets (such as ttrace-based HPUX) don't allow us to request
2114 notification of inferior events such as fork and vork immediately
2115 after the inferior is created. (This because of how gdb gets an
2116 inferior created via invoking a shell to do it. In such a scenario,
2117 if the shell init file has commands in it, the shell will fork and
2118 exec for each of those commands, and we will see each such fork
2121 This function is used by all targets that allow us to request
2122 notification of forks, etc at inferior creation time; e.g., in
2123 target_acknowledge_forked_child.
2126 normal_target_post_startup_inferior (int pid)
2128 /* This space intentionally left blank. */
2131 /* Set up the handful of non-empty slots needed by the dummy target
2135 init_dummy_target (void)
2137 dummy_target.to_shortname = "None";
2138 dummy_target.to_longname = "None";
2139 dummy_target.to_doc = "";
2140 dummy_target.to_attach = find_default_attach;
2141 dummy_target.to_require_attach = find_default_require_attach;
2142 dummy_target.to_require_detach = find_default_require_detach;
2143 dummy_target.to_create_inferior = find_default_create_inferior;
2144 dummy_target.to_clone_and_follow_inferior = find_default_clone_and_follow_inferior;
2145 dummy_target.to_pid_to_str = normal_pid_to_str;
2146 dummy_target.to_stratum = dummy_stratum;
2147 dummy_target.to_magic = OPS_MAGIC;
2151 static struct target_ops debug_target;
2154 debug_to_open (char *args, int from_tty)
2156 debug_target.to_open (args, from_tty);
2158 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
2162 debug_to_close (int quitting)
2164 debug_target.to_close (quitting);
2166 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
2170 debug_to_attach (char *args, int from_tty)
2172 debug_target.to_attach (args, from_tty);
2174 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n", args, from_tty);
2179 debug_to_post_attach (int pid)
2181 debug_target.to_post_attach (pid);
2183 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
2187 debug_to_require_attach (char *args, int from_tty)
2189 debug_target.to_require_attach (args, from_tty);
2191 fprintf_unfiltered (gdb_stdlog,
2192 "target_require_attach (%s, %d)\n", args, from_tty);
2196 debug_to_detach (char *args, int from_tty)
2198 debug_target.to_detach (args, from_tty);
2200 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n", args, from_tty);
2204 debug_to_require_detach (int pid, char *args, int from_tty)
2206 debug_target.to_require_detach (pid, args, from_tty);
2208 fprintf_unfiltered (gdb_stdlog,
2209 "target_require_detach (%d, %s, %d)\n", pid, args, from_tty);
2213 debug_to_resume (int pid, int step, enum target_signal siggnal)
2215 debug_target.to_resume (pid, step, siggnal);
2217 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n", pid,
2218 step ? "step" : "continue",
2219 target_signal_to_name (siggnal));
2223 debug_to_wait (int pid, struct target_waitstatus *status)
2227 retval = debug_target.to_wait (pid, status);
2229 fprintf_unfiltered (gdb_stdlog,
2230 "target_wait (%d, status) = %d, ", pid, retval);
2231 fprintf_unfiltered (gdb_stdlog, "status->kind = ");
2232 switch (status->kind)
2234 case TARGET_WAITKIND_EXITED:
2235 fprintf_unfiltered (gdb_stdlog, "exited, status = %d\n",
2236 status->value.integer);
2238 case TARGET_WAITKIND_STOPPED:
2239 fprintf_unfiltered (gdb_stdlog, "stopped, signal = %s\n",
2240 target_signal_to_name (status->value.sig));
2242 case TARGET_WAITKIND_SIGNALLED:
2243 fprintf_unfiltered (gdb_stdlog, "signalled, signal = %s\n",
2244 target_signal_to_name (status->value.sig));
2246 case TARGET_WAITKIND_LOADED:
2247 fprintf_unfiltered (gdb_stdlog, "loaded\n");
2249 case TARGET_WAITKIND_FORKED:
2250 fprintf_unfiltered (gdb_stdlog, "forked\n");
2252 case TARGET_WAITKIND_VFORKED:
2253 fprintf_unfiltered (gdb_stdlog, "vforked\n");
2255 case TARGET_WAITKIND_EXECD:
2256 fprintf_unfiltered (gdb_stdlog, "execd\n");
2258 case TARGET_WAITKIND_SPURIOUS:
2259 fprintf_unfiltered (gdb_stdlog, "spurious\n");
2262 fprintf_unfiltered (gdb_stdlog, "unknown???\n");
2270 debug_to_post_wait (int pid, int status)
2272 debug_target.to_post_wait (pid, status);
2274 fprintf_unfiltered (gdb_stdlog, "target_post_wait (%d, %d)\n",
2279 debug_to_fetch_registers (int regno)
2281 debug_target.to_fetch_registers (regno);
2283 fprintf_unfiltered (gdb_stdlog, "target_fetch_registers (%s)",
2284 regno != -1 ? REGISTER_NAME (regno) : "-1");
2286 fprintf_unfiltered (gdb_stdlog, " = 0x%lx %ld",
2287 (unsigned long) read_register (regno),
2288 (unsigned long) read_register (regno));
2289 fprintf_unfiltered (gdb_stdlog, "\n");
2293 debug_to_store_registers (int regno)
2295 debug_target.to_store_registers (regno);
2297 if (regno >= 0 && regno < NUM_REGS)
2298 fprintf_unfiltered (gdb_stdlog, "target_store_registers (%s) = 0x%lx %ld\n",
2299 REGISTER_NAME (regno),
2300 (unsigned long) read_register (regno),
2301 (unsigned long) read_register (regno));
2303 fprintf_unfiltered (gdb_stdlog, "target_store_registers (%d)\n", regno);
2307 debug_to_prepare_to_store (void)
2309 debug_target.to_prepare_to_store ();
2311 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
2315 debug_to_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
2316 struct target_ops *target)
2320 retval = debug_target.to_xfer_memory (memaddr, myaddr, len, write, target);
2322 fprintf_unfiltered (gdb_stdlog,
2323 "target_xfer_memory (0x%x, xxx, %d, %s, xxx) = %d",
2324 (unsigned int) memaddr, /* possable truncate long long */
2325 len, write ? "write" : "read", retval);
2333 fputs_unfiltered (", bytes =", gdb_stdlog);
2334 for (i = 0; i < retval; i++)
2336 if ((((long) &(myaddr[i])) & 0xf) == 0)
2337 fprintf_unfiltered (gdb_stdlog, "\n");
2338 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
2342 fputc_unfiltered ('\n', gdb_stdlog);
2348 debug_to_files_info (struct target_ops *target)
2350 debug_target.to_files_info (target);
2352 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
2356 debug_to_insert_breakpoint (CORE_ADDR addr, char *save)
2360 retval = debug_target.to_insert_breakpoint (addr, save);
2362 fprintf_unfiltered (gdb_stdlog,
2363 "target_insert_breakpoint (0x%lx, xxx) = %ld\n",
2364 (unsigned long) addr,
2365 (unsigned long) retval);
2370 debug_to_remove_breakpoint (CORE_ADDR addr, char *save)
2374 retval = debug_target.to_remove_breakpoint (addr, save);
2376 fprintf_unfiltered (gdb_stdlog,
2377 "target_remove_breakpoint (0x%lx, xxx) = %ld\n",
2378 (unsigned long) addr,
2379 (unsigned long) retval);
2384 debug_to_terminal_init (void)
2386 debug_target.to_terminal_init ();
2388 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
2392 debug_to_terminal_inferior (void)
2394 debug_target.to_terminal_inferior ();
2396 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
2400 debug_to_terminal_ours_for_output (void)
2402 debug_target.to_terminal_ours_for_output ();
2404 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
2408 debug_to_terminal_ours (void)
2410 debug_target.to_terminal_ours ();
2412 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
2416 debug_to_terminal_info (char *arg, int from_tty)
2418 debug_target.to_terminal_info (arg, from_tty);
2420 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
2425 debug_to_kill (void)
2427 debug_target.to_kill ();
2429 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
2433 debug_to_load (char *args, int from_tty)
2435 debug_target.to_load (args, from_tty);
2437 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
2441 debug_to_lookup_symbol (char *name, CORE_ADDR *addrp)
2445 retval = debug_target.to_lookup_symbol (name, addrp);
2447 fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name);
2453 debug_to_create_inferior (char *exec_file, char *args, char **env)
2455 debug_target.to_create_inferior (exec_file, args, env);
2457 fprintf_unfiltered (gdb_stdlog, "target_create_inferior (%s, %s, xxx)\n",
2462 debug_to_post_startup_inferior (int pid)
2464 debug_target.to_post_startup_inferior (pid);
2466 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
2471 debug_to_acknowledge_created_inferior (int pid)
2473 debug_target.to_acknowledge_created_inferior (pid);
2475 fprintf_unfiltered (gdb_stdlog, "target_acknowledge_created_inferior (%d)\n",
2480 debug_to_clone_and_follow_inferior (int child_pid, int *followed_child)
2482 debug_target.to_clone_and_follow_inferior (child_pid, followed_child);
2484 fprintf_unfiltered (gdb_stdlog,
2485 "target_clone_and_follow_inferior (%d, %d)\n",
2486 child_pid, *followed_child);
2490 debug_to_post_follow_inferior_by_clone (void)
2492 debug_target.to_post_follow_inferior_by_clone ();
2494 fprintf_unfiltered (gdb_stdlog, "target_post_follow_inferior_by_clone ()\n");
2498 debug_to_insert_fork_catchpoint (int pid)
2502 retval = debug_target.to_insert_fork_catchpoint (pid);
2504 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n",
2511 debug_to_remove_fork_catchpoint (int pid)
2515 retval = debug_target.to_remove_fork_catchpoint (pid);
2517 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
2524 debug_to_insert_vfork_catchpoint (int pid)
2528 retval = debug_target.to_insert_vfork_catchpoint (pid);
2530 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d)= %d\n",
2537 debug_to_remove_vfork_catchpoint (int pid)
2541 retval = debug_target.to_remove_vfork_catchpoint (pid);
2543 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
2550 debug_to_has_forked (int pid, int *child_pid)
2554 has_forked = debug_target.to_has_forked (pid, child_pid);
2556 fprintf_unfiltered (gdb_stdlog, "target_has_forked (%d, %d) = %d\n",
2557 pid, *child_pid, has_forked);
2563 debug_to_has_vforked (int pid, int *child_pid)
2567 has_vforked = debug_target.to_has_vforked (pid, child_pid);
2569 fprintf_unfiltered (gdb_stdlog, "target_has_vforked (%d, %d) = %d\n",
2570 pid, *child_pid, has_vforked);
2576 debug_to_can_follow_vfork_prior_to_exec (void)
2578 int can_immediately_follow_vfork;
2580 can_immediately_follow_vfork = debug_target.to_can_follow_vfork_prior_to_exec ();
2582 fprintf_unfiltered (gdb_stdlog, "target_can_follow_vfork_prior_to_exec () = %d\n",
2583 can_immediately_follow_vfork);
2585 return can_immediately_follow_vfork;
2589 debug_to_post_follow_vfork (int parent_pid, int followed_parent, int child_pid,
2592 debug_target.to_post_follow_vfork (parent_pid, followed_parent, child_pid, followed_child);
2594 fprintf_unfiltered (gdb_stdlog,
2595 "target_post_follow_vfork (%d, %d, %d, %d)\n",
2596 parent_pid, followed_parent, child_pid, followed_child);
2600 debug_to_insert_exec_catchpoint (int pid)
2604 retval = debug_target.to_insert_exec_catchpoint (pid);
2606 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
2613 debug_to_remove_exec_catchpoint (int pid)
2617 retval = debug_target.to_remove_exec_catchpoint (pid);
2619 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
2626 debug_to_has_execd (int pid, char **execd_pathname)
2630 has_execd = debug_target.to_has_execd (pid, execd_pathname);
2632 fprintf_unfiltered (gdb_stdlog, "target_has_execd (%d, %s) = %d\n",
2633 pid, (*execd_pathname ? *execd_pathname : "<NULL>"),
2640 debug_to_reported_exec_events_per_exec_call (void)
2642 int reported_exec_events;
2644 reported_exec_events = debug_target.to_reported_exec_events_per_exec_call ();
2646 fprintf_unfiltered (gdb_stdlog,
2647 "target_reported_exec_events_per_exec_call () = %d\n",
2648 reported_exec_events);
2650 return reported_exec_events;
2654 debug_to_has_syscall_event (int pid, enum target_waitkind *kind,
2657 int has_syscall_event;
2658 char *kind_spelling = "??";
2660 has_syscall_event = debug_target.to_has_syscall_event (pid, kind, syscall_id);
2661 if (has_syscall_event)
2665 case TARGET_WAITKIND_SYSCALL_ENTRY:
2666 kind_spelling = "SYSCALL_ENTRY";
2668 case TARGET_WAITKIND_SYSCALL_RETURN:
2669 kind_spelling = "SYSCALL_RETURN";
2676 fprintf_unfiltered (gdb_stdlog,
2677 "target_has_syscall_event (%d, %s, %d) = %d\n",
2678 pid, kind_spelling, *syscall_id, has_syscall_event);
2680 return has_syscall_event;
2684 debug_to_has_exited (int pid, int wait_status, int *exit_status)
2688 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
2690 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
2691 pid, wait_status, *exit_status, has_exited);
2697 debug_to_mourn_inferior (void)
2699 debug_target.to_mourn_inferior ();
2701 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2705 debug_to_can_run (void)
2709 retval = debug_target.to_can_run ();
2711 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
2717 debug_to_notice_signals (int pid)
2719 debug_target.to_notice_signals (pid);
2721 fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n", pid);
2725 debug_to_thread_alive (int pid)
2729 retval = debug_target.to_thread_alive (pid);
2731 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
2738 debug_to_find_new_threads (void)
2740 debug_target.to_find_new_threads ();
2742 fputs_unfiltered ("target_find_new_threads ()\n", gdb_stdlog);
2746 debug_to_stop (void)
2748 debug_target.to_stop ();
2750 fprintf_unfiltered (gdb_stdlog, "target_stop ()\n");
2754 debug_to_query (int type, char *req, char *resp, int *siz)
2758 retval = debug_target.to_query (type, req, resp, siz);
2760 fprintf_unfiltered (gdb_stdlog, "target_query (%c, %s, %s, %d) = %d\n", type, req, resp, *siz, retval);
2766 debug_to_rcmd (char *command,
2767 struct ui_file *outbuf)
2769 debug_target.to_rcmd (command, outbuf);
2770 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
2773 static struct symtab_and_line *
2774 debug_to_enable_exception_callback (enum exception_event_kind kind, int enable)
2776 struct symtab_and_line *result;
2777 result = debug_target.to_enable_exception_callback (kind, enable);
2778 fprintf_unfiltered (gdb_stdlog,
2779 "target get_exception_callback_sal (%d, %d)\n",
2784 static struct exception_event_record *
2785 debug_to_get_current_exception_event (void)
2787 struct exception_event_record *result;
2788 result = debug_target.to_get_current_exception_event ();
2789 fprintf_unfiltered (gdb_stdlog, "target get_current_exception_event ()\n");
2794 debug_to_pid_to_exec_file (int pid)
2798 exec_file = debug_target.to_pid_to_exec_file (pid);
2800 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
2807 debug_to_core_file_to_sym_file (char *core)
2811 sym_file = debug_target.to_core_file_to_sym_file (core);
2813 fprintf_unfiltered (gdb_stdlog, "target_core_file_to_sym_file (%s) = %s\n",
2820 setup_target_debug (void)
2822 memcpy (&debug_target, ¤t_target, sizeof debug_target);
2824 current_target.to_open = debug_to_open;
2825 current_target.to_close = debug_to_close;
2826 current_target.to_attach = debug_to_attach;
2827 current_target.to_post_attach = debug_to_post_attach;
2828 current_target.to_require_attach = debug_to_require_attach;
2829 current_target.to_detach = debug_to_detach;
2830 current_target.to_require_detach = debug_to_require_detach;
2831 current_target.to_resume = debug_to_resume;
2832 current_target.to_wait = debug_to_wait;
2833 current_target.to_post_wait = debug_to_post_wait;
2834 current_target.to_fetch_registers = debug_to_fetch_registers;
2835 current_target.to_store_registers = debug_to_store_registers;
2836 current_target.to_prepare_to_store = debug_to_prepare_to_store;
2837 current_target.to_xfer_memory = debug_to_xfer_memory;
2838 current_target.to_files_info = debug_to_files_info;
2839 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
2840 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
2841 current_target.to_terminal_init = debug_to_terminal_init;
2842 current_target.to_terminal_inferior = debug_to_terminal_inferior;
2843 current_target.to_terminal_ours_for_output = debug_to_terminal_ours_for_output;
2844 current_target.to_terminal_ours = debug_to_terminal_ours;
2845 current_target.to_terminal_info = debug_to_terminal_info;
2846 current_target.to_kill = debug_to_kill;
2847 current_target.to_load = debug_to_load;
2848 current_target.to_lookup_symbol = debug_to_lookup_symbol;
2849 current_target.to_create_inferior = debug_to_create_inferior;
2850 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
2851 current_target.to_acknowledge_created_inferior = debug_to_acknowledge_created_inferior;
2852 current_target.to_clone_and_follow_inferior = debug_to_clone_and_follow_inferior;
2853 current_target.to_post_follow_inferior_by_clone = debug_to_post_follow_inferior_by_clone;
2854 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
2855 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
2856 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
2857 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
2858 current_target.to_has_forked = debug_to_has_forked;
2859 current_target.to_has_vforked = debug_to_has_vforked;
2860 current_target.to_can_follow_vfork_prior_to_exec = debug_to_can_follow_vfork_prior_to_exec;
2861 current_target.to_post_follow_vfork = debug_to_post_follow_vfork;
2862 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
2863 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
2864 current_target.to_has_execd = debug_to_has_execd;
2865 current_target.to_reported_exec_events_per_exec_call = debug_to_reported_exec_events_per_exec_call;
2866 current_target.to_has_syscall_event = debug_to_has_syscall_event;
2867 current_target.to_has_exited = debug_to_has_exited;
2868 current_target.to_mourn_inferior = debug_to_mourn_inferior;
2869 current_target.to_can_run = debug_to_can_run;
2870 current_target.to_notice_signals = debug_to_notice_signals;
2871 current_target.to_thread_alive = debug_to_thread_alive;
2872 current_target.to_find_new_threads = debug_to_find_new_threads;
2873 current_target.to_stop = debug_to_stop;
2874 current_target.to_query = debug_to_query;
2875 current_target.to_rcmd = debug_to_rcmd;
2876 current_target.to_enable_exception_callback = debug_to_enable_exception_callback;
2877 current_target.to_get_current_exception_event = debug_to_get_current_exception_event;
2878 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
2879 current_target.to_core_file_to_sym_file = debug_to_core_file_to_sym_file;
2884 static char targ_desc[] =
2885 "Names of targets and files being debugged.\n\
2886 Shows the entire stack of targets currently in use (including the exec-file,\n\
2887 core-file, and process, if any), as well as the symbol file name.";
2890 do_monitor_command (char *cmd,
2893 if ((current_target.to_rcmd
2894 == (void (*) (char *, struct ui_file *)) tcomplain)
2895 || (current_target.to_rcmd == debug_to_rcmd
2896 && (debug_target.to_rcmd
2897 == (void (*) (char *, struct ui_file *)) tcomplain)))
2899 error ("\"monitor\" command not supported by this target.\n");
2901 target_rcmd (cmd, gdb_stdtarg);
2905 initialize_targets (void)
2907 init_dummy_target ();
2908 push_target (&dummy_target);
2910 add_info ("target", target_info, targ_desc);
2911 add_info ("files", target_info, targ_desc);
2914 add_set_cmd ("target", class_maintenance, var_zinteger,
2915 (char *) &targetdebug,
2916 "Set target debugging.\n\
2917 When non-zero, target debugging is enabled.", &setdebuglist),
2921 add_com ("monitor", class_obscure, do_monitor_command,
2922 "Send a command to the remote monitor (remote targets only).");
2924 target_dcache = dcache_init();
2926 if (!STREQ (signals[TARGET_SIGNAL_LAST].string, "TARGET_SIGNAL_MAGIC"))