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