1 /* Select target systems and architectures at runtime for GDB.
3 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
6 Contributed by Cygnus Support.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
27 #include "gdb_string.h"
39 #include "gdb_assert.h"
42 static void target_info (char *, int);
44 static void maybe_kill_then_create_inferior (char *, char *, char **);
46 static void maybe_kill_then_attach (char *, int);
48 static void kill_or_be_killed (int);
50 static void default_terminal_info (char *, int);
52 static int default_region_size_ok_for_hw_watchpoint (int);
54 static int nosymbol (char *, CORE_ADDR *);
56 static void tcomplain (void);
58 static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
60 static int return_zero (void);
62 static int return_one (void);
64 static int return_minus_one (void);
66 void target_ignore (void);
68 static void target_command (char *, int);
70 static struct target_ops *find_default_run_target (char *);
72 static void nosupport_runtime (void);
74 static LONGEST default_xfer_partial (struct target_ops *ops,
75 enum target_object object,
76 const char *annex, void *readbuf,
78 ULONGEST offset, LONGEST len);
80 /* Transfer LEN bytes between target address MEMADDR and GDB address
81 MYADDR. Returns 0 for success, errno code for failure (which
82 includes partial transfers -- if you want a more useful response to
83 partial transfers, try either target_read_memory_partial or
84 target_write_memory_partial). */
86 static int target_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
89 static void init_dummy_target (void);
91 static void debug_to_open (char *, int);
93 static void debug_to_close (int);
95 static void debug_to_attach (char *, int);
97 static void debug_to_detach (char *, int);
99 static void debug_to_disconnect (char *, int);
101 static void debug_to_resume (ptid_t, int, enum target_signal);
103 static ptid_t debug_to_wait (ptid_t, struct target_waitstatus *);
105 static void debug_to_fetch_registers (int);
107 static void debug_to_store_registers (int);
109 static void debug_to_prepare_to_store (void);
111 static int debug_to_xfer_memory (CORE_ADDR, char *, int, int,
112 struct mem_attrib *, struct target_ops *);
114 static void debug_to_files_info (struct target_ops *);
116 static int debug_to_insert_breakpoint (CORE_ADDR, char *);
118 static int debug_to_remove_breakpoint (CORE_ADDR, char *);
120 static int debug_to_can_use_hw_breakpoint (int, int, int);
122 static int debug_to_insert_hw_breakpoint (CORE_ADDR, char *);
124 static int debug_to_remove_hw_breakpoint (CORE_ADDR, char *);
126 static int debug_to_insert_watchpoint (CORE_ADDR, int, int);
128 static int debug_to_remove_watchpoint (CORE_ADDR, int, int);
130 static int debug_to_stopped_by_watchpoint (void);
132 static CORE_ADDR debug_to_stopped_data_address (void);
134 static int debug_to_region_size_ok_for_hw_watchpoint (int);
136 static void debug_to_terminal_init (void);
138 static void debug_to_terminal_inferior (void);
140 static void debug_to_terminal_ours_for_output (void);
142 static void debug_to_terminal_save_ours (void);
144 static void debug_to_terminal_ours (void);
146 static void debug_to_terminal_info (char *, int);
148 static void debug_to_kill (void);
150 static void debug_to_load (char *, int);
152 static int debug_to_lookup_symbol (char *, CORE_ADDR *);
154 static void debug_to_create_inferior (char *, char *, char **);
156 static void debug_to_mourn_inferior (void);
158 static int debug_to_can_run (void);
160 static void debug_to_notice_signals (ptid_t);
162 static int debug_to_thread_alive (ptid_t);
164 static void debug_to_stop (void);
166 /* Pointer to array of target architecture structures; the size of the
167 array; the current index into the array; the allocated size of the
169 struct target_ops **target_structs;
170 unsigned target_struct_size;
171 unsigned target_struct_index;
172 unsigned target_struct_allocsize;
173 #define DEFAULT_ALLOCSIZE 10
175 /* The initial current target, so that there is always a semi-valid
178 static struct target_ops dummy_target;
180 /* Top of target stack. */
182 static struct target_ops *target_stack;
184 /* The target structure we are currently using to talk to a process
185 or file or whatever "inferior" we have. */
187 struct target_ops current_target;
189 /* Command list for target. */
191 static struct cmd_list_element *targetlist = NULL;
193 /* Nonzero if we are debugging an attached outside process
194 rather than an inferior. */
198 /* Non-zero if we want to see trace of target level stuff. */
200 static int targetdebug = 0;
202 static void setup_target_debug (void);
204 DCACHE *target_dcache;
206 /* The user just typed 'target' without the name of a target. */
209 target_command (char *arg, int from_tty)
211 fputs_filtered ("Argument required (target name). Try `help target'\n",
215 /* Add a possible target architecture to the list. */
218 add_target (struct target_ops *t)
220 /* Provide default values for all "must have" methods. */
221 if (t->to_xfer_partial == NULL)
222 t->to_xfer_partial = default_xfer_partial;
226 target_struct_allocsize = DEFAULT_ALLOCSIZE;
227 target_structs = (struct target_ops **) xmalloc
228 (target_struct_allocsize * sizeof (*target_structs));
230 if (target_struct_size >= target_struct_allocsize)
232 target_struct_allocsize *= 2;
233 target_structs = (struct target_ops **)
234 xrealloc ((char *) target_structs,
235 target_struct_allocsize * sizeof (*target_structs));
237 target_structs[target_struct_size++] = t;
239 if (targetlist == NULL)
240 add_prefix_cmd ("target", class_run, target_command,
241 "Connect to a target machine or process.\n\
242 The first argument is the type or protocol of the target machine.\n\
243 Remaining arguments are interpreted by the target protocol. For more\n\
244 information on the arguments for a particular protocol, type\n\
245 `help target ' followed by the protocol name.",
246 &targetlist, "target ", 0, &cmdlist);
247 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
258 target_load (char *arg, int from_tty)
260 dcache_invalidate (target_dcache);
261 (*current_target.to_load) (arg, from_tty);
265 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
266 struct target_ops *t)
268 errno = EIO; /* Can't read/write this location */
269 return 0; /* No bytes handled */
275 error ("You can't do that when your target is `%s'",
276 current_target.to_shortname);
282 error ("You can't do that without a process to debug.");
286 nosymbol (char *name, CORE_ADDR *addrp)
288 return 1; /* Symbol does not exist in target env */
292 nosupport_runtime (void)
294 if (ptid_equal (inferior_ptid, null_ptid))
297 error ("No run-time support for this");
302 default_terminal_info (char *args, int from_tty)
304 printf_unfiltered ("No saved terminal information.\n");
307 /* This is the default target_create_inferior and target_attach function.
308 If the current target is executing, it asks whether to kill it off.
309 If this function returns without calling error(), it has killed off
310 the target, and the operation should be attempted. */
313 kill_or_be_killed (int from_tty)
315 if (target_has_execution)
317 printf_unfiltered ("You are already running a program:\n");
318 target_files_info ();
319 if (query ("Kill it? "))
322 if (target_has_execution)
323 error ("Killing the program did not help.");
328 error ("Program not killed.");
335 maybe_kill_then_attach (char *args, int from_tty)
337 kill_or_be_killed (from_tty);
338 target_attach (args, from_tty);
342 maybe_kill_then_create_inferior (char *exec, char *args, char **env)
344 kill_or_be_killed (0);
345 target_create_inferior (exec, args, env);
348 /* Go through the target stack from top to bottom, copying over zero
349 entries in current_target, then filling in still empty entries. In
350 effect, we are doing class inheritance through the pushed target
353 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
354 is currently implemented, is that it discards any knowledge of
355 which target an inherited method originally belonged to.
356 Consequently, new new target methods should instead explicitly and
357 locally search the target stack for the target that can handle the
361 update_current_target (void)
363 struct target_ops *t;
365 /* First, reset curren'ts contents. */
366 memset (¤t_target, 0, sizeof (current_target));
368 #define INHERIT(FIELD, TARGET) \
369 if (!current_target.FIELD) \
370 current_target.FIELD = (TARGET)->FIELD
372 for (t = target_stack; t; t = t->beneath)
374 INHERIT (to_shortname, t);
375 INHERIT (to_longname, t);
377 INHERIT (to_open, t);
378 INHERIT (to_close, t);
379 INHERIT (to_attach, t);
380 INHERIT (to_post_attach, t);
381 INHERIT (to_detach, t);
382 INHERIT (to_disconnect, t);
383 INHERIT (to_resume, t);
384 INHERIT (to_wait, t);
385 INHERIT (to_post_wait, t);
386 INHERIT (to_fetch_registers, t);
387 INHERIT (to_store_registers, t);
388 INHERIT (to_prepare_to_store, t);
389 INHERIT (to_xfer_memory, t);
390 INHERIT (to_files_info, t);
391 INHERIT (to_insert_breakpoint, t);
392 INHERIT (to_remove_breakpoint, t);
393 INHERIT (to_can_use_hw_breakpoint, t);
394 INHERIT (to_insert_hw_breakpoint, t);
395 INHERIT (to_remove_hw_breakpoint, t);
396 INHERIT (to_insert_watchpoint, t);
397 INHERIT (to_remove_watchpoint, t);
398 INHERIT (to_stopped_data_address, t);
399 INHERIT (to_stopped_by_watchpoint, t);
400 INHERIT (to_have_continuable_watchpoint, t);
401 INHERIT (to_region_size_ok_for_hw_watchpoint, t);
402 INHERIT (to_terminal_init, t);
403 INHERIT (to_terminal_inferior, t);
404 INHERIT (to_terminal_ours_for_output, t);
405 INHERIT (to_terminal_ours, t);
406 INHERIT (to_terminal_save_ours, t);
407 INHERIT (to_terminal_info, t);
408 INHERIT (to_kill, t);
409 INHERIT (to_load, t);
410 INHERIT (to_lookup_symbol, t);
411 INHERIT (to_create_inferior, t);
412 INHERIT (to_post_startup_inferior, t);
413 INHERIT (to_acknowledge_created_inferior, t);
414 INHERIT (to_insert_fork_catchpoint, t);
415 INHERIT (to_remove_fork_catchpoint, t);
416 INHERIT (to_insert_vfork_catchpoint, t);
417 INHERIT (to_remove_vfork_catchpoint, t);
418 INHERIT (to_follow_fork, t);
419 INHERIT (to_insert_exec_catchpoint, t);
420 INHERIT (to_remove_exec_catchpoint, t);
421 INHERIT (to_reported_exec_events_per_exec_call, t);
422 INHERIT (to_has_exited, t);
423 INHERIT (to_mourn_inferior, t);
424 INHERIT (to_can_run, t);
425 INHERIT (to_notice_signals, t);
426 INHERIT (to_thread_alive, t);
427 INHERIT (to_find_new_threads, t);
428 INHERIT (to_pid_to_str, t);
429 INHERIT (to_extra_thread_info, t);
430 INHERIT (to_stop, t);
431 /* Do not inherit to_xfer_partial. */
432 INHERIT (to_rcmd, t);
433 INHERIT (to_enable_exception_callback, t);
434 INHERIT (to_get_current_exception_event, t);
435 INHERIT (to_pid_to_exec_file, t);
436 INHERIT (to_stratum, t);
437 INHERIT (to_has_all_memory, t);
438 INHERIT (to_has_memory, t);
439 INHERIT (to_has_stack, t);
440 INHERIT (to_has_registers, t);
441 INHERIT (to_has_execution, t);
442 INHERIT (to_has_thread_control, t);
443 INHERIT (to_sections, t);
444 INHERIT (to_sections_end, t);
445 INHERIT (to_can_async_p, t);
446 INHERIT (to_is_async_p, t);
447 INHERIT (to_async, t);
448 INHERIT (to_async_mask_value, t);
449 INHERIT (to_find_memory_regions, t);
450 INHERIT (to_make_corefile_notes, t);
451 INHERIT (to_get_thread_local_address, t);
452 INHERIT (to_magic, t);
456 /* Clean up a target struct so it no longer has any zero pointers in
457 it. Some entries are defaulted to a method that print an error,
458 others are hard-wired to a standard recursive default. */
460 #define de_fault(field, value) \
461 if (!current_target.field) \
462 current_target.field = value
465 (void (*) (char *, int))
471 maybe_kill_then_attach);
472 de_fault (to_post_attach,
476 (void (*) (char *, int))
478 de_fault (to_disconnect,
479 (void (*) (char *, int))
482 (void (*) (ptid_t, int, enum target_signal))
485 (ptid_t (*) (ptid_t, struct target_waitstatus *))
487 de_fault (to_post_wait,
488 (void (*) (ptid_t, int))
490 de_fault (to_fetch_registers,
493 de_fault (to_store_registers,
496 de_fault (to_prepare_to_store,
499 de_fault (to_xfer_memory,
500 (int (*) (CORE_ADDR, char *, int, int, struct mem_attrib *, struct target_ops *))
502 de_fault (to_files_info,
503 (void (*) (struct target_ops *))
505 de_fault (to_insert_breakpoint,
506 memory_insert_breakpoint);
507 de_fault (to_remove_breakpoint,
508 memory_remove_breakpoint);
509 de_fault (to_can_use_hw_breakpoint,
510 (int (*) (int, int, int))
512 de_fault (to_insert_hw_breakpoint,
513 (int (*) (CORE_ADDR, char *))
515 de_fault (to_remove_hw_breakpoint,
516 (int (*) (CORE_ADDR, char *))
518 de_fault (to_insert_watchpoint,
519 (int (*) (CORE_ADDR, int, int))
521 de_fault (to_remove_watchpoint,
522 (int (*) (CORE_ADDR, int, int))
524 de_fault (to_stopped_by_watchpoint,
527 de_fault (to_stopped_data_address,
528 (CORE_ADDR (*) (void))
530 de_fault (to_region_size_ok_for_hw_watchpoint,
531 default_region_size_ok_for_hw_watchpoint);
532 de_fault (to_terminal_init,
535 de_fault (to_terminal_inferior,
538 de_fault (to_terminal_ours_for_output,
541 de_fault (to_terminal_ours,
544 de_fault (to_terminal_save_ours,
547 de_fault (to_terminal_info,
548 default_terminal_info);
553 (void (*) (char *, int))
555 de_fault (to_lookup_symbol,
556 (int (*) (char *, CORE_ADDR *))
558 de_fault (to_create_inferior,
559 maybe_kill_then_create_inferior);
560 de_fault (to_post_startup_inferior,
563 de_fault (to_acknowledge_created_inferior,
566 de_fault (to_insert_fork_catchpoint,
569 de_fault (to_remove_fork_catchpoint,
572 de_fault (to_insert_vfork_catchpoint,
575 de_fault (to_remove_vfork_catchpoint,
578 de_fault (to_follow_fork,
581 de_fault (to_insert_exec_catchpoint,
584 de_fault (to_remove_exec_catchpoint,
587 de_fault (to_reported_exec_events_per_exec_call,
590 de_fault (to_has_exited,
591 (int (*) (int, int, int *))
593 de_fault (to_mourn_inferior,
596 de_fault (to_can_run,
598 de_fault (to_notice_signals,
601 de_fault (to_thread_alive,
604 de_fault (to_find_new_threads,
607 de_fault (to_extra_thread_info,
608 (char *(*) (struct thread_info *))
613 current_target.to_xfer_partial = default_xfer_partial;
615 (void (*) (char *, struct ui_file *))
617 de_fault (to_enable_exception_callback,
618 (struct symtab_and_line * (*) (enum exception_event_kind, int))
620 de_fault (to_get_current_exception_event,
621 (struct exception_event_record * (*) (void))
623 de_fault (to_pid_to_exec_file,
626 de_fault (to_can_async_p,
629 de_fault (to_is_async_p,
633 (void (*) (void (*) (enum inferior_event_type, void*), void*))
637 /* Finally, position the target-stack beneath the squashed
638 "current_target". That way code looking for a non-inherited
639 target method can quickly and simply find it. */
640 current_target.beneath = target_stack;
643 /* Push a new target type into the stack of the existing target accessors,
644 possibly superseding some of the existing accessors.
646 Result is zero if the pushed target ended up on top of the stack,
647 nonzero if at least one target is on top of it.
649 Rather than allow an empty stack, we always have the dummy target at
650 the bottom stratum, so we can call the function vectors without
654 push_target (struct target_ops *t)
656 struct target_ops **cur;
658 /* Check magic number. If wrong, it probably means someone changed
659 the struct definition, but not all the places that initialize one. */
660 if (t->to_magic != OPS_MAGIC)
662 fprintf_unfiltered (gdb_stderr,
663 "Magic number of %s target struct wrong\n",
665 internal_error (__FILE__, __LINE__, "failed internal consistency check");
668 /* Find the proper stratum to install this target in. */
669 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
671 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
675 /* If there's already targets at this stratum, remove them. */
676 /* FIXME: cagney/2003-10-15: I think this should be poping all
677 targets to CUR, and not just those at this stratum level. */
678 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
680 /* There's already something at this stratum level. Close it,
681 and un-hook it from the stack. */
682 struct target_ops *tmp = (*cur);
683 (*cur) = (*cur)->beneath;
685 target_close (tmp, 0);
688 /* We have removed all targets in our stratum, now add the new one. */
692 update_current_target ();
695 setup_target_debug ();
698 return (t != target_stack);
701 /* Remove a target_ops vector from the stack, wherever it may be.
702 Return how many times it was removed (0 or 1). */
705 unpush_target (struct target_ops *t)
707 struct target_ops **cur;
708 struct target_ops *tmp;
710 /* Look for the specified target. Note that we assume that a target
711 can only occur once in the target stack. */
713 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
720 return 0; /* Didn't find target_ops, quit now */
722 /* NOTE: cagney/2003-12-06: In '94 the close call was made
723 unconditional by moving it to before the above check that the
724 target was in the target stack (something about "Change the way
725 pushing and popping of targets work to support target overlays
726 and inheritance"). This doesn't make much sense - only open
727 targets should be closed. */
730 /* Unchain the target */
732 (*cur) = (*cur)->beneath;
735 update_current_target ();
743 target_close (¤t_target, 0); /* Let it clean up */
744 if (unpush_target (target_stack) == 1)
747 fprintf_unfiltered (gdb_stderr,
748 "pop_target couldn't find target %s\n",
749 current_target.to_shortname);
750 internal_error (__FILE__, __LINE__, "failed internal consistency check");
754 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
756 /* target_read_string -- read a null terminated string, up to LEN bytes,
757 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
758 Set *STRING to a pointer to malloc'd memory containing the data; the caller
759 is responsible for freeing it. Return the number of bytes successfully
763 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
765 int tlen, origlen, offset, i;
769 int buffer_allocated;
771 unsigned int nbytes_read = 0;
773 /* Small for testing. */
774 buffer_allocated = 4;
775 buffer = xmalloc (buffer_allocated);
782 tlen = MIN (len, 4 - (memaddr & 3));
783 offset = memaddr & 3;
785 errcode = target_xfer_memory (memaddr & ~3, buf, 4, 0);
788 /* The transfer request might have crossed the boundary to an
789 unallocated region of memory. Retry the transfer, requesting
793 errcode = target_xfer_memory (memaddr, buf, 1, 0);
798 if (bufptr - buffer + tlen > buffer_allocated)
801 bytes = bufptr - buffer;
802 buffer_allocated *= 2;
803 buffer = xrealloc (buffer, buffer_allocated);
804 bufptr = buffer + bytes;
807 for (i = 0; i < tlen; i++)
809 *bufptr++ = buf[i + offset];
810 if (buf[i + offset] == '\000')
812 nbytes_read += i + 1;
829 /* Find a section containing ADDR. */
830 struct section_table *
831 target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
833 struct section_table *secp;
834 for (secp = target->to_sections;
835 secp < target->to_sections_end;
838 if (addr >= secp->addr && addr < secp->endaddr)
844 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
845 GDB's memory at MYADDR. Returns either 0 for success or an errno value
848 If an error occurs, no guarantee is made about the contents of the data at
849 MYADDR. In particular, the caller should not depend upon partial reads
850 filling the buffer with good data. There is no way for the caller to know
851 how much good data might have been transfered anyway. Callers that can
852 deal with partial reads should call target_read_memory_partial. */
855 target_read_memory (CORE_ADDR memaddr, char *myaddr, int len)
857 return target_xfer_memory (memaddr, myaddr, len, 0);
861 target_write_memory (CORE_ADDR memaddr, char *myaddr, int len)
863 return target_xfer_memory (memaddr, myaddr, len, 1);
866 static int trust_readonly = 0;
868 /* Move memory to or from the targets. The top target gets priority;
869 if it cannot handle it, it is offered to the next one down, etc.
871 Result is -1 on error, or the number of bytes transfered. */
874 do_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
875 struct mem_attrib *attrib)
879 struct target_ops *t;
881 /* Zero length requests are ok and require no work. */
885 /* to_xfer_memory is not guaranteed to set errno, even when it returns
889 if (!write && trust_readonly)
891 struct section_table *secp;
892 /* User-settable option, "trust-readonly-sections". If true,
893 then memory from any SEC_READONLY bfd section may be read
894 directly from the bfd file. */
895 secp = target_section_by_addr (¤t_target, memaddr);
897 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
899 return xfer_memory (memaddr, myaddr, len, 0, attrib, ¤t_target);
902 /* The quick case is that the top target can handle the transfer. */
903 res = current_target.to_xfer_memory
904 (memaddr, myaddr, len, write, attrib, ¤t_target);
906 /* If res <= 0 then we call it again in the loop. Ah well. */
909 for (t = target_stack; t != NULL; t = t->beneath)
911 if (!t->to_has_memory)
914 res = t->to_xfer_memory (memaddr, myaddr, len, write, attrib, t);
916 break; /* Handled all or part of xfer */
917 if (t->to_has_all_memory)
929 /* Perform a memory transfer. Iterate until the entire region has
932 Result is 0 or errno value. */
935 target_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write)
939 struct mem_region *region;
941 /* Zero length requests are ok and require no work. */
949 region = lookup_mem_region(memaddr);
950 if (memaddr + len < region->hi)
953 reg_len = region->hi - memaddr;
955 switch (region->attrib.mode)
970 if (region->attrib.cache)
971 res = dcache_xfer_memory (target_dcache, memaddr, myaddr,
974 res = do_xfer_memory (memaddr, myaddr, reg_len, write,
979 /* If this address is for nonexistent memory, read zeros
980 if reading, or do nothing if writing. Return
983 memset (myaddr, 0, len);
997 return 0; /* We managed to cover it all somehow. */
1001 /* Perform a partial memory transfer.
1003 Result is -1 on error, or the number of bytes transfered. */
1006 target_xfer_memory_partial (CORE_ADDR memaddr, char *myaddr, int len,
1007 int write_p, int *err)
1011 struct mem_region *region;
1013 /* Zero length requests are ok and require no work. */
1020 region = lookup_mem_region(memaddr);
1021 if (memaddr + len < region->hi)
1024 reg_len = region->hi - memaddr;
1026 switch (region->attrib.mode)
1045 if (region->attrib.cache)
1046 res = dcache_xfer_memory (target_dcache, memaddr, myaddr,
1049 res = do_xfer_memory (memaddr, myaddr, reg_len, write_p,
1067 target_read_memory_partial (CORE_ADDR memaddr, char *buf, int len, int *err)
1069 return target_xfer_memory_partial (memaddr, buf, len, 0, err);
1073 target_write_memory_partial (CORE_ADDR memaddr, char *buf, int len, int *err)
1075 return target_xfer_memory_partial (memaddr, buf, len, 1, err);
1078 /* More generic transfers. */
1081 default_xfer_partial (struct target_ops *ops, enum target_object object,
1082 const char *annex, void *readbuf,
1083 const void *writebuf, ULONGEST offset, LONGEST len)
1085 if (object == TARGET_OBJECT_MEMORY
1086 && ops->to_xfer_memory != NULL)
1087 /* If available, fall back to the target's "to_xfer_memory"
1092 if (writebuf != NULL)
1094 void *buffer = xmalloc (len);
1095 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1096 memcpy (buffer, writebuf, len);
1097 xfered = ops->to_xfer_memory (offset, buffer, len, 1/*write*/, NULL,
1099 do_cleanups (cleanup);
1101 if (readbuf != NULL)
1102 xfered = ops->to_xfer_memory (offset, readbuf, len, 0/*read*/, NULL,
1106 else if (xfered == 0 && errno == 0)
1107 /* "to_xfer_memory" uses 0, cross checked against ERRNO as one
1108 indication of an error. */
1113 else if (ops->beneath != NULL)
1114 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1115 readbuf, writebuf, offset, len);
1120 /* Target vector read/write partial wrapper functions.
1122 NOTE: cagney/2003-10-21: I wonder if having "to_xfer_partial
1123 (inbuf, outbuf)", instead of separate read/write methods, make life
1127 target_read_partial (struct target_ops *ops,
1128 enum target_object object,
1129 const char *annex, void *buf,
1130 ULONGEST offset, LONGEST len)
1132 gdb_assert (ops->to_xfer_partial != NULL);
1133 return ops->to_xfer_partial (ops, object, annex, buf, NULL, offset, len);
1137 target_write_partial (struct target_ops *ops,
1138 enum target_object object,
1139 const char *annex, const void *buf,
1140 ULONGEST offset, LONGEST len)
1142 gdb_assert (ops->to_xfer_partial != NULL);
1143 return ops->to_xfer_partial (ops, object, annex, NULL, buf, offset, len);
1146 /* Wrappers to perform the full transfer. */
1148 target_read (struct target_ops *ops,
1149 enum target_object object,
1150 const char *annex, void *buf,
1151 ULONGEST offset, LONGEST len)
1154 while (xfered < len)
1156 LONGEST xfer = target_read_partial (ops, object, annex,
1157 (bfd_byte *) buf + xfered,
1158 offset + xfered, len - xfered);
1159 /* Call an observer, notifying them of the xfer progress? */
1161 /* Call memory_error? */
1170 target_write (struct target_ops *ops,
1171 enum target_object object,
1172 const char *annex, const void *buf,
1173 ULONGEST offset, LONGEST len)
1176 while (xfered < len)
1178 LONGEST xfer = target_write_partial (ops, object, annex,
1179 (bfd_byte *) buf + xfered,
1180 offset + xfered, len - xfered);
1181 /* Call an observer, notifying them of the xfer progress? */
1183 /* Call memory_error? */
1191 /* Memory transfer methods. */
1194 get_target_memory (struct target_ops *ops, CORE_ADDR addr, void *buf,
1197 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL, buf, addr, len)
1199 memory_error (EIO, addr);
1203 get_target_memory_unsigned (struct target_ops *ops,
1204 CORE_ADDR addr, int len)
1206 char buf[sizeof (ULONGEST)];
1208 gdb_assert (len <= sizeof (buf));
1209 get_target_memory (ops, addr, buf, len);
1210 return extract_unsigned_integer (buf, len);
1214 target_info (char *args, int from_tty)
1216 struct target_ops *t;
1217 int has_all_mem = 0;
1219 if (symfile_objfile != NULL)
1220 printf_unfiltered ("Symbols from \"%s\".\n", symfile_objfile->name);
1222 #ifdef FILES_INFO_HOOK
1223 if (FILES_INFO_HOOK ())
1227 for (t = target_stack; t != NULL; t = t->beneath)
1229 if (!t->to_has_memory)
1232 if ((int) (t->to_stratum) <= (int) dummy_stratum)
1235 printf_unfiltered ("\tWhile running this, GDB does not access memory from...\n");
1236 printf_unfiltered ("%s:\n", t->to_longname);
1237 (t->to_files_info) (t);
1238 has_all_mem = t->to_has_all_memory;
1242 /* This is to be called by the open routine before it does
1246 target_preopen (int from_tty)
1250 if (target_has_execution)
1253 || query ("A program is being debugged already. Kill it? "))
1256 error ("Program not killed.");
1259 /* Calling target_kill may remove the target from the stack. But if
1260 it doesn't (which seems like a win for UDI), remove it now. */
1262 if (target_has_execution)
1266 /* Detach a target after doing deferred register stores. */
1269 target_detach (char *args, int from_tty)
1271 /* Handle any optimized stores to the inferior. */
1272 #ifdef DO_DEFERRED_STORES
1275 (current_target.to_detach) (args, from_tty);
1279 target_disconnect (char *args, int from_tty)
1281 /* Handle any optimized stores to the inferior. */
1282 #ifdef DO_DEFERRED_STORES
1285 (current_target.to_disconnect) (args, from_tty);
1289 target_link (char *modname, CORE_ADDR *t_reloc)
1291 if (DEPRECATED_STREQ (current_target.to_shortname, "rombug"))
1293 (current_target.to_lookup_symbol) (modname, t_reloc);
1295 error ("Unable to link to %s and get relocation in rombug", modname);
1298 *t_reloc = (CORE_ADDR) -1;
1302 target_async_mask (int mask)
1304 int saved_async_masked_status = target_async_mask_value;
1305 target_async_mask_value = mask;
1306 return saved_async_masked_status;
1309 /* Look through the list of possible targets for a target that can
1310 execute a run or attach command without any other data. This is
1311 used to locate the default process stratum.
1313 Result is always valid (error() is called for errors). */
1315 static struct target_ops *
1316 find_default_run_target (char *do_mesg)
1318 struct target_ops **t;
1319 struct target_ops *runable = NULL;
1324 for (t = target_structs; t < target_structs + target_struct_size;
1327 if ((*t)->to_can_run && target_can_run (*t))
1335 error ("Don't know how to %s. Try \"help target\".", do_mesg);
1341 find_default_attach (char *args, int from_tty)
1343 struct target_ops *t;
1345 t = find_default_run_target ("attach");
1346 (t->to_attach) (args, from_tty);
1351 find_default_create_inferior (char *exec_file, char *allargs, char **env)
1353 struct target_ops *t;
1355 t = find_default_run_target ("run");
1356 (t->to_create_inferior) (exec_file, allargs, env);
1361 default_region_size_ok_for_hw_watchpoint (int byte_count)
1363 return (byte_count <= TYPE_LENGTH (builtin_type_void_data_ptr));
1379 return_minus_one (void)
1385 * Resize the to_sections pointer. Also make sure that anyone that
1386 * was holding on to an old value of it gets updated.
1387 * Returns the old size.
1391 target_resize_to_sections (struct target_ops *target, int num_added)
1393 struct target_ops **t;
1394 struct section_table *old_value;
1397 old_value = target->to_sections;
1399 if (target->to_sections)
1401 old_count = target->to_sections_end - target->to_sections;
1402 target->to_sections = (struct section_table *)
1403 xrealloc ((char *) target->to_sections,
1404 (sizeof (struct section_table)) * (num_added + old_count));
1409 target->to_sections = (struct section_table *)
1410 xmalloc ((sizeof (struct section_table)) * num_added);
1412 target->to_sections_end = target->to_sections + (num_added + old_count);
1414 /* Check to see if anyone else was pointing to this structure.
1415 If old_value was null, then no one was. */
1419 for (t = target_structs; t < target_structs + target_struct_size;
1422 if ((*t)->to_sections == old_value)
1424 (*t)->to_sections = target->to_sections;
1425 (*t)->to_sections_end = target->to_sections_end;
1434 /* Remove all target sections taken from ABFD.
1436 Scan the current target stack for targets whose section tables
1437 refer to sections from BFD, and remove those sections. We use this
1438 when we notice that the inferior has unloaded a shared object, for
1441 remove_target_sections (bfd *abfd)
1443 struct target_ops **t;
1445 for (t = target_structs; t < target_structs + target_struct_size; t++)
1447 struct section_table *src, *dest;
1449 dest = (*t)->to_sections;
1450 for (src = (*t)->to_sections; src < (*t)->to_sections_end; src++)
1451 if (src->bfd != abfd)
1453 /* Keep this section. */
1454 if (dest < src) *dest = *src;
1458 /* If we've dropped any sections, resize the section table. */
1460 target_resize_to_sections (*t, dest - src);
1467 /* Find a single runnable target in the stack and return it. If for
1468 some reason there is more than one, return NULL. */
1471 find_run_target (void)
1473 struct target_ops **t;
1474 struct target_ops *runable = NULL;
1479 for (t = target_structs; t < target_structs + target_struct_size; ++t)
1481 if ((*t)->to_can_run && target_can_run (*t))
1488 return (count == 1 ? runable : NULL);
1491 /* Find a single core_stratum target in the list of targets and return it.
1492 If for some reason there is more than one, return NULL. */
1495 find_core_target (void)
1497 struct target_ops **t;
1498 struct target_ops *runable = NULL;
1503 for (t = target_structs; t < target_structs + target_struct_size;
1506 if ((*t)->to_stratum == core_stratum)
1513 return (count == 1 ? runable : NULL);
1517 * Find the next target down the stack from the specified target.
1521 find_target_beneath (struct target_ops *t)
1527 /* The inferior process has died. Long live the inferior! */
1530 generic_mourn_inferior (void)
1532 extern int show_breakpoint_hit_counts;
1534 inferior_ptid = null_ptid;
1536 breakpoint_init_inferior (inf_exited);
1537 registers_changed ();
1539 #ifdef CLEAR_DEFERRED_STORES
1540 /* Delete any pending stores to the inferior... */
1541 CLEAR_DEFERRED_STORES;
1544 reopen_exec_file ();
1545 reinit_frame_cache ();
1547 /* It is confusing to the user for ignore counts to stick around
1548 from previous runs of the inferior. So clear them. */
1549 /* However, it is more confusing for the ignore counts to disappear when
1550 using hit counts. So don't clear them if we're counting hits. */
1551 if (!show_breakpoint_hit_counts)
1552 breakpoint_clear_ignore_counts ();
1558 /* Helper function for child_wait and the Lynx derivatives of child_wait.
1559 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
1560 translation of that in OURSTATUS. */
1562 store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
1564 #ifdef CHILD_SPECIAL_WAITSTATUS
1565 /* CHILD_SPECIAL_WAITSTATUS should return nonzero and set *OURSTATUS
1566 if it wants to deal with hoststatus. */
1567 if (CHILD_SPECIAL_WAITSTATUS (ourstatus, hoststatus))
1571 if (WIFEXITED (hoststatus))
1573 ourstatus->kind = TARGET_WAITKIND_EXITED;
1574 ourstatus->value.integer = WEXITSTATUS (hoststatus);
1576 else if (!WIFSTOPPED (hoststatus))
1578 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
1579 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
1583 ourstatus->kind = TARGET_WAITKIND_STOPPED;
1584 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
1588 /* Returns zero to leave the inferior alone, one to interrupt it. */
1589 int (*target_activity_function) (void);
1590 int target_activity_fd;
1592 /* Convert a normal process ID to a string. Returns the string in a static
1596 normal_pid_to_str (ptid_t ptid)
1598 static char buf[30];
1600 sprintf (buf, "process %d", PIDGET (ptid));
1604 /* Error-catcher for target_find_memory_regions */
1605 static int dummy_find_memory_regions (int (*ignore1) (), void *ignore2)
1607 error ("No target.");
1611 /* Error-catcher for target_make_corefile_notes */
1612 static char * dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
1614 error ("No target.");
1618 /* Set up the handful of non-empty slots needed by the dummy target
1622 init_dummy_target (void)
1624 dummy_target.to_shortname = "None";
1625 dummy_target.to_longname = "None";
1626 dummy_target.to_doc = "";
1627 dummy_target.to_attach = find_default_attach;
1628 dummy_target.to_create_inferior = find_default_create_inferior;
1629 dummy_target.to_pid_to_str = normal_pid_to_str;
1630 dummy_target.to_stratum = dummy_stratum;
1631 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
1632 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
1633 dummy_target.to_xfer_partial = default_xfer_partial;
1634 dummy_target.to_magic = OPS_MAGIC;
1638 static struct target_ops debug_target;
1641 debug_to_open (char *args, int from_tty)
1643 debug_target.to_open (args, from_tty);
1645 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
1649 debug_to_close (int quitting)
1651 target_close (&debug_target, quitting);
1652 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
1656 target_close (struct target_ops *targ, int quitting)
1658 if (targ->to_xclose != NULL)
1659 targ->to_xclose (targ, quitting);
1660 else if (targ->to_close != NULL)
1661 targ->to_close (quitting);
1665 debug_to_attach (char *args, int from_tty)
1667 debug_target.to_attach (args, from_tty);
1669 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n", args, from_tty);
1674 debug_to_post_attach (int pid)
1676 debug_target.to_post_attach (pid);
1678 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
1682 debug_to_detach (char *args, int from_tty)
1684 debug_target.to_detach (args, from_tty);
1686 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n", args, from_tty);
1690 debug_to_disconnect (char *args, int from_tty)
1692 debug_target.to_disconnect (args, from_tty);
1694 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
1699 debug_to_resume (ptid_t ptid, int step, enum target_signal siggnal)
1701 debug_target.to_resume (ptid, step, siggnal);
1703 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n", PIDGET (ptid),
1704 step ? "step" : "continue",
1705 target_signal_to_name (siggnal));
1709 debug_to_wait (ptid_t ptid, struct target_waitstatus *status)
1713 retval = debug_target.to_wait (ptid, status);
1715 fprintf_unfiltered (gdb_stdlog,
1716 "target_wait (%d, status) = %d, ", PIDGET (ptid),
1718 fprintf_unfiltered (gdb_stdlog, "status->kind = ");
1719 switch (status->kind)
1721 case TARGET_WAITKIND_EXITED:
1722 fprintf_unfiltered (gdb_stdlog, "exited, status = %d\n",
1723 status->value.integer);
1725 case TARGET_WAITKIND_STOPPED:
1726 fprintf_unfiltered (gdb_stdlog, "stopped, signal = %s\n",
1727 target_signal_to_name (status->value.sig));
1729 case TARGET_WAITKIND_SIGNALLED:
1730 fprintf_unfiltered (gdb_stdlog, "signalled, signal = %s\n",
1731 target_signal_to_name (status->value.sig));
1733 case TARGET_WAITKIND_LOADED:
1734 fprintf_unfiltered (gdb_stdlog, "loaded\n");
1736 case TARGET_WAITKIND_FORKED:
1737 fprintf_unfiltered (gdb_stdlog, "forked\n");
1739 case TARGET_WAITKIND_VFORKED:
1740 fprintf_unfiltered (gdb_stdlog, "vforked\n");
1742 case TARGET_WAITKIND_EXECD:
1743 fprintf_unfiltered (gdb_stdlog, "execd\n");
1745 case TARGET_WAITKIND_SPURIOUS:
1746 fprintf_unfiltered (gdb_stdlog, "spurious\n");
1749 fprintf_unfiltered (gdb_stdlog, "unknown???\n");
1757 debug_to_post_wait (ptid_t ptid, int status)
1759 debug_target.to_post_wait (ptid, status);
1761 fprintf_unfiltered (gdb_stdlog, "target_post_wait (%d, %d)\n",
1762 PIDGET (ptid), status);
1766 debug_print_register (const char * func, int regno)
1768 fprintf_unfiltered (gdb_stdlog, "%s ", func);
1769 if (regno >= 0 && regno < NUM_REGS + NUM_PSEUDO_REGS
1770 && REGISTER_NAME (regno) != NULL && REGISTER_NAME (regno)[0] != '\0')
1771 fprintf_unfiltered (gdb_stdlog, "(%s)", REGISTER_NAME (regno));
1773 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
1777 unsigned char buf[MAX_REGISTER_SIZE];
1778 deprecated_read_register_gen (regno, buf);
1779 fprintf_unfiltered (gdb_stdlog, " = ");
1780 for (i = 0; i < DEPRECATED_REGISTER_RAW_SIZE (regno); i++)
1782 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
1784 if (DEPRECATED_REGISTER_RAW_SIZE (regno) <= sizeof (LONGEST))
1786 fprintf_unfiltered (gdb_stdlog, " 0x%s %s",
1787 paddr_nz (read_register (regno)),
1788 paddr_d (read_register (regno)));
1791 fprintf_unfiltered (gdb_stdlog, "\n");
1795 debug_to_fetch_registers (int regno)
1797 debug_target.to_fetch_registers (regno);
1798 debug_print_register ("target_fetch_registers", regno);
1802 debug_to_store_registers (int regno)
1804 debug_target.to_store_registers (regno);
1805 debug_print_register ("target_store_registers", regno);
1806 fprintf_unfiltered (gdb_stdlog, "\n");
1810 debug_to_prepare_to_store (void)
1812 debug_target.to_prepare_to_store ();
1814 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
1818 debug_to_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
1819 struct mem_attrib *attrib,
1820 struct target_ops *target)
1824 retval = debug_target.to_xfer_memory (memaddr, myaddr, len, write,
1827 fprintf_unfiltered (gdb_stdlog,
1828 "target_xfer_memory (0x%x, xxx, %d, %s, xxx) = %d",
1829 (unsigned int) memaddr, /* possable truncate long long */
1830 len, write ? "write" : "read", retval);
1838 fputs_unfiltered (", bytes =", gdb_stdlog);
1839 for (i = 0; i < retval; i++)
1841 if ((((long) &(myaddr[i])) & 0xf) == 0)
1842 fprintf_unfiltered (gdb_stdlog, "\n");
1843 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1847 fputc_unfiltered ('\n', gdb_stdlog);
1853 debug_to_files_info (struct target_ops *target)
1855 debug_target.to_files_info (target);
1857 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
1861 debug_to_insert_breakpoint (CORE_ADDR addr, char *save)
1865 retval = debug_target.to_insert_breakpoint (addr, save);
1867 fprintf_unfiltered (gdb_stdlog,
1868 "target_insert_breakpoint (0x%lx, xxx) = %ld\n",
1869 (unsigned long) addr,
1870 (unsigned long) retval);
1875 debug_to_remove_breakpoint (CORE_ADDR addr, char *save)
1879 retval = debug_target.to_remove_breakpoint (addr, save);
1881 fprintf_unfiltered (gdb_stdlog,
1882 "target_remove_breakpoint (0x%lx, xxx) = %ld\n",
1883 (unsigned long) addr,
1884 (unsigned long) retval);
1889 debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
1893 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
1895 fprintf_unfiltered (gdb_stdlog,
1896 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
1897 (unsigned long) type,
1898 (unsigned long) cnt,
1899 (unsigned long) from_tty,
1900 (unsigned long) retval);
1905 debug_to_region_size_ok_for_hw_watchpoint (int byte_count)
1909 retval = debug_target.to_region_size_ok_for_hw_watchpoint (byte_count);
1911 fprintf_unfiltered (gdb_stdlog,
1912 "TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT (%ld) = 0x%lx\n",
1913 (unsigned long) byte_count,
1914 (unsigned long) retval);
1919 debug_to_stopped_by_watchpoint (void)
1923 retval = debug_target.to_stopped_by_watchpoint ();
1925 fprintf_unfiltered (gdb_stdlog,
1926 "STOPPED_BY_WATCHPOINT () = %ld\n",
1927 (unsigned long) retval);
1932 debug_to_stopped_data_address (void)
1936 retval = debug_target.to_stopped_data_address ();
1938 fprintf_unfiltered (gdb_stdlog,
1939 "target_stopped_data_address () = 0x%lx\n",
1940 (unsigned long) retval);
1945 debug_to_insert_hw_breakpoint (CORE_ADDR addr, char *save)
1949 retval = debug_target.to_insert_hw_breakpoint (addr, save);
1951 fprintf_unfiltered (gdb_stdlog,
1952 "target_insert_hw_breakpoint (0x%lx, xxx) = %ld\n",
1953 (unsigned long) addr,
1954 (unsigned long) retval);
1959 debug_to_remove_hw_breakpoint (CORE_ADDR addr, char *save)
1963 retval = debug_target.to_remove_hw_breakpoint (addr, save);
1965 fprintf_unfiltered (gdb_stdlog,
1966 "target_remove_hw_breakpoint (0x%lx, xxx) = %ld\n",
1967 (unsigned long) addr,
1968 (unsigned long) retval);
1973 debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type)
1977 retval = debug_target.to_insert_watchpoint (addr, len, type);
1979 fprintf_unfiltered (gdb_stdlog,
1980 "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n",
1981 (unsigned long) addr, len, type, (unsigned long) retval);
1986 debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type)
1990 retval = debug_target.to_insert_watchpoint (addr, len, type);
1992 fprintf_unfiltered (gdb_stdlog,
1993 "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n",
1994 (unsigned long) addr, len, type, (unsigned long) retval);
1999 debug_to_terminal_init (void)
2001 debug_target.to_terminal_init ();
2003 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
2007 debug_to_terminal_inferior (void)
2009 debug_target.to_terminal_inferior ();
2011 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
2015 debug_to_terminal_ours_for_output (void)
2017 debug_target.to_terminal_ours_for_output ();
2019 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
2023 debug_to_terminal_ours (void)
2025 debug_target.to_terminal_ours ();
2027 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
2031 debug_to_terminal_save_ours (void)
2033 debug_target.to_terminal_save_ours ();
2035 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
2039 debug_to_terminal_info (char *arg, int from_tty)
2041 debug_target.to_terminal_info (arg, from_tty);
2043 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
2048 debug_to_kill (void)
2050 debug_target.to_kill ();
2052 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
2056 debug_to_load (char *args, int from_tty)
2058 debug_target.to_load (args, from_tty);
2060 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
2064 debug_to_lookup_symbol (char *name, CORE_ADDR *addrp)
2068 retval = debug_target.to_lookup_symbol (name, addrp);
2070 fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name);
2076 debug_to_create_inferior (char *exec_file, char *args, char **env)
2078 debug_target.to_create_inferior (exec_file, args, env);
2080 fprintf_unfiltered (gdb_stdlog, "target_create_inferior (%s, %s, xxx)\n",
2085 debug_to_post_startup_inferior (ptid_t ptid)
2087 debug_target.to_post_startup_inferior (ptid);
2089 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
2094 debug_to_acknowledge_created_inferior (int pid)
2096 debug_target.to_acknowledge_created_inferior (pid);
2098 fprintf_unfiltered (gdb_stdlog, "target_acknowledge_created_inferior (%d)\n",
2103 debug_to_insert_fork_catchpoint (int pid)
2107 retval = debug_target.to_insert_fork_catchpoint (pid);
2109 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n",
2116 debug_to_remove_fork_catchpoint (int pid)
2120 retval = debug_target.to_remove_fork_catchpoint (pid);
2122 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
2129 debug_to_insert_vfork_catchpoint (int pid)
2133 retval = debug_target.to_insert_vfork_catchpoint (pid);
2135 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d)= %d\n",
2142 debug_to_remove_vfork_catchpoint (int pid)
2146 retval = debug_target.to_remove_vfork_catchpoint (pid);
2148 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
2155 debug_to_follow_fork (int follow_child)
2157 int retval = debug_target.to_follow_fork (follow_child);
2159 fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n",
2160 follow_child, retval);
2166 debug_to_insert_exec_catchpoint (int pid)
2170 retval = debug_target.to_insert_exec_catchpoint (pid);
2172 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
2179 debug_to_remove_exec_catchpoint (int pid)
2183 retval = debug_target.to_remove_exec_catchpoint (pid);
2185 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
2192 debug_to_reported_exec_events_per_exec_call (void)
2194 int reported_exec_events;
2196 reported_exec_events = debug_target.to_reported_exec_events_per_exec_call ();
2198 fprintf_unfiltered (gdb_stdlog,
2199 "target_reported_exec_events_per_exec_call () = %d\n",
2200 reported_exec_events);
2202 return reported_exec_events;
2206 debug_to_has_exited (int pid, int wait_status, int *exit_status)
2210 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
2212 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
2213 pid, wait_status, *exit_status, has_exited);
2219 debug_to_mourn_inferior (void)
2221 debug_target.to_mourn_inferior ();
2223 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2227 debug_to_can_run (void)
2231 retval = debug_target.to_can_run ();
2233 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
2239 debug_to_notice_signals (ptid_t ptid)
2241 debug_target.to_notice_signals (ptid);
2243 fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n",
2248 debug_to_thread_alive (ptid_t ptid)
2252 retval = debug_target.to_thread_alive (ptid);
2254 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
2255 PIDGET (ptid), retval);
2261 debug_to_find_new_threads (void)
2263 debug_target.to_find_new_threads ();
2265 fputs_unfiltered ("target_find_new_threads ()\n", gdb_stdlog);
2269 debug_to_stop (void)
2271 debug_target.to_stop ();
2273 fprintf_unfiltered (gdb_stdlog, "target_stop ()\n");
2277 debug_to_xfer_partial (struct target_ops *ops, enum target_object object,
2278 const char *annex, void *readbuf, const void *writebuf,
2279 ULONGEST offset, LONGEST len)
2283 retval = debug_target.to_xfer_partial (&debug_target, object, annex,
2284 readbuf, writebuf, offset, len);
2286 fprintf_unfiltered (gdb_stdlog,
2287 "target_xfer_partial (%d, %s, 0x%lx, 0x%lx, 0x%s, %s) = %s\n",
2288 (int) object, (annex ? annex : "(null)"),
2289 (long) readbuf, (long) writebuf, paddr_nz (offset),
2290 paddr_d (len), paddr_d (retval));
2296 debug_to_rcmd (char *command,
2297 struct ui_file *outbuf)
2299 debug_target.to_rcmd (command, outbuf);
2300 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
2303 static struct symtab_and_line *
2304 debug_to_enable_exception_callback (enum exception_event_kind kind, int enable)
2306 struct symtab_and_line *result;
2307 result = debug_target.to_enable_exception_callback (kind, enable);
2308 fprintf_unfiltered (gdb_stdlog,
2309 "target get_exception_callback_sal (%d, %d)\n",
2314 static struct exception_event_record *
2315 debug_to_get_current_exception_event (void)
2317 struct exception_event_record *result;
2318 result = debug_target.to_get_current_exception_event ();
2319 fprintf_unfiltered (gdb_stdlog, "target get_current_exception_event ()\n");
2324 debug_to_pid_to_exec_file (int pid)
2328 exec_file = debug_target.to_pid_to_exec_file (pid);
2330 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
2337 setup_target_debug (void)
2339 memcpy (&debug_target, ¤t_target, sizeof debug_target);
2341 current_target.to_open = debug_to_open;
2342 current_target.to_close = debug_to_close;
2343 current_target.to_attach = debug_to_attach;
2344 current_target.to_post_attach = debug_to_post_attach;
2345 current_target.to_detach = debug_to_detach;
2346 current_target.to_disconnect = debug_to_disconnect;
2347 current_target.to_resume = debug_to_resume;
2348 current_target.to_wait = debug_to_wait;
2349 current_target.to_post_wait = debug_to_post_wait;
2350 current_target.to_fetch_registers = debug_to_fetch_registers;
2351 current_target.to_store_registers = debug_to_store_registers;
2352 current_target.to_prepare_to_store = debug_to_prepare_to_store;
2353 current_target.to_xfer_memory = debug_to_xfer_memory;
2354 current_target.to_files_info = debug_to_files_info;
2355 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
2356 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
2357 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
2358 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
2359 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
2360 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
2361 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
2362 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
2363 current_target.to_stopped_data_address = debug_to_stopped_data_address;
2364 current_target.to_region_size_ok_for_hw_watchpoint = debug_to_region_size_ok_for_hw_watchpoint;
2365 current_target.to_terminal_init = debug_to_terminal_init;
2366 current_target.to_terminal_inferior = debug_to_terminal_inferior;
2367 current_target.to_terminal_ours_for_output = debug_to_terminal_ours_for_output;
2368 current_target.to_terminal_ours = debug_to_terminal_ours;
2369 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
2370 current_target.to_terminal_info = debug_to_terminal_info;
2371 current_target.to_kill = debug_to_kill;
2372 current_target.to_load = debug_to_load;
2373 current_target.to_lookup_symbol = debug_to_lookup_symbol;
2374 current_target.to_create_inferior = debug_to_create_inferior;
2375 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
2376 current_target.to_acknowledge_created_inferior = debug_to_acknowledge_created_inferior;
2377 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
2378 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
2379 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
2380 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
2381 current_target.to_follow_fork = debug_to_follow_fork;
2382 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
2383 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
2384 current_target.to_reported_exec_events_per_exec_call = debug_to_reported_exec_events_per_exec_call;
2385 current_target.to_has_exited = debug_to_has_exited;
2386 current_target.to_mourn_inferior = debug_to_mourn_inferior;
2387 current_target.to_can_run = debug_to_can_run;
2388 current_target.to_notice_signals = debug_to_notice_signals;
2389 current_target.to_thread_alive = debug_to_thread_alive;
2390 current_target.to_find_new_threads = debug_to_find_new_threads;
2391 current_target.to_stop = debug_to_stop;
2392 current_target.to_xfer_partial = debug_to_xfer_partial;
2393 current_target.to_rcmd = debug_to_rcmd;
2394 current_target.to_enable_exception_callback = debug_to_enable_exception_callback;
2395 current_target.to_get_current_exception_event = debug_to_get_current_exception_event;
2396 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
2401 static char targ_desc[] =
2402 "Names of targets and files being debugged.\n\
2403 Shows the entire stack of targets currently in use (including the exec-file,\n\
2404 core-file, and process, if any), as well as the symbol file name.";
2407 do_monitor_command (char *cmd,
2410 if ((current_target.to_rcmd
2411 == (void (*) (char *, struct ui_file *)) tcomplain)
2412 || (current_target.to_rcmd == debug_to_rcmd
2413 && (debug_target.to_rcmd
2414 == (void (*) (char *, struct ui_file *)) tcomplain)))
2416 error ("\"monitor\" command not supported by this target.\n");
2418 target_rcmd (cmd, gdb_stdtarg);
2422 initialize_targets (void)
2424 init_dummy_target ();
2425 push_target (&dummy_target);
2427 add_info ("target", target_info, targ_desc);
2428 add_info ("files", target_info, targ_desc);
2431 (add_set_cmd ("target", class_maintenance, var_zinteger,
2432 (char *) &targetdebug,
2433 "Set target debugging.\n\
2434 When non-zero, target debugging is enabled.", &setdebuglist),
2437 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
2439 Set mode for reading from readonly sections.\n\
2440 When this mode is on, memory reads from readonly sections (such as .text)\n\
2441 will be read from the object file instead of from the target. This will\n\
2442 result in significant performance improvement for remote targets.", "\
2443 Show mode for reading from readonly sections.\n",
2445 &setlist, &showlist);
2447 add_com ("monitor", class_obscure, do_monitor_command,
2448 "Send a command to the remote monitor (remote targets only).");
2450 target_dcache = dcache_init ();