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