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