1 /* Select target systems and architectures at runtime for GDB.
2 Copyright 1990, 1992-1995, 1998, 1999 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, Boston, MA 02111-1307, USA. */
24 #include "gdb_string.h"
38 target_info
PARAMS ((char *, int));
41 cleanup_target
PARAMS ((struct target_ops
*));
44 maybe_kill_then_create_inferior
PARAMS ((char *, char *, char **));
47 default_clone_and_follow_inferior
PARAMS ((int, int *));
50 maybe_kill_then_attach
PARAMS ((char *, int));
53 kill_or_be_killed
PARAMS ((int));
56 default_terminal_info
PARAMS ((char *, int));
59 nosymbol
PARAMS ((char *, CORE_ADDR
*));
62 tcomplain
PARAMS ((void));
65 nomemory
PARAMS ((CORE_ADDR
, char *, int, int, struct target_ops
*));
68 return_zero
PARAMS ((void));
71 return_one
PARAMS ((void));
74 target_ignore
PARAMS ((void));
77 target_command
PARAMS ((char *, int));
79 static struct target_ops
*
80 find_default_run_target
PARAMS ((char *));
83 update_current_target
PARAMS ((void));
85 /* Transfer LEN bytes between target address MEMADDR and GDB address MYADDR.
86 Returns 0 for success, errno code for failure (which includes partial
87 transfers--if you want a more useful response to partial transfers, try
88 target_read_memory_partial). */
91 target_xfer_memory
PARAMS ((CORE_ADDR memaddr
, char *myaddr
, int len
,
92 int write
, asection
*bfd_section
));
94 static void init_dummy_target
PARAMS ((void));
97 debug_to_open
PARAMS ((char *, int));
100 debug_to_close
PARAMS ((int));
103 debug_to_attach
PARAMS ((char *, int));
106 debug_to_detach
PARAMS ((char *, int));
109 debug_to_resume
PARAMS ((int, int, enum target_signal
));
112 debug_to_wait
PARAMS ((int, struct target_waitstatus
*));
115 debug_to_fetch_registers
PARAMS ((int));
118 debug_to_store_registers
PARAMS ((int));
121 debug_to_prepare_to_store
PARAMS ((void));
124 debug_to_xfer_memory
PARAMS ((CORE_ADDR
, char *, int, int, struct target_ops
*));
127 debug_to_files_info
PARAMS ((struct target_ops
*));
130 debug_to_insert_breakpoint
PARAMS ((CORE_ADDR
, char *));
133 debug_to_remove_breakpoint
PARAMS ((CORE_ADDR
, char *));
136 debug_to_terminal_init
PARAMS ((void));
139 debug_to_terminal_inferior
PARAMS ((void));
142 debug_to_terminal_ours_for_output
PARAMS ((void));
145 debug_to_terminal_ours
PARAMS ((void));
148 debug_to_terminal_info
PARAMS ((char *, int));
151 debug_to_kill
PARAMS ((void));
154 debug_to_load
PARAMS ((char *, int));
157 debug_to_lookup_symbol
PARAMS ((char *, CORE_ADDR
*));
160 debug_to_create_inferior
PARAMS ((char *, char *, char **));
163 debug_to_mourn_inferior
PARAMS ((void));
166 debug_to_can_run
PARAMS ((void));
169 debug_to_notice_signals
PARAMS ((int));
172 debug_to_thread_alive
PARAMS ((int));
175 debug_to_stop
PARAMS ((void));
177 static int debug_to_query
PARAMS ((int/*char*/, char *, char *, int *));
179 /* Pointer to array of target architecture structures; the size of the
180 array; the current index into the array; the allocated size of the
182 struct target_ops
**target_structs
;
183 unsigned target_struct_size
;
184 unsigned target_struct_index
;
185 unsigned target_struct_allocsize
;
186 #define DEFAULT_ALLOCSIZE 10
188 /* The initial current target, so that there is always a semi-valid
191 static struct target_ops dummy_target
;
193 /* Top of target stack. */
195 struct target_stack_item
*target_stack
;
197 /* The target structure we are currently using to talk to a process
198 or file or whatever "inferior" we have. */
200 struct target_ops current_target
;
202 /* Command list for target. */
204 static struct cmd_list_element
*targetlist
= NULL
;
206 /* Nonzero if we are debugging an attached outside process
207 rather than an inferior. */
211 /* Non-zero if we want to see trace of target level stuff. */
213 static int targetdebug
= 0;
215 static void setup_target_debug
PARAMS ((void));
217 /* The user just typed 'target' without the name of a target. */
221 target_command (arg
, from_tty
)
225 fputs_filtered ("Argument required (target name). Try `help target'\n",
229 /* Add a possible target architecture to the list. */
233 struct target_ops
*t
;
237 target_struct_allocsize
= DEFAULT_ALLOCSIZE
;
238 target_structs
= (struct target_ops
**) xmalloc
239 (target_struct_allocsize
* sizeof (*target_structs
));
241 if (target_struct_size
>= target_struct_allocsize
)
243 target_struct_allocsize
*= 2;
244 target_structs
= (struct target_ops
**)
245 xrealloc ((char *) target_structs
,
246 target_struct_allocsize
* sizeof (*target_structs
));
248 target_structs
[target_struct_size
++] = t
;
249 /* cleanup_target (t);*/
251 if (targetlist
== NULL
)
252 add_prefix_cmd ("target", class_run
, target_command
,
253 "Connect to a target machine or process.\n\
254 The first argument is the type or protocol of the target machine.\n\
255 Remaining arguments are interpreted by the target protocol. For more\n\
256 information on the arguments for a particular protocol, type\n\
257 `help target ' followed by the protocol name.",
258 &targetlist
, "target ", 0, &cmdlist
);
259 add_cmd (t
->to_shortname
, no_class
, t
->to_open
, t
->to_doc
, &targetlist
);
271 nomemory (memaddr
, myaddr
, len
, write
, t
)
276 struct target_ops
*t
;
278 errno
= EIO
; /* Can't read/write this location */
279 return 0; /* No bytes handled */
285 error ("You can't do that when your target is `%s'",
286 current_target
.to_shortname
);
292 error ("You can't do that without a process to debug.");
297 nosymbol (name
, addrp
)
301 return 1; /* Symbol does not exist in target env */
311 error ("No run-time support for this");
317 default_terminal_info (args
, from_tty
)
321 printf_unfiltered("No saved terminal information.\n");
324 /* This is the default target_create_inferior and target_attach function.
325 If the current target is executing, it asks whether to kill it off.
326 If this function returns without calling error(), it has killed off
327 the target, and the operation should be attempted. */
330 kill_or_be_killed (from_tty
)
333 if (target_has_execution
)
335 printf_unfiltered ("You are already running a program:\n");
336 target_files_info ();
337 if (query ("Kill it? ")) {
339 if (target_has_execution
)
340 error ("Killing the program did not help.");
343 error ("Program not killed.");
350 maybe_kill_then_attach (args
, from_tty
)
354 kill_or_be_killed (from_tty
);
355 target_attach (args
, from_tty
);
359 maybe_kill_then_create_inferior (exec
, args
, env
)
364 kill_or_be_killed (0);
365 target_create_inferior (exec
, args
, env
);
369 default_clone_and_follow_inferior (child_pid
, followed_child
)
373 target_clone_and_follow_inferior (child_pid
, followed_child
);
376 /* Clean up a target struct so it no longer has any zero pointers in it.
377 We default entries, at least to stubs that print error messages. */
381 struct target_ops
*t
;
384 #define de_fault(field, value) \
385 if (!t->field) t->field = value
387 /* FIELD DEFAULT VALUE */
389 de_fault (to_open
, (void (*) PARAMS((char *, int))) tcomplain
);
390 de_fault (to_close
, (void (*) PARAMS((int))) target_ignore
);
391 de_fault (to_attach
, maybe_kill_then_attach
);
392 de_fault (to_post_attach
, (void (*) PARAMS ((int))) target_ignore
);
393 de_fault (to_require_attach
, maybe_kill_then_attach
);
394 de_fault (to_detach
, (void (*) PARAMS((char *, int))) target_ignore
);
395 de_fault (to_require_detach
, (void (*) PARAMS((int, char *, int))) target_ignore
);
396 de_fault (to_resume
, (void (*) PARAMS((int, int, enum target_signal
))) noprocess
);
397 de_fault (to_wait
, (int (*) PARAMS((int, struct target_waitstatus
*))) noprocess
);
398 de_fault (to_post_wait
, (void (*) PARAMS ((int, int))) target_ignore
);
399 de_fault (to_fetch_registers
, (void (*) PARAMS((int))) target_ignore
);
400 de_fault (to_store_registers
, (void (*) PARAMS((int))) noprocess
);
401 de_fault (to_prepare_to_store
, (void (*) PARAMS((void))) noprocess
);
402 de_fault (to_xfer_memory
, (int (*) PARAMS((CORE_ADDR
, char *, int, int, struct target_ops
*))) nomemory
);
403 de_fault (to_files_info
, (void (*) PARAMS((struct target_ops
*))) target_ignore
);
404 de_fault (to_insert_breakpoint
, memory_insert_breakpoint
);
405 de_fault (to_remove_breakpoint
, memory_remove_breakpoint
);
406 de_fault (to_terminal_init
, (void (*) PARAMS((void))) target_ignore
);
407 de_fault (to_terminal_inferior
, (void (*) PARAMS ((void))) target_ignore
);
408 de_fault (to_terminal_ours_for_output
,(void (*) PARAMS ((void))) target_ignore
);
409 de_fault (to_terminal_ours
, (void (*) PARAMS ((void))) target_ignore
);
410 de_fault (to_terminal_info
, default_terminal_info
);
411 de_fault (to_kill
, (void (*) PARAMS((void))) noprocess
);
412 de_fault (to_load
, (void (*) PARAMS((char *, int))) tcomplain
);
413 de_fault (to_lookup_symbol
, (int (*) PARAMS ((char *, CORE_ADDR
*))) nosymbol
);
414 de_fault (to_create_inferior
, maybe_kill_then_create_inferior
);
415 de_fault (to_post_startup_inferior
, (void (*) PARAMS ((int))) target_ignore
);
416 de_fault (to_acknowledge_created_inferior
, (void (*) PARAMS((int))) target_ignore
);
417 de_fault (to_clone_and_follow_inferior
, default_clone_and_follow_inferior
);
418 de_fault (to_post_follow_inferior_by_clone
, (void (*) PARAMS ((void))) target_ignore
);
419 de_fault (to_insert_fork_catchpoint
, (int (*) PARAMS ((int))) tcomplain
);
420 de_fault (to_remove_fork_catchpoint
, (int (*) PARAMS ((int))) tcomplain
);
421 de_fault (to_insert_vfork_catchpoint
, (int (*) PARAMS ((int))) tcomplain
);
422 de_fault (to_remove_vfork_catchpoint
, (int (*) PARAMS ((int))) tcomplain
);
423 de_fault (to_has_forked
, (int (*) PARAMS ((int, int *))) return_zero
);
424 de_fault (to_has_vforked
, (int (*) PARAMS ((int, int *))) return_zero
);
425 de_fault (to_can_follow_vfork_prior_to_exec
, (int (*) PARAMS ((void ))) return_zero
);
426 de_fault (to_post_follow_vfork
, (void (*) PARAMS ((int, int, int, int))) target_ignore
);
427 de_fault (to_insert_exec_catchpoint
, (int (*) PARAMS ((int))) tcomplain
);
428 de_fault (to_remove_exec_catchpoint
, (int (*) PARAMS ((int))) tcomplain
);
429 de_fault (to_has_execd
, (int (*) PARAMS ((int, char **))) return_zero
);
430 de_fault (to_reported_exec_events_per_exec_call
, (int (*) PARAMS ((void))) return_one
);
431 de_fault (to_has_syscall_event
, (int (*) PARAMS ((int, enum target_waitkind
*, int *))) return_zero
);
432 de_fault (to_has_exited
, (int (*) PARAMS ((int, int, int *))) return_zero
);
433 de_fault (to_mourn_inferior
, (void (*) PARAMS ((void))) noprocess
);
434 de_fault (to_can_run
, return_zero
);
435 de_fault (to_notice_signals
, (void (*) PARAMS((int))) target_ignore
);
436 de_fault (to_thread_alive
, (int (*) PARAMS((int))) target_ignore
);
437 de_fault (to_stop
, (void (*) PARAMS((void))) target_ignore
);
438 de_fault (to_query
, (int (*) PARAMS((int/*char*/, char*, char *, int *))) target_ignore
);
439 de_fault (to_enable_exception_callback
, (struct symtab_and_line
* (*) PARAMS((enum exception_event_kind
, int))) nosupport_runtime
);
440 de_fault (to_get_current_exception_event
, (struct exception_event_record
* (*) PARAMS((void))) nosupport_runtime
);
442 de_fault (to_pid_to_exec_file
, (char* (*) PARAMS((int))) return_zero
);
443 de_fault (to_core_file_to_sym_file
, (char* (*) PARAMS ((char *))) return_zero
);
447 /* Go through the target stack from top to bottom, copying over zero entries in
448 current_target. In effect, we are doing class inheritance through the
449 pushed target vectors. */
452 update_current_target ()
454 struct target_stack_item
*item
;
455 struct target_ops
*t
;
457 /* First, reset current_target */
458 memset (¤t_target
, 0, sizeof current_target
);
460 for (item
= target_stack
; item
; item
= item
->next
)
462 t
= item
->target_ops
;
464 #define INHERIT(FIELD, TARGET) \
465 if (!current_target.FIELD) \
466 current_target.FIELD = TARGET->FIELD
468 INHERIT (to_shortname
, t
);
469 INHERIT (to_longname
, t
);
471 INHERIT (to_open
, t
);
472 INHERIT (to_close
, t
);
473 INHERIT (to_attach
, t
);
474 INHERIT (to_post_attach
, t
);
475 INHERIT (to_require_attach
, t
);
476 INHERIT (to_detach
, t
);
477 INHERIT (to_require_detach
, t
);
478 INHERIT (to_resume
, t
);
479 INHERIT (to_wait
, t
);
480 INHERIT (to_post_wait
, t
);
481 INHERIT (to_fetch_registers
, t
);
482 INHERIT (to_store_registers
, t
);
483 INHERIT (to_prepare_to_store
, t
);
484 INHERIT (to_xfer_memory
, t
);
485 INHERIT (to_files_info
, t
);
486 INHERIT (to_insert_breakpoint
, t
);
487 INHERIT (to_remove_breakpoint
, t
);
488 INHERIT (to_terminal_init
, t
);
489 INHERIT (to_terminal_inferior
, t
);
490 INHERIT (to_terminal_ours_for_output
, t
);
491 INHERIT (to_terminal_ours
, t
);
492 INHERIT (to_terminal_info
, t
);
493 INHERIT (to_kill
, t
);
494 INHERIT (to_load
, t
);
495 INHERIT (to_lookup_symbol
, t
);
496 INHERIT (to_create_inferior
, t
);
497 INHERIT (to_post_startup_inferior
, t
);
498 INHERIT (to_acknowledge_created_inferior
, t
);
499 INHERIT (to_clone_and_follow_inferior
, t
);
500 INHERIT (to_post_follow_inferior_by_clone
, t
);
501 INHERIT (to_insert_fork_catchpoint
, t
);
502 INHERIT (to_remove_fork_catchpoint
, t
);
503 INHERIT (to_insert_vfork_catchpoint
, t
);
504 INHERIT (to_remove_vfork_catchpoint
, t
);
505 INHERIT (to_has_forked
, t
);
506 INHERIT (to_has_vforked
, t
);
507 INHERIT (to_can_follow_vfork_prior_to_exec
, t
);
508 INHERIT (to_post_follow_vfork
, t
);
509 INHERIT (to_insert_exec_catchpoint
, t
);
510 INHERIT (to_remove_exec_catchpoint
, t
);
511 INHERIT (to_has_execd
, t
);
512 INHERIT (to_reported_exec_events_per_exec_call
, t
);
513 INHERIT (to_has_syscall_event
, t
);
514 INHERIT (to_has_exited
, t
);
515 INHERIT (to_mourn_inferior
, t
);
516 INHERIT (to_can_run
, t
);
517 INHERIT (to_notice_signals
, t
);
518 INHERIT (to_thread_alive
, t
);
519 INHERIT (to_find_new_threads
, t
);
520 INHERIT (to_stop
, t
);
521 INHERIT (to_query
, t
);
522 INHERIT (to_enable_exception_callback
, t
);
523 INHERIT (to_get_current_exception_event
, t
);
524 INHERIT (to_pid_to_exec_file
, t
);
525 INHERIT (to_core_file_to_sym_file
, t
);
526 INHERIT (to_stratum
, t
);
527 INHERIT (DONT_USE
, t
);
528 INHERIT (to_has_all_memory
, t
);
529 INHERIT (to_has_memory
, t
);
530 INHERIT (to_has_stack
, t
);
531 INHERIT (to_has_registers
, t
);
532 INHERIT (to_has_execution
, t
);
533 INHERIT (to_has_thread_control
, t
);
534 INHERIT (to_sections
, t
);
535 INHERIT (to_sections_end
, t
);
536 INHERIT (to_magic
, t
);
542 /* Push a new target type into the stack of the existing target accessors,
543 possibly superseding some of the existing accessors.
545 Result is zero if the pushed target ended up on top of the stack,
546 nonzero if at least one target is on top of it.
548 Rather than allow an empty stack, we always have the dummy target at
549 the bottom stratum, so we can call the function vectors without
554 struct target_ops
*t
;
556 struct target_stack_item
*cur
, *prev
, *tmp
;
558 /* Check magic number. If wrong, it probably means someone changed
559 the struct definition, but not all the places that initialize one. */
560 if (t
->to_magic
!= OPS_MAGIC
)
562 fprintf_unfiltered(gdb_stderr
,
563 "Magic number of %s target struct wrong\n",
568 /* Find the proper stratum to install this target in. */
570 for (prev
= NULL
, cur
= target_stack
; cur
; prev
= cur
, cur
= cur
->next
)
572 if ((int)(t
->to_stratum
) >= (int)(cur
->target_ops
->to_stratum
))
576 /* If there's already targets at this stratum, remove them. */
579 while (t
->to_stratum
== cur
->target_ops
->to_stratum
)
581 /* There's already something on this stratum. Close it off. */
582 if (cur
->target_ops
->to_close
)
583 (cur
->target_ops
->to_close
) (0);
585 prev
->next
= cur
->next
; /* Unchain old target_ops */
587 target_stack
= cur
->next
; /* Unchain first on list */
593 /* We have removed all targets in our stratum, now add the new one. */
595 tmp
= (struct target_stack_item
*)
596 xmalloc (sizeof (struct target_stack_item
));
605 update_current_target ();
607 cleanup_target (¤t_target
); /* Fill in the gaps */
610 setup_target_debug ();
615 /* Remove a target_ops vector from the stack, wherever it may be.
616 Return how many times it was removed (0 or 1). */
620 struct target_ops
*t
;
622 struct target_stack_item
*cur
, *prev
;
625 t
->to_close (0); /* Let it clean up */
627 /* Look for the specified target. Note that we assume that a target
628 can only occur once in the target stack. */
630 for (cur
= target_stack
, prev
= NULL
; cur
; prev
= cur
, cur
= cur
->next
)
631 if (cur
->target_ops
== t
)
635 return 0; /* Didn't find target_ops, quit now */
637 /* Unchain the target */
640 target_stack
= cur
->next
;
642 prev
->next
= cur
->next
;
644 free (cur
); /* Release the target_stack_item */
646 update_current_target ();
647 cleanup_target (¤t_target
);
655 (current_target
.to_close
)(0); /* Let it clean up */
656 if (unpush_target (target_stack
->target_ops
) == 1)
659 fprintf_unfiltered(gdb_stderr
,
660 "pop_target couldn't find target %s\n",
661 current_target
.to_shortname
);
666 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
668 /* target_read_string -- read a null terminated string, up to LEN bytes,
669 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
670 Set *STRING to a pointer to malloc'd memory containing the data; the caller
671 is responsible for freeing it. Return the number of bytes successfully
675 target_read_string (memaddr
, string
, len
, errnop
)
681 int tlen
, origlen
, offset
, i
;
685 int buffer_allocated
;
687 unsigned int nbytes_read
= 0;
689 /* Small for testing. */
690 buffer_allocated
= 4;
691 buffer
= xmalloc (buffer_allocated
);
698 tlen
= MIN (len
, 4 - (memaddr
& 3));
699 offset
= memaddr
& 3;
701 errcode
= target_xfer_memory (memaddr
& ~3, buf
, 4, 0, NULL
);
704 /* The transfer request might have crossed the boundary to an
705 unallocated region of memory. Retry the transfer, requesting
709 errcode
= target_xfer_memory (memaddr
, buf
, 1, 0, NULL
);
714 if (bufptr
- buffer
+ tlen
> buffer_allocated
)
717 bytes
= bufptr
- buffer
;
718 buffer_allocated
*= 2;
719 buffer
= xrealloc (buffer
, buffer_allocated
);
720 bufptr
= buffer
+ bytes
;
723 for (i
= 0; i
< tlen
; i
++)
725 *bufptr
++ = buf
[i
+ offset
];
726 if (buf
[i
+ offset
] == '\000')
728 nbytes_read
+= i
+ 1;
745 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
746 GDB's memory at MYADDR. Returns either 0 for success or an errno value
749 If an error occurs, no guarantee is made about the contents of the data at
750 MYADDR. In particular, the caller should not depend upon partial reads
751 filling the buffer with good data. There is no way for the caller to know
752 how much good data might have been transfered anyway. Callers that can
753 deal with partial reads should call target_read_memory_partial. */
756 target_read_memory (memaddr
, myaddr
, len
)
761 return target_xfer_memory (memaddr
, myaddr
, len
, 0, NULL
);
765 target_read_memory_section (memaddr
, myaddr
, len
, bfd_section
)
769 asection
*bfd_section
;
771 return target_xfer_memory (memaddr
, myaddr
, len
, 0, bfd_section
);
774 /* Read LEN bytes of target memory at address MEMADDR, placing the results
775 in GDB's memory at MYADDR. Returns a count of the bytes actually read,
776 and optionally an errno value in the location pointed to by ERRNOPTR
777 if ERRNOPTR is non-null. */
780 target_read_memory_partial (memaddr
, myaddr
, len
, errnoptr
)
786 int nread
; /* Number of bytes actually read. */
787 int errcode
; /* Error from last read. */
789 /* First try a complete read. */
790 errcode
= target_xfer_memory (memaddr
, myaddr
, len
, 0, NULL
);
798 /* Loop, reading one byte at a time until we get as much as we can. */
799 for (errcode
= 0, nread
= 0; len
> 0 && errcode
== 0; nread
++, len
--)
801 errcode
= target_xfer_memory (memaddr
++, myaddr
++, 1, 0, NULL
);
803 /* If an error, the last read was unsuccessful, so adjust count. */
809 if (errnoptr
!= NULL
)
817 target_write_memory (memaddr
, myaddr
, len
)
822 return target_xfer_memory (memaddr
, myaddr
, len
, 1, NULL
);
825 /* This variable is used to pass section information down to targets. This
826 *should* be done by adding an argument to the target_xfer_memory function
827 of all the targets, but I didn't feel like changing 50+ files. */
829 asection
*target_memory_bfd_section
= NULL
;
831 /* Move memory to or from the targets. Iterate until all of it has
832 been moved, if necessary. The top target gets priority; anything
833 it doesn't want, is offered to the next one down, etc. Note the
834 business with curlen: if an early target says "no, but I have a
835 boundary overlapping this xfer" then we shorten what we offer to
836 the subsequent targets so the early guy will get a chance at the
837 tail before the subsequent ones do.
839 Result is 0 or errno value. */
842 target_xfer_memory (memaddr
, myaddr
, len
, write
, bfd_section
)
847 asection
*bfd_section
;
851 struct target_ops
*t
;
852 struct target_stack_item
*item
;
854 /* Zero length requests are ok and require no work. */
858 target_memory_bfd_section
= bfd_section
;
860 /* to_xfer_memory is not guaranteed to set errno, even when it returns
864 /* The quick case is that the top target does it all. */
865 res
= current_target
.to_xfer_memory
866 (memaddr
, myaddr
, len
, write
, ¤t_target
);
872 /* If res <= 0 then we call it again in the loop. Ah well. */
876 curlen
= len
; /* Want to do it all */
877 for (item
= target_stack
; item
; item
= item
->next
)
879 t
= item
->target_ops
;
880 if (!t
->to_has_memory
)
883 res
= t
->to_xfer_memory (memaddr
, myaddr
, curlen
, write
, t
);
885 break; /* Handled all or part of xfer */
886 if (t
->to_has_all_memory
)
892 /* If this address is for nonexistent memory,
893 read zeros if reading, or do nothing if writing. Return error. */
895 memset (myaddr
, 0, len
);
906 return 0; /* We managed to cover it all somehow. */
912 target_info (args
, from_tty
)
916 struct target_ops
*t
;
917 struct target_stack_item
*item
;
920 if (symfile_objfile
!= NULL
)
921 printf_unfiltered ("Symbols from \"%s\".\n", symfile_objfile
->name
);
923 #ifdef FILES_INFO_HOOK
924 if (FILES_INFO_HOOK ())
928 for (item
= target_stack
; item
; item
= item
->next
)
930 t
= item
->target_ops
;
932 if (!t
->to_has_memory
)
935 if ((int)(t
->to_stratum
) <= (int)dummy_stratum
)
938 printf_unfiltered("\tWhile running this, GDB does not access memory from...\n");
939 printf_unfiltered("%s:\n", t
->to_longname
);
940 (t
->to_files_info
)(t
);
941 has_all_mem
= t
->to_has_all_memory
;
945 /* This is to be called by the open routine before it does
949 target_preopen (from_tty
)
954 if (target_has_execution
)
956 if (query ("A program is being debugged already. Kill it? "))
959 error ("Program not killed.");
962 /* Calling target_kill may remove the target from the stack. But if
963 it doesn't (which seems like a win for UDI), remove it now. */
965 if (target_has_execution
)
969 /* Detach a target after doing deferred register stores. */
972 target_detach (args
, from_tty
)
976 /* Handle any optimized stores to the inferior. */
977 #ifdef DO_DEFERRED_STORES
980 (current_target
.to_detach
) (args
, from_tty
);
984 target_link (modname
, t_reloc
)
988 if (STREQ(current_target
.to_shortname
, "rombug"))
990 (current_target
.to_lookup_symbol
) (modname
, t_reloc
);
992 error("Unable to link to %s and get relocation in rombug", modname
);
995 *t_reloc
= (CORE_ADDR
)-1;
998 /* Look through the list of possible targets for a target that can
999 execute a run or attach command without any other data. This is
1000 used to locate the default process stratum.
1002 Result is always valid (error() is called for errors). */
1004 static struct target_ops
*
1005 find_default_run_target (do_mesg
)
1008 struct target_ops
**t
;
1009 struct target_ops
*runable
= NULL
;
1014 for (t
= target_structs
; t
< target_structs
+ target_struct_size
;
1017 if ((*t
)->to_can_run
&& target_can_run(*t
))
1025 error ("Don't know how to %s. Try \"help target\".", do_mesg
);
1031 find_default_attach (args
, from_tty
)
1035 struct target_ops
*t
;
1037 t
= find_default_run_target("attach");
1038 (t
->to_attach
) (args
, from_tty
);
1043 find_default_require_attach (args
, from_tty
)
1047 struct target_ops
*t
;
1049 t
= find_default_run_target("require_attach");
1050 (t
->to_require_attach
) (args
, from_tty
);
1055 find_default_require_detach (pid
, args
, from_tty
)
1060 struct target_ops
*t
;
1062 t
= find_default_run_target("require_detach");
1063 (t
->to_require_detach
) (pid
, args
, from_tty
);
1068 find_default_create_inferior (exec_file
, allargs
, env
)
1073 struct target_ops
*t
;
1075 t
= find_default_run_target("run");
1076 (t
->to_create_inferior
) (exec_file
, allargs
, env
);
1081 find_default_clone_and_follow_inferior (child_pid
, followed_child
)
1083 int *followed_child
;
1085 struct target_ops
*t
;
1087 t
= find_default_run_target("run");
1088 (t
->to_clone_and_follow_inferior
) (child_pid
, followed_child
);
1104 /* Find a single runnable target in the stack and return it. If for
1105 some reason there is more than one, return NULL. */
1110 struct target_ops
**t
;
1111 struct target_ops
*runable
= NULL
;
1116 for (t
= target_structs
; t
< target_structs
+ target_struct_size
; ++t
)
1118 if ((*t
)->to_can_run
&& target_can_run(*t
))
1125 return (count
== 1 ? runable
: NULL
);
1131 struct target_ops
**t
;
1132 struct target_ops
*runable
= NULL
;
1137 for (t
= target_structs
; t
< target_structs
+ target_struct_size
;
1140 if ((*t
)->to_stratum
== core_stratum
)
1147 return(count
== 1 ? runable
: NULL
);
1150 /* The inferior process has died. Long live the inferior! */
1153 generic_mourn_inferior ()
1155 extern int show_breakpoint_hit_counts
;
1159 breakpoint_init_inferior (inf_exited
);
1160 registers_changed ();
1162 #ifdef CLEAR_DEFERRED_STORES
1163 /* Delete any pending stores to the inferior... */
1164 CLEAR_DEFERRED_STORES
;
1167 reopen_exec_file ();
1168 reinit_frame_cache ();
1170 /* It is confusing to the user for ignore counts to stick around
1171 from previous runs of the inferior. So clear them. */
1172 /* However, it is more confusing for the ignore counts to disappear when
1173 using hit counts. So don't clear them if we're counting hits. */
1174 if (!show_breakpoint_hit_counts
)
1175 breakpoint_clear_ignore_counts ();
1178 /* This table must match in order and size the signals in enum target_signal
1186 {"SIGHUP", "Hangup"},
1187 {"SIGINT", "Interrupt"},
1188 {"SIGQUIT", "Quit"},
1189 {"SIGILL", "Illegal instruction"},
1190 {"SIGTRAP", "Trace/breakpoint trap"},
1191 {"SIGABRT", "Aborted"},
1192 {"SIGEMT", "Emulation trap"},
1193 {"SIGFPE", "Arithmetic exception"},
1194 {"SIGKILL", "Killed"},
1195 {"SIGBUS", "Bus error"},
1196 {"SIGSEGV", "Segmentation fault"},
1197 {"SIGSYS", "Bad system call"},
1198 {"SIGPIPE", "Broken pipe"},
1199 {"SIGALRM", "Alarm clock"},
1200 {"SIGTERM", "Terminated"},
1201 {"SIGURG", "Urgent I/O condition"},
1202 {"SIGSTOP", "Stopped (signal)"},
1203 {"SIGTSTP", "Stopped (user)"},
1204 {"SIGCONT", "Continued"},
1205 {"SIGCHLD", "Child status changed"},
1206 {"SIGTTIN", "Stopped (tty input)"},
1207 {"SIGTTOU", "Stopped (tty output)"},
1208 {"SIGIO", "I/O possible"},
1209 {"SIGXCPU", "CPU time limit exceeded"},
1210 {"SIGXFSZ", "File size limit exceeded"},
1211 {"SIGVTALRM", "Virtual timer expired"},
1212 {"SIGPROF", "Profiling timer expired"},
1213 {"SIGWINCH", "Window size changed"},
1214 {"SIGLOST", "Resource lost"},
1215 {"SIGUSR1", "User defined signal 1"},
1216 {"SIGUSR2", "User defined signal 2"},
1217 {"SIGPWR", "Power fail/restart"},
1218 {"SIGPOLL", "Pollable event occurred"},
1219 {"SIGWIND", "SIGWIND"},
1220 {"SIGPHONE", "SIGPHONE"},
1221 {"SIGWAITING", "Process's LWPs are blocked"},
1222 {"SIGLWP", "Signal LWP"},
1223 {"SIGDANGER", "Swap space dangerously low"},
1224 {"SIGGRANT", "Monitor mode granted"},
1225 {"SIGRETRACT", "Need to relinquish monitor mode"},
1226 {"SIGMSG", "Monitor mode data available"},
1227 {"SIGSOUND", "Sound completed"},
1228 {"SIGSAK", "Secure attention"},
1229 {"SIGPRIO", "SIGPRIO"},
1230 {"SIG33", "Real-time event 33"},
1231 {"SIG34", "Real-time event 34"},
1232 {"SIG35", "Real-time event 35"},
1233 {"SIG36", "Real-time event 36"},
1234 {"SIG37", "Real-time event 37"},
1235 {"SIG38", "Real-time event 38"},
1236 {"SIG39", "Real-time event 39"},
1237 {"SIG40", "Real-time event 40"},
1238 {"SIG41", "Real-time event 41"},
1239 {"SIG42", "Real-time event 42"},
1240 {"SIG43", "Real-time event 43"},
1241 {"SIG44", "Real-time event 44"},
1242 {"SIG45", "Real-time event 45"},
1243 {"SIG46", "Real-time event 46"},
1244 {"SIG47", "Real-time event 47"},
1245 {"SIG48", "Real-time event 48"},
1246 {"SIG49", "Real-time event 49"},
1247 {"SIG50", "Real-time event 50"},
1248 {"SIG51", "Real-time event 51"},
1249 {"SIG52", "Real-time event 52"},
1250 {"SIG53", "Real-time event 53"},
1251 {"SIG54", "Real-time event 54"},
1252 {"SIG55", "Real-time event 55"},
1253 {"SIG56", "Real-time event 56"},
1254 {"SIG57", "Real-time event 57"},
1255 {"SIG58", "Real-time event 58"},
1256 {"SIG59", "Real-time event 59"},
1257 {"SIG60", "Real-time event 60"},
1258 {"SIG61", "Real-time event 61"},
1259 {"SIG62", "Real-time event 62"},
1260 {"SIG63", "Real-time event 63"},
1261 {"SIGCANCEL", "LWP internal signal"},
1263 #if defined(MACH) || defined(__MACH__)
1264 /* Mach exceptions */
1265 {"EXC_BAD_ACCESS", "Could not access memory"},
1266 {"EXC_BAD_INSTRUCTION", "Illegal instruction/operand"},
1267 {"EXC_ARITHMETIC", "Arithmetic exception"},
1268 {"EXC_EMULATION", "Emulation instruction"},
1269 {"EXC_SOFTWARE", "Software generated exception"},
1270 {"EXC_BREAKPOINT", "Breakpoint"},
1272 {"SIGINFO", "Information request"},
1274 {NULL
, "Unknown signal"},
1275 {NULL
, "Internal error: printing TARGET_SIGNAL_DEFAULT"},
1277 /* Last entry, used to check whether the table is the right size. */
1278 {NULL
, "TARGET_SIGNAL_MAGIC"}
1281 /* Return the string for a signal. */
1283 target_signal_to_string (sig
)
1284 enum target_signal sig
;
1286 if ((sig
>= TARGET_SIGNAL_FIRST
) && (sig
<= TARGET_SIGNAL_LAST
))
1287 return signals
[sig
].string
;
1289 return signals
[TARGET_SIGNAL_UNKNOWN
].string
;
1292 /* Return the name for a signal. */
1294 target_signal_to_name (sig
)
1295 enum target_signal sig
;
1297 if (sig
== TARGET_SIGNAL_UNKNOWN
)
1298 /* I think the code which prints this will always print it along with
1299 the string, so no need to be verbose. */
1301 return signals
[sig
].name
;
1304 /* Given a name, return its signal. */
1306 target_signal_from_name (name
)
1309 enum target_signal sig
;
1311 /* It's possible we also should allow "SIGCLD" as well as "SIGCHLD"
1312 for TARGET_SIGNAL_SIGCHLD. SIGIOT, on the other hand, is more
1313 questionable; seems like by now people should call it SIGABRT
1316 /* This ugly cast brought to you by the native VAX compiler. */
1317 for (sig
= TARGET_SIGNAL_HUP
;
1318 signals
[sig
].name
!= NULL
;
1319 sig
= (enum target_signal
)((int)sig
+ 1))
1320 if (STREQ (name
, signals
[sig
].name
))
1322 return TARGET_SIGNAL_UNKNOWN
;
1325 /* The following functions are to help certain targets deal
1326 with the signal/waitstatus stuff. They could just as well be in
1327 a file called native-utils.c or unixwaitstatus-utils.c or whatever. */
1329 /* Convert host signal to our signals. */
1331 target_signal_from_host (hostsig
)
1334 /* A switch statement would make sense but would require special kludges
1335 to deal with the cases where more than one signal has the same number. */
1337 if (hostsig
== 0) return TARGET_SIGNAL_0
;
1339 #if defined (SIGHUP)
1340 if (hostsig
== SIGHUP
) return TARGET_SIGNAL_HUP
;
1342 #if defined (SIGINT)
1343 if (hostsig
== SIGINT
) return TARGET_SIGNAL_INT
;
1345 #if defined (SIGQUIT)
1346 if (hostsig
== SIGQUIT
) return TARGET_SIGNAL_QUIT
;
1348 #if defined (SIGILL)
1349 if (hostsig
== SIGILL
) return TARGET_SIGNAL_ILL
;
1351 #if defined (SIGTRAP)
1352 if (hostsig
== SIGTRAP
) return TARGET_SIGNAL_TRAP
;
1354 #if defined (SIGABRT)
1355 if (hostsig
== SIGABRT
) return TARGET_SIGNAL_ABRT
;
1357 #if defined (SIGEMT)
1358 if (hostsig
== SIGEMT
) return TARGET_SIGNAL_EMT
;
1360 #if defined (SIGFPE)
1361 if (hostsig
== SIGFPE
) return TARGET_SIGNAL_FPE
;
1363 #if defined (SIGKILL)
1364 if (hostsig
== SIGKILL
) return TARGET_SIGNAL_KILL
;
1366 #if defined (SIGBUS)
1367 if (hostsig
== SIGBUS
) return TARGET_SIGNAL_BUS
;
1369 #if defined (SIGSEGV)
1370 if (hostsig
== SIGSEGV
) return TARGET_SIGNAL_SEGV
;
1372 #if defined (SIGSYS)
1373 if (hostsig
== SIGSYS
) return TARGET_SIGNAL_SYS
;
1375 #if defined (SIGPIPE)
1376 if (hostsig
== SIGPIPE
) return TARGET_SIGNAL_PIPE
;
1378 #if defined (SIGALRM)
1379 if (hostsig
== SIGALRM
) return TARGET_SIGNAL_ALRM
;
1381 #if defined (SIGTERM)
1382 if (hostsig
== SIGTERM
) return TARGET_SIGNAL_TERM
;
1384 #if defined (SIGUSR1)
1385 if (hostsig
== SIGUSR1
) return TARGET_SIGNAL_USR1
;
1387 #if defined (SIGUSR2)
1388 if (hostsig
== SIGUSR2
) return TARGET_SIGNAL_USR2
;
1390 #if defined (SIGCLD)
1391 if (hostsig
== SIGCLD
) return TARGET_SIGNAL_CHLD
;
1393 #if defined (SIGCHLD)
1394 if (hostsig
== SIGCHLD
) return TARGET_SIGNAL_CHLD
;
1396 #if defined (SIGPWR)
1397 if (hostsig
== SIGPWR
) return TARGET_SIGNAL_PWR
;
1399 #if defined (SIGWINCH)
1400 if (hostsig
== SIGWINCH
) return TARGET_SIGNAL_WINCH
;
1402 #if defined (SIGURG)
1403 if (hostsig
== SIGURG
) return TARGET_SIGNAL_URG
;
1406 if (hostsig
== SIGIO
) return TARGET_SIGNAL_IO
;
1408 #if defined (SIGPOLL)
1409 if (hostsig
== SIGPOLL
) return TARGET_SIGNAL_POLL
;
1411 #if defined (SIGSTOP)
1412 if (hostsig
== SIGSTOP
) return TARGET_SIGNAL_STOP
;
1414 #if defined (SIGTSTP)
1415 if (hostsig
== SIGTSTP
) return TARGET_SIGNAL_TSTP
;
1417 #if defined (SIGCONT)
1418 if (hostsig
== SIGCONT
) return TARGET_SIGNAL_CONT
;
1420 #if defined (SIGTTIN)
1421 if (hostsig
== SIGTTIN
) return TARGET_SIGNAL_TTIN
;
1423 #if defined (SIGTTOU)
1424 if (hostsig
== SIGTTOU
) return TARGET_SIGNAL_TTOU
;
1426 #if defined (SIGVTALRM)
1427 if (hostsig
== SIGVTALRM
) return TARGET_SIGNAL_VTALRM
;
1429 #if defined (SIGPROF)
1430 if (hostsig
== SIGPROF
) return TARGET_SIGNAL_PROF
;
1432 #if defined (SIGXCPU)
1433 if (hostsig
== SIGXCPU
) return TARGET_SIGNAL_XCPU
;
1435 #if defined (SIGXFSZ)
1436 if (hostsig
== SIGXFSZ
) return TARGET_SIGNAL_XFSZ
;
1438 #if defined (SIGWIND)
1439 if (hostsig
== SIGWIND
) return TARGET_SIGNAL_WIND
;
1441 #if defined (SIGPHONE)
1442 if (hostsig
== SIGPHONE
) return TARGET_SIGNAL_PHONE
;
1444 #if defined (SIGLOST)
1445 if (hostsig
== SIGLOST
) return TARGET_SIGNAL_LOST
;
1447 #if defined (SIGWAITING)
1448 if (hostsig
== SIGWAITING
) return TARGET_SIGNAL_WAITING
;
1450 #if defined (SIGCANCEL)
1451 if (hostsig
== SIGCANCEL
) return TARGET_SIGNAL_CANCEL
;
1453 #if defined (SIGLWP)
1454 if (hostsig
== SIGLWP
) return TARGET_SIGNAL_LWP
;
1456 #if defined (SIGDANGER)
1457 if (hostsig
== SIGDANGER
) return TARGET_SIGNAL_DANGER
;
1459 #if defined (SIGGRANT)
1460 if (hostsig
== SIGGRANT
) return TARGET_SIGNAL_GRANT
;
1462 #if defined (SIGRETRACT)
1463 if (hostsig
== SIGRETRACT
) return TARGET_SIGNAL_RETRACT
;
1465 #if defined (SIGMSG)
1466 if (hostsig
== SIGMSG
) return TARGET_SIGNAL_MSG
;
1468 #if defined (SIGSOUND)
1469 if (hostsig
== SIGSOUND
) return TARGET_SIGNAL_SOUND
;
1471 #if defined (SIGSAK)
1472 if (hostsig
== SIGSAK
) return TARGET_SIGNAL_SAK
;
1474 #if defined (SIGPRIO)
1475 if (hostsig
== SIGPRIO
) return TARGET_SIGNAL_PRIO
;
1478 /* Mach exceptions. Assumes that the values for EXC_ are positive! */
1479 #if defined (EXC_BAD_ACCESS) && defined (_NSIG)
1480 if (hostsig
== _NSIG
+ EXC_BAD_ACCESS
) return TARGET_EXC_BAD_ACCESS
;
1482 #if defined (EXC_BAD_INSTRUCTION) && defined (_NSIG)
1483 if (hostsig
== _NSIG
+ EXC_BAD_INSTRUCTION
) return TARGET_EXC_BAD_INSTRUCTION
;
1485 #if defined (EXC_ARITHMETIC) && defined (_NSIG)
1486 if (hostsig
== _NSIG
+ EXC_ARITHMETIC
) return TARGET_EXC_ARITHMETIC
;
1488 #if defined (EXC_EMULATION) && defined (_NSIG)
1489 if (hostsig
== _NSIG
+ EXC_EMULATION
) return TARGET_EXC_EMULATION
;
1491 #if defined (EXC_SOFTWARE) && defined (_NSIG)
1492 if (hostsig
== _NSIG
+ EXC_SOFTWARE
) return TARGET_EXC_SOFTWARE
;
1494 #if defined (EXC_BREAKPOINT) && defined (_NSIG)
1495 if (hostsig
== _NSIG
+ EXC_BREAKPOINT
) return TARGET_EXC_BREAKPOINT
;
1498 #if defined (SIGINFO)
1499 if (hostsig
== SIGINFO
) return TARGET_SIGNAL_INFO
;
1502 #if defined (REALTIME_LO)
1503 if (hostsig
>= REALTIME_LO
&& hostsig
< REALTIME_HI
)
1504 return (enum target_signal
)
1505 (hostsig
- 33 + (int) TARGET_SIGNAL_REALTIME_33
);
1507 return TARGET_SIGNAL_UNKNOWN
;
1511 target_signal_to_host (oursig
)
1512 enum target_signal oursig
;
1516 case TARGET_SIGNAL_0
: return 0;
1518 #if defined (SIGHUP)
1519 case TARGET_SIGNAL_HUP
: return SIGHUP
;
1521 #if defined (SIGINT)
1522 case TARGET_SIGNAL_INT
: return SIGINT
;
1524 #if defined (SIGQUIT)
1525 case TARGET_SIGNAL_QUIT
: return SIGQUIT
;
1527 #if defined (SIGILL)
1528 case TARGET_SIGNAL_ILL
: return SIGILL
;
1530 #if defined (SIGTRAP)
1531 case TARGET_SIGNAL_TRAP
: return SIGTRAP
;
1533 #if defined (SIGABRT)
1534 case TARGET_SIGNAL_ABRT
: return SIGABRT
;
1536 #if defined (SIGEMT)
1537 case TARGET_SIGNAL_EMT
: return SIGEMT
;
1539 #if defined (SIGFPE)
1540 case TARGET_SIGNAL_FPE
: return SIGFPE
;
1542 #if defined (SIGKILL)
1543 case TARGET_SIGNAL_KILL
: return SIGKILL
;
1545 #if defined (SIGBUS)
1546 case TARGET_SIGNAL_BUS
: return SIGBUS
;
1548 #if defined (SIGSEGV)
1549 case TARGET_SIGNAL_SEGV
: return SIGSEGV
;
1551 #if defined (SIGSYS)
1552 case TARGET_SIGNAL_SYS
: return SIGSYS
;
1554 #if defined (SIGPIPE)
1555 case TARGET_SIGNAL_PIPE
: return SIGPIPE
;
1557 #if defined (SIGALRM)
1558 case TARGET_SIGNAL_ALRM
: return SIGALRM
;
1560 #if defined (SIGTERM)
1561 case TARGET_SIGNAL_TERM
: return SIGTERM
;
1563 #if defined (SIGUSR1)
1564 case TARGET_SIGNAL_USR1
: return SIGUSR1
;
1566 #if defined (SIGUSR2)
1567 case TARGET_SIGNAL_USR2
: return SIGUSR2
;
1569 #if defined (SIGCHLD) || defined (SIGCLD)
1570 case TARGET_SIGNAL_CHLD
:
1571 #if defined (SIGCHLD)
1576 #endif /* SIGCLD or SIGCHLD */
1577 #if defined (SIGPWR)
1578 case TARGET_SIGNAL_PWR
: return SIGPWR
;
1580 #if defined (SIGWINCH)
1581 case TARGET_SIGNAL_WINCH
: return SIGWINCH
;
1583 #if defined (SIGURG)
1584 case TARGET_SIGNAL_URG
: return SIGURG
;
1587 case TARGET_SIGNAL_IO
: return SIGIO
;
1589 #if defined (SIGPOLL)
1590 case TARGET_SIGNAL_POLL
: return SIGPOLL
;
1592 #if defined (SIGSTOP)
1593 case TARGET_SIGNAL_STOP
: return SIGSTOP
;
1595 #if defined (SIGTSTP)
1596 case TARGET_SIGNAL_TSTP
: return SIGTSTP
;
1598 #if defined (SIGCONT)
1599 case TARGET_SIGNAL_CONT
: return SIGCONT
;
1601 #if defined (SIGTTIN)
1602 case TARGET_SIGNAL_TTIN
: return SIGTTIN
;
1604 #if defined (SIGTTOU)
1605 case TARGET_SIGNAL_TTOU
: return SIGTTOU
;
1607 #if defined (SIGVTALRM)
1608 case TARGET_SIGNAL_VTALRM
: return SIGVTALRM
;
1610 #if defined (SIGPROF)
1611 case TARGET_SIGNAL_PROF
: return SIGPROF
;
1613 #if defined (SIGXCPU)
1614 case TARGET_SIGNAL_XCPU
: return SIGXCPU
;
1616 #if defined (SIGXFSZ)
1617 case TARGET_SIGNAL_XFSZ
: return SIGXFSZ
;
1619 #if defined (SIGWIND)
1620 case TARGET_SIGNAL_WIND
: return SIGWIND
;
1622 #if defined (SIGPHONE)
1623 case TARGET_SIGNAL_PHONE
: return SIGPHONE
;
1625 #if defined (SIGLOST)
1626 case TARGET_SIGNAL_LOST
: return SIGLOST
;
1628 #if defined (SIGWAITING)
1629 case TARGET_SIGNAL_WAITING
: return SIGWAITING
;
1631 #if defined (SIGCANCEL)
1632 case TARGET_SIGNAL_CANCEL
: return SIGCANCEL
;
1634 #if defined (SIGLWP)
1635 case TARGET_SIGNAL_LWP
: return SIGLWP
;
1637 #if defined (SIGDANGER)
1638 case TARGET_SIGNAL_DANGER
: return SIGDANGER
;
1640 #if defined (SIGGRANT)
1641 case TARGET_SIGNAL_GRANT
: return SIGGRANT
;
1643 #if defined (SIGRETRACT)
1644 case TARGET_SIGNAL_RETRACT
: return SIGRETRACT
;
1646 #if defined (SIGMSG)
1647 case TARGET_SIGNAL_MSG
: return SIGMSG
;
1649 #if defined (SIGSOUND)
1650 case TARGET_SIGNAL_SOUND
: return SIGSOUND
;
1652 #if defined (SIGSAK)
1653 case TARGET_SIGNAL_SAK
: return SIGSAK
;
1655 #if defined (SIGPRIO)
1656 case TARGET_SIGNAL_PRIO
: return SIGPRIO
;
1659 /* Mach exceptions. Assumes that the values for EXC_ are positive! */
1660 #if defined (EXC_BAD_ACCESS) && defined (_NSIG)
1661 case TARGET_EXC_BAD_ACCESS
: return _NSIG
+ EXC_BAD_ACCESS
;
1663 #if defined (EXC_BAD_INSTRUCTION) && defined (_NSIG)
1664 case TARGET_EXC_BAD_INSTRUCTION
: return _NSIG
+ EXC_BAD_INSTRUCTION
;
1666 #if defined (EXC_ARITHMETIC) && defined (_NSIG)
1667 case TARGET_EXC_ARITHMETIC
: return _NSIG
+ EXC_ARITHMETIC
;
1669 #if defined (EXC_EMULATION) && defined (_NSIG)
1670 case TARGET_EXC_EMULATION
: return _NSIG
+ EXC_EMULATION
;
1672 #if defined (EXC_SOFTWARE) && defined (_NSIG)
1673 case TARGET_EXC_SOFTWARE
: return _NSIG
+ EXC_SOFTWARE
;
1675 #if defined (EXC_BREAKPOINT) && defined (_NSIG)
1676 case TARGET_EXC_BREAKPOINT
: return _NSIG
+ EXC_BREAKPOINT
;
1679 #if defined (SIGINFO)
1680 case TARGET_SIGNAL_INFO
: return SIGINFO
;
1684 #if defined (REALTIME_LO)
1685 if (oursig
>= TARGET_SIGNAL_REALTIME_33
1686 && oursig
<= TARGET_SIGNAL_REALTIME_63
)
1689 (int)oursig
- (int)TARGET_SIGNAL_REALTIME_33
+ REALTIME_LO
;
1690 if (retsig
< REALTIME_HI
)
1694 /* The user might be trying to do "signal SIGSAK" where this system
1695 doesn't have SIGSAK. */
1696 warning ("Signal %s does not exist on this system.\n",
1697 target_signal_to_name (oursig
));
1702 /* Helper function for child_wait and the Lynx derivatives of child_wait.
1703 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
1704 translation of that in OURSTATUS. */
1706 store_waitstatus (ourstatus
, hoststatus
)
1707 struct target_waitstatus
*ourstatus
;
1710 #ifdef CHILD_SPECIAL_WAITSTATUS
1711 /* CHILD_SPECIAL_WAITSTATUS should return nonzero and set *OURSTATUS
1712 if it wants to deal with hoststatus. */
1713 if (CHILD_SPECIAL_WAITSTATUS (ourstatus
, hoststatus
))
1717 if (WIFEXITED (hoststatus
))
1719 ourstatus
->kind
= TARGET_WAITKIND_EXITED
;
1720 ourstatus
->value
.integer
= WEXITSTATUS (hoststatus
);
1722 else if (!WIFSTOPPED (hoststatus
))
1724 ourstatus
->kind
= TARGET_WAITKIND_SIGNALLED
;
1725 ourstatus
->value
.sig
= target_signal_from_host (WTERMSIG (hoststatus
));
1729 ourstatus
->kind
= TARGET_WAITKIND_STOPPED
;
1730 ourstatus
->value
.sig
= target_signal_from_host (WSTOPSIG (hoststatus
));
1734 /* In some circumstances we allow a command to specify a numeric
1735 signal. The idea is to keep these circumstances limited so that
1736 users (and scripts) develop portable habits. For comparison,
1737 POSIX.2 `kill' requires that 1,2,3,6,9,14, and 15 work (and using a
1738 numeric signal at all is obscelescent. We are slightly more
1739 lenient and allow 1-15 which should match host signal numbers on
1740 most systems. Use of symbolic signal names is strongly encouraged. */
1743 target_signal_from_command (num
)
1746 if (num
>= 1 && num
<= 15)
1747 return (enum target_signal
)num
;
1748 error ("Only signals 1-15 are valid as numeric signals.\n\
1749 Use \"info signals\" for a list of symbolic signals.");
1752 /* Returns zero to leave the inferior alone, one to interrupt it. */
1753 int (*target_activity_function
) PARAMS ((void));
1754 int target_activity_fd
;
1756 /* Convert a normal process ID to a string. Returns the string in a static
1760 normal_pid_to_str (pid
)
1763 static char buf
[30];
1765 if (STREQ (current_target
.to_shortname
, "remote"))
1766 sprintf (buf
, "thread %d\0", pid
);
1768 sprintf (buf
, "process %d\0", pid
);
1773 /* Some targets (such as ttrace-based HPUX) don't allow us to request
1774 notification of inferior events such as fork and vork immediately
1775 after the inferior is created. (This because of how gdb gets an
1776 inferior created via invoking a shell to do it. In such a scenario,
1777 if the shell init file has commands in it, the shell will fork and
1778 exec for each of those commands, and we will see each such fork
1781 This function is used by all targets that allow us to request
1782 notification of forks, etc at inferior creation time; e.g., in
1783 target_acknowledge_forked_child.
1786 normal_target_post_startup_inferior (pid
)
1789 /* This space intentionally left blank. */
1792 /* Set up the handful of non-empty slots needed by the dummy target
1796 init_dummy_target ()
1798 dummy_target
.to_shortname
= "None";
1799 dummy_target
.to_longname
= "None";
1800 dummy_target
.to_doc
= "";
1801 dummy_target
.to_attach
= find_default_attach
;
1802 dummy_target
.to_require_attach
= find_default_require_attach
;
1803 dummy_target
.to_require_detach
= find_default_require_detach
;
1804 dummy_target
.to_create_inferior
= find_default_create_inferior
;
1805 dummy_target
.to_clone_and_follow_inferior
= find_default_clone_and_follow_inferior
;
1806 dummy_target
.to_stratum
= dummy_stratum
;
1807 dummy_target
.to_magic
= OPS_MAGIC
;
1811 static struct target_ops debug_target
;
1814 debug_to_open (args
, from_tty
)
1818 debug_target
.to_open (args
, from_tty
);
1820 fprintf_unfiltered (gdb_stderr
, "target_open (%s, %d)\n", args
, from_tty
);
1824 debug_to_close (quitting
)
1827 debug_target
.to_close (quitting
);
1829 fprintf_unfiltered (gdb_stderr
, "target_close (%d)\n", quitting
);
1833 debug_to_attach (args
, from_tty
)
1837 debug_target
.to_attach (args
, from_tty
);
1839 fprintf_unfiltered (gdb_stderr
, "target_attach (%s, %d)\n", args
, from_tty
);
1844 debug_to_post_attach (pid
)
1847 debug_target
.to_post_attach (pid
);
1849 fprintf_unfiltered (gdb_stderr
, "target_post_attach (%d)\n", pid
);
1853 debug_to_require_attach (args
, from_tty
)
1857 debug_target
.to_require_attach (args
, from_tty
);
1859 fprintf_unfiltered (gdb_stderr
,
1860 "target_require_attach (%s, %d)\n", args
, from_tty
);
1864 debug_to_detach (args
, from_tty
)
1868 debug_target
.to_detach (args
, from_tty
);
1870 fprintf_unfiltered (gdb_stderr
, "target_detach (%s, %d)\n", args
, from_tty
);
1874 debug_to_require_detach (pid
, args
, from_tty
)
1879 debug_target
.to_require_detach (pid
, args
, from_tty
);
1881 fprintf_unfiltered (gdb_stderr
,
1882 "target_require_detach (%d, %s, %d)\n", pid
, args
, from_tty
);
1886 debug_to_resume (pid
, step
, siggnal
)
1889 enum target_signal siggnal
;
1891 debug_target
.to_resume (pid
, step
, siggnal
);
1893 fprintf_unfiltered (gdb_stderr
, "target_resume (%d, %s, %s)\n", pid
,
1894 step
? "step" : "continue",
1895 target_signal_to_name (siggnal
));
1899 debug_to_wait (pid
, status
)
1901 struct target_waitstatus
*status
;
1905 retval
= debug_target
.to_wait (pid
, status
);
1907 fprintf_unfiltered (gdb_stderr
,
1908 "target_wait (%d, status) = %d, ", pid
, retval
);
1909 fprintf_unfiltered (gdb_stderr
, "status->kind = ");
1910 switch (status
->kind
)
1912 case TARGET_WAITKIND_EXITED
:
1913 fprintf_unfiltered (gdb_stderr
, "exited, status = %d\n",
1914 status
->value
.integer
);
1916 case TARGET_WAITKIND_STOPPED
:
1917 fprintf_unfiltered (gdb_stderr
, "stopped, signal = %s\n",
1918 target_signal_to_name (status
->value
.sig
));
1920 case TARGET_WAITKIND_SIGNALLED
:
1921 fprintf_unfiltered (gdb_stderr
, "signalled, signal = %s\n",
1922 target_signal_to_name (status
->value
.sig
));
1924 case TARGET_WAITKIND_LOADED
:
1925 fprintf_unfiltered (gdb_stderr
, "loaded\n");
1927 case TARGET_WAITKIND_FORKED
:
1928 fprintf_unfiltered (gdb_stderr
, "forked\n");
1930 case TARGET_WAITKIND_VFORKED
:
1931 fprintf_unfiltered (gdb_stderr
, "vforked\n");
1933 case TARGET_WAITKIND_EXECD
:
1934 fprintf_unfiltered (gdb_stderr
, "execd\n");
1936 case TARGET_WAITKIND_SPURIOUS
:
1937 fprintf_unfiltered (gdb_stderr
, "spurious\n");
1940 fprintf_unfiltered (gdb_stderr
, "unknown???\n");
1948 debug_to_post_wait (pid
, status
)
1952 debug_target
.to_post_wait (pid
, status
);
1954 fprintf_unfiltered (gdb_stderr
, "target_post_wait (%d, %d)\n",
1959 debug_to_fetch_registers (regno
)
1962 debug_target
.to_fetch_registers (regno
);
1964 fprintf_unfiltered (gdb_stderr
, "target_fetch_registers (%s)",
1965 regno
!= -1 ? REGISTER_NAME (regno
) : "-1");
1967 fprintf_unfiltered (gdb_stderr
, " = 0x%x %d",
1968 (unsigned long) read_register (regno
),
1969 read_register (regno
));
1970 fprintf_unfiltered (gdb_stderr
, "\n");
1974 debug_to_store_registers (regno
)
1977 debug_target
.to_store_registers (regno
);
1979 if (regno
>= 0 && regno
< NUM_REGS
)
1980 fprintf_unfiltered (gdb_stderr
, "target_store_registers (%s) = 0x%x %d\n",
1981 REGISTER_NAME (regno
),
1982 (unsigned long) read_register (regno
),
1983 (unsigned long) read_register (regno
));
1985 fprintf_unfiltered (gdb_stderr
, "target_store_registers (%d)\n", regno
);
1989 debug_to_prepare_to_store ()
1991 debug_target
.to_prepare_to_store ();
1993 fprintf_unfiltered (gdb_stderr
, "target_prepare_to_store ()\n");
1997 debug_to_xfer_memory (memaddr
, myaddr
, len
, write
, target
)
2002 struct target_ops
*target
;
2006 retval
= debug_target
.to_xfer_memory (memaddr
, myaddr
, len
, write
, target
);
2008 fprintf_unfiltered (gdb_stderr
,
2009 "target_xfer_memory (0x%x, xxx, %d, %s, xxx) = %d",
2010 (unsigned int) memaddr
, /* possable truncate long long */
2011 len
, write
? "write" : "read", retval
);
2019 fputs_unfiltered (", bytes =", gdb_stderr
);
2020 for (i
= 0; i
< retval
; i
++)
2022 if ((((long) &(myaddr
[i
])) & 0xf) == 0)
2023 fprintf_unfiltered (gdb_stderr
, "\n");
2024 fprintf_unfiltered (gdb_stderr
, " %02x", myaddr
[i
] & 0xff);
2028 fputc_unfiltered ('\n', gdb_stderr
);
2034 debug_to_files_info (target
)
2035 struct target_ops
*target
;
2037 debug_target
.to_files_info (target
);
2039 fprintf_unfiltered (gdb_stderr
, "target_files_info (xxx)\n");
2043 debug_to_insert_breakpoint (addr
, save
)
2049 retval
= debug_target
.to_insert_breakpoint (addr
, save
);
2051 fprintf_unfiltered (gdb_stderr
,
2052 "target_insert_breakpoint (0x%x, xxx) = %d\n",
2053 (unsigned long) addr
, retval
);
2058 debug_to_remove_breakpoint (addr
, save
)
2064 retval
= debug_target
.to_remove_breakpoint (addr
, save
);
2066 fprintf_unfiltered (gdb_stderr
,
2067 "target_remove_breakpoint (0x%x, xxx) = %d\n",
2068 (unsigned long)addr
, retval
);
2073 debug_to_terminal_init ()
2075 debug_target
.to_terminal_init ();
2077 fprintf_unfiltered (gdb_stderr
, "target_terminal_init ()\n");
2081 debug_to_terminal_inferior ()
2083 debug_target
.to_terminal_inferior ();
2085 fprintf_unfiltered (gdb_stderr
, "target_terminal_inferior ()\n");
2089 debug_to_terminal_ours_for_output ()
2091 debug_target
.to_terminal_ours_for_output ();
2093 fprintf_unfiltered (gdb_stderr
, "target_terminal_ours_for_output ()\n");
2097 debug_to_terminal_ours ()
2099 debug_target
.to_terminal_ours ();
2101 fprintf_unfiltered (gdb_stderr
, "target_terminal_ours ()\n");
2105 debug_to_terminal_info (arg
, from_tty
)
2109 debug_target
.to_terminal_info (arg
, from_tty
);
2111 fprintf_unfiltered (gdb_stderr
, "target_terminal_info (%s, %d)\n", arg
,
2118 debug_target
.to_kill ();
2120 fprintf_unfiltered (gdb_stderr
, "target_kill ()\n");
2124 debug_to_load (args
, from_tty
)
2128 debug_target
.to_load (args
, from_tty
);
2130 fprintf_unfiltered (gdb_stderr
, "target_load (%s, %d)\n", args
, from_tty
);
2134 debug_to_lookup_symbol (name
, addrp
)
2140 retval
= debug_target
.to_lookup_symbol (name
, addrp
);
2142 fprintf_unfiltered (gdb_stderr
, "target_lookup_symbol (%s, xxx)\n", name
);
2148 debug_to_create_inferior (exec_file
, args
, env
)
2153 debug_target
.to_create_inferior (exec_file
, args
, env
);
2155 fprintf_unfiltered (gdb_stderr
, "target_create_inferior (%s, %s, xxx)\n",
2160 debug_to_post_startup_inferior (pid
)
2163 debug_target
.to_post_startup_inferior (pid
);
2165 fprintf_unfiltered (gdb_stderr
, "target_post_startup_inferior (%d)\n",
2170 debug_to_acknowledge_created_inferior (pid
)
2173 debug_target
.to_acknowledge_created_inferior (pid
);
2175 fprintf_unfiltered (gdb_stderr
, "target_acknowledge_created_inferior (%d)\n",
2180 debug_to_clone_and_follow_inferior (child_pid
, followed_child
)
2182 int *followed_child
;
2184 debug_target
.to_clone_and_follow_inferior (child_pid
, followed_child
);
2186 fprintf_unfiltered (gdb_stderr
,
2187 "target_clone_and_follow_inferior (%d, %d)\n",
2188 child_pid
, *followed_child
);
2192 debug_to_post_follow_inferior_by_clone ()
2194 debug_target
.to_post_follow_inferior_by_clone ();
2196 fprintf_unfiltered (gdb_stderr
, "target_post_follow_inferior_by_clone ()\n");
2200 debug_to_insert_fork_catchpoint (pid
)
2205 retval
= debug_target
.to_insert_fork_catchpoint (pid
);
2207 fprintf_unfiltered (gdb_stderr
, "target_insert_fork_catchpoint (%d) = %d\n",
2214 debug_to_remove_fork_catchpoint (pid
)
2219 retval
= debug_target
.to_remove_fork_catchpoint (pid
);
2221 fprintf_unfiltered (gdb_stderr
, "target_remove_fork_catchpoint (%d) = %d\n",
2228 debug_to_insert_vfork_catchpoint (pid
)
2233 retval
= debug_target
.to_insert_vfork_catchpoint (pid
);
2235 fprintf_unfiltered (gdb_stderr
, "target_insert_vfork_catchpoint (%d)= %d\n",
2242 debug_to_remove_vfork_catchpoint (pid
)
2247 retval
= debug_target
.to_remove_vfork_catchpoint (pid
);
2249 fprintf_unfiltered (gdb_stderr
, "target_remove_vfork_catchpoint (%d) = %d\n",
2256 debug_to_has_forked (pid
, child_pid
)
2262 has_forked
= debug_target
.to_has_forked (pid
, child_pid
);
2264 fprintf_unfiltered (gdb_stderr
, "target_has_forked (%d, %d) = %d\n",
2265 pid
, *child_pid
, has_forked
);
2271 debug_to_has_vforked (pid
, child_pid
)
2277 has_vforked
= debug_target
.to_has_vforked (pid
, child_pid
);
2279 fprintf_unfiltered (gdb_stderr
, "target_has_vforked (%d, %d) = %d\n",
2280 pid
, *child_pid
, has_vforked
);
2286 debug_to_can_follow_vfork_prior_to_exec ()
2288 int can_immediately_follow_vfork
;
2290 can_immediately_follow_vfork
= debug_target
.to_can_follow_vfork_prior_to_exec ();
2292 fprintf_unfiltered (gdb_stderr
, "target_can_follow_vfork_prior_to_exec () = %d\n",
2293 can_immediately_follow_vfork
);
2295 return can_immediately_follow_vfork
;
2299 debug_to_post_follow_vfork (parent_pid
, followed_parent
, child_pid
, followed_child
)
2301 int followed_parent
;
2305 debug_target
.to_post_follow_vfork (parent_pid
, followed_parent
, child_pid
, followed_child
);
2307 fprintf_unfiltered (gdb_stderr
,
2308 "target_post_follow_vfork (%d, %d, %d, %d)\n",
2309 parent_pid
, followed_parent
, child_pid
, followed_child
);
2313 debug_to_insert_exec_catchpoint (pid
)
2318 retval
= debug_target
.to_insert_exec_catchpoint (pid
);
2320 fprintf_unfiltered (gdb_stderr
, "target_insert_exec_catchpoint (%d) = %d\n",
2327 debug_to_remove_exec_catchpoint (pid
)
2332 retval
= debug_target
.to_remove_exec_catchpoint (pid
);
2334 fprintf_unfiltered (gdb_stderr
, "target_remove_exec_catchpoint (%d) = %d\n",
2341 debug_to_has_execd (pid
, execd_pathname
)
2343 char ** execd_pathname
;
2347 has_execd
= debug_target
.to_has_execd (pid
, execd_pathname
);
2349 fprintf_unfiltered (gdb_stderr
, "target_has_execd (%d, %s) = %d\n",
2350 pid
, (*execd_pathname
? *execd_pathname
: "<NULL>"),
2357 debug_to_reported_exec_events_per_exec_call ()
2359 int reported_exec_events
;
2361 reported_exec_events
= debug_target
.to_reported_exec_events_per_exec_call ();
2363 fprintf_unfiltered (gdb_stderr
,
2364 "target_reported_exec_events_per_exec_call () = %d\n",
2365 reported_exec_events
);
2367 return reported_exec_events
;
2371 debug_to_has_syscall_event (pid
, kind
, syscall_id
)
2373 enum target_waitkind
* kind
;
2376 int has_syscall_event
;
2377 char * kind_spelling
= "??";
2379 has_syscall_event
= debug_target
.to_has_syscall_event (pid
, kind
, syscall_id
);
2380 if (has_syscall_event
)
2384 case TARGET_WAITKIND_SYSCALL_ENTRY
:
2385 kind_spelling
= "SYSCALL_ENTRY";
2387 case TARGET_WAITKIND_SYSCALL_RETURN
:
2388 kind_spelling
= "SYSCALL_RETURN";
2395 fprintf_unfiltered (gdb_stderr
,
2396 "target_has_syscall_event (%d, %s, %d) = %d\n",
2397 pid
, kind_spelling
, *syscall_id
, has_syscall_event
);
2399 return has_syscall_event
;
2403 debug_to_has_exited (pid
, wait_status
, exit_status
)
2410 has_exited
= debug_target
.to_has_exited (pid
, wait_status
, exit_status
);
2412 fprintf_unfiltered (gdb_stderr
, "target_has_exited (%d, %d, %d) = %d\n",
2413 pid
, wait_status
, *exit_status
, has_exited
);
2419 debug_to_mourn_inferior ()
2421 debug_target
.to_mourn_inferior ();
2423 fprintf_unfiltered (gdb_stderr
, "target_mourn_inferior ()\n");
2431 retval
= debug_target
.to_can_run ();
2433 fprintf_unfiltered (gdb_stderr
, "target_can_run () = %d\n", retval
);
2439 debug_to_notice_signals (pid
)
2442 debug_target
.to_notice_signals (pid
);
2444 fprintf_unfiltered (gdb_stderr
, "target_notice_signals (%d)\n", pid
);
2448 debug_to_thread_alive (pid
)
2453 retval
= debug_target
.to_thread_alive (pid
);
2455 fprintf_unfiltered (gdb_stderr
, "target_thread_alive (%d) = %d\n",
2464 debug_target
.to_stop ();
2466 fprintf_unfiltered (gdb_stderr
, "target_stop ()\n");
2470 debug_to_query (type
, req
, resp
, siz
)
2478 retval
= debug_target
.to_query (type
, req
, resp
, siz
);
2480 fprintf_unfiltered (gdb_stderr
, "target_query (%c, %s, %s, %d) = %d\n", type
, req
, resp
, *siz
, retval
);
2485 static struct symtab_and_line
*
2486 debug_to_enable_exception_callback (kind
, enable
)
2487 enum exception_event_kind kind
;
2490 struct symtab_and_line
*result
;
2491 result
= debug_target
.to_enable_exception_callback (kind
, enable
);
2492 fprintf_unfiltered (gdb_stderr
,
2493 "target get_exception_callback_sal (%d, %d)\n",
2498 static struct exception_event_record
*
2499 debug_to_get_current_exception_event ()
2501 struct exception_event_record
*result
;
2502 result
= debug_target
.to_get_current_exception_event();
2503 fprintf_unfiltered (gdb_stderr
, "target get_current_exception_event ()\n");
2508 debug_to_pid_to_exec_file (pid
)
2513 exec_file
= debug_target
.to_pid_to_exec_file (pid
);
2515 fprintf_unfiltered (gdb_stderr
, "target_pid_to_exec_file (%d) = %s\n",
2522 debug_to_core_file_to_sym_file (core
)
2527 sym_file
= debug_target
.to_core_file_to_sym_file (core
);
2529 fprintf_unfiltered (gdb_stderr
, "target_core_file_to_sym_file (%s) = %s\n",
2536 setup_target_debug ()
2538 memcpy (&debug_target
, ¤t_target
, sizeof debug_target
);
2540 current_target
.to_open
= debug_to_open
;
2541 current_target
.to_close
= debug_to_close
;
2542 current_target
.to_attach
= debug_to_attach
;
2543 current_target
.to_post_attach
= debug_to_post_attach
;
2544 current_target
.to_require_attach
= debug_to_require_attach
;
2545 current_target
.to_detach
= debug_to_detach
;
2546 current_target
.to_require_detach
= debug_to_require_detach
;
2547 current_target
.to_resume
= debug_to_resume
;
2548 current_target
.to_wait
= debug_to_wait
;
2549 current_target
.to_post_wait
= debug_to_post_wait
;
2550 current_target
.to_fetch_registers
= debug_to_fetch_registers
;
2551 current_target
.to_store_registers
= debug_to_store_registers
;
2552 current_target
.to_prepare_to_store
= debug_to_prepare_to_store
;
2553 current_target
.to_xfer_memory
= debug_to_xfer_memory
;
2554 current_target
.to_files_info
= debug_to_files_info
;
2555 current_target
.to_insert_breakpoint
= debug_to_insert_breakpoint
;
2556 current_target
.to_remove_breakpoint
= debug_to_remove_breakpoint
;
2557 current_target
.to_terminal_init
= debug_to_terminal_init
;
2558 current_target
.to_terminal_inferior
= debug_to_terminal_inferior
;
2559 current_target
.to_terminal_ours_for_output
= debug_to_terminal_ours_for_output
;
2560 current_target
.to_terminal_ours
= debug_to_terminal_ours
;
2561 current_target
.to_terminal_info
= debug_to_terminal_info
;
2562 current_target
.to_kill
= debug_to_kill
;
2563 current_target
.to_load
= debug_to_load
;
2564 current_target
.to_lookup_symbol
= debug_to_lookup_symbol
;
2565 current_target
.to_create_inferior
= debug_to_create_inferior
;
2566 current_target
.to_post_startup_inferior
= debug_to_post_startup_inferior
;
2567 current_target
.to_acknowledge_created_inferior
= debug_to_acknowledge_created_inferior
;
2568 current_target
.to_clone_and_follow_inferior
= debug_to_clone_and_follow_inferior
;
2569 current_target
.to_post_follow_inferior_by_clone
= debug_to_post_follow_inferior_by_clone
;
2570 current_target
.to_insert_fork_catchpoint
= debug_to_insert_fork_catchpoint
;
2571 current_target
.to_remove_fork_catchpoint
= debug_to_remove_fork_catchpoint
;
2572 current_target
.to_insert_vfork_catchpoint
= debug_to_insert_vfork_catchpoint
;
2573 current_target
.to_remove_vfork_catchpoint
= debug_to_remove_vfork_catchpoint
;
2574 current_target
.to_has_forked
= debug_to_has_forked
;
2575 current_target
.to_has_vforked
= debug_to_has_vforked
;
2576 current_target
.to_can_follow_vfork_prior_to_exec
= debug_to_can_follow_vfork_prior_to_exec
;
2577 current_target
.to_post_follow_vfork
= debug_to_post_follow_vfork
;
2578 current_target
.to_insert_exec_catchpoint
= debug_to_insert_exec_catchpoint
;
2579 current_target
.to_remove_exec_catchpoint
= debug_to_remove_exec_catchpoint
;
2580 current_target
.to_has_execd
= debug_to_has_execd
;
2581 current_target
.to_reported_exec_events_per_exec_call
= debug_to_reported_exec_events_per_exec_call
;
2582 current_target
.to_has_syscall_event
= debug_to_has_syscall_event
;
2583 current_target
.to_has_exited
= debug_to_has_exited
;
2584 current_target
.to_mourn_inferior
= debug_to_mourn_inferior
;
2585 current_target
.to_can_run
= debug_to_can_run
;
2586 current_target
.to_notice_signals
= debug_to_notice_signals
;
2587 current_target
.to_thread_alive
= debug_to_thread_alive
;
2588 current_target
.to_stop
= debug_to_stop
;
2589 current_target
.to_query
= debug_to_query
;
2590 current_target
.to_enable_exception_callback
= debug_to_enable_exception_callback
;
2591 current_target
.to_get_current_exception_event
= debug_to_get_current_exception_event
;
2592 current_target
.to_pid_to_exec_file
= debug_to_pid_to_exec_file
;
2593 current_target
.to_core_file_to_sym_file
= debug_to_core_file_to_sym_file
;
2598 static char targ_desc
[] =
2599 "Names of targets and files being debugged.\n\
2600 Shows the entire stack of targets currently in use (including the exec-file,\n\
2601 core-file, and process, if any), as well as the symbol file name.";
2604 initialize_targets ()
2606 init_dummy_target ();
2607 push_target (&dummy_target
);
2609 add_info ("target", target_info
, targ_desc
);
2610 add_info ("files", target_info
, targ_desc
);
2613 add_set_cmd ("targetdebug", class_maintenance
, var_zinteger
,
2614 (char *)&targetdebug
,
2615 "Set target debugging.\n\
2616 When non-zero, target debugging is enabled.", &setlist
),
2619 if (!STREQ (signals
[TARGET_SIGNAL_LAST
].string
, "TARGET_SIGNAL_MAGIC"))