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