* common.h (ELFOSABI_FENIXOS, EM_TI_C6000, EM_TI_C2000,
[deliverable/binutils-gdb.git] / gdb / target.c
CommitLineData
c906108c 1/* Select target systems and architectures at runtime for GDB.
7998dfc3 2
6aba47ca 3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
0fb0cc75 4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
f6519ebc 5 Free Software Foundation, Inc.
7998dfc3 6
c906108c
SS
7 Contributed by Cygnus Support.
8
c5aa993b 9 This file is part of GDB.
c906108c 10
c5aa993b
JM
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
a9762ec7 13 the Free Software Foundation; either version 3 of the License, or
c5aa993b 14 (at your option) any later version.
c906108c 15
c5aa993b
JM
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
c906108c 20
c5aa993b 21 You should have received a copy of the GNU General Public License
a9762ec7 22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
23
24#include "defs.h"
25#include <errno.h>
c906108c
SS
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"
03f2053f 34#include "gdb_wait.h"
4930751a 35#include "dcache.h"
c906108c 36#include <signal.h>
4e052eda 37#include "regcache.h"
0088c768 38#include "gdb_assert.h"
b6591e8b 39#include "gdbcore.h"
9e35dae4 40#include "exceptions.h"
424163ea 41#include "target-descriptions.h"
e1ac3328 42#include "gdbthread.h"
b9db4ced 43#include "solib.h"
07b82ea5 44#include "exec.h"
edb3359d 45#include "inline-frame.h"
c906108c 46
a14ed312 47static void target_info (char *, int);
c906108c 48
a14ed312 49static void kill_or_be_killed (int);
c906108c 50
a14ed312 51static void default_terminal_info (char *, int);
c906108c 52
5009afc5
AS
53static int default_watchpoint_addr_within_range (struct target_ops *,
54 CORE_ADDR, CORE_ADDR, int);
55
e0d24f8d
WZ
56static int default_region_ok_for_hw_watchpoint (CORE_ADDR, int);
57
a14ed312 58static int nosymbol (char *, CORE_ADDR *);
c906108c 59
4ecb6f27 60static void tcomplain (void) ATTR_NORETURN;
c906108c 61
a14ed312 62static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
c906108c 63
a14ed312 64static int return_zero (void);
c906108c 65
a14ed312 66static int return_one (void);
c906108c 67
ccaa32c7
GS
68static int return_minus_one (void);
69
a14ed312 70void target_ignore (void);
c906108c 71
a14ed312 72static void target_command (char *, int);
c906108c 73
a14ed312 74static struct target_ops *find_default_run_target (char *);
c906108c 75
a14ed312 76static void nosupport_runtime (void);
392a587b 77
4b8a223f 78static LONGEST default_xfer_partial (struct target_ops *ops,
0088c768 79 enum target_object object,
1b0ba102
AC
80 const char *annex, gdb_byte *readbuf,
81 const gdb_byte *writebuf,
8aa91c1e 82 ULONGEST offset, LONGEST len);
0088c768 83
cf7a04e8
DJ
84static LONGEST current_xfer_partial (struct target_ops *ops,
85 enum target_object object,
86 const char *annex, gdb_byte *readbuf,
87 const gdb_byte *writebuf,
88 ULONGEST offset, LONGEST len);
c906108c 89
cf7a04e8
DJ
90static LONGEST target_xfer_partial (struct target_ops *ops,
91 enum target_object object,
92 const char *annex,
93 void *readbuf, const void *writebuf,
94 ULONGEST offset, LONGEST len);
c906108c 95
c2250ad1
UW
96static struct gdbarch *default_thread_architecture (struct target_ops *ops,
97 ptid_t ptid);
98
a14ed312 99static void init_dummy_target (void);
c906108c 100
aa869812
AC
101static struct target_ops debug_target;
102
a14ed312 103static void debug_to_open (char *, int);
c906108c 104
316f2060 105static void debug_to_prepare_to_store (struct regcache *);
c906108c 106
a14ed312 107static void debug_to_files_info (struct target_ops *);
c906108c 108
a6d9a66e
UW
109static int debug_to_insert_breakpoint (struct gdbarch *,
110 struct bp_target_info *);
c906108c 111
a6d9a66e
UW
112static int debug_to_remove_breakpoint (struct gdbarch *,
113 struct bp_target_info *);
c906108c 114
ccaa32c7
GS
115static int debug_to_can_use_hw_breakpoint (int, int, int);
116
a6d9a66e
UW
117static int debug_to_insert_hw_breakpoint (struct gdbarch *,
118 struct bp_target_info *);
ccaa32c7 119
a6d9a66e
UW
120static int debug_to_remove_hw_breakpoint (struct gdbarch *,
121 struct bp_target_info *);
ccaa32c7
GS
122
123static int debug_to_insert_watchpoint (CORE_ADDR, int, int);
124
125static int debug_to_remove_watchpoint (CORE_ADDR, int, int);
126
127static int debug_to_stopped_by_watchpoint (void);
128
4aa7a7f5 129static int debug_to_stopped_data_address (struct target_ops *, CORE_ADDR *);
ccaa32c7 130
5009afc5
AS
131static int debug_to_watchpoint_addr_within_range (struct target_ops *,
132 CORE_ADDR, CORE_ADDR, int);
133
e0d24f8d
WZ
134static int debug_to_region_ok_for_hw_watchpoint (CORE_ADDR, int);
135
a14ed312 136static void debug_to_terminal_init (void);
c906108c 137
a14ed312 138static void debug_to_terminal_inferior (void);
c906108c 139
a14ed312 140static void debug_to_terminal_ours_for_output (void);
c906108c 141
a790ad35
SC
142static void debug_to_terminal_save_ours (void);
143
a14ed312 144static void debug_to_terminal_ours (void);
c906108c 145
a14ed312 146static void debug_to_terminal_info (char *, int);
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 int debug_to_can_run (void);
c906108c 153
39f77062 154static void debug_to_notice_signals (ptid_t);
c906108c 155
94cc34af 156static void debug_to_stop (ptid_t);
c906108c 157
5ac10fd1
AC
158/* NOTE: cagney/2004-09-29: Many targets reference this variable in
159 wierd and mysterious ways. Putting the variable here lets those
160 wierd and mysterious ways keep building while they are being
161 converted to the inferior inheritance structure. */
1df84f13 162struct target_ops deprecated_child_ops;
5ac10fd1 163
c906108c 164/* Pointer to array of target architecture structures; the size of the
2bc416ba 165 array; the current index into the array; the allocated size of the
c906108c
SS
166 array. */
167struct target_ops **target_structs;
168unsigned target_struct_size;
169unsigned target_struct_index;
170unsigned target_struct_allocsize;
171#define DEFAULT_ALLOCSIZE 10
172
173/* The initial current target, so that there is always a semi-valid
174 current target. */
175
176static struct target_ops dummy_target;
177
178/* Top of target stack. */
179
258b763a 180static struct target_ops *target_stack;
c906108c
SS
181
182/* The target structure we are currently using to talk to a process
183 or file or whatever "inferior" we have. */
184
185struct target_ops current_target;
186
187/* Command list for target. */
188
189static struct cmd_list_element *targetlist = NULL;
190
cf7a04e8
DJ
191/* Nonzero if we should trust readonly sections from the
192 executable when reading memory. */
193
194static int trust_readonly = 0;
195
8defab1a
DJ
196/* Nonzero if we should show true memory content including
197 memory breakpoint inserted by gdb. */
198
199static int show_memory_breakpoints = 0;
200
c906108c
SS
201/* Non-zero if we want to see trace of target level stuff. */
202
203static int targetdebug = 0;
920d2a44
AC
204static void
205show_targetdebug (struct ui_file *file, int from_tty,
206 struct cmd_list_element *c, const char *value)
207{
208 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
209}
c906108c 210
a14ed312 211static void setup_target_debug (void);
c906108c 212
4e5d721f
DE
213/* The option sets this. */
214static int stack_cache_enabled_p_1 = 1;
215/* And set_stack_cache_enabled_p updates this.
216 The reason for the separation is so that we don't flush the cache for
217 on->on transitions. */
218static int stack_cache_enabled_p = 1;
219
220/* This is called *after* the stack-cache has been set.
221 Flush the cache for off->on and on->off transitions.
222 There's no real need to flush the cache for on->off transitions,
223 except cleanliness. */
224
225static void
226set_stack_cache_enabled_p (char *args, int from_tty,
227 struct cmd_list_element *c)
228{
229 if (stack_cache_enabled_p != stack_cache_enabled_p_1)
230 target_dcache_invalidate ();
231
232 stack_cache_enabled_p = stack_cache_enabled_p_1;
233}
234
235static void
236show_stack_cache_enabled_p (struct ui_file *file, int from_tty,
237 struct cmd_list_element *c, const char *value)
238{
239 fprintf_filtered (file, _("Cache use for stack accesses is %s.\n"), value);
240}
241
242/* Cache of memory operations, to speed up remote access. */
243static DCACHE *target_dcache;
244
245/* Invalidate the target dcache. */
246
247void
248target_dcache_invalidate (void)
249{
250 dcache_invalidate (target_dcache);
251}
4930751a 252
c906108c
SS
253/* The user just typed 'target' without the name of a target. */
254
c906108c 255static void
fba45db2 256target_command (char *arg, int from_tty)
c906108c
SS
257{
258 fputs_filtered ("Argument required (target name). Try `help target'\n",
259 gdb_stdout);
260}
261
c35b1492
PA
262/* Default target_has_* methods for process_stratum targets. */
263
264int
265default_child_has_all_memory (struct target_ops *ops)
266{
267 /* If no inferior selected, then we can't read memory here. */
268 if (ptid_equal (inferior_ptid, null_ptid))
269 return 0;
270
271 return 1;
272}
273
274int
275default_child_has_memory (struct target_ops *ops)
276{
277 /* If no inferior selected, then we can't read memory here. */
278 if (ptid_equal (inferior_ptid, null_ptid))
279 return 0;
280
281 return 1;
282}
283
284int
285default_child_has_stack (struct target_ops *ops)
286{
287 /* If no inferior selected, there's no stack. */
288 if (ptid_equal (inferior_ptid, null_ptid))
289 return 0;
290
291 return 1;
292}
293
294int
295default_child_has_registers (struct target_ops *ops)
296{
297 /* Can't read registers from no inferior. */
298 if (ptid_equal (inferior_ptid, null_ptid))
299 return 0;
300
301 return 1;
302}
303
304int
305default_child_has_execution (struct target_ops *ops)
306{
307 /* If there's no thread selected, then we can't make it run through
308 hoops. */
309 if (ptid_equal (inferior_ptid, null_ptid))
310 return 0;
311
312 return 1;
313}
314
315
316int
317target_has_all_memory_1 (void)
318{
319 struct target_ops *t;
320
321 for (t = current_target.beneath; t != NULL; t = t->beneath)
322 if (t->to_has_all_memory (t))
323 return 1;
324
325 return 0;
326}
327
328int
329target_has_memory_1 (void)
330{
331 struct target_ops *t;
332
333 for (t = current_target.beneath; t != NULL; t = t->beneath)
334 if (t->to_has_memory (t))
335 return 1;
336
337 return 0;
338}
339
340int
341target_has_stack_1 (void)
342{
343 struct target_ops *t;
344
345 for (t = current_target.beneath; t != NULL; t = t->beneath)
346 if (t->to_has_stack (t))
347 return 1;
348
349 return 0;
350}
351
352int
353target_has_registers_1 (void)
354{
355 struct target_ops *t;
356
357 for (t = current_target.beneath; t != NULL; t = t->beneath)
358 if (t->to_has_registers (t))
359 return 1;
360
361 return 0;
362}
363
364int
365target_has_execution_1 (void)
366{
367 struct target_ops *t;
368
369 for (t = current_target.beneath; t != NULL; t = t->beneath)
370 if (t->to_has_execution (t))
371 return 1;
372
373 return 0;
374}
375
c906108c
SS
376/* Add a possible target architecture to the list. */
377
378void
fba45db2 379add_target (struct target_ops *t)
c906108c 380{
0088c768 381 /* Provide default values for all "must have" methods. */
0b603eba
AC
382 if (t->to_xfer_partial == NULL)
383 t->to_xfer_partial = default_xfer_partial;
0088c768 384
c35b1492
PA
385 if (t->to_has_all_memory == NULL)
386 t->to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
387
388 if (t->to_has_memory == NULL)
389 t->to_has_memory = (int (*) (struct target_ops *)) return_zero;
390
391 if (t->to_has_stack == NULL)
392 t->to_has_stack = (int (*) (struct target_ops *)) return_zero;
393
394 if (t->to_has_registers == NULL)
395 t->to_has_registers = (int (*) (struct target_ops *)) return_zero;
396
397 if (t->to_has_execution == NULL)
398 t->to_has_execution = (int (*) (struct target_ops *)) return_zero;
399
c906108c
SS
400 if (!target_structs)
401 {
402 target_struct_allocsize = DEFAULT_ALLOCSIZE;
403 target_structs = (struct target_ops **) xmalloc
404 (target_struct_allocsize * sizeof (*target_structs));
405 }
406 if (target_struct_size >= target_struct_allocsize)
407 {
408 target_struct_allocsize *= 2;
409 target_structs = (struct target_ops **)
c5aa993b
JM
410 xrealloc ((char *) target_structs,
411 target_struct_allocsize * sizeof (*target_structs));
c906108c
SS
412 }
413 target_structs[target_struct_size++] = t;
c906108c
SS
414
415 if (targetlist == NULL)
1bedd215
AC
416 add_prefix_cmd ("target", class_run, target_command, _("\
417Connect to a target machine or process.\n\
c906108c
SS
418The first argument is the type or protocol of the target machine.\n\
419Remaining arguments are interpreted by the target protocol. For more\n\
420information on the arguments for a particular protocol, type\n\
1bedd215 421`help target ' followed by the protocol name."),
c906108c
SS
422 &targetlist, "target ", 0, &cmdlist);
423 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
424}
425
426/* Stub functions */
427
428void
fba45db2 429target_ignore (void)
c906108c
SS
430{
431}
432
7d85a9c0
JB
433void
434target_kill (void)
435{
436 struct target_ops *t;
437
438 for (t = current_target.beneath; t != NULL; t = t->beneath)
439 if (t->to_kill != NULL)
440 {
441 if (targetdebug)
442 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
443
444 t->to_kill (t);
445 return;
446 }
447
448 noprocess ();
449}
450
11cf8741
JM
451void
452target_load (char *arg, int from_tty)
453{
4e5d721f 454 target_dcache_invalidate ();
11cf8741
JM
455 (*current_target.to_load) (arg, from_tty);
456}
457
947b8855
PA
458void
459target_create_inferior (char *exec_file, char *args,
460 char **env, int from_tty)
136d6dae
VP
461{
462 struct target_ops *t;
463 for (t = current_target.beneath; t != NULL; t = t->beneath)
464 {
465 if (t->to_create_inferior != NULL)
466 {
467 t->to_create_inferior (t, exec_file, args, env, from_tty);
947b8855
PA
468 if (targetdebug)
469 fprintf_unfiltered (gdb_stdlog,
470 "target_create_inferior (%s, %s, xxx, %d)\n",
471 exec_file, args, from_tty);
136d6dae
VP
472 return;
473 }
474 }
475
476 internal_error (__FILE__, __LINE__,
477 "could not find a target to create inferior");
478}
479
d9d2d8b6
PA
480void
481target_terminal_inferior (void)
482{
483 /* A background resume (``run&'') should leave GDB in control of the
484 terminal. */
485 if (target_is_async_p () && !sync_execution)
486 return;
487
488 /* If GDB is resuming the inferior in the foreground, install
489 inferior's terminal modes. */
490 (*current_target.to_terminal_inferior) ();
491}
136d6dae 492
c906108c 493static int
fba45db2
KB
494nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
495 struct target_ops *t)
c906108c 496{
c5aa993b
JM
497 errno = EIO; /* Can't read/write this location */
498 return 0; /* No bytes handled */
c906108c
SS
499}
500
501static void
fba45db2 502tcomplain (void)
c906108c 503{
8a3fe4f8 504 error (_("You can't do that when your target is `%s'"),
c906108c
SS
505 current_target.to_shortname);
506}
507
508void
fba45db2 509noprocess (void)
c906108c 510{
8a3fe4f8 511 error (_("You can't do that without a process to debug."));
c906108c
SS
512}
513
c906108c 514static int
fba45db2 515nosymbol (char *name, CORE_ADDR *addrp)
c906108c 516{
c5aa993b 517 return 1; /* Symbol does not exist in target env */
c906108c
SS
518}
519
392a587b 520static void
fba45db2 521nosupport_runtime (void)
c906108c 522{
39f77062 523 if (ptid_equal (inferior_ptid, null_ptid))
c906108c
SS
524 noprocess ();
525 else
8a3fe4f8 526 error (_("No run-time support for this"));
c906108c
SS
527}
528
529
c906108c 530static void
fba45db2 531default_terminal_info (char *args, int from_tty)
c906108c 532{
a3f17187 533 printf_unfiltered (_("No saved terminal information.\n"));
c906108c
SS
534}
535
536/* This is the default target_create_inferior and target_attach function.
537 If the current target is executing, it asks whether to kill it off.
538 If this function returns without calling error(), it has killed off
539 the target, and the operation should be attempted. */
540
541static void
fba45db2 542kill_or_be_killed (int from_tty)
c906108c
SS
543{
544 if (target_has_execution)
545 {
a3f17187 546 printf_unfiltered (_("You are already running a program:\n"));
c906108c 547 target_files_info ();
9e2f0ad4 548 if (query (_("Kill it? ")))
c5aa993b
JM
549 {
550 target_kill ();
551 if (target_has_execution)
8a3fe4f8 552 error (_("Killing the program did not help."));
c5aa993b
JM
553 return;
554 }
555 else
556 {
8a3fe4f8 557 error (_("Program not killed."));
c5aa993b 558 }
c906108c 559 }
c5aa993b 560 tcomplain ();
c906108c
SS
561}
562
0ef643c8
JB
563/* A default implementation for the to_get_ada_task_ptid target method.
564
565 This function builds the PTID by using both LWP and TID as part of
566 the PTID lwp and tid elements. The pid used is the pid of the
567 inferior_ptid. */
568
2c0b251b 569static ptid_t
0ef643c8
JB
570default_get_ada_task_ptid (long lwp, long tid)
571{
572 return ptid_build (ptid_get_pid (inferior_ptid), lwp, tid);
573}
574
7998dfc3
AC
575/* Go through the target stack from top to bottom, copying over zero
576 entries in current_target, then filling in still empty entries. In
577 effect, we are doing class inheritance through the pushed target
578 vectors.
579
580 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
581 is currently implemented, is that it discards any knowledge of
582 which target an inherited method originally belonged to.
583 Consequently, new new target methods should instead explicitly and
584 locally search the target stack for the target that can handle the
585 request. */
c906108c
SS
586
587static void
7998dfc3 588update_current_target (void)
c906108c 589{
7998dfc3
AC
590 struct target_ops *t;
591
08d8bcd7 592 /* First, reset current's contents. */
7998dfc3
AC
593 memset (&current_target, 0, sizeof (current_target));
594
595#define INHERIT(FIELD, TARGET) \
596 if (!current_target.FIELD) \
597 current_target.FIELD = (TARGET)->FIELD
598
599 for (t = target_stack; t; t = t->beneath)
600 {
601 INHERIT (to_shortname, t);
602 INHERIT (to_longname, t);
603 INHERIT (to_doc, t);
b52323fa
UW
604 /* Do not inherit to_open. */
605 /* Do not inherit to_close. */
136d6dae 606 /* Do not inherit to_attach. */
7998dfc3 607 INHERIT (to_post_attach, t);
dc177b7a 608 INHERIT (to_attach_no_wait, t);
136d6dae 609 /* Do not inherit to_detach. */
597320e7 610 /* Do not inherit to_disconnect. */
28439f5e 611 /* Do not inherit to_resume. */
117de6a9 612 /* Do not inherit to_wait. */
28439f5e
PA
613 /* Do not inherit to_fetch_registers. */
614 /* Do not inherit to_store_registers. */
7998dfc3 615 INHERIT (to_prepare_to_store, t);
c8e73a31 616 INHERIT (deprecated_xfer_memory, t);
7998dfc3
AC
617 INHERIT (to_files_info, t);
618 INHERIT (to_insert_breakpoint, t);
619 INHERIT (to_remove_breakpoint, t);
620 INHERIT (to_can_use_hw_breakpoint, t);
621 INHERIT (to_insert_hw_breakpoint, t);
622 INHERIT (to_remove_hw_breakpoint, t);
623 INHERIT (to_insert_watchpoint, t);
624 INHERIT (to_remove_watchpoint, t);
625 INHERIT (to_stopped_data_address, t);
74174d2e 626 INHERIT (to_have_steppable_watchpoint, t);
7998dfc3 627 INHERIT (to_have_continuable_watchpoint, t);
5009afc5
AS
628 INHERIT (to_stopped_by_watchpoint, t);
629 INHERIT (to_watchpoint_addr_within_range, t);
e0d24f8d 630 INHERIT (to_region_ok_for_hw_watchpoint, t);
7998dfc3
AC
631 INHERIT (to_terminal_init, t);
632 INHERIT (to_terminal_inferior, t);
633 INHERIT (to_terminal_ours_for_output, t);
634 INHERIT (to_terminal_ours, t);
635 INHERIT (to_terminal_save_ours, t);
636 INHERIT (to_terminal_info, t);
7d85a9c0 637 /* Do not inherit to_kill. */
7998dfc3
AC
638 INHERIT (to_load, t);
639 INHERIT (to_lookup_symbol, t);
136d6dae 640 /* Do no inherit to_create_inferior. */
7998dfc3
AC
641 INHERIT (to_post_startup_inferior, t);
642 INHERIT (to_acknowledge_created_inferior, t);
643 INHERIT (to_insert_fork_catchpoint, t);
644 INHERIT (to_remove_fork_catchpoint, t);
645 INHERIT (to_insert_vfork_catchpoint, t);
646 INHERIT (to_remove_vfork_catchpoint, t);
ee057212 647 /* Do not inherit to_follow_fork. */
7998dfc3
AC
648 INHERIT (to_insert_exec_catchpoint, t);
649 INHERIT (to_remove_exec_catchpoint, t);
a96d9b2e 650 INHERIT (to_set_syscall_catchpoint, t);
7998dfc3 651 INHERIT (to_has_exited, t);
117de6a9 652 /* Do not inherit to_mourn_inferiour. */
7998dfc3
AC
653 INHERIT (to_can_run, t);
654 INHERIT (to_notice_signals, t);
28439f5e
PA
655 /* Do not inherit to_thread_alive. */
656 /* Do not inherit to_find_new_threads. */
117de6a9 657 /* Do not inherit to_pid_to_str. */
7998dfc3
AC
658 INHERIT (to_extra_thread_info, t);
659 INHERIT (to_stop, t);
4b8a223f 660 /* Do not inherit to_xfer_partial. */
7998dfc3 661 INHERIT (to_rcmd, t);
7998dfc3 662 INHERIT (to_pid_to_exec_file, t);
49d03eab 663 INHERIT (to_log_command, t);
7998dfc3 664 INHERIT (to_stratum, t);
c35b1492
PA
665 /* Do not inherit to_has_all_memory */
666 /* Do not inherit to_has_memory */
667 /* Do not inherit to_has_stack */
668 /* Do not inherit to_has_registers */
669 /* Do not inherit to_has_execution */
7998dfc3 670 INHERIT (to_has_thread_control, t);
7998dfc3
AC
671 INHERIT (to_can_async_p, t);
672 INHERIT (to_is_async_p, t);
673 INHERIT (to_async, t);
b84876c2 674 INHERIT (to_async_mask, t);
7998dfc3
AC
675 INHERIT (to_find_memory_regions, t);
676 INHERIT (to_make_corefile_notes, t);
6b04bdb7
MS
677 INHERIT (to_get_bookmark, t);
678 INHERIT (to_goto_bookmark, t);
117de6a9 679 /* Do not inherit to_get_thread_local_address. */
b2175913 680 INHERIT (to_can_execute_reverse, t);
c2250ad1 681 INHERIT (to_thread_architecture, t);
424163ea 682 /* Do not inherit to_read_description. */
0ef643c8 683 INHERIT (to_get_ada_task_ptid, t);
08388c79 684 /* Do not inherit to_search_memory. */
8a305172 685 INHERIT (to_supports_multi_process, t);
7998dfc3 686 INHERIT (to_magic, t);
fd79ecee 687 /* Do not inherit to_memory_map. */
a76d924d
DJ
688 /* Do not inherit to_flash_erase. */
689 /* Do not inherit to_flash_done. */
7998dfc3
AC
690 }
691#undef INHERIT
692
693 /* Clean up a target struct so it no longer has any zero pointers in
0088c768
AC
694 it. Some entries are defaulted to a method that print an error,
695 others are hard-wired to a standard recursive default. */
c906108c
SS
696
697#define de_fault(field, value) \
7998dfc3
AC
698 if (!current_target.field) \
699 current_target.field = value
0d06e24b 700
2bc416ba
DJ
701 de_fault (to_open,
702 (void (*) (char *, int))
0d06e24b 703 tcomplain);
2bc416ba
DJ
704 de_fault (to_close,
705 (void (*) (int))
0d06e24b 706 target_ignore);
2bc416ba
DJ
707 de_fault (to_post_attach,
708 (void (*) (int))
0d06e24b 709 target_ignore);
2bc416ba 710 de_fault (to_prepare_to_store,
316f2060 711 (void (*) (struct regcache *))
0d06e24b 712 noprocess);
2bc416ba
DJ
713 de_fault (deprecated_xfer_memory,
714 (int (*) (CORE_ADDR, gdb_byte *, int, int, struct mem_attrib *, struct target_ops *))
0d06e24b 715 nomemory);
2bc416ba
DJ
716 de_fault (to_files_info,
717 (void (*) (struct target_ops *))
0d06e24b 718 target_ignore);
2bc416ba 719 de_fault (to_insert_breakpoint,
0d06e24b 720 memory_insert_breakpoint);
2bc416ba 721 de_fault (to_remove_breakpoint,
0d06e24b 722 memory_remove_breakpoint);
ccaa32c7
GS
723 de_fault (to_can_use_hw_breakpoint,
724 (int (*) (int, int, int))
725 return_zero);
726 de_fault (to_insert_hw_breakpoint,
a6d9a66e 727 (int (*) (struct gdbarch *, struct bp_target_info *))
ccaa32c7
GS
728 return_minus_one);
729 de_fault (to_remove_hw_breakpoint,
a6d9a66e 730 (int (*) (struct gdbarch *, struct bp_target_info *))
ccaa32c7
GS
731 return_minus_one);
732 de_fault (to_insert_watchpoint,
733 (int (*) (CORE_ADDR, int, int))
734 return_minus_one);
735 de_fault (to_remove_watchpoint,
736 (int (*) (CORE_ADDR, int, int))
737 return_minus_one);
738 de_fault (to_stopped_by_watchpoint,
739 (int (*) (void))
740 return_zero);
741 de_fault (to_stopped_data_address,
4aa7a7f5 742 (int (*) (struct target_ops *, CORE_ADDR *))
ccaa32c7 743 return_zero);
5009afc5
AS
744 de_fault (to_watchpoint_addr_within_range,
745 default_watchpoint_addr_within_range);
e0d24f8d
WZ
746 de_fault (to_region_ok_for_hw_watchpoint,
747 default_region_ok_for_hw_watchpoint);
2bc416ba
DJ
748 de_fault (to_terminal_init,
749 (void (*) (void))
0d06e24b 750 target_ignore);
2bc416ba
DJ
751 de_fault (to_terminal_inferior,
752 (void (*) (void))
0d06e24b 753 target_ignore);
2bc416ba
DJ
754 de_fault (to_terminal_ours_for_output,
755 (void (*) (void))
0d06e24b 756 target_ignore);
2bc416ba
DJ
757 de_fault (to_terminal_ours,
758 (void (*) (void))
0d06e24b 759 target_ignore);
2bc416ba
DJ
760 de_fault (to_terminal_save_ours,
761 (void (*) (void))
a790ad35 762 target_ignore);
2bc416ba 763 de_fault (to_terminal_info,
0d06e24b 764 default_terminal_info);
2bc416ba
DJ
765 de_fault (to_load,
766 (void (*) (char *, int))
0d06e24b 767 tcomplain);
2bc416ba
DJ
768 de_fault (to_lookup_symbol,
769 (int (*) (char *, CORE_ADDR *))
0d06e24b 770 nosymbol);
2bc416ba
DJ
771 de_fault (to_post_startup_inferior,
772 (void (*) (ptid_t))
0d06e24b 773 target_ignore);
2bc416ba
DJ
774 de_fault (to_acknowledge_created_inferior,
775 (void (*) (int))
0d06e24b 776 target_ignore);
2bc416ba
DJ
777 de_fault (to_insert_fork_catchpoint,
778 (void (*) (int))
0d06e24b 779 tcomplain);
2bc416ba
DJ
780 de_fault (to_remove_fork_catchpoint,
781 (int (*) (int))
0d06e24b 782 tcomplain);
2bc416ba
DJ
783 de_fault (to_insert_vfork_catchpoint,
784 (void (*) (int))
0d06e24b 785 tcomplain);
2bc416ba
DJ
786 de_fault (to_remove_vfork_catchpoint,
787 (int (*) (int))
0d06e24b 788 tcomplain);
2bc416ba
DJ
789 de_fault (to_insert_exec_catchpoint,
790 (void (*) (int))
0d06e24b 791 tcomplain);
2bc416ba
DJ
792 de_fault (to_remove_exec_catchpoint,
793 (int (*) (int))
0d06e24b 794 tcomplain);
a96d9b2e
SDJ
795 de_fault (to_set_syscall_catchpoint,
796 (int (*) (int, int, int, int, int *))
797 tcomplain);
2bc416ba
DJ
798 de_fault (to_has_exited,
799 (int (*) (int, int, int *))
0d06e24b 800 return_zero);
2bc416ba 801 de_fault (to_can_run,
0d06e24b 802 return_zero);
2bc416ba
DJ
803 de_fault (to_notice_signals,
804 (void (*) (ptid_t))
0d06e24b 805 target_ignore);
2bc416ba
DJ
806 de_fault (to_extra_thread_info,
807 (char *(*) (struct thread_info *))
0d06e24b 808 return_zero);
2bc416ba 809 de_fault (to_stop,
94cc34af 810 (void (*) (ptid_t))
0d06e24b 811 target_ignore);
cf7a04e8 812 current_target.to_xfer_partial = current_xfer_partial;
2bc416ba
DJ
813 de_fault (to_rcmd,
814 (void (*) (char *, struct ui_file *))
0d06e24b 815 tcomplain);
2bc416ba
DJ
816 de_fault (to_pid_to_exec_file,
817 (char *(*) (int))
0d06e24b 818 return_zero);
2bc416ba
DJ
819 de_fault (to_async,
820 (void (*) (void (*) (enum inferior_event_type, void*), void*))
0d06e24b 821 tcomplain);
b84876c2
PA
822 de_fault (to_async_mask,
823 (int (*) (int))
824 return_one);
c2250ad1
UW
825 de_fault (to_thread_architecture,
826 default_thread_architecture);
424163ea 827 current_target.to_read_description = NULL;
0ef643c8
JB
828 de_fault (to_get_ada_task_ptid,
829 (ptid_t (*) (long, long))
830 default_get_ada_task_ptid);
8a305172
PA
831 de_fault (to_supports_multi_process,
832 (int (*) (void))
833 return_zero);
c906108c 834#undef de_fault
c906108c 835
7998dfc3
AC
836 /* Finally, position the target-stack beneath the squashed
837 "current_target". That way code looking for a non-inherited
838 target method can quickly and simply find it. */
839 current_target.beneath = target_stack;
b4b61fdb
DJ
840
841 if (targetdebug)
842 setup_target_debug ();
c906108c
SS
843}
844
845/* Push a new target type into the stack of the existing target accessors,
846 possibly superseding some of the existing accessors.
847
848 Result is zero if the pushed target ended up on top of the stack,
849 nonzero if at least one target is on top of it.
850
851 Rather than allow an empty stack, we always have the dummy target at
852 the bottom stratum, so we can call the function vectors without
853 checking them. */
854
855int
fba45db2 856push_target (struct target_ops *t)
c906108c 857{
258b763a 858 struct target_ops **cur;
c906108c
SS
859
860 /* Check magic number. If wrong, it probably means someone changed
861 the struct definition, but not all the places that initialize one. */
862 if (t->to_magic != OPS_MAGIC)
863 {
c5aa993b
JM
864 fprintf_unfiltered (gdb_stderr,
865 "Magic number of %s target struct wrong\n",
866 t->to_shortname);
e2e0b3e5 867 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
c906108c
SS
868 }
869
258b763a
AC
870 /* Find the proper stratum to install this target in. */
871 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
c906108c 872 {
258b763a 873 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
c906108c
SS
874 break;
875 }
876
258b763a 877 /* If there's already targets at this stratum, remove them. */
88c231eb 878 /* FIXME: cagney/2003-10-15: I think this should be popping all
258b763a
AC
879 targets to CUR, and not just those at this stratum level. */
880 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
881 {
882 /* There's already something at this stratum level. Close it,
883 and un-hook it from the stack. */
884 struct target_ops *tmp = (*cur);
885 (*cur) = (*cur)->beneath;
886 tmp->beneath = NULL;
f1c07ab0 887 target_close (tmp, 0);
258b763a 888 }
c906108c
SS
889
890 /* We have removed all targets in our stratum, now add the new one. */
258b763a
AC
891 t->beneath = (*cur);
892 (*cur) = t;
c906108c
SS
893
894 update_current_target ();
895
258b763a
AC
896 /* Not on top? */
897 return (t != target_stack);
c906108c
SS
898}
899
2bc416ba 900/* Remove a target_ops vector from the stack, wherever it may be.
c906108c
SS
901 Return how many times it was removed (0 or 1). */
902
903int
fba45db2 904unpush_target (struct target_ops *t)
c906108c 905{
258b763a
AC
906 struct target_ops **cur;
907 struct target_ops *tmp;
c906108c 908
c8d104ad
PA
909 if (t->to_stratum == dummy_stratum)
910 internal_error (__FILE__, __LINE__,
911 "Attempt to unpush the dummy target");
912
c906108c
SS
913 /* Look for the specified target. Note that we assume that a target
914 can only occur once in the target stack. */
915
258b763a
AC
916 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
917 {
918 if ((*cur) == t)
919 break;
920 }
c906108c 921
258b763a 922 if ((*cur) == NULL)
c906108c
SS
923 return 0; /* Didn't find target_ops, quit now */
924
5269965e
AC
925 /* NOTE: cagney/2003-12-06: In '94 the close call was made
926 unconditional by moving it to before the above check that the
927 target was in the target stack (something about "Change the way
928 pushing and popping of targets work to support target overlays
929 and inheritance"). This doesn't make much sense - only open
930 targets should be closed. */
931 target_close (t, 0);
932
c906108c 933 /* Unchain the target */
258b763a
AC
934 tmp = (*cur);
935 (*cur) = (*cur)->beneath;
936 tmp->beneath = NULL;
c906108c
SS
937
938 update_current_target ();
c906108c
SS
939
940 return 1;
941}
942
943void
fba45db2 944pop_target (void)
c906108c 945{
b52323fa 946 target_close (target_stack, 0); /* Let it clean up */
258b763a 947 if (unpush_target (target_stack) == 1)
c906108c
SS
948 return;
949
c5aa993b
JM
950 fprintf_unfiltered (gdb_stderr,
951 "pop_target couldn't find target %s\n",
952 current_target.to_shortname);
e2e0b3e5 953 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
c906108c
SS
954}
955
aa76d38d 956void
87ab71f0 957pop_all_targets_above (enum strata above_stratum, int quitting)
aa76d38d 958{
87ab71f0 959 while ((int) (current_target.to_stratum) > (int) above_stratum)
aa76d38d 960 {
b52323fa 961 target_close (target_stack, quitting);
aa76d38d
PA
962 if (!unpush_target (target_stack))
963 {
964 fprintf_unfiltered (gdb_stderr,
965 "pop_all_targets couldn't find target %s\n",
b52323fa 966 target_stack->to_shortname);
aa76d38d
PA
967 internal_error (__FILE__, __LINE__,
968 _("failed internal consistency check"));
969 break;
970 }
971 }
972}
973
87ab71f0
PA
974void
975pop_all_targets (int quitting)
976{
977 pop_all_targets_above (dummy_stratum, quitting);
978}
979
72f5cf0e 980/* Using the objfile specified in OBJFILE, find the address for the
9e35dae4
DJ
981 current thread's thread-local storage with offset OFFSET. */
982CORE_ADDR
983target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
984{
985 volatile CORE_ADDR addr = 0;
117de6a9
PA
986 struct target_ops *target;
987
988 for (target = current_target.beneath;
989 target != NULL;
990 target = target->beneath)
991 {
992 if (target->to_get_thread_local_address != NULL)
993 break;
994 }
9e35dae4 995
117de6a9 996 if (target != NULL
1cf3db46 997 && gdbarch_fetch_tls_load_module_address_p (target_gdbarch))
9e35dae4
DJ
998 {
999 ptid_t ptid = inferior_ptid;
1000 volatile struct gdb_exception ex;
1001
1002 TRY_CATCH (ex, RETURN_MASK_ALL)
1003 {
1004 CORE_ADDR lm_addr;
1005
1006 /* Fetch the load module address for this objfile. */
1cf3db46 1007 lm_addr = gdbarch_fetch_tls_load_module_address (target_gdbarch,
9e35dae4
DJ
1008 objfile);
1009 /* If it's 0, throw the appropriate exception. */
1010 if (lm_addr == 0)
1011 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
1012 _("TLS load module not found"));
1013
117de6a9 1014 addr = target->to_get_thread_local_address (target, ptid, lm_addr, offset);
9e35dae4
DJ
1015 }
1016 /* If an error occurred, print TLS related messages here. Otherwise,
1017 throw the error to some higher catcher. */
1018 if (ex.reason < 0)
1019 {
1020 int objfile_is_library = (objfile->flags & OBJF_SHARED);
1021
1022 switch (ex.error)
1023 {
1024 case TLS_NO_LIBRARY_SUPPORT_ERROR:
1025 error (_("Cannot find thread-local variables in this thread library."));
1026 break;
1027 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
1028 if (objfile_is_library)
1029 error (_("Cannot find shared library `%s' in dynamic"
1030 " linker's load module list"), objfile->name);
1031 else
1032 error (_("Cannot find executable file `%s' in dynamic"
1033 " linker's load module list"), objfile->name);
1034 break;
1035 case TLS_NOT_ALLOCATED_YET_ERROR:
1036 if (objfile_is_library)
1037 error (_("The inferior has not yet allocated storage for"
1038 " thread-local variables in\n"
1039 "the shared library `%s'\n"
1040 "for %s"),
1041 objfile->name, target_pid_to_str (ptid));
1042 else
1043 error (_("The inferior has not yet allocated storage for"
1044 " thread-local variables in\n"
1045 "the executable `%s'\n"
1046 "for %s"),
1047 objfile->name, target_pid_to_str (ptid));
1048 break;
1049 case TLS_GENERIC_ERROR:
1050 if (objfile_is_library)
1051 error (_("Cannot find thread-local storage for %s, "
1052 "shared library %s:\n%s"),
1053 target_pid_to_str (ptid),
1054 objfile->name, ex.message);
1055 else
1056 error (_("Cannot find thread-local storage for %s, "
1057 "executable file %s:\n%s"),
1058 target_pid_to_str (ptid),
1059 objfile->name, ex.message);
1060 break;
1061 default:
1062 throw_exception (ex);
1063 break;
1064 }
1065 }
1066 }
1067 /* It wouldn't be wrong here to try a gdbarch method, too; finding
1068 TLS is an ABI-specific thing. But we don't do that yet. */
1069 else
1070 error (_("Cannot find thread-local variables on this target"));
1071
1072 return addr;
1073}
1074
c906108c
SS
1075#undef MIN
1076#define MIN(A, B) (((A) <= (B)) ? (A) : (B))
1077
1078/* target_read_string -- read a null terminated string, up to LEN bytes,
1079 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
1080 Set *STRING to a pointer to malloc'd memory containing the data; the caller
1081 is responsible for freeing it. Return the number of bytes successfully
1082 read. */
1083
1084int
fba45db2 1085target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
c906108c
SS
1086{
1087 int tlen, origlen, offset, i;
1b0ba102 1088 gdb_byte buf[4];
c906108c
SS
1089 int errcode = 0;
1090 char *buffer;
1091 int buffer_allocated;
1092 char *bufptr;
1093 unsigned int nbytes_read = 0;
1094
6217bf3e
MS
1095 gdb_assert (string);
1096
c906108c
SS
1097 /* Small for testing. */
1098 buffer_allocated = 4;
1099 buffer = xmalloc (buffer_allocated);
1100 bufptr = buffer;
1101
1102 origlen = len;
1103
1104 while (len > 0)
1105 {
1106 tlen = MIN (len, 4 - (memaddr & 3));
1107 offset = memaddr & 3;
1108
1b0ba102 1109 errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
c906108c
SS
1110 if (errcode != 0)
1111 {
1112 /* The transfer request might have crossed the boundary to an
1113 unallocated region of memory. Retry the transfer, requesting
1114 a single byte. */
1115 tlen = 1;
1116 offset = 0;
b8eb5af0 1117 errcode = target_read_memory (memaddr, buf, 1);
c906108c
SS
1118 if (errcode != 0)
1119 goto done;
1120 }
1121
1122 if (bufptr - buffer + tlen > buffer_allocated)
1123 {
1124 unsigned int bytes;
1125 bytes = bufptr - buffer;
1126 buffer_allocated *= 2;
1127 buffer = xrealloc (buffer, buffer_allocated);
1128 bufptr = buffer + bytes;
1129 }
1130
1131 for (i = 0; i < tlen; i++)
1132 {
1133 *bufptr++ = buf[i + offset];
1134 if (buf[i + offset] == '\000')
1135 {
1136 nbytes_read += i + 1;
1137 goto done;
1138 }
1139 }
1140
1141 memaddr += tlen;
1142 len -= tlen;
1143 nbytes_read += tlen;
1144 }
c5aa993b 1145done:
6217bf3e 1146 *string = buffer;
c906108c
SS
1147 if (errnop != NULL)
1148 *errnop = errcode;
c906108c
SS
1149 return nbytes_read;
1150}
1151
07b82ea5
PA
1152struct target_section_table *
1153target_get_section_table (struct target_ops *target)
1154{
1155 struct target_ops *t;
1156
1157 if (targetdebug)
1158 fprintf_unfiltered (gdb_stdlog, "target_get_section_table ()\n");
1159
1160 for (t = target; t != NULL; t = t->beneath)
1161 if (t->to_get_section_table != NULL)
1162 return (*t->to_get_section_table) (t);
1163
1164 return NULL;
1165}
1166
8db32d44 1167/* Find a section containing ADDR. */
07b82ea5 1168
0542c86d 1169struct target_section *
8db32d44
AC
1170target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1171{
07b82ea5 1172 struct target_section_table *table = target_get_section_table (target);
0542c86d 1173 struct target_section *secp;
07b82ea5
PA
1174
1175 if (table == NULL)
1176 return NULL;
1177
1178 for (secp = table->sections; secp < table->sections_end; secp++)
8db32d44
AC
1179 {
1180 if (addr >= secp->addr && addr < secp->endaddr)
1181 return secp;
1182 }
1183 return NULL;
1184}
1185
7f79c47e
DE
1186/* Perform a partial memory transfer.
1187 For docs see target.h, to_xfer_partial. */
cf7a04e8
DJ
1188
1189static LONGEST
4e5d721f
DE
1190memory_xfer_partial (struct target_ops *ops, enum target_object object,
1191 void *readbuf, const void *writebuf, ULONGEST memaddr,
1192 LONGEST len)
0779438d 1193{
cf7a04e8
DJ
1194 LONGEST res;
1195 int reg_len;
1196 struct mem_region *region;
4e5d721f 1197 struct inferior *inf;
cf7a04e8
DJ
1198
1199 /* Zero length requests are ok and require no work. */
1200 if (len == 0)
1201 return 0;
1202
07b82ea5
PA
1203 /* For accesses to unmapped overlay sections, read directly from
1204 files. Must do this first, as MEMADDR may need adjustment. */
1205 if (readbuf != NULL && overlay_debugging)
1206 {
1207 struct obj_section *section = find_pc_overlay (memaddr);
1208 if (pc_in_unmapped_range (memaddr, section))
1209 {
1210 struct target_section_table *table
1211 = target_get_section_table (ops);
1212 const char *section_name = section->the_bfd_section->name;
1213 memaddr = overlay_mapped_address (memaddr, section);
1214 return section_table_xfer_memory_partial (readbuf, writebuf,
1215 memaddr, len,
1216 table->sections,
1217 table->sections_end,
1218 section_name);
1219 }
1220 }
1221
1222 /* Try the executable files, if "trust-readonly-sections" is set. */
cf7a04e8
DJ
1223 if (readbuf != NULL && trust_readonly)
1224 {
0542c86d 1225 struct target_section *secp;
07b82ea5 1226 struct target_section_table *table;
cf7a04e8
DJ
1227
1228 secp = target_section_by_addr (ops, memaddr);
1229 if (secp != NULL
1230 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
1231 & SEC_READONLY))
07b82ea5
PA
1232 {
1233 table = target_get_section_table (ops);
1234 return section_table_xfer_memory_partial (readbuf, writebuf,
1235 memaddr, len,
1236 table->sections,
1237 table->sections_end,
1238 NULL);
1239 }
98646950
UW
1240 }
1241
cf7a04e8
DJ
1242 /* Try GDB's internal data cache. */
1243 region = lookup_mem_region (memaddr);
4b5752d0
VP
1244 /* region->hi == 0 means there's no upper bound. */
1245 if (memaddr + len < region->hi || region->hi == 0)
cf7a04e8
DJ
1246 reg_len = len;
1247 else
1248 reg_len = region->hi - memaddr;
1249
1250 switch (region->attrib.mode)
1251 {
1252 case MEM_RO:
1253 if (writebuf != NULL)
1254 return -1;
1255 break;
1256
1257 case MEM_WO:
1258 if (readbuf != NULL)
1259 return -1;
1260 break;
a76d924d
DJ
1261
1262 case MEM_FLASH:
1263 /* We only support writing to flash during "load" for now. */
1264 if (writebuf != NULL)
1265 error (_("Writing to flash memory forbidden in this context"));
1266 break;
4b5752d0
VP
1267
1268 case MEM_NONE:
1269 return -1;
cf7a04e8
DJ
1270 }
1271
6c95b8df
PA
1272 if (!ptid_equal (inferior_ptid, null_ptid))
1273 inf = find_inferior_pid (ptid_get_pid (inferior_ptid));
1274 else
1275 inf = NULL;
4e5d721f
DE
1276
1277 if (inf != NULL
1278 && (region->attrib.cache
1279 || (stack_cache_enabled_p && object == TARGET_OBJECT_STACK_MEMORY)))
cf7a04e8 1280 {
cf7a04e8 1281 if (readbuf != NULL)
25f122dc 1282 res = dcache_xfer_memory (ops, target_dcache, memaddr, readbuf,
cf7a04e8
DJ
1283 reg_len, 0);
1284 else
1285 /* FIXME drow/2006-08-09: If we're going to preserve const
1286 correctness dcache_xfer_memory should take readbuf and
1287 writebuf. */
25f122dc 1288 res = dcache_xfer_memory (ops, target_dcache, memaddr,
cf7a04e8
DJ
1289 (void *) writebuf,
1290 reg_len, 1);
1291 if (res <= 0)
1292 return -1;
1293 else
8defab1a
DJ
1294 {
1295 if (readbuf && !show_memory_breakpoints)
1296 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1297 return res;
1298 }
cf7a04e8
DJ
1299 }
1300
1301 /* If none of those methods found the memory we wanted, fall back
1302 to a target partial transfer. Normally a single call to
1303 to_xfer_partial is enough; if it doesn't recognize an object
1304 it will call the to_xfer_partial of the next target down.
1305 But for memory this won't do. Memory is the only target
1306 object which can be read from more than one valid target.
1307 A core file, for instance, could have some of memory but
1308 delegate other bits to the target below it. So, we must
1309 manually try all targets. */
1310
1311 do
1312 {
1313 res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
4b5752d0 1314 readbuf, writebuf, memaddr, reg_len);
cf7a04e8 1315 if (res > 0)
8defab1a 1316 break;
cf7a04e8 1317
5ad3a4ca
DJ
1318 /* We want to continue past core files to executables, but not
1319 past a running target's memory. */
c35b1492 1320 if (ops->to_has_all_memory (ops))
8defab1a 1321 break;
5ad3a4ca 1322
cf7a04e8
DJ
1323 ops = ops->beneath;
1324 }
1325 while (ops != NULL);
1326
8defab1a
DJ
1327 if (readbuf && !show_memory_breakpoints)
1328 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1329
41dcd03f
DE
1330 /* Make sure the cache gets updated no matter what - if we are writing
1331 to the stack. Even if this write is not tagged as such, we still need
1332 to update the cache. */
1333
1334 if (res > 0
1335 && inf != NULL
1336 && writebuf != NULL
1337 && !region->attrib.cache
1338 && stack_cache_enabled_p
1339 && object != TARGET_OBJECT_STACK_MEMORY)
1340 {
7d4f32d3 1341 dcache_update (target_dcache, memaddr, (void *) writebuf, res);
41dcd03f
DE
1342 }
1343
cf7a04e8
DJ
1344 /* If we still haven't got anything, return the last error. We
1345 give up. */
1346 return res;
0779438d
AC
1347}
1348
8defab1a
DJ
1349static void
1350restore_show_memory_breakpoints (void *arg)
1351{
1352 show_memory_breakpoints = (uintptr_t) arg;
1353}
1354
1355struct cleanup *
1356make_show_memory_breakpoints_cleanup (int show)
1357{
1358 int current = show_memory_breakpoints;
1359 show_memory_breakpoints = show;
1360
1361 return make_cleanup (restore_show_memory_breakpoints,
1362 (void *) (uintptr_t) current);
1363}
1364
7f79c47e
DE
1365/* For docs see target.h, to_xfer_partial. */
1366
27394598
AC
1367static LONGEST
1368target_xfer_partial (struct target_ops *ops,
1369 enum target_object object, const char *annex,
1370 void *readbuf, const void *writebuf,
1371 ULONGEST offset, LONGEST len)
1372{
1373 LONGEST retval;
1374
1375 gdb_assert (ops->to_xfer_partial != NULL);
cf7a04e8
DJ
1376
1377 /* If this is a memory transfer, let the memory-specific code
1378 have a look at it instead. Memory transfers are more
1379 complicated. */
4e5d721f
DE
1380 if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY)
1381 retval = memory_xfer_partial (ops, object, readbuf,
1382 writebuf, offset, len);
cf7a04e8
DJ
1383 else
1384 {
1385 enum target_object raw_object = object;
1386
1387 /* If this is a raw memory transfer, request the normal
1388 memory object from other layers. */
1389 if (raw_object == TARGET_OBJECT_RAW_MEMORY)
1390 raw_object = TARGET_OBJECT_MEMORY;
1391
1392 retval = ops->to_xfer_partial (ops, raw_object, annex, readbuf,
1393 writebuf, offset, len);
1394 }
1395
27394598
AC
1396 if (targetdebug)
1397 {
1398 const unsigned char *myaddr = NULL;
1399
1400 fprintf_unfiltered (gdb_stdlog,
53b71562 1401 "%s:target_xfer_partial (%d, %s, %s, %s, %s, %s) = %s",
27394598
AC
1402 ops->to_shortname,
1403 (int) object,
1404 (annex ? annex : "(null)"),
53b71562
JB
1405 host_address_to_string (readbuf),
1406 host_address_to_string (writebuf),
0b1553bc
UW
1407 core_addr_to_string_nz (offset),
1408 plongest (len), plongest (retval));
27394598
AC
1409
1410 if (readbuf)
1411 myaddr = readbuf;
1412 if (writebuf)
1413 myaddr = writebuf;
1414 if (retval > 0 && myaddr != NULL)
1415 {
1416 int i;
2bc416ba 1417
27394598
AC
1418 fputs_unfiltered (", bytes =", gdb_stdlog);
1419 for (i = 0; i < retval; i++)
1420 {
53b71562 1421 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
27394598
AC
1422 {
1423 if (targetdebug < 2 && i > 0)
1424 {
1425 fprintf_unfiltered (gdb_stdlog, " ...");
1426 break;
1427 }
1428 fprintf_unfiltered (gdb_stdlog, "\n");
1429 }
2bc416ba 1430
27394598
AC
1431 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1432 }
1433 }
2bc416ba 1434
27394598
AC
1435 fputc_unfiltered ('\n', gdb_stdlog);
1436 }
1437 return retval;
1438}
1439
c906108c
SS
1440/* Read LEN bytes of target memory at address MEMADDR, placing the results in
1441 GDB's memory at MYADDR. Returns either 0 for success or an errno value
1442 if any error occurs.
1443
1444 If an error occurs, no guarantee is made about the contents of the data at
1445 MYADDR. In particular, the caller should not depend upon partial reads
1446 filling the buffer with good data. There is no way for the caller to know
1447 how much good data might have been transfered anyway. Callers that can
cf7a04e8
DJ
1448 deal with partial reads should call target_read (which will retry until
1449 it makes no progress, and then return how much was transferred). */
c906108c
SS
1450
1451int
fc1a4b47 1452target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
c906108c 1453{
c35b1492
PA
1454 /* Dispatch to the topmost target, not the flattened current_target.
1455 Memory accesses check target->to_has_(all_)memory, and the
1456 flattened target doesn't inherit those. */
1457 if (target_read (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
cf7a04e8
DJ
1458 myaddr, memaddr, len) == len)
1459 return 0;
0779438d 1460 else
cf7a04e8 1461 return EIO;
c906108c
SS
1462}
1463
4e5d721f
DE
1464/* Like target_read_memory, but specify explicitly that this is a read from
1465 the target's stack. This may trigger different cache behavior. */
1466
1467int
1468target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
1469{
1470 /* Dispatch to the topmost target, not the flattened current_target.
1471 Memory accesses check target->to_has_(all_)memory, and the
1472 flattened target doesn't inherit those. */
1473
1474 if (target_read (current_target.beneath, TARGET_OBJECT_STACK_MEMORY, NULL,
1475 myaddr, memaddr, len) == len)
1476 return 0;
1477 else
1478 return EIO;
1479}
1480
7f79c47e
DE
1481/* Write LEN bytes from MYADDR to target memory at address MEMADDR.
1482 Returns either 0 for success or an errno value if any error occurs.
1483 If an error occurs, no guarantee is made about how much data got written.
1484 Callers that can deal with partial writes should call target_write. */
1485
c906108c 1486int
fc1a4b47 1487target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
c906108c 1488{
c35b1492
PA
1489 /* Dispatch to the topmost target, not the flattened current_target.
1490 Memory accesses check target->to_has_(all_)memory, and the
1491 flattened target doesn't inherit those. */
1492 if (target_write (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
cf7a04e8
DJ
1493 myaddr, memaddr, len) == len)
1494 return 0;
0779438d 1495 else
cf7a04e8 1496 return EIO;
c906108c 1497}
c5aa993b 1498
fd79ecee
DJ
1499/* Fetch the target's memory map. */
1500
1501VEC(mem_region_s) *
1502target_memory_map (void)
1503{
1504 VEC(mem_region_s) *result;
1505 struct mem_region *last_one, *this_one;
1506 int ix;
1507 struct target_ops *t;
1508
1509 if (targetdebug)
1510 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1511
1512 for (t = current_target.beneath; t != NULL; t = t->beneath)
1513 if (t->to_memory_map != NULL)
1514 break;
1515
1516 if (t == NULL)
1517 return NULL;
1518
1519 result = t->to_memory_map (t);
1520 if (result == NULL)
1521 return NULL;
1522
1523 qsort (VEC_address (mem_region_s, result),
1524 VEC_length (mem_region_s, result),
1525 sizeof (struct mem_region), mem_region_cmp);
1526
1527 /* Check that regions do not overlap. Simultaneously assign
1528 a numbering for the "mem" commands to use to refer to
1529 each region. */
1530 last_one = NULL;
1531 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1532 {
1533 this_one->number = ix;
1534
1535 if (last_one && last_one->hi > this_one->lo)
1536 {
1537 warning (_("Overlapping regions in memory map: ignoring"));
1538 VEC_free (mem_region_s, result);
1539 return NULL;
1540 }
1541 last_one = this_one;
1542 }
1543
1544 return result;
1545}
1546
a76d924d
DJ
1547void
1548target_flash_erase (ULONGEST address, LONGEST length)
1549{
1550 struct target_ops *t;
1551
1552 for (t = current_target.beneath; t != NULL; t = t->beneath)
1553 if (t->to_flash_erase != NULL)
1554 {
1555 if (targetdebug)
1556 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
5af949e3 1557 hex_string (address), phex (length, 0));
8944021f
DJ
1558 t->to_flash_erase (t, address, length);
1559 return;
a76d924d
DJ
1560 }
1561
1562 tcomplain ();
1563}
1564
1565void
1566target_flash_done (void)
1567{
1568 struct target_ops *t;
1569
1570 for (t = current_target.beneath; t != NULL; t = t->beneath)
1571 if (t->to_flash_done != NULL)
1572 {
1573 if (targetdebug)
1574 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
8944021f
DJ
1575 t->to_flash_done (t);
1576 return;
a76d924d
DJ
1577 }
1578
1579 tcomplain ();
1580}
1581
920d2a44
AC
1582static void
1583show_trust_readonly (struct ui_file *file, int from_tty,
1584 struct cmd_list_element *c, const char *value)
1585{
1586 fprintf_filtered (file, _("\
1587Mode for reading from readonly sections is %s.\n"),
1588 value);
1589}
3a11626d 1590
1e3ff5ad
AC
1591/* More generic transfers. */
1592
0088c768 1593static LONGEST
8aa91c1e 1594default_xfer_partial (struct target_ops *ops, enum target_object object,
2bc416ba 1595 const char *annex, gdb_byte *readbuf,
1b0ba102 1596 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
0088c768
AC
1597{
1598 if (object == TARGET_OBJECT_MEMORY
c8e73a31
AC
1599 && ops->deprecated_xfer_memory != NULL)
1600 /* If available, fall back to the target's
1601 "deprecated_xfer_memory" method. */
0088c768 1602 {
4b8a223f 1603 int xfered = -1;
0088c768 1604 errno = 0;
4b8a223f
AC
1605 if (writebuf != NULL)
1606 {
1607 void *buffer = xmalloc (len);
1608 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1609 memcpy (buffer, writebuf, len);
c8e73a31
AC
1610 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1611 1/*write*/, NULL, ops);
4b8a223f
AC
1612 do_cleanups (cleanup);
1613 }
1614 if (readbuf != NULL)
244e85c8
MS
1615 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1616 0/*read*/, NULL, ops);
0088c768
AC
1617 if (xfered > 0)
1618 return xfered;
1619 else if (xfered == 0 && errno == 0)
c8e73a31
AC
1620 /* "deprecated_xfer_memory" uses 0, cross checked against
1621 ERRNO as one indication of an error. */
0088c768
AC
1622 return 0;
1623 else
1624 return -1;
1625 }
1626 else if (ops->beneath != NULL)
cf7a04e8
DJ
1627 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1628 readbuf, writebuf, offset, len);
1629 else
1630 return -1;
1631}
1632
1633/* The xfer_partial handler for the topmost target. Unlike the default,
1634 it does not need to handle memory specially; it just passes all
1635 requests down the stack. */
1636
1637static LONGEST
1638current_xfer_partial (struct target_ops *ops, enum target_object object,
1639 const char *annex, gdb_byte *readbuf,
1640 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1641{
1642 if (ops->beneath != NULL)
1643 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1644 readbuf, writebuf, offset, len);
0088c768
AC
1645 else
1646 return -1;
1647}
1648
7f79c47e 1649/* Target vector read/write partial wrapper functions. */
0088c768 1650
13547ab6 1651static LONGEST
1e3ff5ad
AC
1652target_read_partial (struct target_ops *ops,
1653 enum target_object object,
1b0ba102 1654 const char *annex, gdb_byte *buf,
1e3ff5ad
AC
1655 ULONGEST offset, LONGEST len)
1656{
27394598 1657 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len);
1e3ff5ad
AC
1658}
1659
13547ab6 1660static LONGEST
1e3ff5ad
AC
1661target_write_partial (struct target_ops *ops,
1662 enum target_object object,
1b0ba102 1663 const char *annex, const gdb_byte *buf,
1e3ff5ad
AC
1664 ULONGEST offset, LONGEST len)
1665{
27394598 1666 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len);
1e3ff5ad
AC
1667}
1668
1669/* Wrappers to perform the full transfer. */
7f79c47e
DE
1670
1671/* For docs on target_read see target.h. */
1672
1e3ff5ad
AC
1673LONGEST
1674target_read (struct target_ops *ops,
1675 enum target_object object,
1b0ba102 1676 const char *annex, gdb_byte *buf,
1e3ff5ad
AC
1677 ULONGEST offset, LONGEST len)
1678{
1679 LONGEST xfered = 0;
1680 while (xfered < len)
1681 {
0088c768 1682 LONGEST xfer = target_read_partial (ops, object, annex,
fc1a4b47 1683 (gdb_byte *) buf + xfered,
0088c768 1684 offset + xfered, len - xfered);
1e3ff5ad 1685 /* Call an observer, notifying them of the xfer progress? */
13547ab6
DJ
1686 if (xfer == 0)
1687 return xfered;
1688 if (xfer < 0)
0088c768 1689 return -1;
1e3ff5ad
AC
1690 xfered += xfer;
1691 QUIT;
1692 }
1693 return len;
1694}
1695
d5086790
VP
1696LONGEST
1697target_read_until_error (struct target_ops *ops,
1698 enum target_object object,
1699 const char *annex, gdb_byte *buf,
1700 ULONGEST offset, LONGEST len)
1701{
1702 LONGEST xfered = 0;
1703 while (xfered < len)
1704 {
1705 LONGEST xfer = target_read_partial (ops, object, annex,
1706 (gdb_byte *) buf + xfered,
1707 offset + xfered, len - xfered);
1708 /* Call an observer, notifying them of the xfer progress? */
1709 if (xfer == 0)
1710 return xfered;
1711 if (xfer < 0)
1712 {
1713 /* We've got an error. Try to read in smaller blocks. */
1714 ULONGEST start = offset + xfered;
1715 ULONGEST remaining = len - xfered;
1716 ULONGEST half;
1717
1718 /* If an attempt was made to read a random memory address,
1719 it's likely that the very first byte is not accessible.
1720 Try reading the first byte, to avoid doing log N tries
1721 below. */
1722 xfer = target_read_partial (ops, object, annex,
1723 (gdb_byte *) buf + xfered, start, 1);
1724 if (xfer <= 0)
1725 return xfered;
1726 start += 1;
1727 remaining -= 1;
1728 half = remaining/2;
1729
1730 while (half > 0)
1731 {
1732 xfer = target_read_partial (ops, object, annex,
1733 (gdb_byte *) buf + xfered,
1734 start, half);
1735 if (xfer == 0)
1736 return xfered;
1737 if (xfer < 0)
1738 {
1739 remaining = half;
1740 }
1741 else
1742 {
1743 /* We have successfully read the first half. So, the
1744 error must be in the second half. Adjust start and
1745 remaining to point at the second half. */
1746 xfered += xfer;
1747 start += xfer;
1748 remaining -= xfer;
1749 }
1750 half = remaining/2;
1751 }
1752
1753 return xfered;
1754 }
1755 xfered += xfer;
1756 QUIT;
1757 }
1758 return len;
1759}
1760
cf7a04e8
DJ
1761/* An alternative to target_write with progress callbacks. */
1762
1e3ff5ad 1763LONGEST
cf7a04e8
DJ
1764target_write_with_progress (struct target_ops *ops,
1765 enum target_object object,
1766 const char *annex, const gdb_byte *buf,
1767 ULONGEST offset, LONGEST len,
1768 void (*progress) (ULONGEST, void *), void *baton)
1e3ff5ad
AC
1769{
1770 LONGEST xfered = 0;
a76d924d
DJ
1771
1772 /* Give the progress callback a chance to set up. */
1773 if (progress)
1774 (*progress) (0, baton);
1775
1e3ff5ad
AC
1776 while (xfered < len)
1777 {
1778 LONGEST xfer = target_write_partial (ops, object, annex,
fc1a4b47 1779 (gdb_byte *) buf + xfered,
1e3ff5ad 1780 offset + xfered, len - xfered);
cf7a04e8 1781
13547ab6
DJ
1782 if (xfer == 0)
1783 return xfered;
1784 if (xfer < 0)
0088c768 1785 return -1;
cf7a04e8
DJ
1786
1787 if (progress)
1788 (*progress) (xfer, baton);
1789
1e3ff5ad
AC
1790 xfered += xfer;
1791 QUIT;
1792 }
1793 return len;
1794}
1795
7f79c47e
DE
1796/* For docs on target_write see target.h. */
1797
cf7a04e8
DJ
1798LONGEST
1799target_write (struct target_ops *ops,
1800 enum target_object object,
1801 const char *annex, const gdb_byte *buf,
1802 ULONGEST offset, LONGEST len)
1803{
1804 return target_write_with_progress (ops, object, annex, buf, offset, len,
1805 NULL, NULL);
1806}
1807
159f81f3
DJ
1808/* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1809 the size of the transferred data. PADDING additional bytes are
1810 available in *BUF_P. This is a helper function for
1811 target_read_alloc; see the declaration of that function for more
1812 information. */
13547ab6 1813
159f81f3
DJ
1814static LONGEST
1815target_read_alloc_1 (struct target_ops *ops, enum target_object object,
1816 const char *annex, gdb_byte **buf_p, int padding)
13547ab6
DJ
1817{
1818 size_t buf_alloc, buf_pos;
1819 gdb_byte *buf;
1820 LONGEST n;
1821
1822 /* This function does not have a length parameter; it reads the
1823 entire OBJECT). Also, it doesn't support objects fetched partly
1824 from one target and partly from another (in a different stratum,
1825 e.g. a core file and an executable). Both reasons make it
1826 unsuitable for reading memory. */
1827 gdb_assert (object != TARGET_OBJECT_MEMORY);
1828
1829 /* Start by reading up to 4K at a time. The target will throttle
1830 this number down if necessary. */
1831 buf_alloc = 4096;
1832 buf = xmalloc (buf_alloc);
1833 buf_pos = 0;
1834 while (1)
1835 {
1836 n = target_read_partial (ops, object, annex, &buf[buf_pos],
159f81f3 1837 buf_pos, buf_alloc - buf_pos - padding);
13547ab6
DJ
1838 if (n < 0)
1839 {
1840 /* An error occurred. */
1841 xfree (buf);
1842 return -1;
1843 }
1844 else if (n == 0)
1845 {
1846 /* Read all there was. */
1847 if (buf_pos == 0)
1848 xfree (buf);
1849 else
1850 *buf_p = buf;
1851 return buf_pos;
1852 }
1853
1854 buf_pos += n;
1855
1856 /* If the buffer is filling up, expand it. */
1857 if (buf_alloc < buf_pos * 2)
1858 {
1859 buf_alloc *= 2;
1860 buf = xrealloc (buf, buf_alloc);
1861 }
1862
1863 QUIT;
1864 }
1865}
1866
159f81f3
DJ
1867/* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1868 the size of the transferred data. See the declaration in "target.h"
1869 function for more information about the return value. */
1870
1871LONGEST
1872target_read_alloc (struct target_ops *ops, enum target_object object,
1873 const char *annex, gdb_byte **buf_p)
1874{
1875 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
1876}
1877
1878/* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
1879 returned as a string, allocated using xmalloc. If an error occurs
1880 or the transfer is unsupported, NULL is returned. Empty objects
1881 are returned as allocated but empty strings. A warning is issued
1882 if the result contains any embedded NUL bytes. */
1883
1884char *
1885target_read_stralloc (struct target_ops *ops, enum target_object object,
1886 const char *annex)
1887{
1888 gdb_byte *buffer;
1889 LONGEST transferred;
1890
1891 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
1892
1893 if (transferred < 0)
1894 return NULL;
1895
1896 if (transferred == 0)
1897 return xstrdup ("");
1898
1899 buffer[transferred] = 0;
1900 if (strlen (buffer) < transferred)
1901 warning (_("target object %d, annex %s, "
1902 "contained unexpected null characters"),
1903 (int) object, annex ? annex : "(none)");
1904
1905 return (char *) buffer;
1906}
1907
b6591e8b
AC
1908/* Memory transfer methods. */
1909
1910void
1b0ba102 1911get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
b6591e8b
AC
1912 LONGEST len)
1913{
07b82ea5
PA
1914 /* This method is used to read from an alternate, non-current
1915 target. This read must bypass the overlay support (as symbols
1916 don't match this target), and GDB's internal cache (wrong cache
1917 for this target). */
1918 if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
b6591e8b
AC
1919 != len)
1920 memory_error (EIO, addr);
1921}
1922
1923ULONGEST
1924get_target_memory_unsigned (struct target_ops *ops,
e17a4113 1925 CORE_ADDR addr, int len, enum bfd_endian byte_order)
b6591e8b 1926{
f6519ebc 1927 gdb_byte buf[sizeof (ULONGEST)];
b6591e8b
AC
1928
1929 gdb_assert (len <= sizeof (buf));
1930 get_target_memory (ops, addr, buf, len);
e17a4113 1931 return extract_unsigned_integer (buf, len, byte_order);
b6591e8b
AC
1932}
1933
c906108c 1934static void
fba45db2 1935target_info (char *args, int from_tty)
c906108c
SS
1936{
1937 struct target_ops *t;
c906108c 1938 int has_all_mem = 0;
c5aa993b 1939
c906108c 1940 if (symfile_objfile != NULL)
a3f17187 1941 printf_unfiltered (_("Symbols from \"%s\".\n"), symfile_objfile->name);
c906108c 1942
258b763a 1943 for (t = target_stack; t != NULL; t = t->beneath)
c906108c 1944 {
c35b1492 1945 if (!(*t->to_has_memory) (t))
c906108c
SS
1946 continue;
1947
c5aa993b 1948 if ((int) (t->to_stratum) <= (int) dummy_stratum)
c906108c
SS
1949 continue;
1950 if (has_all_mem)
a3f17187 1951 printf_unfiltered (_("\tWhile running this, GDB does not access memory from...\n"));
c5aa993b
JM
1952 printf_unfiltered ("%s:\n", t->to_longname);
1953 (t->to_files_info) (t);
c35b1492 1954 has_all_mem = (*t->to_has_all_memory) (t);
c906108c
SS
1955 }
1956}
1957
fd79ecee
DJ
1958/* This function is called before any new inferior is created, e.g.
1959 by running a program, attaching, or connecting to a target.
1960 It cleans up any state from previous invocations which might
1961 change between runs. This is a subset of what target_preopen
1962 resets (things which might change between targets). */
1963
1964void
1965target_pre_inferior (int from_tty)
1966{
b9db4ced
UW
1967 /* Clear out solib state. Otherwise the solib state of the previous
1968 inferior might have survived and is entirely wrong for the new
1969 target. This has been observed on GNU/Linux using glibc 2.3. How
1970 to reproduce:
1971
1972 bash$ ./foo&
1973 [1] 4711
1974 bash$ ./foo&
1975 [1] 4712
1976 bash$ gdb ./foo
1977 [...]
1978 (gdb) attach 4711
1979 (gdb) detach
1980 (gdb) attach 4712
1981 Cannot access memory at address 0xdeadbeef
1982 */
b9db4ced 1983
50c71eaf
PA
1984 /* In some OSs, the shared library list is the same/global/shared
1985 across inferiors. If code is shared between processes, so are
1986 memory regions and features. */
1987 if (!gdbarch_has_global_solist (target_gdbarch))
1988 {
1989 no_shared_libraries (NULL, from_tty);
1990
1991 invalidate_target_mem_regions ();
424163ea 1992
50c71eaf
PA
1993 target_clear_description ();
1994 }
fd79ecee
DJ
1995}
1996
b8fa0bfa
PA
1997/* Callback for iterate_over_inferiors. Gets rid of the given
1998 inferior. */
1999
2000static int
2001dispose_inferior (struct inferior *inf, void *args)
2002{
2003 struct thread_info *thread;
2004
2005 thread = any_thread_of_process (inf->pid);
2006 if (thread)
2007 {
2008 switch_to_thread (thread->ptid);
2009
2010 /* Core inferiors actually should be detached, not killed. */
2011 if (target_has_execution)
2012 target_kill ();
2013 else
2014 target_detach (NULL, 0);
2015 }
2016
2017 return 0;
2018}
2019
c906108c
SS
2020/* This is to be called by the open routine before it does
2021 anything. */
2022
2023void
fba45db2 2024target_preopen (int from_tty)
c906108c 2025{
c5aa993b 2026 dont_repeat ();
c906108c 2027
b8fa0bfa 2028 if (have_inferiors ())
c5aa993b 2029 {
adf40b2e 2030 if (!from_tty
b8fa0bfa
PA
2031 || !have_live_inferiors ()
2032 || query (_("A program is being debugged already. Kill it? ")))
2033 iterate_over_inferiors (dispose_inferior, NULL);
c906108c 2034 else
8a3fe4f8 2035 error (_("Program not killed."));
c906108c
SS
2036 }
2037
2038 /* Calling target_kill may remove the target from the stack. But if
2039 it doesn't (which seems like a win for UDI), remove it now. */
87ab71f0
PA
2040 /* Leave the exec target, though. The user may be switching from a
2041 live process to a core of the same program. */
2042 pop_all_targets_above (file_stratum, 0);
fd79ecee
DJ
2043
2044 target_pre_inferior (from_tty);
c906108c
SS
2045}
2046
2047/* Detach a target after doing deferred register stores. */
2048
2049void
fba45db2 2050target_detach (char *args, int from_tty)
c906108c 2051{
136d6dae
VP
2052 struct target_ops* t;
2053
2567c7d9 2054 if (gdbarch_has_global_breakpoints (target_gdbarch))
50c71eaf
PA
2055 /* Don't remove global breakpoints here. They're removed on
2056 disconnection from the target. */
2057 ;
2058 else
2059 /* If we're in breakpoints-always-inserted mode, have to remove
2060 them before detaching. */
6c95b8df 2061 remove_breakpoints_pid (PIDGET (inferior_ptid));
74960c60 2062
136d6dae
VP
2063 for (t = current_target.beneath; t != NULL; t = t->beneath)
2064 {
2065 if (t->to_detach != NULL)
2066 {
2067 t->to_detach (t, args, from_tty);
947b8855
PA
2068 if (targetdebug)
2069 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n",
2070 args, from_tty);
136d6dae
VP
2071 return;
2072 }
2073 }
2074
2075 internal_error (__FILE__, __LINE__, "could not find a target to detach");
c906108c
SS
2076}
2077
6ad8ae5c
DJ
2078void
2079target_disconnect (char *args, int from_tty)
2080{
597320e7
DJ
2081 struct target_ops *t;
2082
50c71eaf
PA
2083 /* If we're in breakpoints-always-inserted mode or if breakpoints
2084 are global across processes, we have to remove them before
2085 disconnecting. */
74960c60
VP
2086 remove_breakpoints ();
2087
597320e7
DJ
2088 for (t = current_target.beneath; t != NULL; t = t->beneath)
2089 if (t->to_disconnect != NULL)
2090 {
2091 if (targetdebug)
2092 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
2093 args, from_tty);
2094 t->to_disconnect (t, args, from_tty);
2095 return;
2096 }
2097
2098 tcomplain ();
6ad8ae5c
DJ
2099}
2100
117de6a9 2101ptid_t
47608cb1 2102target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
117de6a9
PA
2103{
2104 struct target_ops *t;
2105
2106 for (t = current_target.beneath; t != NULL; t = t->beneath)
2107 {
2108 if (t->to_wait != NULL)
2109 {
47608cb1 2110 ptid_t retval = (*t->to_wait) (t, ptid, status, options);
117de6a9
PA
2111
2112 if (targetdebug)
2113 {
2114 char *status_string;
2115
2116 status_string = target_waitstatus_to_string (status);
2117 fprintf_unfiltered (gdb_stdlog,
2118 "target_wait (%d, status) = %d, %s\n",
2119 PIDGET (ptid), PIDGET (retval),
2120 status_string);
2121 xfree (status_string);
2122 }
2123
2124 return retval;
2125 }
2126 }
2127
2128 noprocess ();
2129}
2130
2131char *
2132target_pid_to_str (ptid_t ptid)
2133{
2134 struct target_ops *t;
2135
2136 for (t = current_target.beneath; t != NULL; t = t->beneath)
2137 {
2138 if (t->to_pid_to_str != NULL)
2139 return (*t->to_pid_to_str) (t, ptid);
2140 }
2141
2142 return normal_pid_to_str (ptid);
2143}
2144
e1ac3328
VP
2145void
2146target_resume (ptid_t ptid, int step, enum target_signal signal)
2147{
28439f5e
PA
2148 struct target_ops *t;
2149
4e5d721f 2150 target_dcache_invalidate ();
28439f5e
PA
2151
2152 for (t = current_target.beneath; t != NULL; t = t->beneath)
2153 {
2154 if (t->to_resume != NULL)
2155 {
2156 t->to_resume (t, ptid, step, signal);
2157 if (targetdebug)
2158 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n",
2159 PIDGET (ptid),
2160 step ? "step" : "continue",
2161 target_signal_to_name (signal));
2162
2163 set_executing (ptid, 1);
2164 set_running (ptid, 1);
edb3359d 2165 clear_inline_frame_state (ptid);
28439f5e
PA
2166 return;
2167 }
2168 }
2169
2170 noprocess ();
e1ac3328 2171}
ee057212
DJ
2172/* Look through the list of possible targets for a target that can
2173 follow forks. */
2174
2175int
2176target_follow_fork (int follow_child)
2177{
2178 struct target_ops *t;
2179
2180 for (t = current_target.beneath; t != NULL; t = t->beneath)
2181 {
2182 if (t->to_follow_fork != NULL)
2183 {
2184 int retval = t->to_follow_fork (t, follow_child);
2185 if (targetdebug)
2186 fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n",
2187 follow_child, retval);
2188 return retval;
2189 }
2190 }
2191
2192 /* Some target returned a fork event, but did not know how to follow it. */
2193 internal_error (__FILE__, __LINE__,
2194 "could not find a target to follow fork");
2195}
2196
136d6dae
VP
2197void
2198target_mourn_inferior (void)
2199{
2200 struct target_ops *t;
2201 for (t = current_target.beneath; t != NULL; t = t->beneath)
2202 {
2203 if (t->to_mourn_inferior != NULL)
2204 {
2205 t->to_mourn_inferior (t);
947b8855
PA
2206 if (targetdebug)
2207 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
efbd6e75
JB
2208
2209 /* We no longer need to keep handles on any of the object files.
2210 Make sure to release them to avoid unnecessarily locking any
2211 of them while we're not actually debugging. */
2212 bfd_cache_close_all ();
2213
136d6dae
VP
2214 return;
2215 }
2216 }
2217
2218 internal_error (__FILE__, __LINE__,
2219 "could not find a target to follow mourn inferiour");
2220}
2221
424163ea
DJ
2222/* Look for a target which can describe architectural features, starting
2223 from TARGET. If we find one, return its description. */
2224
2225const struct target_desc *
2226target_read_description (struct target_ops *target)
2227{
2228 struct target_ops *t;
2229
2230 for (t = target; t != NULL; t = t->beneath)
2231 if (t->to_read_description != NULL)
2232 {
2233 const struct target_desc *tdesc;
2234
2235 tdesc = t->to_read_description (t);
2236 if (tdesc)
2237 return tdesc;
2238 }
2239
2240 return NULL;
2241}
2242
08388c79
DE
2243/* The default implementation of to_search_memory.
2244 This implements a basic search of memory, reading target memory and
2245 performing the search here (as opposed to performing the search in on the
2246 target side with, for example, gdbserver). */
2247
2248int
2249simple_search_memory (struct target_ops *ops,
2250 CORE_ADDR start_addr, ULONGEST search_space_len,
2251 const gdb_byte *pattern, ULONGEST pattern_len,
2252 CORE_ADDR *found_addrp)
2253{
2254 /* NOTE: also defined in find.c testcase. */
2255#define SEARCH_CHUNK_SIZE 16000
2256 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
2257 /* Buffer to hold memory contents for searching. */
2258 gdb_byte *search_buf;
2259 unsigned search_buf_size;
2260 struct cleanup *old_cleanups;
2261
2262 search_buf_size = chunk_size + pattern_len - 1;
2263
2264 /* No point in trying to allocate a buffer larger than the search space. */
2265 if (search_space_len < search_buf_size)
2266 search_buf_size = search_space_len;
2267
2268 search_buf = malloc (search_buf_size);
2269 if (search_buf == NULL)
5e1471f5 2270 error (_("Unable to allocate memory to perform the search."));
08388c79
DE
2271 old_cleanups = make_cleanup (free_current_contents, &search_buf);
2272
2273 /* Prime the search buffer. */
2274
2275 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2276 search_buf, start_addr, search_buf_size) != search_buf_size)
2277 {
5e1471f5 2278 warning (_("Unable to access target memory at %s, halting search."),
08388c79
DE
2279 hex_string (start_addr));
2280 do_cleanups (old_cleanups);
2281 return -1;
2282 }
2283
2284 /* Perform the search.
2285
2286 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
2287 When we've scanned N bytes we copy the trailing bytes to the start and
2288 read in another N bytes. */
2289
2290 while (search_space_len >= pattern_len)
2291 {
2292 gdb_byte *found_ptr;
2293 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
2294
2295 found_ptr = memmem (search_buf, nr_search_bytes,
2296 pattern, pattern_len);
2297
2298 if (found_ptr != NULL)
2299 {
2300 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
2301 *found_addrp = found_addr;
2302 do_cleanups (old_cleanups);
2303 return 1;
2304 }
2305
2306 /* Not found in this chunk, skip to next chunk. */
2307
2308 /* Don't let search_space_len wrap here, it's unsigned. */
2309 if (search_space_len >= chunk_size)
2310 search_space_len -= chunk_size;
2311 else
2312 search_space_len = 0;
2313
2314 if (search_space_len >= pattern_len)
2315 {
2316 unsigned keep_len = search_buf_size - chunk_size;
8a35fb51 2317 CORE_ADDR read_addr = start_addr + chunk_size + keep_len;
08388c79
DE
2318 int nr_to_read;
2319
2320 /* Copy the trailing part of the previous iteration to the front
2321 of the buffer for the next iteration. */
2322 gdb_assert (keep_len == pattern_len - 1);
2323 memcpy (search_buf, search_buf + chunk_size, keep_len);
2324
2325 nr_to_read = min (search_space_len - keep_len, chunk_size);
2326
2327 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2328 search_buf + keep_len, read_addr,
2329 nr_to_read) != nr_to_read)
2330 {
5e1471f5 2331 warning (_("Unable to access target memory at %s, halting search."),
08388c79
DE
2332 hex_string (read_addr));
2333 do_cleanups (old_cleanups);
2334 return -1;
2335 }
2336
2337 start_addr += chunk_size;
2338 }
2339 }
2340
2341 /* Not found. */
2342
2343 do_cleanups (old_cleanups);
2344 return 0;
2345}
2346
2347/* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2348 sequence of bytes in PATTERN with length PATTERN_LEN.
2349
2350 The result is 1 if found, 0 if not found, and -1 if there was an error
2351 requiring halting of the search (e.g. memory read error).
2352 If the pattern is found the address is recorded in FOUND_ADDRP. */
2353
2354int
2355target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2356 const gdb_byte *pattern, ULONGEST pattern_len,
2357 CORE_ADDR *found_addrp)
2358{
2359 struct target_ops *t;
2360 int found;
2361
2362 /* We don't use INHERIT to set current_target.to_search_memory,
2363 so we have to scan the target stack and handle targetdebug
2364 ourselves. */
2365
2366 if (targetdebug)
2367 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
2368 hex_string (start_addr));
2369
2370 for (t = current_target.beneath; t != NULL; t = t->beneath)
2371 if (t->to_search_memory != NULL)
2372 break;
2373
2374 if (t != NULL)
2375 {
2376 found = t->to_search_memory (t, start_addr, search_space_len,
2377 pattern, pattern_len, found_addrp);
2378 }
2379 else
2380 {
2381 /* If a special version of to_search_memory isn't available, use the
2382 simple version. */
c35b1492 2383 found = simple_search_memory (current_target.beneath,
08388c79
DE
2384 start_addr, search_space_len,
2385 pattern, pattern_len, found_addrp);
2386 }
2387
2388 if (targetdebug)
2389 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
2390
2391 return found;
2392}
2393
8edfe269
DJ
2394/* Look through the currently pushed targets. If none of them will
2395 be able to restart the currently running process, issue an error
2396 message. */
2397
2398void
2399target_require_runnable (void)
2400{
2401 struct target_ops *t;
2402
2403 for (t = target_stack; t != NULL; t = t->beneath)
2404 {
2405 /* If this target knows how to create a new program, then
2406 assume we will still be able to after killing the current
2407 one. Either killing and mourning will not pop T, or else
2408 find_default_run_target will find it again. */
2409 if (t->to_create_inferior != NULL)
2410 return;
2411
2412 /* Do not worry about thread_stratum targets that can not
2413 create inferiors. Assume they will be pushed again if
2414 necessary, and continue to the process_stratum. */
85e747d2
UW
2415 if (t->to_stratum == thread_stratum
2416 || t->to_stratum == arch_stratum)
8edfe269
DJ
2417 continue;
2418
2419 error (_("\
2420The \"%s\" target does not support \"run\". Try \"help target\" or \"continue\"."),
2421 t->to_shortname);
2422 }
2423
2424 /* This function is only called if the target is running. In that
2425 case there should have been a process_stratum target and it
2426 should either know how to create inferiors, or not... */
2427 internal_error (__FILE__, __LINE__, "No targets found");
2428}
2429
c906108c
SS
2430/* Look through the list of possible targets for a target that can
2431 execute a run or attach command without any other data. This is
2432 used to locate the default process stratum.
2433
5f667f2d
PA
2434 If DO_MESG is not NULL, the result is always valid (error() is
2435 called for errors); else, return NULL on error. */
c906108c
SS
2436
2437static struct target_ops *
fba45db2 2438find_default_run_target (char *do_mesg)
c906108c
SS
2439{
2440 struct target_ops **t;
2441 struct target_ops *runable = NULL;
2442 int count;
2443
2444 count = 0;
2445
2446 for (t = target_structs; t < target_structs + target_struct_size;
2447 ++t)
2448 {
c5aa993b 2449 if ((*t)->to_can_run && target_can_run (*t))
c906108c
SS
2450 {
2451 runable = *t;
2452 ++count;
2453 }
2454 }
2455
2456 if (count != 1)
5f667f2d
PA
2457 {
2458 if (do_mesg)
2459 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
2460 else
2461 return NULL;
2462 }
c906108c
SS
2463
2464 return runable;
2465}
2466
2467void
136d6dae 2468find_default_attach (struct target_ops *ops, char *args, int from_tty)
c906108c
SS
2469{
2470 struct target_ops *t;
2471
c5aa993b 2472 t = find_default_run_target ("attach");
136d6dae 2473 (t->to_attach) (t, args, from_tty);
c906108c
SS
2474 return;
2475}
2476
c906108c 2477void
136d6dae
VP
2478find_default_create_inferior (struct target_ops *ops,
2479 char *exec_file, char *allargs, char **env,
c27cda74 2480 int from_tty)
c906108c
SS
2481{
2482 struct target_ops *t;
2483
c5aa993b 2484 t = find_default_run_target ("run");
136d6dae 2485 (t->to_create_inferior) (t, exec_file, allargs, env, from_tty);
c906108c
SS
2486 return;
2487}
2488
2c0b251b 2489static int
b84876c2
PA
2490find_default_can_async_p (void)
2491{
2492 struct target_ops *t;
2493
5f667f2d
PA
2494 /* This may be called before the target is pushed on the stack;
2495 look for the default process stratum. If there's none, gdb isn't
2496 configured with a native debugger, and target remote isn't
2497 connected yet. */
2498 t = find_default_run_target (NULL);
2499 if (t && t->to_can_async_p)
b84876c2
PA
2500 return (t->to_can_async_p) ();
2501 return 0;
2502}
2503
2c0b251b 2504static int
b84876c2
PA
2505find_default_is_async_p (void)
2506{
2507 struct target_ops *t;
2508
5f667f2d
PA
2509 /* This may be called before the target is pushed on the stack;
2510 look for the default process stratum. If there's none, gdb isn't
2511 configured with a native debugger, and target remote isn't
2512 connected yet. */
2513 t = find_default_run_target (NULL);
2514 if (t && t->to_is_async_p)
b84876c2
PA
2515 return (t->to_is_async_p) ();
2516 return 0;
2517}
2518
2c0b251b 2519static int
9908b566
VP
2520find_default_supports_non_stop (void)
2521{
2522 struct target_ops *t;
2523
2524 t = find_default_run_target (NULL);
2525 if (t && t->to_supports_non_stop)
2526 return (t->to_supports_non_stop) ();
2527 return 0;
2528}
2529
2530int
2c0b251b 2531target_supports_non_stop (void)
9908b566
VP
2532{
2533 struct target_ops *t;
2534 for (t = &current_target; t != NULL; t = t->beneath)
2535 if (t->to_supports_non_stop)
2536 return t->to_supports_non_stop ();
2537
2538 return 0;
2539}
2540
2541
07e059b5
VP
2542char *
2543target_get_osdata (const char *type)
2544{
2545 char *document;
2546 struct target_ops *t;
2547
739ef7fb
PA
2548 /* If we're already connected to something that can get us OS
2549 related data, use it. Otherwise, try using the native
2550 target. */
2551 if (current_target.to_stratum >= process_stratum)
6d097e65 2552 t = current_target.beneath;
739ef7fb
PA
2553 else
2554 t = find_default_run_target ("get OS data");
07e059b5
VP
2555
2556 if (!t)
2557 return NULL;
2558
6d097e65 2559 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
07e059b5
VP
2560}
2561
6c95b8df
PA
2562/* Determine the current address space of thread PTID. */
2563
2564struct address_space *
2565target_thread_address_space (ptid_t ptid)
2566{
c0694254 2567 struct address_space *aspace;
6c95b8df 2568 struct inferior *inf;
c0694254
PA
2569 struct target_ops *t;
2570
2571 for (t = current_target.beneath; t != NULL; t = t->beneath)
2572 {
2573 if (t->to_thread_address_space != NULL)
2574 {
2575 aspace = t->to_thread_address_space (t, ptid);
2576 gdb_assert (aspace);
6c95b8df 2577
c0694254
PA
2578 if (targetdebug)
2579 fprintf_unfiltered (gdb_stdlog,
2580 "target_thread_address_space (%s) = %d\n",
2581 target_pid_to_str (ptid),
2582 address_space_num (aspace));
2583 return aspace;
2584 }
2585 }
6c95b8df
PA
2586
2587 /* Fall-back to the "main" address space of the inferior. */
2588 inf = find_inferior_pid (ptid_get_pid (ptid));
2589
2590 if (inf == NULL || inf->aspace == NULL)
2591 internal_error (__FILE__, __LINE__, "\
2592Can't determine the current address space of thread %s\n",
2593 target_pid_to_str (ptid));
2594
2595 return inf->aspace;
2596}
2597
e0d24f8d
WZ
2598static int
2599default_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
2600{
ffe5a37e 2601 return (len <= gdbarch_ptr_bit (target_gdbarch) / TARGET_CHAR_BIT);
ccaa32c7
GS
2602}
2603
5009afc5
AS
2604static int
2605default_watchpoint_addr_within_range (struct target_ops *target,
2606 CORE_ADDR addr,
2607 CORE_ADDR start, int length)
2608{
2609 return addr >= start && addr < start + length;
2610}
2611
c2250ad1
UW
2612static struct gdbarch *
2613default_thread_architecture (struct target_ops *ops, ptid_t ptid)
2614{
2615 return target_gdbarch;
2616}
2617
c906108c 2618static int
fba45db2 2619return_zero (void)
c906108c
SS
2620{
2621 return 0;
2622}
2623
2624static int
fba45db2 2625return_one (void)
c906108c
SS
2626{
2627 return 1;
2628}
2629
ccaa32c7
GS
2630static int
2631return_minus_one (void)
2632{
2633 return -1;
2634}
2635
7a292a7a
SS
2636/* Find a single runnable target in the stack and return it. If for
2637 some reason there is more than one, return NULL. */
2638
2639struct target_ops *
fba45db2 2640find_run_target (void)
7a292a7a
SS
2641{
2642 struct target_ops **t;
2643 struct target_ops *runable = NULL;
2644 int count;
c5aa993b 2645
7a292a7a 2646 count = 0;
c5aa993b 2647
7a292a7a
SS
2648 for (t = target_structs; t < target_structs + target_struct_size; ++t)
2649 {
c5aa993b 2650 if ((*t)->to_can_run && target_can_run (*t))
7a292a7a
SS
2651 {
2652 runable = *t;
2653 ++count;
2654 }
2655 }
c5aa993b 2656
7a292a7a
SS
2657 return (count == 1 ? runable : NULL);
2658}
2659
ed9a39eb
JM
2660/* Find a single core_stratum target in the list of targets and return it.
2661 If for some reason there is more than one, return NULL. */
2662
c906108c 2663struct target_ops *
fba45db2 2664find_core_target (void)
c906108c
SS
2665{
2666 struct target_ops **t;
2667 struct target_ops *runable = NULL;
2668 int count;
c5aa993b 2669
c906108c 2670 count = 0;
c5aa993b 2671
c906108c
SS
2672 for (t = target_structs; t < target_structs + target_struct_size;
2673 ++t)
2674 {
2675 if ((*t)->to_stratum == core_stratum)
2676 {
2677 runable = *t;
2678 ++count;
2679 }
2680 }
c5aa993b
JM
2681
2682 return (count == 1 ? runable : NULL);
c906108c 2683}
ed9a39eb
JM
2684
2685/*
2686 * Find the next target down the stack from the specified target.
2687 */
2688
2689struct target_ops *
fba45db2 2690find_target_beneath (struct target_ops *t)
ed9a39eb 2691{
258b763a 2692 return t->beneath;
ed9a39eb
JM
2693}
2694
c906108c
SS
2695\f
2696/* The inferior process has died. Long live the inferior! */
2697
2698void
fba45db2 2699generic_mourn_inferior (void)
c906108c 2700{
7f9f62ba 2701 ptid_t ptid;
c906108c 2702
7f9f62ba 2703 ptid = inferior_ptid;
39f77062 2704 inferior_ptid = null_ptid;
7f9f62ba
PA
2705
2706 if (!ptid_equal (ptid, null_ptid))
2707 {
2708 int pid = ptid_get_pid (ptid);
6c95b8df 2709 exit_inferior (pid);
7f9f62ba
PA
2710 }
2711
c906108c
SS
2712 breakpoint_init_inferior (inf_exited);
2713 registers_changed ();
2714
c906108c
SS
2715 reopen_exec_file ();
2716 reinit_frame_cache ();
2717
9a4105ab
AC
2718 if (deprecated_detach_hook)
2719 deprecated_detach_hook ();
c906108c
SS
2720}
2721\f
8807d78b 2722/* Helper function for child_wait and the derivatives of child_wait.
c906108c
SS
2723 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
2724 translation of that in OURSTATUS. */
2725void
fba45db2 2726store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
c906108c 2727{
c906108c
SS
2728 if (WIFEXITED (hoststatus))
2729 {
2730 ourstatus->kind = TARGET_WAITKIND_EXITED;
2731 ourstatus->value.integer = WEXITSTATUS (hoststatus);
2732 }
2733 else if (!WIFSTOPPED (hoststatus))
2734 {
2735 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
2736 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
2737 }
2738 else
2739 {
2740 ourstatus->kind = TARGET_WAITKIND_STOPPED;
2741 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
2742 }
2743}
2744\f
fd0a2a6f
MK
2745/* Convert a normal process ID to a string. Returns the string in a
2746 static buffer. */
c906108c
SS
2747
2748char *
39f77062 2749normal_pid_to_str (ptid_t ptid)
c906108c 2750{
fd0a2a6f 2751 static char buf[32];
c906108c 2752
5fff8fc0 2753 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
c906108c
SS
2754 return buf;
2755}
2756
2c0b251b 2757static char *
117de6a9
PA
2758dummy_pid_to_str (struct target_ops *ops, ptid_t ptid)
2759{
2760 return normal_pid_to_str (ptid);
2761}
2762
9b4eba8e
HZ
2763/* Error-catcher for target_find_memory_regions. */
2764static int
2765dummy_find_memory_regions (int (*ignore1) (), void *ignore2)
be4d1333 2766{
9b4eba8e 2767 error (_("Command not implemented for this target."));
be4d1333
MS
2768 return 0;
2769}
2770
9b4eba8e
HZ
2771/* Error-catcher for target_make_corefile_notes. */
2772static char *
2773dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
be4d1333 2774{
9b4eba8e 2775 error (_("Command not implemented for this target."));
be4d1333
MS
2776 return NULL;
2777}
2778
6b04bdb7
MS
2779/* Error-catcher for target_get_bookmark. */
2780static gdb_byte *
2781dummy_get_bookmark (char *ignore1, int ignore2)
2782{
2783 tcomplain ();
2784 return NULL;
2785}
2786
2787/* Error-catcher for target_goto_bookmark. */
2788static void
2789dummy_goto_bookmark (gdb_byte *ignore, int from_tty)
2790{
2791 tcomplain ();
2792}
2793
c906108c
SS
2794/* Set up the handful of non-empty slots needed by the dummy target
2795 vector. */
2796
2797static void
fba45db2 2798init_dummy_target (void)
c906108c
SS
2799{
2800 dummy_target.to_shortname = "None";
2801 dummy_target.to_longname = "None";
2802 dummy_target.to_doc = "";
2803 dummy_target.to_attach = find_default_attach;
136d6dae
VP
2804 dummy_target.to_detach =
2805 (void (*)(struct target_ops *, char *, int))target_ignore;
c906108c 2806 dummy_target.to_create_inferior = find_default_create_inferior;
b84876c2
PA
2807 dummy_target.to_can_async_p = find_default_can_async_p;
2808 dummy_target.to_is_async_p = find_default_is_async_p;
9908b566 2809 dummy_target.to_supports_non_stop = find_default_supports_non_stop;
117de6a9 2810 dummy_target.to_pid_to_str = dummy_pid_to_str;
c906108c 2811 dummy_target.to_stratum = dummy_stratum;
be4d1333
MS
2812 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
2813 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
6b04bdb7
MS
2814 dummy_target.to_get_bookmark = dummy_get_bookmark;
2815 dummy_target.to_goto_bookmark = dummy_goto_bookmark;
0b603eba 2816 dummy_target.to_xfer_partial = default_xfer_partial;
c35b1492
PA
2817 dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
2818 dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero;
2819 dummy_target.to_has_stack = (int (*) (struct target_ops *)) return_zero;
2820 dummy_target.to_has_registers = (int (*) (struct target_ops *)) return_zero;
2821 dummy_target.to_has_execution = (int (*) (struct target_ops *)) return_zero;
c906108c
SS
2822 dummy_target.to_magic = OPS_MAGIC;
2823}
c906108c 2824\f
c906108c 2825static void
fba45db2 2826debug_to_open (char *args, int from_tty)
c906108c
SS
2827{
2828 debug_target.to_open (args, from_tty);
2829
96baa820 2830 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
c906108c
SS
2831}
2832
f1c07ab0
AC
2833void
2834target_close (struct target_ops *targ, int quitting)
2835{
2836 if (targ->to_xclose != NULL)
2837 targ->to_xclose (targ, quitting);
2838 else if (targ->to_close != NULL)
2839 targ->to_close (quitting);
947b8855
PA
2840
2841 if (targetdebug)
2842 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
f1c07ab0
AC
2843}
2844
136d6dae
VP
2845void
2846target_attach (char *args, int from_tty)
2847{
2848 struct target_ops *t;
2849 for (t = current_target.beneath; t != NULL; t = t->beneath)
2850 {
2851 if (t->to_attach != NULL)
2852 {
2853 t->to_attach (t, args, from_tty);
947b8855
PA
2854 if (targetdebug)
2855 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n",
2856 args, from_tty);
136d6dae
VP
2857 return;
2858 }
2859 }
2860
2861 internal_error (__FILE__, __LINE__,
2862 "could not find a target to attach");
2863}
2864
28439f5e
PA
2865int
2866target_thread_alive (ptid_t ptid)
c906108c 2867{
28439f5e
PA
2868 struct target_ops *t;
2869 for (t = current_target.beneath; t != NULL; t = t->beneath)
2870 {
2871 if (t->to_thread_alive != NULL)
2872 {
2873 int retval;
c906108c 2874
28439f5e
PA
2875 retval = t->to_thread_alive (t, ptid);
2876 if (targetdebug)
2877 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
2878 PIDGET (ptid), retval);
2879
2880 return retval;
2881 }
2882 }
2883
2884 return 0;
2885}
2886
2887void
2888target_find_new_threads (void)
2889{
2890 struct target_ops *t;
2891 for (t = current_target.beneath; t != NULL; t = t->beneath)
2892 {
2893 if (t->to_find_new_threads != NULL)
2894 {
2895 t->to_find_new_threads (t);
2896 if (targetdebug)
2897 fprintf_unfiltered (gdb_stdlog, "target_find_new_threads ()\n");
2898
2899 return;
2900 }
2901 }
c906108c
SS
2902}
2903
c906108c 2904static void
28439f5e 2905debug_to_post_attach (int pid)
c906108c 2906{
28439f5e 2907 debug_target.to_post_attach (pid);
c906108c 2908
28439f5e 2909 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
c906108c
SS
2910}
2911
f00150c9
DE
2912/* Return a pretty printed form of target_waitstatus.
2913 Space for the result is malloc'd, caller must free. */
c906108c 2914
f00150c9
DE
2915char *
2916target_waitstatus_to_string (const struct target_waitstatus *ws)
2917{
2918 const char *kind_str = "status->kind = ";
c906108c 2919
f00150c9 2920 switch (ws->kind)
c906108c
SS
2921 {
2922 case TARGET_WAITKIND_EXITED:
f00150c9
DE
2923 return xstrprintf ("%sexited, status = %d",
2924 kind_str, ws->value.integer);
c906108c 2925 case TARGET_WAITKIND_STOPPED:
f00150c9
DE
2926 return xstrprintf ("%sstopped, signal = %s",
2927 kind_str, target_signal_to_name (ws->value.sig));
c906108c 2928 case TARGET_WAITKIND_SIGNALLED:
f00150c9
DE
2929 return xstrprintf ("%ssignalled, signal = %s",
2930 kind_str, target_signal_to_name (ws->value.sig));
c906108c 2931 case TARGET_WAITKIND_LOADED:
f00150c9 2932 return xstrprintf ("%sloaded", kind_str);
c906108c 2933 case TARGET_WAITKIND_FORKED:
f00150c9 2934 return xstrprintf ("%sforked", kind_str);
c906108c 2935 case TARGET_WAITKIND_VFORKED:
f00150c9 2936 return xstrprintf ("%svforked", kind_str);
c906108c 2937 case TARGET_WAITKIND_EXECD:
f00150c9
DE
2938 return xstrprintf ("%sexecd", kind_str);
2939 case TARGET_WAITKIND_SYSCALL_ENTRY:
a96d9b2e 2940 return xstrprintf ("%sentered syscall", kind_str);
f00150c9 2941 case TARGET_WAITKIND_SYSCALL_RETURN:
a96d9b2e 2942 return xstrprintf ("%sexited syscall", kind_str);
c906108c 2943 case TARGET_WAITKIND_SPURIOUS:
f00150c9
DE
2944 return xstrprintf ("%sspurious", kind_str);
2945 case TARGET_WAITKIND_IGNORE:
2946 return xstrprintf ("%signore", kind_str);
2947 case TARGET_WAITKIND_NO_HISTORY:
2948 return xstrprintf ("%sno-history", kind_str);
c906108c 2949 default:
f00150c9 2950 return xstrprintf ("%sunknown???", kind_str);
c906108c 2951 }
f00150c9
DE
2952}
2953
bf0c5130 2954static void
56be3814
UW
2955debug_print_register (const char * func,
2956 struct regcache *regcache, int regno)
bf0c5130 2957{
f8d29908 2958 struct gdbarch *gdbarch = get_regcache_arch (regcache);
bf0c5130 2959 fprintf_unfiltered (gdb_stdlog, "%s ", func);
f8d29908 2960 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
f8d29908
UW
2961 && gdbarch_register_name (gdbarch, regno) != NULL
2962 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
2963 fprintf_unfiltered (gdb_stdlog, "(%s)",
2964 gdbarch_register_name (gdbarch, regno));
bf0c5130
AC
2965 else
2966 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
0ff58721 2967 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
bf0c5130 2968 {
e17a4113 2969 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f8d29908 2970 int i, size = register_size (gdbarch, regno);
d9d9c31f 2971 unsigned char buf[MAX_REGISTER_SIZE];
0ff58721 2972 regcache_raw_collect (regcache, regno, buf);
bf0c5130 2973 fprintf_unfiltered (gdb_stdlog, " = ");
81c4a259 2974 for (i = 0; i < size; i++)
bf0c5130
AC
2975 {
2976 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
2977 }
81c4a259 2978 if (size <= sizeof (LONGEST))
bf0c5130 2979 {
e17a4113 2980 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
0b1553bc
UW
2981 fprintf_unfiltered (gdb_stdlog, " %s %s",
2982 core_addr_to_string_nz (val), plongest (val));
bf0c5130
AC
2983 }
2984 }
2985 fprintf_unfiltered (gdb_stdlog, "\n");
2986}
2987
28439f5e
PA
2988void
2989target_fetch_registers (struct regcache *regcache, int regno)
c906108c 2990{
28439f5e
PA
2991 struct target_ops *t;
2992 for (t = current_target.beneath; t != NULL; t = t->beneath)
2993 {
2994 if (t->to_fetch_registers != NULL)
2995 {
2996 t->to_fetch_registers (t, regcache, regno);
2997 if (targetdebug)
2998 debug_print_register ("target_fetch_registers", regcache, regno);
2999 return;
3000 }
3001 }
c906108c
SS
3002}
3003
28439f5e
PA
3004void
3005target_store_registers (struct regcache *regcache, int regno)
c906108c 3006{
28439f5e
PA
3007
3008 struct target_ops *t;
3009 for (t = current_target.beneath; t != NULL; t = t->beneath)
3010 {
3011 if (t->to_store_registers != NULL)
3012 {
3013 t->to_store_registers (t, regcache, regno);
3014 if (targetdebug)
3015 {
3016 debug_print_register ("target_store_registers", regcache, regno);
3017 }
3018 return;
3019 }
3020 }
3021
3022 noprocess ();
c906108c
SS
3023}
3024
3025static void
316f2060 3026debug_to_prepare_to_store (struct regcache *regcache)
c906108c 3027{
316f2060 3028 debug_target.to_prepare_to_store (regcache);
c906108c 3029
96baa820 3030 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
c906108c
SS
3031}
3032
3033static int
961cb7b5 3034deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
c8e73a31
AC
3035 int write, struct mem_attrib *attrib,
3036 struct target_ops *target)
c906108c
SS
3037{
3038 int retval;
3039
c8e73a31
AC
3040 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
3041 attrib, target);
c906108c 3042
96baa820 3043 fprintf_unfiltered (gdb_stdlog,
53b71562 3044 "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
5af949e3
UW
3045 paddress (target_gdbarch, memaddr), len,
3046 write ? "write" : "read", retval);
c906108c 3047
c906108c
SS
3048 if (retval > 0)
3049 {
3050 int i;
3051
96baa820 3052 fputs_unfiltered (", bytes =", gdb_stdlog);
c906108c
SS
3053 for (i = 0; i < retval; i++)
3054 {
53b71562 3055 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
333dabeb
DJ
3056 {
3057 if (targetdebug < 2 && i > 0)
3058 {
3059 fprintf_unfiltered (gdb_stdlog, " ...");
3060 break;
3061 }
3062 fprintf_unfiltered (gdb_stdlog, "\n");
3063 }
2bc416ba 3064
96baa820 3065 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
c906108c
SS
3066 }
3067 }
3068
96baa820 3069 fputc_unfiltered ('\n', gdb_stdlog);
c906108c
SS
3070
3071 return retval;
3072}
3073
3074static void
fba45db2 3075debug_to_files_info (struct target_ops *target)
c906108c
SS
3076{
3077 debug_target.to_files_info (target);
3078
96baa820 3079 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
c906108c
SS
3080}
3081
3082static int
a6d9a66e
UW
3083debug_to_insert_breakpoint (struct gdbarch *gdbarch,
3084 struct bp_target_info *bp_tgt)
c906108c
SS
3085{
3086 int retval;
3087
a6d9a66e 3088 retval = debug_target.to_insert_breakpoint (gdbarch, bp_tgt);
c906108c 3089
96baa820 3090 fprintf_unfiltered (gdb_stdlog,
104c1213 3091 "target_insert_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 3092 (unsigned long) bp_tgt->placed_address,
104c1213 3093 (unsigned long) retval);
c906108c
SS
3094 return retval;
3095}
3096
3097static int
a6d9a66e
UW
3098debug_to_remove_breakpoint (struct gdbarch *gdbarch,
3099 struct bp_target_info *bp_tgt)
c906108c
SS
3100{
3101 int retval;
3102
a6d9a66e 3103 retval = debug_target.to_remove_breakpoint (gdbarch, bp_tgt);
c906108c 3104
96baa820 3105 fprintf_unfiltered (gdb_stdlog,
104c1213 3106 "target_remove_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 3107 (unsigned long) bp_tgt->placed_address,
104c1213 3108 (unsigned long) retval);
c906108c
SS
3109 return retval;
3110}
3111
ccaa32c7
GS
3112static int
3113debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
3114{
3115 int retval;
3116
3117 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
3118
3119 fprintf_unfiltered (gdb_stdlog,
3120 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
3121 (unsigned long) type,
3122 (unsigned long) cnt,
3123 (unsigned long) from_tty,
3124 (unsigned long) retval);
3125 return retval;
3126}
3127
e0d24f8d
WZ
3128static int
3129debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
3130{
3131 CORE_ADDR retval;
3132
3133 retval = debug_target.to_region_ok_for_hw_watchpoint (addr, len);
3134
3135 fprintf_unfiltered (gdb_stdlog,
d92524f1 3136 "target_region_ok_for_hw_watchpoint (%ld, %ld) = 0x%lx\n",
e0d24f8d
WZ
3137 (unsigned long) addr,
3138 (unsigned long) len,
3139 (unsigned long) retval);
3140 return retval;
3141}
3142
ccaa32c7
GS
3143static int
3144debug_to_stopped_by_watchpoint (void)
3145{
3146 int retval;
3147
3148 retval = debug_target.to_stopped_by_watchpoint ();
3149
3150 fprintf_unfiltered (gdb_stdlog,
d92524f1 3151 "target_stopped_by_watchpoint () = %ld\n",
ccaa32c7
GS
3152 (unsigned long) retval);
3153 return retval;
3154}
3155
4aa7a7f5
JJ
3156static int
3157debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
ccaa32c7 3158{
4aa7a7f5 3159 int retval;
ccaa32c7 3160
4aa7a7f5 3161 retval = debug_target.to_stopped_data_address (target, addr);
ccaa32c7
GS
3162
3163 fprintf_unfiltered (gdb_stdlog,
4aa7a7f5
JJ
3164 "target_stopped_data_address ([0x%lx]) = %ld\n",
3165 (unsigned long)*addr,
3166 (unsigned long)retval);
ccaa32c7
GS
3167 return retval;
3168}
3169
5009afc5
AS
3170static int
3171debug_to_watchpoint_addr_within_range (struct target_ops *target,
3172 CORE_ADDR addr,
3173 CORE_ADDR start, int length)
3174{
3175 int retval;
3176
3177 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
3178 start, length);
3179
3180 fprintf_filtered (gdb_stdlog,
3181 "target_watchpoint_addr_within_range (0x%lx, 0x%lx, %d) = %d\n",
3182 (unsigned long) addr, (unsigned long) start, length,
3183 retval);
3184 return retval;
3185}
3186
ccaa32c7 3187static int
a6d9a66e
UW
3188debug_to_insert_hw_breakpoint (struct gdbarch *gdbarch,
3189 struct bp_target_info *bp_tgt)
ccaa32c7
GS
3190{
3191 int retval;
3192
a6d9a66e 3193 retval = debug_target.to_insert_hw_breakpoint (gdbarch, bp_tgt);
ccaa32c7
GS
3194
3195 fprintf_unfiltered (gdb_stdlog,
3196 "target_insert_hw_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 3197 (unsigned long) bp_tgt->placed_address,
ccaa32c7
GS
3198 (unsigned long) retval);
3199 return retval;
3200}
3201
3202static int
a6d9a66e
UW
3203debug_to_remove_hw_breakpoint (struct gdbarch *gdbarch,
3204 struct bp_target_info *bp_tgt)
ccaa32c7
GS
3205{
3206 int retval;
3207
a6d9a66e 3208 retval = debug_target.to_remove_hw_breakpoint (gdbarch, bp_tgt);
ccaa32c7
GS
3209
3210 fprintf_unfiltered (gdb_stdlog,
3211 "target_remove_hw_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 3212 (unsigned long) bp_tgt->placed_address,
ccaa32c7
GS
3213 (unsigned long) retval);
3214 return retval;
3215}
3216
3217static int
3218debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type)
3219{
3220 int retval;
3221
3222 retval = debug_target.to_insert_watchpoint (addr, len, type);
3223
3224 fprintf_unfiltered (gdb_stdlog,
3225 "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n",
3226 (unsigned long) addr, len, type, (unsigned long) retval);
3227 return retval;
3228}
3229
3230static int
3231debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type)
3232{
3233 int retval;
3234
ecde4882 3235 retval = debug_target.to_remove_watchpoint (addr, len, type);
ccaa32c7
GS
3236
3237 fprintf_unfiltered (gdb_stdlog,
ecde4882 3238 "target_remove_watchpoint (0x%lx, %d, %d) = %ld\n",
ccaa32c7
GS
3239 (unsigned long) addr, len, type, (unsigned long) retval);
3240 return retval;
3241}
3242
c906108c 3243static void
fba45db2 3244debug_to_terminal_init (void)
c906108c
SS
3245{
3246 debug_target.to_terminal_init ();
3247
96baa820 3248 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
c906108c
SS
3249}
3250
3251static void
fba45db2 3252debug_to_terminal_inferior (void)
c906108c
SS
3253{
3254 debug_target.to_terminal_inferior ();
3255
96baa820 3256 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
c906108c
SS
3257}
3258
3259static void
fba45db2 3260debug_to_terminal_ours_for_output (void)
c906108c
SS
3261{
3262 debug_target.to_terminal_ours_for_output ();
3263
96baa820 3264 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
c906108c
SS
3265}
3266
3267static void
fba45db2 3268debug_to_terminal_ours (void)
c906108c
SS
3269{
3270 debug_target.to_terminal_ours ();
3271
96baa820 3272 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
c906108c
SS
3273}
3274
a790ad35
SC
3275static void
3276debug_to_terminal_save_ours (void)
3277{
3278 debug_target.to_terminal_save_ours ();
3279
3280 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
3281}
3282
c906108c 3283static void
fba45db2 3284debug_to_terminal_info (char *arg, int from_tty)
c906108c
SS
3285{
3286 debug_target.to_terminal_info (arg, from_tty);
3287
96baa820 3288 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
c906108c
SS
3289 from_tty);
3290}
3291
c906108c 3292static void
fba45db2 3293debug_to_load (char *args, int from_tty)
c906108c
SS
3294{
3295 debug_target.to_load (args, from_tty);
3296
96baa820 3297 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
c906108c
SS
3298}
3299
3300static int
fba45db2 3301debug_to_lookup_symbol (char *name, CORE_ADDR *addrp)
c906108c
SS
3302{
3303 int retval;
3304
3305 retval = debug_target.to_lookup_symbol (name, addrp);
3306
96baa820 3307 fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name);
c906108c
SS
3308
3309 return retval;
3310}
3311
c906108c 3312static void
39f77062 3313debug_to_post_startup_inferior (ptid_t ptid)
c906108c 3314{
39f77062 3315 debug_target.to_post_startup_inferior (ptid);
c906108c 3316
96baa820 3317 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
39f77062 3318 PIDGET (ptid));
c906108c
SS
3319}
3320
3321static void
fba45db2 3322debug_to_acknowledge_created_inferior (int pid)
c906108c
SS
3323{
3324 debug_target.to_acknowledge_created_inferior (pid);
3325
96baa820 3326 fprintf_unfiltered (gdb_stdlog, "target_acknowledge_created_inferior (%d)\n",
c906108c
SS
3327 pid);
3328}
3329
fa113d1a 3330static void
fba45db2 3331debug_to_insert_fork_catchpoint (int pid)
c906108c 3332{
fa113d1a 3333 debug_target.to_insert_fork_catchpoint (pid);
c906108c 3334
fa113d1a
AC
3335 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d)\n",
3336 pid);
c906108c
SS
3337}
3338
3339static int
fba45db2 3340debug_to_remove_fork_catchpoint (int pid)
c906108c 3341{
c5aa993b 3342 int retval;
c906108c
SS
3343
3344 retval = debug_target.to_remove_fork_catchpoint (pid);
3345
96baa820 3346 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
c5aa993b 3347 pid, retval);
c906108c
SS
3348
3349 return retval;
3350}
3351
fa113d1a 3352static void
fba45db2 3353debug_to_insert_vfork_catchpoint (int pid)
c906108c 3354{
fa113d1a 3355 debug_target.to_insert_vfork_catchpoint (pid);
c906108c 3356
fa113d1a
AC
3357 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d)\n",
3358 pid);
c906108c
SS
3359}
3360
3361static int
fba45db2 3362debug_to_remove_vfork_catchpoint (int pid)
c906108c 3363{
c5aa993b 3364 int retval;
c906108c
SS
3365
3366 retval = debug_target.to_remove_vfork_catchpoint (pid);
3367
96baa820 3368 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
c5aa993b 3369 pid, retval);
c906108c
SS
3370
3371 return retval;
3372}
3373
fa113d1a 3374static void
fba45db2 3375debug_to_insert_exec_catchpoint (int pid)
c906108c 3376{
fa113d1a 3377 debug_target.to_insert_exec_catchpoint (pid);
c906108c 3378
fa113d1a
AC
3379 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d)\n",
3380 pid);
c906108c
SS
3381}
3382
3383static int
fba45db2 3384debug_to_remove_exec_catchpoint (int pid)
c906108c 3385{
c5aa993b 3386 int retval;
c906108c
SS
3387
3388 retval = debug_target.to_remove_exec_catchpoint (pid);
3389
96baa820 3390 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
c5aa993b 3391 pid, retval);
c906108c
SS
3392
3393 return retval;
3394}
3395
c906108c 3396static int
fba45db2 3397debug_to_has_exited (int pid, int wait_status, int *exit_status)
c906108c 3398{
c5aa993b 3399 int has_exited;
c906108c
SS
3400
3401 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
3402
96baa820 3403 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
c5aa993b 3404 pid, wait_status, *exit_status, has_exited);
c906108c
SS
3405
3406 return has_exited;
3407}
3408
c906108c 3409static int
fba45db2 3410debug_to_can_run (void)
c906108c
SS
3411{
3412 int retval;
3413
3414 retval = debug_target.to_can_run ();
3415
96baa820 3416 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
c906108c
SS
3417
3418 return retval;
3419}
3420
3421static void
39f77062 3422debug_to_notice_signals (ptid_t ptid)
c906108c 3423{
39f77062 3424 debug_target.to_notice_signals (ptid);
c906108c 3425
39f77062
KB
3426 fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n",
3427 PIDGET (ptid));
c906108c
SS
3428}
3429
c2250ad1
UW
3430static struct gdbarch *
3431debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid)
3432{
3433 struct gdbarch *retval;
3434
3435 retval = debug_target.to_thread_architecture (ops, ptid);
3436
67e5d36c
PM
3437 fprintf_unfiltered (gdb_stdlog, "target_thread_architecture (%s) = %s [%s]\n",
3438 target_pid_to_str (ptid), host_address_to_string (retval),
c2250ad1
UW
3439 gdbarch_bfd_arch_info (retval)->printable_name);
3440 return retval;
3441}
3442
c906108c 3443static void
94cc34af 3444debug_to_stop (ptid_t ptid)
c906108c 3445{
94cc34af 3446 debug_target.to_stop (ptid);
c906108c 3447
94cc34af
PA
3448 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
3449 target_pid_to_str (ptid));
c906108c
SS
3450}
3451
96baa820
JM
3452static void
3453debug_to_rcmd (char *command,
d9fcf2fb 3454 struct ui_file *outbuf)
96baa820
JM
3455{
3456 debug_target.to_rcmd (command, outbuf);
3457 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
3458}
3459
c906108c 3460static char *
fba45db2 3461debug_to_pid_to_exec_file (int pid)
c906108c 3462{
c5aa993b 3463 char *exec_file;
c906108c
SS
3464
3465 exec_file = debug_target.to_pid_to_exec_file (pid);
3466
96baa820 3467 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
c5aa993b 3468 pid, exec_file);
c906108c
SS
3469
3470 return exec_file;
3471}
3472
c906108c 3473static void
fba45db2 3474setup_target_debug (void)
c906108c
SS
3475{
3476 memcpy (&debug_target, &current_target, sizeof debug_target);
3477
3478 current_target.to_open = debug_to_open;
c906108c 3479 current_target.to_post_attach = debug_to_post_attach;
c906108c 3480 current_target.to_prepare_to_store = debug_to_prepare_to_store;
c8e73a31 3481 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
c906108c
SS
3482 current_target.to_files_info = debug_to_files_info;
3483 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
3484 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
ccaa32c7
GS
3485 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
3486 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
3487 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
3488 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
3489 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
3490 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
3491 current_target.to_stopped_data_address = debug_to_stopped_data_address;
5009afc5 3492 current_target.to_watchpoint_addr_within_range = debug_to_watchpoint_addr_within_range;
e0d24f8d 3493 current_target.to_region_ok_for_hw_watchpoint = debug_to_region_ok_for_hw_watchpoint;
c906108c
SS
3494 current_target.to_terminal_init = debug_to_terminal_init;
3495 current_target.to_terminal_inferior = debug_to_terminal_inferior;
3496 current_target.to_terminal_ours_for_output = debug_to_terminal_ours_for_output;
3497 current_target.to_terminal_ours = debug_to_terminal_ours;
a790ad35 3498 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
c906108c 3499 current_target.to_terminal_info = debug_to_terminal_info;
c906108c
SS
3500 current_target.to_load = debug_to_load;
3501 current_target.to_lookup_symbol = debug_to_lookup_symbol;
c906108c
SS
3502 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
3503 current_target.to_acknowledge_created_inferior = debug_to_acknowledge_created_inferior;
c906108c
SS
3504 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
3505 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
3506 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
3507 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
c906108c
SS
3508 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
3509 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
c906108c 3510 current_target.to_has_exited = debug_to_has_exited;
c906108c
SS
3511 current_target.to_can_run = debug_to_can_run;
3512 current_target.to_notice_signals = debug_to_notice_signals;
c906108c 3513 current_target.to_stop = debug_to_stop;
96baa820 3514 current_target.to_rcmd = debug_to_rcmd;
c906108c 3515 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
c2250ad1 3516 current_target.to_thread_architecture = debug_to_thread_architecture;
c906108c 3517}
c906108c 3518\f
c5aa993b
JM
3519
3520static char targ_desc[] =
3521"Names of targets and files being debugged.\n\
c906108c
SS
3522Shows the entire stack of targets currently in use (including the exec-file,\n\
3523core-file, and process, if any), as well as the symbol file name.";
3524
96baa820
JM
3525static void
3526do_monitor_command (char *cmd,
3527 int from_tty)
3528{
2b5fe715
AC
3529 if ((current_target.to_rcmd
3530 == (void (*) (char *, struct ui_file *)) tcomplain)
96baa820 3531 || (current_target.to_rcmd == debug_to_rcmd
2b5fe715
AC
3532 && (debug_target.to_rcmd
3533 == (void (*) (char *, struct ui_file *)) tcomplain)))
8a3fe4f8 3534 error (_("\"monitor\" command not supported by this target."));
96baa820
JM
3535 target_rcmd (cmd, gdb_stdtarg);
3536}
3537
87680a14
JB
3538/* Print the name of each layers of our target stack. */
3539
3540static void
3541maintenance_print_target_stack (char *cmd, int from_tty)
3542{
3543 struct target_ops *t;
3544
3545 printf_filtered (_("The current target stack is:\n"));
3546
3547 for (t = target_stack; t != NULL; t = t->beneath)
3548 {
3549 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
3550 }
3551}
3552
c6ebd6cf
VP
3553/* Controls if async mode is permitted. */
3554int target_async_permitted = 0;
3555
3556/* The set command writes to this variable. If the inferior is
3557 executing, linux_nat_async_permitted is *not* updated. */
3558static int target_async_permitted_1 = 0;
3559
3560static void
3561set_maintenance_target_async_permitted (char *args, int from_tty,
3562 struct cmd_list_element *c)
3563{
c35b1492 3564 if (have_live_inferiors ())
c6ebd6cf
VP
3565 {
3566 target_async_permitted_1 = target_async_permitted;
3567 error (_("Cannot change this setting while the inferior is running."));
3568 }
3569
3570 target_async_permitted = target_async_permitted_1;
3571}
3572
3573static void
3574show_maintenance_target_async_permitted (struct ui_file *file, int from_tty,
3575 struct cmd_list_element *c,
3576 const char *value)
3577{
3578 fprintf_filtered (file, _("\
3579Controlling the inferior in asynchronous mode is %s.\n"), value);
3580}
3581
c906108c 3582void
fba45db2 3583initialize_targets (void)
c906108c
SS
3584{
3585 init_dummy_target ();
3586 push_target (&dummy_target);
3587
3588 add_info ("target", target_info, targ_desc);
3589 add_info ("files", target_info, targ_desc);
3590
85c07804
AC
3591 add_setshow_zinteger_cmd ("target", class_maintenance, &targetdebug, _("\
3592Set target debugging."), _("\
3593Show target debugging."), _("\
333dabeb
DJ
3594When non-zero, target debugging is enabled. Higher numbers are more\n\
3595verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
85c07804
AC
3596command."),
3597 NULL,
920d2a44 3598 show_targetdebug,
85c07804 3599 &setdebuglist, &showdebuglist);
3a11626d 3600
2bc416ba 3601 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
7915a72c
AC
3602 &trust_readonly, _("\
3603Set mode for reading from readonly sections."), _("\
3604Show mode for reading from readonly sections."), _("\
3a11626d
MS
3605When this mode is on, memory reads from readonly sections (such as .text)\n\
3606will be read from the object file instead of from the target. This will\n\
7915a72c 3607result in significant performance improvement for remote targets."),
2c5b56ce 3608 NULL,
920d2a44 3609 show_trust_readonly,
e707bbc2 3610 &setlist, &showlist);
96baa820
JM
3611
3612 add_com ("monitor", class_obscure, do_monitor_command,
1bedd215 3613 _("Send a command to the remote monitor (remote targets only)."));
96baa820 3614
87680a14
JB
3615 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
3616 _("Print the name of each layer of the internal target stack."),
3617 &maintenanceprintlist);
3618
c6ebd6cf
VP
3619 add_setshow_boolean_cmd ("target-async", no_class,
3620 &target_async_permitted_1, _("\
3621Set whether gdb controls the inferior in asynchronous mode."), _("\
3622Show whether gdb controls the inferior in asynchronous mode."), _("\
3623Tells gdb whether to control the inferior in asynchronous mode."),
3624 set_maintenance_target_async_permitted,
3625 show_maintenance_target_async_permitted,
3626 &setlist,
3627 &showlist);
3628
4e5d721f 3629 add_setshow_boolean_cmd ("stack-cache", class_support,
9cf1b572 3630 &stack_cache_enabled_p_1, _("\
4e5d721f
DE
3631Set cache use for stack access."), _("\
3632Show cache use for stack access."), _("\
3633When on, use the data cache for all stack access, regardless of any\n\
3634configured memory regions. This improves remote performance significantly.\n\
3635By default, caching for stack access is on."),
3636 set_stack_cache_enabled_p,
3637 show_stack_cache_enabled_p,
3638 &setlist, &showlist);
3639
8add0441 3640 target_dcache = dcache_init ();
c906108c 3641}
This page took 1.20496 seconds and 4 git commands to generate.