2011-01-11 Michael Snyder <msnyder@vmware.com>
[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__,
9b20d036 496 _("could not find a target to create inferior"));
136d6dae
VP
497}
498
d9d2d8b6
PA
499void
500target_terminal_inferior (void)
501{
502 /* A background resume (``run&'') should leave GDB in control of the
c378eb4e 503 terminal. Use target_can_async_p, not target_is_async_p, since at
ba7f6c64
VP
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{
c378eb4e
MS
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{
c378eb4e 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);
c378eb4e
MS
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 781 de_fault (to_insert_fork_catchpoint,
77b06cd7
TJB
782 (int (*) (int))
783 return_one);
2bc416ba
DJ
784 de_fault (to_remove_fork_catchpoint,
785 (int (*) (int))
77b06cd7 786 return_one);
2bc416ba 787 de_fault (to_insert_vfork_catchpoint,
77b06cd7
TJB
788 (int (*) (int))
789 return_one);
2bc416ba
DJ
790 de_fault (to_remove_vfork_catchpoint,
791 (int (*) (int))
77b06cd7 792 return_one);
2bc416ba 793 de_fault (to_insert_exec_catchpoint,
77b06cd7
TJB
794 (int (*) (int))
795 return_one);
2bc416ba
DJ
796 de_fault (to_remove_exec_catchpoint,
797 (int (*) (int))
77b06cd7 798 return_one);
a96d9b2e
SDJ
799 de_fault (to_set_syscall_catchpoint,
800 (int (*) (int, int, int, int, int *))
77b06cd7 801 return_one);
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__,
9b20d036 968 _("Attempt to unpush the dummy target"));
c8d104ad 969
c906108c 970 /* Look for the specified target. Note that we assume that a target
c378eb4e 971 can only occur once in the target stack. */
c906108c 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)
c378eb4e 980 return 0; /* Didn't find target_ops, quit now. */
c906108c 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
c378eb4e 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{
c378eb4e 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
c378eb4e 1198 unallocated region of memory. Retry the transfer, requesting
c906108c
SS
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 1545 deal with partial reads should call target_read (which will retry until
c378eb4e 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
c378eb4e 1802 read and returned. Any further readable subrange will not be read.
8dedea02
VP
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,
c378eb4e 1805 not starting at the beginning), will be ignored. In other cases --
8dedea02
VP
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
c378eb4e 1810 accessible memory in a case when memory map is not available. The above
8dedea02 1811 restrictions are fine for this case, but will give incorrect results if
c378eb4e 1812 the memory is 'patchy'. However, supporting 'patchy' memory would require
8dedea02
VP
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
c378eb4e 1834 if not. This heuristic is meant to permit reading accessible memory
8dedea02
VP
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 {
c378eb4e 1887 /* This half reads up fine. So, the error must be in the
3e43a32a 1888 other half. */
8dedea02
VP
1889 current_begin = second_half_begin;
1890 current_end = second_half_end;
1891 }
1892 else
1893 {
c378eb4e
MS
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
8dedea02
VP
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 {
c378eb4e 1960 /* Cannot read this region. Note that we can end up here only
8dedea02
VP
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 {
c378eb4e 1976 /* Got an error reading full chunk. See if maybe we can read
8dedea02
VP
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{
c378eb4e 2236 /* Clear out solib state. Otherwise the solib state of the previous
b9db4ced 2237 inferior might have survived and is entirely wrong for the new
c378eb4e 2238 target. This has been observed on GNU/Linux using glibc 2.3. How
b9db4ced
UW
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
9b20d036 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__,
9b20d036 2467 _("could not find a target to follow fork"));
ee057212
DJ
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__,
9b20d036 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 {
9b20d036
MS
2606 warning (_("Unable to access target "
2607 "memory at %s, halting search."),
08388c79
DE
2608 hex_string (read_addr));
2609 do_cleanups (old_cleanups);
2610 return -1;
2611 }
2612
2613 start_addr += chunk_size;
2614 }
2615 }
2616
2617 /* Not found. */
2618
2619 do_cleanups (old_cleanups);
2620 return 0;
2621}
2622
2623/* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2624 sequence of bytes in PATTERN with length PATTERN_LEN.
2625
2626 The result is 1 if found, 0 if not found, and -1 if there was an error
2627 requiring halting of the search (e.g. memory read error).
2628 If the pattern is found the address is recorded in FOUND_ADDRP. */
2629
2630int
2631target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2632 const gdb_byte *pattern, ULONGEST pattern_len,
2633 CORE_ADDR *found_addrp)
2634{
2635 struct target_ops *t;
2636 int found;
2637
2638 /* We don't use INHERIT to set current_target.to_search_memory,
2639 so we have to scan the target stack and handle targetdebug
2640 ourselves. */
2641
2642 if (targetdebug)
2643 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
2644 hex_string (start_addr));
2645
2646 for (t = current_target.beneath; t != NULL; t = t->beneath)
2647 if (t->to_search_memory != NULL)
2648 break;
2649
2650 if (t != NULL)
2651 {
2652 found = t->to_search_memory (t, start_addr, search_space_len,
2653 pattern, pattern_len, found_addrp);
2654 }
2655 else
2656 {
2657 /* If a special version of to_search_memory isn't available, use the
2658 simple version. */
c35b1492 2659 found = simple_search_memory (current_target.beneath,
08388c79
DE
2660 start_addr, search_space_len,
2661 pattern, pattern_len, found_addrp);
2662 }
2663
2664 if (targetdebug)
2665 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
2666
2667 return found;
2668}
2669
8edfe269
DJ
2670/* Look through the currently pushed targets. If none of them will
2671 be able to restart the currently running process, issue an error
2672 message. */
2673
2674void
2675target_require_runnable (void)
2676{
2677 struct target_ops *t;
2678
2679 for (t = target_stack; t != NULL; t = t->beneath)
2680 {
2681 /* If this target knows how to create a new program, then
2682 assume we will still be able to after killing the current
2683 one. Either killing and mourning will not pop T, or else
2684 find_default_run_target will find it again. */
2685 if (t->to_create_inferior != NULL)
2686 return;
2687
2688 /* Do not worry about thread_stratum targets that can not
2689 create inferiors. Assume they will be pushed again if
2690 necessary, and continue to the process_stratum. */
85e747d2
UW
2691 if (t->to_stratum == thread_stratum
2692 || t->to_stratum == arch_stratum)
8edfe269
DJ
2693 continue;
2694
3e43a32a
MS
2695 error (_("The \"%s\" target does not support \"run\". "
2696 "Try \"help target\" or \"continue\"."),
8edfe269
DJ
2697 t->to_shortname);
2698 }
2699
2700 /* This function is only called if the target is running. In that
2701 case there should have been a process_stratum target and it
c378eb4e 2702 should either know how to create inferiors, or not... */
9b20d036 2703 internal_error (__FILE__, __LINE__, _("No targets found"));
8edfe269
DJ
2704}
2705
c906108c
SS
2706/* Look through the list of possible targets for a target that can
2707 execute a run or attach command without any other data. This is
2708 used to locate the default process stratum.
2709
5f667f2d
PA
2710 If DO_MESG is not NULL, the result is always valid (error() is
2711 called for errors); else, return NULL on error. */
c906108c
SS
2712
2713static struct target_ops *
fba45db2 2714find_default_run_target (char *do_mesg)
c906108c
SS
2715{
2716 struct target_ops **t;
2717 struct target_ops *runable = NULL;
2718 int count;
2719
2720 count = 0;
2721
2722 for (t = target_structs; t < target_structs + target_struct_size;
2723 ++t)
2724 {
c5aa993b 2725 if ((*t)->to_can_run && target_can_run (*t))
c906108c
SS
2726 {
2727 runable = *t;
2728 ++count;
2729 }
2730 }
2731
2732 if (count != 1)
5f667f2d
PA
2733 {
2734 if (do_mesg)
2735 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
2736 else
2737 return NULL;
2738 }
c906108c
SS
2739
2740 return runable;
2741}
2742
2743void
136d6dae 2744find_default_attach (struct target_ops *ops, char *args, int from_tty)
c906108c
SS
2745{
2746 struct target_ops *t;
2747
c5aa993b 2748 t = find_default_run_target ("attach");
136d6dae 2749 (t->to_attach) (t, args, from_tty);
c906108c
SS
2750 return;
2751}
2752
c906108c 2753void
136d6dae
VP
2754find_default_create_inferior (struct target_ops *ops,
2755 char *exec_file, char *allargs, char **env,
c27cda74 2756 int from_tty)
c906108c
SS
2757{
2758 struct target_ops *t;
2759
c5aa993b 2760 t = find_default_run_target ("run");
136d6dae 2761 (t->to_create_inferior) (t, exec_file, allargs, env, from_tty);
c906108c
SS
2762 return;
2763}
2764
2c0b251b 2765static int
b84876c2
PA
2766find_default_can_async_p (void)
2767{
2768 struct target_ops *t;
2769
5f667f2d
PA
2770 /* This may be called before the target is pushed on the stack;
2771 look for the default process stratum. If there's none, gdb isn't
2772 configured with a native debugger, and target remote isn't
2773 connected yet. */
2774 t = find_default_run_target (NULL);
2775 if (t && t->to_can_async_p)
b84876c2
PA
2776 return (t->to_can_async_p) ();
2777 return 0;
2778}
2779
2c0b251b 2780static int
b84876c2
PA
2781find_default_is_async_p (void)
2782{
2783 struct target_ops *t;
2784
5f667f2d
PA
2785 /* This may be called before the target is pushed on the stack;
2786 look for the default process stratum. If there's none, gdb isn't
2787 configured with a native debugger, and target remote isn't
2788 connected yet. */
2789 t = find_default_run_target (NULL);
2790 if (t && t->to_is_async_p)
b84876c2
PA
2791 return (t->to_is_async_p) ();
2792 return 0;
2793}
2794
2c0b251b 2795static int
9908b566
VP
2796find_default_supports_non_stop (void)
2797{
2798 struct target_ops *t;
2799
2800 t = find_default_run_target (NULL);
2801 if (t && t->to_supports_non_stop)
2802 return (t->to_supports_non_stop) ();
2803 return 0;
2804}
2805
2806int
2c0b251b 2807target_supports_non_stop (void)
9908b566
VP
2808{
2809 struct target_ops *t;
5d502164 2810
9908b566
VP
2811 for (t = &current_target; t != NULL; t = t->beneath)
2812 if (t->to_supports_non_stop)
2813 return t->to_supports_non_stop ();
2814
2815 return 0;
2816}
2817
2818
07e059b5
VP
2819char *
2820target_get_osdata (const char *type)
2821{
07e059b5
VP
2822 struct target_ops *t;
2823
739ef7fb
PA
2824 /* If we're already connected to something that can get us OS
2825 related data, use it. Otherwise, try using the native
2826 target. */
2827 if (current_target.to_stratum >= process_stratum)
6d097e65 2828 t = current_target.beneath;
739ef7fb
PA
2829 else
2830 t = find_default_run_target ("get OS data");
07e059b5
VP
2831
2832 if (!t)
2833 return NULL;
2834
6d097e65 2835 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
07e059b5
VP
2836}
2837
6c95b8df
PA
2838/* Determine the current address space of thread PTID. */
2839
2840struct address_space *
2841target_thread_address_space (ptid_t ptid)
2842{
c0694254 2843 struct address_space *aspace;
6c95b8df 2844 struct inferior *inf;
c0694254
PA
2845 struct target_ops *t;
2846
2847 for (t = current_target.beneath; t != NULL; t = t->beneath)
2848 {
2849 if (t->to_thread_address_space != NULL)
2850 {
2851 aspace = t->to_thread_address_space (t, ptid);
2852 gdb_assert (aspace);
6c95b8df 2853
c0694254
PA
2854 if (targetdebug)
2855 fprintf_unfiltered (gdb_stdlog,
2856 "target_thread_address_space (%s) = %d\n",
2857 target_pid_to_str (ptid),
2858 address_space_num (aspace));
2859 return aspace;
2860 }
2861 }
6c95b8df
PA
2862
2863 /* Fall-back to the "main" address space of the inferior. */
2864 inf = find_inferior_pid (ptid_get_pid (ptid));
2865
2866 if (inf == NULL || inf->aspace == NULL)
3e43a32a 2867 internal_error (__FILE__, __LINE__,
9b20d036
MS
2868 _("Can't determine the current "
2869 "address space of thread %s\n"),
6c95b8df
PA
2870 target_pid_to_str (ptid));
2871
2872 return inf->aspace;
2873}
2874
e0d24f8d
WZ
2875static int
2876default_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
2877{
ffe5a37e 2878 return (len <= gdbarch_ptr_bit (target_gdbarch) / TARGET_CHAR_BIT);
ccaa32c7
GS
2879}
2880
5009afc5
AS
2881static int
2882default_watchpoint_addr_within_range (struct target_ops *target,
2883 CORE_ADDR addr,
2884 CORE_ADDR start, int length)
2885{
2886 return addr >= start && addr < start + length;
2887}
2888
c2250ad1
UW
2889static struct gdbarch *
2890default_thread_architecture (struct target_ops *ops, ptid_t ptid)
2891{
2892 return target_gdbarch;
2893}
2894
c906108c 2895static int
fba45db2 2896return_zero (void)
c906108c
SS
2897{
2898 return 0;
2899}
2900
2901static int
fba45db2 2902return_one (void)
c906108c
SS
2903{
2904 return 1;
2905}
2906
ccaa32c7
GS
2907static int
2908return_minus_one (void)
2909{
2910 return -1;
2911}
2912
7a292a7a
SS
2913/* Find a single runnable target in the stack and return it. If for
2914 some reason there is more than one, return NULL. */
2915
2916struct target_ops *
fba45db2 2917find_run_target (void)
7a292a7a
SS
2918{
2919 struct target_ops **t;
2920 struct target_ops *runable = NULL;
2921 int count;
c5aa993b 2922
7a292a7a 2923 count = 0;
c5aa993b 2924
7a292a7a
SS
2925 for (t = target_structs; t < target_structs + target_struct_size; ++t)
2926 {
c5aa993b 2927 if ((*t)->to_can_run && target_can_run (*t))
7a292a7a
SS
2928 {
2929 runable = *t;
2930 ++count;
2931 }
2932 }
c5aa993b 2933
7a292a7a
SS
2934 return (count == 1 ? runable : NULL);
2935}
2936
ed9a39eb
JM
2937/*
2938 * Find the next target down the stack from the specified target.
2939 */
2940
2941struct target_ops *
fba45db2 2942find_target_beneath (struct target_ops *t)
ed9a39eb 2943{
258b763a 2944 return t->beneath;
ed9a39eb
JM
2945}
2946
c906108c
SS
2947\f
2948/* The inferior process has died. Long live the inferior! */
2949
2950void
fba45db2 2951generic_mourn_inferior (void)
c906108c 2952{
7f9f62ba 2953 ptid_t ptid;
c906108c 2954
7f9f62ba 2955 ptid = inferior_ptid;
39f77062 2956 inferior_ptid = null_ptid;
7f9f62ba
PA
2957
2958 if (!ptid_equal (ptid, null_ptid))
2959 {
2960 int pid = ptid_get_pid (ptid);
6c95b8df 2961 exit_inferior (pid);
7f9f62ba
PA
2962 }
2963
c906108c
SS
2964 breakpoint_init_inferior (inf_exited);
2965 registers_changed ();
2966
c906108c
SS
2967 reopen_exec_file ();
2968 reinit_frame_cache ();
2969
9a4105ab
AC
2970 if (deprecated_detach_hook)
2971 deprecated_detach_hook ();
c906108c
SS
2972}
2973\f
8807d78b 2974/* Helper function for child_wait and the derivatives of child_wait.
c906108c
SS
2975 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
2976 translation of that in OURSTATUS. */
2977void
fba45db2 2978store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
c906108c 2979{
c906108c
SS
2980 if (WIFEXITED (hoststatus))
2981 {
2982 ourstatus->kind = TARGET_WAITKIND_EXITED;
2983 ourstatus->value.integer = WEXITSTATUS (hoststatus);
2984 }
2985 else if (!WIFSTOPPED (hoststatus))
2986 {
2987 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
2988 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
2989 }
2990 else
2991 {
2992 ourstatus->kind = TARGET_WAITKIND_STOPPED;
2993 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
2994 }
2995}
2996\f
fd0a2a6f
MK
2997/* Convert a normal process ID to a string. Returns the string in a
2998 static buffer. */
c906108c
SS
2999
3000char *
39f77062 3001normal_pid_to_str (ptid_t ptid)
c906108c 3002{
fd0a2a6f 3003 static char buf[32];
c906108c 3004
5fff8fc0 3005 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
c906108c
SS
3006 return buf;
3007}
3008
2c0b251b 3009static char *
117de6a9
PA
3010dummy_pid_to_str (struct target_ops *ops, ptid_t ptid)
3011{
3012 return normal_pid_to_str (ptid);
3013}
3014
9b4eba8e
HZ
3015/* Error-catcher for target_find_memory_regions. */
3016static int
b8edc417 3017dummy_find_memory_regions (find_memory_region_ftype ignore1, void *ignore2)
be4d1333 3018{
9b4eba8e 3019 error (_("Command not implemented for this target."));
be4d1333
MS
3020 return 0;
3021}
3022
9b4eba8e
HZ
3023/* Error-catcher for target_make_corefile_notes. */
3024static char *
3025dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
be4d1333 3026{
9b4eba8e 3027 error (_("Command not implemented for this target."));
be4d1333
MS
3028 return NULL;
3029}
3030
6b04bdb7
MS
3031/* Error-catcher for target_get_bookmark. */
3032static gdb_byte *
3033dummy_get_bookmark (char *ignore1, int ignore2)
3034{
3035 tcomplain ();
3036 return NULL;
3037}
3038
3039/* Error-catcher for target_goto_bookmark. */
3040static void
3041dummy_goto_bookmark (gdb_byte *ignore, int from_tty)
3042{
3043 tcomplain ();
3044}
3045
c906108c
SS
3046/* Set up the handful of non-empty slots needed by the dummy target
3047 vector. */
3048
3049static void
fba45db2 3050init_dummy_target (void)
c906108c
SS
3051{
3052 dummy_target.to_shortname = "None";
3053 dummy_target.to_longname = "None";
3054 dummy_target.to_doc = "";
3055 dummy_target.to_attach = find_default_attach;
136d6dae
VP
3056 dummy_target.to_detach =
3057 (void (*)(struct target_ops *, char *, int))target_ignore;
c906108c 3058 dummy_target.to_create_inferior = find_default_create_inferior;
b84876c2
PA
3059 dummy_target.to_can_async_p = find_default_can_async_p;
3060 dummy_target.to_is_async_p = find_default_is_async_p;
9908b566 3061 dummy_target.to_supports_non_stop = find_default_supports_non_stop;
117de6a9 3062 dummy_target.to_pid_to_str = dummy_pid_to_str;
c906108c 3063 dummy_target.to_stratum = dummy_stratum;
be4d1333
MS
3064 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
3065 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
6b04bdb7
MS
3066 dummy_target.to_get_bookmark = dummy_get_bookmark;
3067 dummy_target.to_goto_bookmark = dummy_goto_bookmark;
0b603eba 3068 dummy_target.to_xfer_partial = default_xfer_partial;
c35b1492
PA
3069 dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
3070 dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero;
3071 dummy_target.to_has_stack = (int (*) (struct target_ops *)) return_zero;
3072 dummy_target.to_has_registers = (int (*) (struct target_ops *)) return_zero;
3073 dummy_target.to_has_execution = (int (*) (struct target_ops *)) return_zero;
7155de5a
HZ
3074 dummy_target.to_stopped_by_watchpoint = return_zero;
3075 dummy_target.to_stopped_data_address =
3076 (int (*) (struct target_ops *, CORE_ADDR *)) return_zero;
c906108c
SS
3077 dummy_target.to_magic = OPS_MAGIC;
3078}
c906108c 3079\f
c906108c 3080static void
fba45db2 3081debug_to_open (char *args, int from_tty)
c906108c
SS
3082{
3083 debug_target.to_open (args, from_tty);
3084
96baa820 3085 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
c906108c
SS
3086}
3087
f1c07ab0
AC
3088void
3089target_close (struct target_ops *targ, int quitting)
3090{
3091 if (targ->to_xclose != NULL)
3092 targ->to_xclose (targ, quitting);
3093 else if (targ->to_close != NULL)
3094 targ->to_close (quitting);
947b8855
PA
3095
3096 if (targetdebug)
3097 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
f1c07ab0
AC
3098}
3099
136d6dae
VP
3100void
3101target_attach (char *args, int from_tty)
3102{
3103 struct target_ops *t;
5d502164 3104
136d6dae
VP
3105 for (t = current_target.beneath; t != NULL; t = t->beneath)
3106 {
3107 if (t->to_attach != NULL)
3108 {
3109 t->to_attach (t, args, from_tty);
947b8855
PA
3110 if (targetdebug)
3111 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n",
3112 args, from_tty);
136d6dae
VP
3113 return;
3114 }
3115 }
3116
3117 internal_error (__FILE__, __LINE__,
9b20d036 3118 _("could not find a target to attach"));
136d6dae
VP
3119}
3120
28439f5e
PA
3121int
3122target_thread_alive (ptid_t ptid)
c906108c 3123{
28439f5e 3124 struct target_ops *t;
5d502164 3125
28439f5e
PA
3126 for (t = current_target.beneath; t != NULL; t = t->beneath)
3127 {
3128 if (t->to_thread_alive != NULL)
3129 {
3130 int retval;
c906108c 3131
28439f5e
PA
3132 retval = t->to_thread_alive (t, ptid);
3133 if (targetdebug)
3134 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
3135 PIDGET (ptid), retval);
3136
3137 return retval;
3138 }
3139 }
3140
3141 return 0;
3142}
3143
3144void
3145target_find_new_threads (void)
3146{
3147 struct target_ops *t;
5d502164 3148
28439f5e
PA
3149 for (t = current_target.beneath; t != NULL; t = t->beneath)
3150 {
3151 if (t->to_find_new_threads != NULL)
3152 {
3153 t->to_find_new_threads (t);
3154 if (targetdebug)
3155 fprintf_unfiltered (gdb_stdlog, "target_find_new_threads ()\n");
3156
3157 return;
3158 }
3159 }
c906108c
SS
3160}
3161
d914c394
SS
3162void
3163target_stop (ptid_t ptid)
3164{
3165 if (!may_stop)
3166 {
3167 warning (_("May not interrupt or stop the target, ignoring attempt"));
3168 return;
3169 }
3170
3171 (*current_target.to_stop) (ptid);
3172}
3173
c906108c 3174static void
28439f5e 3175debug_to_post_attach (int pid)
c906108c 3176{
28439f5e 3177 debug_target.to_post_attach (pid);
c906108c 3178
28439f5e 3179 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
c906108c
SS
3180}
3181
f00150c9
DE
3182/* Return a pretty printed form of target_waitstatus.
3183 Space for the result is malloc'd, caller must free. */
c906108c 3184
f00150c9
DE
3185char *
3186target_waitstatus_to_string (const struct target_waitstatus *ws)
3187{
3188 const char *kind_str = "status->kind = ";
c906108c 3189
f00150c9 3190 switch (ws->kind)
c906108c
SS
3191 {
3192 case TARGET_WAITKIND_EXITED:
f00150c9
DE
3193 return xstrprintf ("%sexited, status = %d",
3194 kind_str, ws->value.integer);
c906108c 3195 case TARGET_WAITKIND_STOPPED:
f00150c9
DE
3196 return xstrprintf ("%sstopped, signal = %s",
3197 kind_str, target_signal_to_name (ws->value.sig));
c906108c 3198 case TARGET_WAITKIND_SIGNALLED:
f00150c9
DE
3199 return xstrprintf ("%ssignalled, signal = %s",
3200 kind_str, target_signal_to_name (ws->value.sig));
c906108c 3201 case TARGET_WAITKIND_LOADED:
f00150c9 3202 return xstrprintf ("%sloaded", kind_str);
c906108c 3203 case TARGET_WAITKIND_FORKED:
f00150c9 3204 return xstrprintf ("%sforked", kind_str);
c906108c 3205 case TARGET_WAITKIND_VFORKED:
f00150c9 3206 return xstrprintf ("%svforked", kind_str);
c906108c 3207 case TARGET_WAITKIND_EXECD:
f00150c9
DE
3208 return xstrprintf ("%sexecd", kind_str);
3209 case TARGET_WAITKIND_SYSCALL_ENTRY:
a96d9b2e 3210 return xstrprintf ("%sentered syscall", kind_str);
f00150c9 3211 case TARGET_WAITKIND_SYSCALL_RETURN:
a96d9b2e 3212 return xstrprintf ("%sexited syscall", kind_str);
c906108c 3213 case TARGET_WAITKIND_SPURIOUS:
f00150c9
DE
3214 return xstrprintf ("%sspurious", kind_str);
3215 case TARGET_WAITKIND_IGNORE:
3216 return xstrprintf ("%signore", kind_str);
3217 case TARGET_WAITKIND_NO_HISTORY:
3218 return xstrprintf ("%sno-history", kind_str);
c906108c 3219 default:
f00150c9 3220 return xstrprintf ("%sunknown???", kind_str);
c906108c 3221 }
f00150c9
DE
3222}
3223
bf0c5130 3224static void
56be3814
UW
3225debug_print_register (const char * func,
3226 struct regcache *regcache, int regno)
bf0c5130 3227{
f8d29908 3228 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5d502164 3229
bf0c5130 3230 fprintf_unfiltered (gdb_stdlog, "%s ", func);
f8d29908 3231 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
f8d29908
UW
3232 && gdbarch_register_name (gdbarch, regno) != NULL
3233 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
3234 fprintf_unfiltered (gdb_stdlog, "(%s)",
3235 gdbarch_register_name (gdbarch, regno));
bf0c5130
AC
3236 else
3237 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
0ff58721 3238 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
bf0c5130 3239 {
e17a4113 3240 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f8d29908 3241 int i, size = register_size (gdbarch, regno);
d9d9c31f 3242 unsigned char buf[MAX_REGISTER_SIZE];
5d502164 3243
0ff58721 3244 regcache_raw_collect (regcache, regno, buf);
bf0c5130 3245 fprintf_unfiltered (gdb_stdlog, " = ");
81c4a259 3246 for (i = 0; i < size; i++)
bf0c5130
AC
3247 {
3248 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3249 }
81c4a259 3250 if (size <= sizeof (LONGEST))
bf0c5130 3251 {
e17a4113 3252 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
5d502164 3253
0b1553bc
UW
3254 fprintf_unfiltered (gdb_stdlog, " %s %s",
3255 core_addr_to_string_nz (val), plongest (val));
bf0c5130
AC
3256 }
3257 }
3258 fprintf_unfiltered (gdb_stdlog, "\n");
3259}
3260
28439f5e
PA
3261void
3262target_fetch_registers (struct regcache *regcache, int regno)
c906108c 3263{
28439f5e 3264 struct target_ops *t;
5d502164 3265
28439f5e
PA
3266 for (t = current_target.beneath; t != NULL; t = t->beneath)
3267 {
3268 if (t->to_fetch_registers != NULL)
3269 {
3270 t->to_fetch_registers (t, regcache, regno);
3271 if (targetdebug)
3272 debug_print_register ("target_fetch_registers", regcache, regno);
3273 return;
3274 }
3275 }
c906108c
SS
3276}
3277
28439f5e
PA
3278void
3279target_store_registers (struct regcache *regcache, int regno)
c906108c 3280{
28439f5e 3281 struct target_ops *t;
5d502164 3282
d914c394
SS
3283 if (!may_write_registers)
3284 error (_("Writing to registers is not allowed (regno %d)"), regno);
3285
28439f5e
PA
3286 for (t = current_target.beneath; t != NULL; t = t->beneath)
3287 {
3288 if (t->to_store_registers != NULL)
3289 {
3290 t->to_store_registers (t, regcache, regno);
3291 if (targetdebug)
3292 {
3293 debug_print_register ("target_store_registers", regcache, regno);
3294 }
3295 return;
3296 }
3297 }
3298
3299 noprocess ();
c906108c
SS
3300}
3301
dc146f7c
VP
3302int
3303target_core_of_thread (ptid_t ptid)
3304{
3305 struct target_ops *t;
3306
3307 for (t = current_target.beneath; t != NULL; t = t->beneath)
3308 {
3309 if (t->to_core_of_thread != NULL)
3310 {
3311 int retval = t->to_core_of_thread (t, ptid);
5d502164 3312
dc146f7c 3313 if (targetdebug)
3e43a32a
MS
3314 fprintf_unfiltered (gdb_stdlog,
3315 "target_core_of_thread (%d) = %d\n",
dc146f7c
VP
3316 PIDGET (ptid), retval);
3317 return retval;
3318 }
3319 }
3320
3321 return -1;
3322}
3323
4a5e7a5b
PA
3324int
3325target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3326{
3327 struct target_ops *t;
3328
3329 for (t = current_target.beneath; t != NULL; t = t->beneath)
3330 {
3331 if (t->to_verify_memory != NULL)
3332 {
3333 int retval = t->to_verify_memory (t, data, memaddr, size);
5d502164 3334
4a5e7a5b 3335 if (targetdebug)
3e43a32a
MS
3336 fprintf_unfiltered (gdb_stdlog,
3337 "target_verify_memory (%s, %s) = %d\n",
4a5e7a5b
PA
3338 paddress (target_gdbarch, memaddr),
3339 pulongest (size),
3340 retval);
3341 return retval;
3342 }
3343 }
3344
3345 tcomplain ();
3346}
3347
c906108c 3348static void
316f2060 3349debug_to_prepare_to_store (struct regcache *regcache)
c906108c 3350{
316f2060 3351 debug_target.to_prepare_to_store (regcache);
c906108c 3352
96baa820 3353 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
c906108c
SS
3354}
3355
3356static int
961cb7b5 3357deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
c8e73a31
AC
3358 int write, struct mem_attrib *attrib,
3359 struct target_ops *target)
c906108c
SS
3360{
3361 int retval;
3362
c8e73a31
AC
3363 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
3364 attrib, target);
c906108c 3365
96baa820 3366 fprintf_unfiltered (gdb_stdlog,
53b71562 3367 "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
5af949e3
UW
3368 paddress (target_gdbarch, memaddr), len,
3369 write ? "write" : "read", retval);
c906108c 3370
c906108c
SS
3371 if (retval > 0)
3372 {
3373 int i;
3374
96baa820 3375 fputs_unfiltered (", bytes =", gdb_stdlog);
c906108c
SS
3376 for (i = 0; i < retval; i++)
3377 {
53b71562 3378 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
333dabeb
DJ
3379 {
3380 if (targetdebug < 2 && i > 0)
3381 {
3382 fprintf_unfiltered (gdb_stdlog, " ...");
3383 break;
3384 }
3385 fprintf_unfiltered (gdb_stdlog, "\n");
3386 }
2bc416ba 3387
96baa820 3388 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
c906108c
SS
3389 }
3390 }
3391
96baa820 3392 fputc_unfiltered ('\n', gdb_stdlog);
c906108c
SS
3393
3394 return retval;
3395}
3396
3397static void
fba45db2 3398debug_to_files_info (struct target_ops *target)
c906108c
SS
3399{
3400 debug_target.to_files_info (target);
3401
96baa820 3402 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
c906108c
SS
3403}
3404
3405static int
a6d9a66e
UW
3406debug_to_insert_breakpoint (struct gdbarch *gdbarch,
3407 struct bp_target_info *bp_tgt)
c906108c
SS
3408{
3409 int retval;
3410
a6d9a66e 3411 retval = debug_target.to_insert_breakpoint (gdbarch, bp_tgt);
c906108c 3412
96baa820 3413 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
3414 "target_insert_breakpoint (%s, xxx) = %ld\n",
3415 core_addr_to_string (bp_tgt->placed_address),
104c1213 3416 (unsigned long) retval);
c906108c
SS
3417 return retval;
3418}
3419
3420static int
a6d9a66e
UW
3421debug_to_remove_breakpoint (struct gdbarch *gdbarch,
3422 struct bp_target_info *bp_tgt)
c906108c
SS
3423{
3424 int retval;
3425
a6d9a66e 3426 retval = debug_target.to_remove_breakpoint (gdbarch, bp_tgt);
c906108c 3427
96baa820 3428 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
3429 "target_remove_breakpoint (%s, xxx) = %ld\n",
3430 core_addr_to_string (bp_tgt->placed_address),
104c1213 3431 (unsigned long) retval);
c906108c
SS
3432 return retval;
3433}
3434
ccaa32c7
GS
3435static int
3436debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
3437{
3438 int retval;
3439
3440 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
3441
3442 fprintf_unfiltered (gdb_stdlog,
3443 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
3444 (unsigned long) type,
3445 (unsigned long) cnt,
3446 (unsigned long) from_tty,
3447 (unsigned long) retval);
3448 return retval;
3449}
3450
e0d24f8d
WZ
3451static int
3452debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
3453{
3454 CORE_ADDR retval;
3455
3456 retval = debug_target.to_region_ok_for_hw_watchpoint (addr, len);
3457
3458 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
3459 "target_region_ok_for_hw_watchpoint (%s, %ld) = %s\n",
3460 core_addr_to_string (addr), (unsigned long) len,
3461 core_addr_to_string (retval));
e0d24f8d
WZ
3462 return retval;
3463}
3464
0cf6dd15
TJB
3465static int
3466debug_to_can_accel_watchpoint_condition (CORE_ADDR addr, int len, int rw,
3467 struct expression *cond)
3468{
3469 int retval;
3470
3e43a32a
MS
3471 retval = debug_target.to_can_accel_watchpoint_condition (addr, len,
3472 rw, cond);
0cf6dd15
TJB
3473
3474 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
3475 "target_can_accel_watchpoint_condition "
3476 "(%s, %d, %d, %s) = %ld\n",
bd91e7ae
OS
3477 core_addr_to_string (addr), len, rw,
3478 host_address_to_string (cond), (unsigned long) retval);
0cf6dd15
TJB
3479 return retval;
3480}
3481
ccaa32c7
GS
3482static int
3483debug_to_stopped_by_watchpoint (void)
3484{
3485 int retval;
3486
3487 retval = debug_target.to_stopped_by_watchpoint ();
3488
3489 fprintf_unfiltered (gdb_stdlog,
d92524f1 3490 "target_stopped_by_watchpoint () = %ld\n",
ccaa32c7
GS
3491 (unsigned long) retval);
3492 return retval;
3493}
3494
4aa7a7f5
JJ
3495static int
3496debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
ccaa32c7 3497{
4aa7a7f5 3498 int retval;
ccaa32c7 3499
4aa7a7f5 3500 retval = debug_target.to_stopped_data_address (target, addr);
ccaa32c7
GS
3501
3502 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
3503 "target_stopped_data_address ([%s]) = %ld\n",
3504 core_addr_to_string (*addr),
4aa7a7f5 3505 (unsigned long)retval);
ccaa32c7
GS
3506 return retval;
3507}
3508
5009afc5
AS
3509static int
3510debug_to_watchpoint_addr_within_range (struct target_ops *target,
3511 CORE_ADDR addr,
3512 CORE_ADDR start, int length)
3513{
3514 int retval;
3515
3516 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
3517 start, length);
3518
3519 fprintf_filtered (gdb_stdlog,
bd91e7ae
OS
3520 "target_watchpoint_addr_within_range (%s, %s, %d) = %d\n",
3521 core_addr_to_string (addr), core_addr_to_string (start),
3522 length, retval);
5009afc5
AS
3523 return retval;
3524}
3525
ccaa32c7 3526static int
a6d9a66e
UW
3527debug_to_insert_hw_breakpoint (struct gdbarch *gdbarch,
3528 struct bp_target_info *bp_tgt)
ccaa32c7
GS
3529{
3530 int retval;
3531
a6d9a66e 3532 retval = debug_target.to_insert_hw_breakpoint (gdbarch, bp_tgt);
ccaa32c7
GS
3533
3534 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
3535 "target_insert_hw_breakpoint (%s, xxx) = %ld\n",
3536 core_addr_to_string (bp_tgt->placed_address),
ccaa32c7
GS
3537 (unsigned long) retval);
3538 return retval;
3539}
3540
3541static int
a6d9a66e
UW
3542debug_to_remove_hw_breakpoint (struct gdbarch *gdbarch,
3543 struct bp_target_info *bp_tgt)
ccaa32c7
GS
3544{
3545 int retval;
3546
a6d9a66e 3547 retval = debug_target.to_remove_hw_breakpoint (gdbarch, bp_tgt);
ccaa32c7
GS
3548
3549 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
3550 "target_remove_hw_breakpoint (%s, xxx) = %ld\n",
3551 core_addr_to_string (bp_tgt->placed_address),
ccaa32c7
GS
3552 (unsigned long) retval);
3553 return retval;
3554}
3555
3556static int
0cf6dd15
TJB
3557debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type,
3558 struct expression *cond)
ccaa32c7
GS
3559{
3560 int retval;
3561
0cf6dd15 3562 retval = debug_target.to_insert_watchpoint (addr, len, type, cond);
ccaa32c7
GS
3563
3564 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
3565 "target_insert_watchpoint (%s, %d, %d, %s) = %ld\n",
3566 core_addr_to_string (addr), len, type,
3567 host_address_to_string (cond), (unsigned long) retval);
ccaa32c7
GS
3568 return retval;
3569}
3570
3571static int
0cf6dd15
TJB
3572debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type,
3573 struct expression *cond)
ccaa32c7
GS
3574{
3575 int retval;
3576
0cf6dd15 3577 retval = debug_target.to_remove_watchpoint (addr, len, type, cond);
ccaa32c7
GS
3578
3579 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
3580 "target_remove_watchpoint (%s, %d, %d, %s) = %ld\n",
3581 core_addr_to_string (addr), len, type,
3582 host_address_to_string (cond), (unsigned long) retval);
ccaa32c7
GS
3583 return retval;
3584}
3585
c906108c 3586static void
fba45db2 3587debug_to_terminal_init (void)
c906108c
SS
3588{
3589 debug_target.to_terminal_init ();
3590
96baa820 3591 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
c906108c
SS
3592}
3593
3594static void
fba45db2 3595debug_to_terminal_inferior (void)
c906108c
SS
3596{
3597 debug_target.to_terminal_inferior ();
3598
96baa820 3599 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
c906108c
SS
3600}
3601
3602static void
fba45db2 3603debug_to_terminal_ours_for_output (void)
c906108c
SS
3604{
3605 debug_target.to_terminal_ours_for_output ();
3606
96baa820 3607 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
c906108c
SS
3608}
3609
3610static void
fba45db2 3611debug_to_terminal_ours (void)
c906108c
SS
3612{
3613 debug_target.to_terminal_ours ();
3614
96baa820 3615 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
c906108c
SS
3616}
3617
a790ad35
SC
3618static void
3619debug_to_terminal_save_ours (void)
3620{
3621 debug_target.to_terminal_save_ours ();
3622
3623 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
3624}
3625
c906108c 3626static void
fba45db2 3627debug_to_terminal_info (char *arg, int from_tty)
c906108c
SS
3628{
3629 debug_target.to_terminal_info (arg, from_tty);
3630
96baa820 3631 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
c906108c
SS
3632 from_tty);
3633}
3634
c906108c 3635static void
fba45db2 3636debug_to_load (char *args, int from_tty)
c906108c
SS
3637{
3638 debug_target.to_load (args, from_tty);
3639
96baa820 3640 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
c906108c
SS
3641}
3642
3643static int
fba45db2 3644debug_to_lookup_symbol (char *name, CORE_ADDR *addrp)
c906108c
SS
3645{
3646 int retval;
3647
3648 retval = debug_target.to_lookup_symbol (name, addrp);
3649
96baa820 3650 fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name);
c906108c
SS
3651
3652 return retval;
3653}
3654
c906108c 3655static void
39f77062 3656debug_to_post_startup_inferior (ptid_t ptid)
c906108c 3657{
39f77062 3658 debug_target.to_post_startup_inferior (ptid);
c906108c 3659
96baa820 3660 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
39f77062 3661 PIDGET (ptid));
c906108c
SS
3662}
3663
77b06cd7 3664static int
fba45db2 3665debug_to_insert_fork_catchpoint (int pid)
c906108c 3666{
77b06cd7
TJB
3667 int retval;
3668
3669 retval = debug_target.to_insert_fork_catchpoint (pid);
3670
3671 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n",
3672 pid, retval);
c906108c 3673
77b06cd7 3674 return retval;
c906108c
SS
3675}
3676
3677static int
fba45db2 3678debug_to_remove_fork_catchpoint (int pid)
c906108c 3679{
c5aa993b 3680 int retval;
c906108c
SS
3681
3682 retval = debug_target.to_remove_fork_catchpoint (pid);
3683
96baa820 3684 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
c5aa993b 3685 pid, retval);
c906108c
SS
3686
3687 return retval;
3688}
3689
77b06cd7 3690static int
fba45db2 3691debug_to_insert_vfork_catchpoint (int pid)
c906108c 3692{
77b06cd7
TJB
3693 int retval;
3694
3695 retval = debug_target.to_insert_vfork_catchpoint (pid);
c906108c 3696
77b06cd7
TJB
3697 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d) = %d\n",
3698 pid, retval);
3699
3700 return retval;
c906108c
SS
3701}
3702
3703static int
fba45db2 3704debug_to_remove_vfork_catchpoint (int pid)
c906108c 3705{
c5aa993b 3706 int retval;
c906108c
SS
3707
3708 retval = debug_target.to_remove_vfork_catchpoint (pid);
3709
96baa820 3710 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
c5aa993b 3711 pid, retval);
c906108c
SS
3712
3713 return retval;
3714}
3715
77b06cd7 3716static int
fba45db2 3717debug_to_insert_exec_catchpoint (int pid)
c906108c 3718{
77b06cd7
TJB
3719 int retval;
3720
3721 retval = debug_target.to_insert_exec_catchpoint (pid);
c906108c 3722
77b06cd7
TJB
3723 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
3724 pid, retval);
3725
3726 return retval;
c906108c
SS
3727}
3728
3729static int
fba45db2 3730debug_to_remove_exec_catchpoint (int pid)
c906108c 3731{
c5aa993b 3732 int retval;
c906108c
SS
3733
3734 retval = debug_target.to_remove_exec_catchpoint (pid);
3735
96baa820 3736 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
c5aa993b 3737 pid, retval);
c906108c
SS
3738
3739 return retval;
3740}
3741
c906108c 3742static int
fba45db2 3743debug_to_has_exited (int pid, int wait_status, int *exit_status)
c906108c 3744{
c5aa993b 3745 int has_exited;
c906108c
SS
3746
3747 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
3748
96baa820 3749 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
c5aa993b 3750 pid, wait_status, *exit_status, has_exited);
c906108c
SS
3751
3752 return has_exited;
3753}
3754
c906108c 3755static int
fba45db2 3756debug_to_can_run (void)
c906108c
SS
3757{
3758 int retval;
3759
3760 retval = debug_target.to_can_run ();
3761
96baa820 3762 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
c906108c
SS
3763
3764 return retval;
3765}
3766
3767static void
39f77062 3768debug_to_notice_signals (ptid_t ptid)
c906108c 3769{
39f77062 3770 debug_target.to_notice_signals (ptid);
c906108c 3771
39f77062
KB
3772 fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n",
3773 PIDGET (ptid));
c906108c
SS
3774}
3775
c2250ad1
UW
3776static struct gdbarch *
3777debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid)
3778{
3779 struct gdbarch *retval;
3780
3781 retval = debug_target.to_thread_architecture (ops, ptid);
3782
3e43a32a
MS
3783 fprintf_unfiltered (gdb_stdlog,
3784 "target_thread_architecture (%s) = %s [%s]\n",
3785 target_pid_to_str (ptid),
3786 host_address_to_string (retval),
c2250ad1
UW
3787 gdbarch_bfd_arch_info (retval)->printable_name);
3788 return retval;
3789}
3790
c906108c 3791static void
94cc34af 3792debug_to_stop (ptid_t ptid)
c906108c 3793{
94cc34af 3794 debug_target.to_stop (ptid);
c906108c 3795
94cc34af
PA
3796 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
3797 target_pid_to_str (ptid));
c906108c
SS
3798}
3799
96baa820
JM
3800static void
3801debug_to_rcmd (char *command,
d9fcf2fb 3802 struct ui_file *outbuf)
96baa820
JM
3803{
3804 debug_target.to_rcmd (command, outbuf);
3805 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
3806}
3807
c906108c 3808static char *
fba45db2 3809debug_to_pid_to_exec_file (int pid)
c906108c 3810{
c5aa993b 3811 char *exec_file;
c906108c
SS
3812
3813 exec_file = debug_target.to_pid_to_exec_file (pid);
3814
96baa820 3815 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
c5aa993b 3816 pid, exec_file);
c906108c
SS
3817
3818 return exec_file;
3819}
3820
c906108c 3821static void
fba45db2 3822setup_target_debug (void)
c906108c
SS
3823{
3824 memcpy (&debug_target, &current_target, sizeof debug_target);
3825
3826 current_target.to_open = debug_to_open;
c906108c 3827 current_target.to_post_attach = debug_to_post_attach;
c906108c 3828 current_target.to_prepare_to_store = debug_to_prepare_to_store;
c8e73a31 3829 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
c906108c
SS
3830 current_target.to_files_info = debug_to_files_info;
3831 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
3832 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
ccaa32c7
GS
3833 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
3834 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
3835 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
3836 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
3837 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
3838 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
3839 current_target.to_stopped_data_address = debug_to_stopped_data_address;
3e43a32a
MS
3840 current_target.to_watchpoint_addr_within_range
3841 = debug_to_watchpoint_addr_within_range;
3842 current_target.to_region_ok_for_hw_watchpoint
3843 = debug_to_region_ok_for_hw_watchpoint;
3844 current_target.to_can_accel_watchpoint_condition
3845 = debug_to_can_accel_watchpoint_condition;
c906108c
SS
3846 current_target.to_terminal_init = debug_to_terminal_init;
3847 current_target.to_terminal_inferior = debug_to_terminal_inferior;
3e43a32a
MS
3848 current_target.to_terminal_ours_for_output
3849 = debug_to_terminal_ours_for_output;
c906108c 3850 current_target.to_terminal_ours = debug_to_terminal_ours;
a790ad35 3851 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
c906108c 3852 current_target.to_terminal_info = debug_to_terminal_info;
c906108c
SS
3853 current_target.to_load = debug_to_load;
3854 current_target.to_lookup_symbol = debug_to_lookup_symbol;
c906108c 3855 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
c906108c
SS
3856 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
3857 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
3858 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
3859 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
c906108c
SS
3860 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
3861 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
c906108c 3862 current_target.to_has_exited = debug_to_has_exited;
c906108c
SS
3863 current_target.to_can_run = debug_to_can_run;
3864 current_target.to_notice_signals = debug_to_notice_signals;
c906108c 3865 current_target.to_stop = debug_to_stop;
96baa820 3866 current_target.to_rcmd = debug_to_rcmd;
c906108c 3867 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
c2250ad1 3868 current_target.to_thread_architecture = debug_to_thread_architecture;
c906108c 3869}
c906108c 3870\f
c5aa993b
JM
3871
3872static char targ_desc[] =
3e43a32a
MS
3873"Names of targets and files being debugged.\nShows the entire \
3874stack of targets currently in use (including the exec-file,\n\
c906108c
SS
3875core-file, and process, if any), as well as the symbol file name.";
3876
96baa820
JM
3877static void
3878do_monitor_command (char *cmd,
3879 int from_tty)
3880{
2b5fe715
AC
3881 if ((current_target.to_rcmd
3882 == (void (*) (char *, struct ui_file *)) tcomplain)
96baa820 3883 || (current_target.to_rcmd == debug_to_rcmd
2b5fe715
AC
3884 && (debug_target.to_rcmd
3885 == (void (*) (char *, struct ui_file *)) tcomplain)))
8a3fe4f8 3886 error (_("\"monitor\" command not supported by this target."));
96baa820
JM
3887 target_rcmd (cmd, gdb_stdtarg);
3888}
3889
87680a14
JB
3890/* Print the name of each layers of our target stack. */
3891
3892static void
3893maintenance_print_target_stack (char *cmd, int from_tty)
3894{
3895 struct target_ops *t;
3896
3897 printf_filtered (_("The current target stack is:\n"));
3898
3899 for (t = target_stack; t != NULL; t = t->beneath)
3900 {
3901 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
3902 }
3903}
3904
c6ebd6cf
VP
3905/* Controls if async mode is permitted. */
3906int target_async_permitted = 0;
3907
3908/* The set command writes to this variable. If the inferior is
3909 executing, linux_nat_async_permitted is *not* updated. */
3910static int target_async_permitted_1 = 0;
3911
3912static void
3913set_maintenance_target_async_permitted (char *args, int from_tty,
3914 struct cmd_list_element *c)
3915{
c35b1492 3916 if (have_live_inferiors ())
c6ebd6cf
VP
3917 {
3918 target_async_permitted_1 = target_async_permitted;
3919 error (_("Cannot change this setting while the inferior is running."));
3920 }
3921
3922 target_async_permitted = target_async_permitted_1;
3923}
3924
3925static void
3926show_maintenance_target_async_permitted (struct ui_file *file, int from_tty,
3927 struct cmd_list_element *c,
3928 const char *value)
3929{
3e43a32a
MS
3930 fprintf_filtered (file,
3931 _("Controlling the inferior in "
3932 "asynchronous mode is %s.\n"), value);
c6ebd6cf
VP
3933}
3934
d914c394
SS
3935/* Temporary copies of permission settings. */
3936
3937static int may_write_registers_1 = 1;
3938static int may_write_memory_1 = 1;
3939static int may_insert_breakpoints_1 = 1;
3940static int may_insert_tracepoints_1 = 1;
3941static int may_insert_fast_tracepoints_1 = 1;
3942static int may_stop_1 = 1;
3943
3944/* Make the user-set values match the real values again. */
3945
3946void
3947update_target_permissions (void)
3948{
3949 may_write_registers_1 = may_write_registers;
3950 may_write_memory_1 = may_write_memory;
3951 may_insert_breakpoints_1 = may_insert_breakpoints;
3952 may_insert_tracepoints_1 = may_insert_tracepoints;
3953 may_insert_fast_tracepoints_1 = may_insert_fast_tracepoints;
3954 may_stop_1 = may_stop;
3955}
3956
3957/* The one function handles (most of) the permission flags in the same
3958 way. */
3959
3960static void
3961set_target_permissions (char *args, int from_tty,
3962 struct cmd_list_element *c)
3963{
3964 if (target_has_execution)
3965 {
3966 update_target_permissions ();
3967 error (_("Cannot change this setting while the inferior is running."));
3968 }
3969
3970 /* Make the real values match the user-changed values. */
3971 may_write_registers = may_write_registers_1;
3972 may_insert_breakpoints = may_insert_breakpoints_1;
3973 may_insert_tracepoints = may_insert_tracepoints_1;
3974 may_insert_fast_tracepoints = may_insert_fast_tracepoints_1;
3975 may_stop = may_stop_1;
3976 update_observer_mode ();
3977}
3978
3979/* Set memory write permission independently of observer mode. */
3980
3981static void
3982set_write_memory_permission (char *args, int from_tty,
3983 struct cmd_list_element *c)
3984{
3985 /* Make the real values match the user-changed values. */
3986 may_write_memory = may_write_memory_1;
3987 update_observer_mode ();
3988}
3989
3990
c906108c 3991void
fba45db2 3992initialize_targets (void)
c906108c
SS
3993{
3994 init_dummy_target ();
3995 push_target (&dummy_target);
3996
3997 add_info ("target", target_info, targ_desc);
3998 add_info ("files", target_info, targ_desc);
3999
85c07804
AC
4000 add_setshow_zinteger_cmd ("target", class_maintenance, &targetdebug, _("\
4001Set target debugging."), _("\
4002Show target debugging."), _("\
333dabeb
DJ
4003When non-zero, target debugging is enabled. Higher numbers are more\n\
4004verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
85c07804
AC
4005command."),
4006 NULL,
920d2a44 4007 show_targetdebug,
85c07804 4008 &setdebuglist, &showdebuglist);
3a11626d 4009
2bc416ba 4010 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
7915a72c
AC
4011 &trust_readonly, _("\
4012Set mode for reading from readonly sections."), _("\
4013Show mode for reading from readonly sections."), _("\
3a11626d
MS
4014When this mode is on, memory reads from readonly sections (such as .text)\n\
4015will be read from the object file instead of from the target. This will\n\
7915a72c 4016result in significant performance improvement for remote targets."),
2c5b56ce 4017 NULL,
920d2a44 4018 show_trust_readonly,
e707bbc2 4019 &setlist, &showlist);
96baa820
JM
4020
4021 add_com ("monitor", class_obscure, do_monitor_command,
1bedd215 4022 _("Send a command to the remote monitor (remote targets only)."));
96baa820 4023
87680a14
JB
4024 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
4025 _("Print the name of each layer of the internal target stack."),
4026 &maintenanceprintlist);
4027
c6ebd6cf
VP
4028 add_setshow_boolean_cmd ("target-async", no_class,
4029 &target_async_permitted_1, _("\
4030Set whether gdb controls the inferior in asynchronous mode."), _("\
4031Show whether gdb controls the inferior in asynchronous mode."), _("\
4032Tells gdb whether to control the inferior in asynchronous mode."),
4033 set_maintenance_target_async_permitted,
4034 show_maintenance_target_async_permitted,
4035 &setlist,
4036 &showlist);
4037
4e5d721f 4038 add_setshow_boolean_cmd ("stack-cache", class_support,
9cf1b572 4039 &stack_cache_enabled_p_1, _("\
4e5d721f
DE
4040Set cache use for stack access."), _("\
4041Show cache use for stack access."), _("\
4042When on, use the data cache for all stack access, regardless of any\n\
4043configured memory regions. This improves remote performance significantly.\n\
4044By default, caching for stack access is on."),
4045 set_stack_cache_enabled_p,
4046 show_stack_cache_enabled_p,
4047 &setlist, &showlist);
4048
d914c394
SS
4049 add_setshow_boolean_cmd ("may-write-registers", class_support,
4050 &may_write_registers_1, _("\
4051Set permission to write into registers."), _("\
4052Show permission to write into registers."), _("\
4053When this permission is on, GDB may write into the target's registers.\n\
4054Otherwise, any sort of write attempt will result in an error."),
4055 set_target_permissions, NULL,
4056 &setlist, &showlist);
4057
4058 add_setshow_boolean_cmd ("may-write-memory", class_support,
4059 &may_write_memory_1, _("\
4060Set permission to write into target memory."), _("\
4061Show permission to write into target memory."), _("\
4062When this permission is on, GDB may write into the target's memory.\n\
4063Otherwise, any sort of write attempt will result in an error."),
4064 set_write_memory_permission, NULL,
4065 &setlist, &showlist);
4066
4067 add_setshow_boolean_cmd ("may-insert-breakpoints", class_support,
4068 &may_insert_breakpoints_1, _("\
4069Set permission to insert breakpoints in the target."), _("\
4070Show permission to insert breakpoints in the target."), _("\
4071When this permission is on, GDB may insert breakpoints in the program.\n\
4072Otherwise, any sort of insertion attempt will result in an error."),
4073 set_target_permissions, NULL,
4074 &setlist, &showlist);
4075
4076 add_setshow_boolean_cmd ("may-insert-tracepoints", class_support,
4077 &may_insert_tracepoints_1, _("\
4078Set permission to insert tracepoints in the target."), _("\
4079Show permission to insert tracepoints in the target."), _("\
4080When this permission is on, GDB may insert tracepoints in the program.\n\
4081Otherwise, any sort of insertion attempt will result in an error."),
4082 set_target_permissions, NULL,
4083 &setlist, &showlist);
4084
4085 add_setshow_boolean_cmd ("may-insert-fast-tracepoints", class_support,
4086 &may_insert_fast_tracepoints_1, _("\
4087Set permission to insert fast tracepoints in the target."), _("\
4088Show permission to insert fast tracepoints in the target."), _("\
4089When this permission is on, GDB may insert fast tracepoints.\n\
4090Otherwise, any sort of insertion attempt will result in an error."),
4091 set_target_permissions, NULL,
4092 &setlist, &showlist);
4093
4094 add_setshow_boolean_cmd ("may-interrupt", class_support,
4095 &may_stop_1, _("\
4096Set permission to interrupt or signal the target."), _("\
4097Show permission to interrupt or signal the target."), _("\
4098When this permission is on, GDB may interrupt/stop the target's execution.\n\
4099Otherwise, any attempt to interrupt or stop will be ignored."),
4100 set_target_permissions, NULL,
4101 &setlist, &showlist);
4102
4103
8add0441 4104 target_dcache = dcache_init ();
c906108c 4105}
This page took 1.504357 seconds and 4 git commands to generate.